mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 09:13:43 +00:00

Add 2 per-cpu monitors as part of the sched model: * sco: scheduling context operations Monitor to ensure sched_set_state happens only in thread context * tss: task switch while scheduling Monitor to ensure sched_switch happens only in scheduling context To: Ingo Molnar <mingo@redhat.com> To: Peter Zijlstra <peterz@infradead.org> Cc: Juri Lelli <juri.lelli@redhat.com> Cc: Ingo Molnar <mingo@redhat.com> Cc: Peter Zijlstra <peterz@infradead.org> Cc: John Kacur <jkacur@redhat.com> Cc: Clark Williams <williams@redhat.com> Link: https://lore.kernel.org/20250305140406.350227-4-gmonaco@redhat.com Signed-off-by: Gabriele Monaco <gmonaco@redhat.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
19 lines
542 B
Plaintext
19 lines
542 B
Plaintext
digraph state_automaton {
|
|
center = true;
|
|
size = "7,11";
|
|
{node [shape = plaintext] "sched"};
|
|
{node [shape = plaintext, style=invis, label=""] "__init_thread"};
|
|
{node [shape = ellipse] "thread"};
|
|
{node [shape = plaintext] "thread"};
|
|
"__init_thread" -> "thread";
|
|
"sched" [label = "sched"];
|
|
"sched" -> "sched" [ label = "sched_switch" ];
|
|
"sched" -> "thread" [ label = "schedule_exit" ];
|
|
"thread" [label = "thread", color = green3];
|
|
"thread" -> "sched" [ label = "schedule_entry" ];
|
|
{ rank = min ;
|
|
"__init_thread";
|
|
"thread";
|
|
}
|
|
}
|