diff options
author | Pavel Begunkov | 2020-06-15 10:24:04 +0300 |
---|---|---|
committer | Jens Axboe | 2020-06-15 08:51:34 -0600 |
commit | 44e728b8aae0bb6d4229129083974f9dea43f50b (patch) | |
tree | 0b34f50ac8706d4c8d9ee801bf680ea06a27e10c /fs/io-wq.h | |
parent | 4f26bda1522c35d2701fc219368c7101c17005c1 (diff) |
io_uring: cancel all task's requests on exit
If a process is going away, io_uring_flush() will cancel only 1
request with a matching pid. Cancel all of them
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'fs/io-wq.h')
-rw-r--r-- | fs/io-wq.h | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/fs/io-wq.h b/fs/io-wq.h index 7d5bd431c5e3..b72538fe5afd 100644 --- a/fs/io-wq.h +++ b/fs/io-wq.h @@ -125,7 +125,6 @@ static inline bool io_wq_is_hashed(struct io_wq_work *work) void io_wq_cancel_all(struct io_wq *wq); enum io_wq_cancel io_wq_cancel_work(struct io_wq *wq, struct io_wq_work *cwork); -enum io_wq_cancel io_wq_cancel_pid(struct io_wq *wq, pid_t pid); typedef bool (work_cancel_fn)(struct io_wq_work *, void *); |