This is a note to let you know that I've just added the patch titled io_uring/rw: don't allow multishot reads without NOWAIT support to the 6.8-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-rw-don-t-allow-multishot-reads-without-nowait-support.patch and it can be found in the queue-6.8 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <stable@xxxxxxxxxxxxxxx> know about it. >From 2a975d426c82ff05ec1f0b773798d909fe4a3105 Mon Sep 17 00:00:00 2001 From: Jens Axboe <axboe@xxxxxxxxx> Date: Mon, 1 Apr 2024 11:27:33 -0600 Subject: io_uring/rw: don't allow multishot reads without NOWAIT support From: Jens Axboe <axboe@xxxxxxxxx> commit 2a975d426c82ff05ec1f0b773798d909fe4a3105 upstream. Supporting multishot reads requires support for NOWAIT, as the alternative would be always having io-wq execute the work item whenever the poll readiness triggered. Any fast file type will have NOWAIT support (eg it understands both O_NONBLOCK and IOCB_NOWAIT). If the given file type does not, then simply resort to single shot execution. Cc: stable@xxxxxxxxxxxxxxx Fixes: fc68fcda04910 ("io_uring/rw: add support for IORING_OP_READ_MULTISHOT") Signed-off-by: Jens Axboe <axboe@xxxxxxxxx> Signed-off-by: Greg Kroah-Hartman <gregkh@xxxxxxxxxxxxxxxxxxx> --- io_uring/rw.c | 9 ++++++++- 1 file changed, 8 insertions(+), 1 deletion(-) --- a/io_uring/rw.c +++ b/io_uring/rw.c @@ -938,6 +938,13 @@ int io_read_mshot(struct io_kiocb *req, ret = __io_read(req, issue_flags); /* + * If the file doesn't support proper NOWAIT, then disable multishot + * and stay in single shot mode. + */ + if (!io_file_supports_nowait(req)) + req->flags &= ~REQ_F_APOLL_MULTISHOT; + + /* * If we get -EAGAIN, recycle our buffer and just let normal poll * handling arm it. */ @@ -956,7 +963,7 @@ int io_read_mshot(struct io_kiocb *req, /* * Any successful return value will keep the multishot read armed. */ - if (ret > 0) { + if (ret > 0 && req->flags & REQ_F_APOLL_MULTISHOT) { /* * Put our buffer and post a CQE. If we fail to post a CQE, then * jump to the termination path. This request is then done. Patches currently in stable-queue which might be from axboe@xxxxxxxxx are queue-6.8/io_uring-rw-don-t-allow-multishot-reads-without-nowait-support.patch queue-6.8/io_uring-use-private-workqueue-for-exit-work.patch queue-6.8/io_uring-kbuf-protect-io_buffer_list-teardown-with-a-reference.patch queue-6.8/io_uring-kbuf-hold-io_buffer_list-reference-over-mmap.patch queue-6.8/io_uring-kbuf-get-rid-of-lower-bgid-lists.patch queue-6.8/io_uring-kbuf-get-rid-of-bl-is_ready.patch