diff options
author | Jens Axboe <axboe@kernel.dk> | 2025-02-12 14:05:11 -0700 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2025-02-12 15:39:34 -0700 |
commit | 0edf1283a9d1419a2095b4fcdd95c11ac00a191c (patch) | |
tree | ae617234ab983d4fe949effb51ef151dbe7d29f1 /io_uring/uring_cmd.c | |
parent | e663da62ba8672aaa66843f1af8b20e3bb1a0515 (diff) |
io_uring/uring_cmd: remove dead req_has_async_data() check
Any uring_cmd always has async data allocated now, there's no reason to
check and clear a cached copy of the SQE.
Fixes: d10f19dff56e ("io_uring/uring_cmd: switch to always allocating async data")
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/uring_cmd.c')
-rw-r--r-- | io_uring/uring_cmd.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/io_uring/uring_cmd.c b/io_uring/uring_cmd.c index bcfca18395c4..8af7780407b7 100644 --- a/io_uring/uring_cmd.c +++ b/io_uring/uring_cmd.c @@ -54,9 +54,6 @@ bool io_uring_try_cancel_uring_cmd(struct io_ring_ctx *ctx, continue; if (cmd->flags & IORING_URING_CMD_CANCELABLE) { - /* ->sqe isn't available if no async data */ - if (!req_has_async_data(req)) - cmd->sqe = NULL; file->f_op->uring_cmd(cmd, IO_URING_F_CANCEL | IO_URING_F_COMPLETE_DEFER); ret = true; |