Patch "io_uring: avoid io-wq -EAGAIN looping for !IOPOLL" has been added to the 5.15-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    io_uring: avoid io-wq -EAGAIN looping for !IOPOLL

to the 5.15-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     io_uring-avoid-io-wq-eagain-looping-for-iopoll.patch
and it can be found in the queue-5.15 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 24c560ad675bfcdd4ff3c5e4948716b40e953857
Author: Pavel Begunkov <asml.silence@xxxxxxxxx>
Date:   Fri May 13 11:24:56 2022 +0100

    io_uring: avoid io-wq -EAGAIN looping for !IOPOLL
    
    [ Upstream commit e0deb6a025ae8c850dc8685be39fb27b06c88736 ]
    
    If an opcode handler semi-reliably returns -EAGAIN, io_wq_submit_work()
    might continue busily hammer the same handler over and over again, which
    is not ideal. The -EAGAIN handling in question was put there only for
    IOPOLL, so restrict it to IOPOLL mode only where there is no other
    recourse than to retry as we cannot wait.
    
    Fixes: def596e9557c9 ("io_uring: support for IO polling")
    Signed-off-by: Pavel Begunkov <asml.silence@xxxxxxxxx>
    Link: https://lore.kernel.org/r/f168b4f24181942f3614dd8ff648221736f572e6.1652433740.git.asml.silence@xxxxxxxxx
    Signed-off-by: Jens Axboe <axboe@xxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/fs/io_uring.c b/fs/io_uring.c
index 0c5dcda0b622..9bff14c5e2b2 100644
--- a/fs/io_uring.c
+++ b/fs/io_uring.c
@@ -6866,7 +6866,7 @@ static void io_wq_submit_work(struct io_wq_work *work)
 			 * forcing a sync submission from here, since we can't
 			 * wait for request slots on the block side.
 			 */
-			if (ret != -EAGAIN)
+			if (ret != -EAGAIN || !(req->ctx->flags & IORING_SETUP_IOPOLL))
 				break;
 			cond_resched();
 		} while (1);



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux