]> Git Repo - linux.git/commitdiff
io_uring: clear IOCB_WAITQ for non -EIOCBQUEUED return
authorJens Axboe <[email protected]>
Fri, 5 Mar 2021 04:02:58 +0000 (21:02 -0700)
committerJens Axboe <[email protected]>
Fri, 5 Mar 2021 15:43:09 +0000 (08:43 -0700)
The callback can only be armed, if we get -EIOCBQUEUED returned. It's
important that we clear the WAITQ bit for other cases, otherwise we can
queue for async retry and filemap will assume that we're armed and
return -EAGAIN instead of just blocking for the IO.

Cc: [email protected] # 5.9+
Signed-off-by: Jens Axboe <[email protected]>
fs/io_uring.c

index 044170165402f0c2806a6038289b5f545a485673..5762750c666c6ffcd0440f5692128cafb5ebefe8 100644 (file)
@@ -3286,6 +3286,7 @@ static int io_read(struct io_kiocb *req, unsigned int issue_flags)
                if (ret == -EIOCBQUEUED)
                        return 0;
                /* we got some bytes, but not all. retry. */
+               kiocb->ki_flags &= ~IOCB_WAITQ;
        } while (ret > 0 && ret < io_size);
 done:
        kiocb_done(kiocb, ret, issue_flags);
This page took 0.081012 seconds and 4 git commands to generate.