]> www.infradead.org Git - users/dwmw2/linux.git/commitdiff
io_uring: don't touch sqd->thread off tw add
authorPavel Begunkov <asml.silence@gmail.com>
Fri, 10 Jan 2025 20:36:45 +0000 (20:36 +0000)
committerJens Axboe <axboe@kernel.dk>
Fri, 10 Jan 2025 21:00:25 +0000 (14:00 -0700)
With IORING_SETUP_SQPOLL all requests are created by the SQPOLL task,
which means that req->task should always match sqd->thread. Since
accesses to sqd->thread should be separately protected, use req->task
in io_req_normal_work_add() instead.

Note, in the eyes of io_req_normal_work_add(), the SQPOLL task struct
is always pinned and alive, and sqd->thread can either be the task or
NULL. It's only problematic if the compiler decides to reload the value
after the null check, which is not so likely.

Cc: stable@vger.kernel.org
Cc: Bui Quang Minh <minhquangbui99@gmail.com>
Reported-by: lizetao <lizetao1@huawei.com>
Fixes: 78f9b61bd8e54 ("io_uring: wake SQPOLL task when task_work is added to an empty queue")
Signed-off-by: Pavel Begunkov <asml.silence@gmail.com>
Link: https://lore.kernel.org/r/1cbbe72cf32c45a8fee96026463024cd8564a7d7.1736541357.git.asml.silence@gmail.com
Signed-off-by: Jens Axboe <axboe@kernel.dk>
io_uring/io_uring.c

index d3403c8216db822d0acd5bdf9201edde58b7ffe8..5eb119002099e9d0f01caf79863cf091d344e6c1 100644 (file)
@@ -1226,10 +1226,7 @@ static void io_req_normal_work_add(struct io_kiocb *req)
 
        /* SQPOLL doesn't need the task_work added, it'll run it itself */
        if (ctx->flags & IORING_SETUP_SQPOLL) {
-               struct io_sq_data *sqd = ctx->sq_data;
-
-               if (sqd->thread)
-                       __set_notify_signal(sqd->thread);
+               __set_notify_signal(tctx->task);
                return;
        }