From: Pavel Begunkov Date: Thu, 21 Nov 2019 20:21:02 +0000 (+0300) Subject: io_uring: simplify io_req_link_next() X-Git-Tag: v5.5-rc1~127^2~17 X-Git-Url: https://repo.jachan.dev/linux.git/commitdiff_plain/b18fdf71e01f io_uring: simplify io_req_link_next() "if (nxt)" is always true, as it was checked in the while's condition. io_wq_current_is_worker() is unnecessary, as non-async callers don't pass nxt, so io_queue_async_work() will be called for them anyway. Signed-off-by: Pavel Begunkov Signed-off-by: Jens Axboe --- diff --git a/fs/io_uring.c b/fs/io_uring.c index 95deb45e89cf..f6f5871bd7d2 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -903,16 +903,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; }