]> www.infradead.org Git - linux.git/commitdiff
io_uring/rw: fix wrong NOWAIT check in io_rw_init_file()
authorJens Axboe <axboe@kernel.dk>
Sat, 19 Oct 2024 15:16:51 +0000 (09:16 -0600)
committerJens Axboe <axboe@kernel.dk>
Sat, 19 Oct 2024 15:25:45 +0000 (09:25 -0600)
A previous commit improved how !FMODE_NOWAIT is dealt with, but
inadvertently negated a check whilst doing so. This caused -EAGAIN to be
returned from reading files with O_NONBLOCK set. Fix up the check for
REQ_F_SUPPORT_NOWAIT.

Reported-by: Julian Orth <ju.orth@gmail.com>
Link: https://github.com/axboe/liburing/issues/1270
Fixes: f7c913438533 ("io_uring/rw: allow pollable non-blocking attempts for !FMODE_NOWAIT")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/rw.c

index 80ae3c2ebb70c8c8434665ad50a23e4c44ded1b3..354c4e175654cf74d4e61933f5fd2bd4efd8efc8 100644 (file)
@@ -807,7 +807,7 @@ static int io_rw_init_file(struct io_kiocb *req, fmode_t mode, int rw_type)
         * reliably. If not, or it IOCB_NOWAIT is set, don't retry.
         */
        if (kiocb->ki_flags & IOCB_NOWAIT ||
-           ((file->f_flags & O_NONBLOCK && (req->flags & REQ_F_SUPPORT_NOWAIT))))
+           ((file->f_flags & O_NONBLOCK && !(req->flags & REQ_F_SUPPORT_NOWAIT))))
                req->flags |= REQ_F_NOWAIT;
 
        if (ctx->flags & IORING_SETUP_IOPOLL) {