diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2024-10-28 13:43:42 +0300 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2024-12-06 09:20:46 +0300 |
commit | e80e6c1b93c455bd831628aaa23d9fd93f826648 (patch) | |
tree | c9ade4914cdf080567719448c7649ae2b07c3e63 /tools/perf/util/scripting-engines/trace-event-python.c | |
parent | fa10f348fd80c7ea7b7c0a7763ba7c0bf1a16be3 (diff) | |
download | linux-e80e6c1b93c455bd831628aaa23d9fd93f826648.tar.xz |
sched: Initialize idle tasks only once
commit b23decf8ac9102fc52c4de5196f4dc0a5f3eb80b upstream.
Idle tasks are initialized via __sched_fork() twice:
fork_idle()
copy_process()
sched_fork()
__sched_fork()
init_idle()
__sched_fork()
Instead of cleaning this up, sched_ext hacked around it. Even when analyis
and solution were provided in a discussion, nobody cared to clean this up.
init_idle() is also invoked from sched_init() to initialize the boot CPU's
idle task, which requires the __sched_fork() invocation. But this can be
trivially solved by invoking __sched_fork() before init_idle() in
sched_init() and removing the __sched_fork() invocation from init_idle().
Do so and clean up the comments explaining this historical leftover.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Link: https://lore.kernel.org/r/20241028103142.359584747@linutronix.de
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'tools/perf/util/scripting-engines/trace-event-python.c')
0 files changed, 0 insertions, 0 deletions