summaryrefslogtreecommitdiff
path: root/io_uring
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2022-06-15 19:33:54 +0300
committerJens Axboe <axboe@kernel.dk>2022-07-25 03:39:13 +0300
commitaeaa72c69473d7e68addbd31f43c7c12af252bfc (patch)
tree8b9346479d11aa5e760b1d64ad0c41f7d2c98af5 /io_uring
parent6a02e4be8187588ac476136496af9e3feeeb9a75 (diff)
downloadlinux-aeaa72c69473d7e68addbd31f43c7c12af252bfc.tar.xz
io_uring: never defer-complete multi-apoll
Luckily, nnobody completes multi-apoll requests outside the polling functions, but don't set IO_URING_F_COMPLETE_DEFER in any case as there is nobody who is catching REQ_F_COMPLETE_INLINE, and so will leak requests if used. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/a65ed3f5effd9321ee06e6edea294a03be3e15a0.1655310733.git.asml.silence@gmail.com Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring')
-rw-r--r--io_uring/io_uring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
index fd3ad7848652..8a8d8b323519 100644
--- a/io_uring/io_uring.c
+++ b/io_uring/io_uring.c
@@ -1599,7 +1599,7 @@ int io_poll_issue(struct io_kiocb *req, bool *locked)
io_tw_lock(req->ctx, locked);
if (unlikely(req->task->flags & PF_EXITING))
return -EFAULT;
- return io_issue_sqe(req, IO_URING_F_NONBLOCK|IO_URING_F_COMPLETE_DEFER);
+ return io_issue_sqe(req, IO_URING_F_NONBLOCK);
}
struct io_wq_work *io_wq_free_work(struct io_wq_work *work)