mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-08-17 01:39:34 +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>
16 lines
472 B
C
16 lines
472 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
/*
|
|
* Snippet to be included in rv_trace.h
|
|
*/
|
|
|
|
#ifdef CONFIG_RV_MON_SNROC
|
|
DEFINE_EVENT(event_da_monitor_id, event_snroc,
|
|
TP_PROTO(int id, char *state, char *event, char *next_state, bool final_state),
|
|
TP_ARGS(id, state, event, next_state, final_state));
|
|
|
|
DEFINE_EVENT(error_da_monitor_id, error_snroc,
|
|
TP_PROTO(int id, char *state, char *event),
|
|
TP_ARGS(id, state, event));
|
|
#endif /* CONFIG_RV_MON_SNROC */
|