summaryrefslogtreecommitdiffstats
path: root/io_uring/io_uring.c
diff options
context:
space:
mode:
authorJens Axboe <axboe@kernel.dk>2024-06-14 10:57:03 -0600
committerJens Axboe <axboe@kernel.dk>2024-06-16 14:54:55 -0600
commitf2a93294edce87c909d61e18b506404127394891 (patch)
treeb30ba24f4698d07e759d304b75bed182885b88cb /io_uring/io_uring.c
parent200f3abd14db55f9aadcb74f4e7a678f1c469ba1 (diff)
downloadlinux-stable-f2a93294edce87c909d61e18b506404127394891.tar.gz
linux-stable-f2a93294edce87c909d61e18b506404127394891.tar.bz2
linux-stable-f2a93294edce87c909d61e18b506404127394891.zip
io_uring: use 'state' consistently
__io_submit_flush_completions() assigns ctx->submit_state to a local variable and uses it in all but one spot, switch that forgotten statement to using 'state' as well. Signed-off-by: Jens Axboe <axboe@kernel.dk>
Diffstat (limited to 'io_uring/io_uring.c')
-rw-r--r--io_uring/io_uring.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/io_uring/io_uring.c b/io_uring/io_uring.c
index d10678b9d519..57382e523b33 100644
--- a/io_uring/io_uring.c
+++ b/io_uring/io_uring.c
@@ -1390,7 +1390,7 @@ void __io_submit_flush_completions(struct io_ring_ctx *ctx)
}
__io_cq_unlock_post(ctx);
- if (!wq_list_empty(&ctx->submit_state.compl_reqs)) {
+ if (!wq_list_empty(&state->compl_reqs)) {
io_free_batch_list(ctx, state->compl_reqs.first);
INIT_WQ_LIST(&state->compl_reqs);
}