diff --git a/fs/io_uring.c b/fs/io_uring.c index c9e15ac37178d151ed9b4bc7ca6abcfb2e8d1d2d..cd04220944b32d59c0b64691c280f7efd9d81cac 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -902,16 +902,7 @@ static void io_req_link_next(struct io_kiocb *req, struct io_kiocb **nxtptr) nxt->flags |= REQ_F_LINK; } - /* - * If we're in async work, we can continue processing the chain - * in this context instead of having to queue up new async work. - */ - if (nxt) { - if (io_wq_current_is_worker()) - *nxtptr = nxt; - else - io_queue_async_work(nxt); - } + *nxtptr = nxt; break; }