mirror of
https://github.com/nxp-imx/linux-imx.git
synced 2025-07-11 03:45:21 +02:00
io_uring: fix io_match_task must_hold
[ Upstream commite142e9cd88
] The __must_hold annotation in io_match_task() uses a non existing parameter "req", fix it. Fixes:6af3f48bf6
("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> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
parent
b62841e49a
commit
766b0e807e
|
@ -644,7 +644,7 @@ void io_queue_linked_timeout(struct io_kiocb *req)
|
||||||
|
|
||||||
static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
|
static bool io_match_task(struct io_kiocb *head, struct task_struct *task,
|
||||||
bool cancel_all)
|
bool cancel_all)
|
||||||
__must_hold(&req->ctx->timeout_lock)
|
__must_hold(&head->ctx->timeout_lock)
|
||||||
{
|
{
|
||||||
struct io_kiocb *req;
|
struct io_kiocb *req;
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue
Block a user