aboutsummaryrefslogtreecommitdiffstats
path: root/io_uring/cancel.h
diff options
context:
space:
mode:
authorPavel Begunkov <asml.silence@gmail.com>2022-06-16 10:22:11 +0100
committerJens Axboe <axboe@kernel.dk>2022-07-24 18:39:13 -0600
commit5d7943d99df9326c7b02f773b2d6f09709c30594 (patch)
treed296e5e886b8c924d8b8e098e04554f352806856 /io_uring/cancel.h
parente6f89be61410ff5a0e690d87d7a308e81f0f5a71 (diff)
downloadlinux-5d7943d99df9326c7b02f773b2d6f09709c30594.tar.gz
io_uring: propagate locking state to poll cancel
Poll cancellation will be soon need to grab ->uring_lock inside, pass the locking state, i.e. issue_flags, inside the cancellation functions. Signed-off-by: Pavel Begunkov <asml.silence@gmail.com> Link: https://lore.kernel.org/r/b86781d047727c07163443b57551a3fa57c7c5e1.1655371007.git.asml.silence@gmail.com Reviewed-by: Hao Xu <howeyxu@tencent.com> Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/cancel.h')
-rw-r--r--io_uring/cancel.h3
1 files changed, 2 insertions, 1 deletions
diff --git a/io_uring/cancel.h b/io_uring/cancel.h
index fd4cb1a2595de..8dd259dc383e2 100644
--- a/io_uring/cancel.h
+++ b/io_uring/cancel.h
@@ -3,5 +3,6 @@
int io_async_cancel_prep(struct io_kiocb *req, const struct io_uring_sqe *sqe);
int io_async_cancel(struct io_kiocb *req, unsigned int issue_flags);
-int io_try_cancel(struct io_kiocb *req, struct io_cancel_data *cd);
+int io_try_cancel(struct io_kiocb *req, struct io_cancel_data *cd,
+ unsigned int issue_flags);
void init_hash_table(struct io_hash_table *table, unsigned size);