diff options
author | Dylan Yudaken <dylany@meta.com> | 2022-11-24 01:35:58 -0800 |
---|---|---|
committer | Jens Axboe <axboe@kernel.dk> | 2022-11-25 06:10:04 -0700 |
commit | b529c96a896b7bea8464a58d350836cc106d70bd (patch) | |
tree | a2562008de63c9909040c0b38a7c36d78c3835ac /io_uring/rsrc.c | |
parent | 2e2ef4a1dab980d88a1ab45bf0e28c8851999e33 (diff) | |
download | linux-b529c96a896b7bea8464a58d350836cc106d70bd.tar.gz |
io_uring: remove overflow param from io_post_aux_cqe
The only call sites which would not allow overflow are also call sites
which would use the io_aux_cqe as they care about ordering.
So remove this parameter from io_post_aux_cqe.
Signed-off-by: Dylan Yudaken <dylany@meta.com>
Link: https://lore.kernel.org/r/20221124093559.3780686-9-dylany@meta.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/rsrc.c')
-rw-r--r-- | io_uring/rsrc.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/io_uring/rsrc.c b/io_uring/rsrc.c index 187f1c83e779..133608200769 100644 --- a/io_uring/rsrc.c +++ b/io_uring/rsrc.c @@ -170,10 +170,10 @@ static void __io_rsrc_put_work(struct io_rsrc_node *ref_node) if (prsrc->tag) { if (ctx->flags & IORING_SETUP_IOPOLL) { mutex_lock(&ctx->uring_lock); - io_post_aux_cqe(ctx, prsrc->tag, 0, 0, true); + io_post_aux_cqe(ctx, prsrc->tag, 0, 0); mutex_unlock(&ctx->uring_lock); } else { - io_post_aux_cqe(ctx, prsrc->tag, 0, 0, true); + io_post_aux_cqe(ctx, prsrc->tag, 0, 0); } } |