sched: Prevent balance_push() on remote runqueues
authorThomas Gleixner <tglx@linutronix.de>
Sat, 28 Aug 2021 13:55:52 +0000 (15:55 +0200)
committerPeter Zijlstra <peterz@infradead.org>
Thu, 9 Sep 2021 09:27:23 +0000 (11:27 +0200)
commit868ad33bfa3bf39960982682ad3a0f8ebda1656e
treea45decc6622e9ca567a6b9b5ae726df9cc0bcbc3
parent9848417926353daa59d2b05eb26e185063dbac6e
sched: Prevent balance_push() on remote runqueues

sched_setscheduler() and rt_mutex_setprio() invoke the run-queue balance
callback after changing priorities or the scheduling class of a task. The
run-queue for which the callback is invoked can be local or remote.

That's not a problem for the regular rq::push_work which is serialized with
a busy flag in the run-queue struct, but for the balance_push() work which
is only valid to be invoked on the outgoing CPU that's wrong. It not only
triggers the debug warning, but also leaves the per CPU variable push_work
unprotected, which can result in double enqueues on the stop machine list.

Remove the warning and validate that the function is invoked on the
outgoing CPU.

Fixes: ae7927023243 ("sched: Optimize finish_lock_switch()")
Reported-by: Sebastian Siewior <bigeasy@linutronix.de>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Cc: stable@vger.kernel.org
Link: https://lkml.kernel.org/r/87zgt1hdw7.ffs@tglx
kernel/sched/core.c