diff options
author | Pavel Begunkov <asml.silence@gmail.com> | 2020-06-15 10:24:03 +0300 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2020-06-15 08:51:34 -0600 |
commit | 4f26bda1522c35d2701fc219368c7101c17005c1 (patch) | |
tree | bd0d4937c3b984578e97b96d08c93a1442b0c077 /fs/io_uring.c | |
parent | f4c2665e33f48904f2766d644df33fb3fd54b5ec (diff) | |
download | lwn-4f26bda1522c35d2701fc219368c7101c17005c1.tar.gz lwn-4f26bda1522c35d2701fc219368c7101c17005c1.zip |
io-wq: add an option to cancel all matched reqs
This adds support for cancelling all io-wq works matching a predicate.
It isn't used yet, so no change in observable behaviour.
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io_uring.c')
-rw-r--r-- | fs/io_uring.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/io_uring.c b/fs/io_uring.c index c04b20bf2803..94bd88556c1e 100644 --- a/fs/io_uring.c +++ b/fs/io_uring.c @@ -4773,7 +4773,7 @@ static int io_async_cancel_one(struct io_ring_ctx *ctx, void *sqe_addr) enum io_wq_cancel cancel_ret; int ret = 0; - cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr); + cancel_ret = io_wq_cancel_cb(ctx->io_wq, io_cancel_cb, sqe_addr, false); switch (cancel_ret) { case IO_WQ_CANCEL_OK: ret = 0; |