]> git.baikalelectronics.ru Git - kernel.git/commit
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)
commit7e4ba52bcbea83c4a9d35c9e8cd26905f28c7990
treea45decc6622e9ca567a6b9b5ae726df9cc0bcbc3
parent549e5ee178753172e72071e1d0e3e43bfb8d1182
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: f4d4d5406954 ("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