提交 7c977a58 编写于 作者: J Jens Axboe

io_uring: don't attempt IO reissue from the ring exit path

If we're exiting the ring, just let the IO fail with -EAGAIN as nobody
will care anyway. It's not the right context to reissue from.

Cc: stable@vger.kernel.org
Signed-off-by: NJens Axboe <axboe@kernel.dk>
上级 8e5c66c4
...@@ -2839,6 +2839,13 @@ static bool io_rw_reissue(struct io_kiocb *req) ...@@ -2839,6 +2839,13 @@ static bool io_rw_reissue(struct io_kiocb *req)
return false; return false;
if ((req->flags & REQ_F_NOWAIT) || io_wq_current_is_worker()) if ((req->flags & REQ_F_NOWAIT) || io_wq_current_is_worker())
return false; return false;
/*
* If ref is dying, we might be running poll reap from the exit work.
* Don't attempt to reissue from that path, just let it fail with
* -EAGAIN.
*/
if (percpu_ref_is_dying(&req->ctx->refs))
return false;
lockdep_assert_held(&req->ctx->uring_lock); lockdep_assert_held(&req->ctx->uring_lock);
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册