mirror of
https://github.com/torvalds/linux.git
synced 2025-04-06 00:16:18 +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>
19 lines
727 B
Makefile
19 lines
727 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
|
|
ccflags-y += -I $(src) # needed for trace events
|
|
|
|
obj-$(CONFIG_RV) += rv.o
|
|
obj-$(CONFIG_RV_MON_WIP) += monitors/wip/wip.o
|
|
obj-$(CONFIG_RV_MON_WWNR) += monitors/wwnr/wwnr.o
|
|
obj-$(CONFIG_RV_MON_SCHED) += monitors/sched/sched.o
|
|
obj-$(CONFIG_RV_MON_TSS) += monitors/tss/tss.o
|
|
obj-$(CONFIG_RV_MON_SCO) += monitors/sco/sco.o
|
|
obj-$(CONFIG_RV_MON_SNROC) += monitors/snroc/snroc.o
|
|
obj-$(CONFIG_RV_MON_SCPD) += monitors/scpd/scpd.o
|
|
obj-$(CONFIG_RV_MON_SNEP) += monitors/snep/snep.o
|
|
obj-$(CONFIG_RV_MON_SNCID) += monitors/sncid/sncid.o
|
|
# Add new monitors here
|
|
obj-$(CONFIG_RV_REACTORS) += rv_reactors.o
|
|
obj-$(CONFIG_RV_REACT_PRINTK) += reactor_printk.o
|
|
obj-$(CONFIG_RV_REACT_PANIC) += reactor_panic.o
|