]> www.infradead.org Git - users/willy/xarray.git/commitdiff
io_uring: fix io_match_task must_hold
authorPavel Begunkov <asml.silence@gmail.com>
Wed, 24 Jul 2024 11:16:18 +0000 (12:16 +0100)
committerJens Axboe <axboe@kernel.dk>
Wed, 24 Jul 2024 14:01:49 +0000 (08:01 -0600)
The __must_hold annotation in io_match_task() uses a non existing
parameter "req", fix it.

Fixes: 6af3f48bf6156 ("io_uring: fix link traversal locking")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/3e65ee7709e96507cef3d93291746f2c489f2307.1721819383.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/timeout.c

index 1c9bf07499b197ba1fe59a5eb02df40a125395dc..9973876d91b0ef32010691e60b249988a76bdbe9 100644 (file)
@@ -639,7 +639,7 @@ void io_queue_linked_timeout(struct io_kiocb *req)
 
 static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
                          bool cancel_all)
-       __must_hold(&req->ctx->timeout_lock)
+       __must_hold(&head->ctx->timeout_lock)
 {
        struct io_kiocb *req;