mirror of
https://github.com/raspberrypi/linux.git
synced 2025-12-27 12:32:50 +00:00
Add 3 per-cpu monitors as part of the sched model:
* scpd: schedule called with preemption disabled
Monitor to ensure schedule is called with preemption disabled
* snep: schedule does not enable preempt
Monitor to ensure schedule does not enable preempt
* sncid: schedule not called with interrupt disabled
Monitor to ensure schedule is not called with interrupt disabled
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-6-gmonaco@redhat.com
Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
16 lines
401 B
Plaintext
16 lines
401 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
config RV_MON_SCPD
|
|
depends on RV
|
|
depends on PREEMPT_TRACER
|
|
depends on RV_MON_SCHED
|
|
default y
|
|
select DA_MON_EVENTS_IMPLICIT
|
|
bool "scpd monitor"
|
|
help
|
|
Monitor to ensure schedule is called with preemption disabled.
|
|
This monitor is part of the sched monitors collection.
|
|
|
|
For further information, see:
|
|
Documentation/trace/rv/monitor_sched.rst
|