]> git.baikalelectronics.ru Git - kernel.git/commit
sched/scs: Reset the shadow stack when idle_task_exit
authorWoody Lin <woodylin@google.com>
Tue, 12 Oct 2021 08:35:21 +0000 (16:35 +0800)
committerPeter Zijlstra <peterz@infradead.org>
Tue, 19 Oct 2021 15:46:11 +0000 (17:46 +0200)
commit5e54aa6c6e1d8e196b87577423cf3ad2336e4f13
treebe8811d5756cc937da69a797105e7302965ba658
parent9a90a4ad3df1ecb40c41849efe744f333f366654
sched/scs: Reset the shadow stack when idle_task_exit

Commit 914b37d362ee ("sched/core: Initialize the idle task with
preemption disabled") removed the init_idle() call from
idle_thread_get(). This was the sole call-path on hotplug that resets
the Shadow Call Stack (scs) Stack Pointer (sp).

Not resetting the scs-sp leads to scs overflow after enough hotplug
cycles. Therefore add an explicit scs_task_reset() to the hotplug code
to make sure the scs-sp does get reset on hotplug.

Fixes: 914b37d362ee ("sched/core: Initialize the idle task with preemption disabled")
Signed-off-by: Woody Lin <woodylin@google.com>
[peterz: Changelog]
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Reviewed-by: Valentin Schneider <valentin.schneider@arm.com>
Link: https://lore.kernel.org/r/20211012083521.973587-1-woodylin@google.com
kernel/sched/core.c