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

Add a per-task monitor as part of the sched model: * snroc: set non runnable on its own context Monitor to ensure set_state happens only in the respective task's 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-5-gmonaco@redhat.com Signed-off-by: Gabriele Monaco <gmonaco@redhat.com> Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
19 lines
668 B
Plaintext
19 lines
668 B
Plaintext
digraph state_automaton {
|
|
center = true;
|
|
size = "7,11";
|
|
{node [shape = plaintext, style=invis, label=""] "__init_other_context"};
|
|
{node [shape = ellipse] "other_context"};
|
|
{node [shape = plaintext] "other_context"};
|
|
{node [shape = plaintext] "own_context"};
|
|
"__init_other_context" -> "other_context";
|
|
"other_context" [label = "other_context", color = green3];
|
|
"other_context" -> "own_context" [ label = "sched_switch_in" ];
|
|
"own_context" [label = "own_context"];
|
|
"own_context" -> "other_context" [ label = "sched_switch_out" ];
|
|
"own_context" -> "own_context" [ label = "sched_set_state" ];
|
|
{ rank = min ;
|
|
"__init_other_context";
|
|
"other_context";
|
|
}
|
|
}
|