]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
sched: Clarify wake_up_q()'s write to task->wake_q.next
authorJann Horn <jannh@google.com>
Wed, 29 Jan 2025 19:53:03 +0000 (20:53 +0100)
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>
Sat, 22 Mar 2025 19:54:16 +0000 (12:54 -0700)
[ Upstream commit bcc6244e13b4d4903511a1ea84368abf925031c0 ]

Clarify that wake_up_q() does an atomic write to task->wake_q.next, after
which a concurrent __wake_q_add() can immediately overwrite
task->wake_q.next again.

Signed-off-by: Jann Horn <jannh@google.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lkml.kernel.org/r/20250129-sched-wakeup-prettier-v1-1-2f51f5f663fa@google.com
Signed-off-by: Sasha Levin <sashal@kernel.org>
kernel/sched/core.c

index 9803f10a082a7bd8779e18331a1dee7153dd4632..1f817d0c5d2d0e04a8d48836bf465eb7585d16d8 100644 (file)
@@ -1058,9 +1058,10 @@ void wake_up_q(struct wake_q_head *head)
                struct task_struct *task;
 
                task = container_of(node, struct task_struct, wake_q);
-               /* Task can safely be re-inserted now: */
                node = node->next;
-               task->wake_q.next = NULL;
+               /* pairs with cmpxchg_relaxed() in __wake_q_add() */
+               WRITE_ONCE(task->wake_q.next, NULL);
+               /* Task can safely be re-inserted now. */
 
                /*
                 * wake_up_process() executes a full barrier, which pairs with