mirror of
https://github.com/torvalds/linux.git
synced 2025-11-01 17:18:25 +02:00
Add a per-cpu monitor as part of the sched model:
* opid: operations with preemption and irq disabled
Monitor to ensure wakeup and need_resched occur with irq and
preemption disabled or in irq handlers.
Cc: Jonathan Corbet <corbet@lwn.net>
Cc: Masami Hiramatsu <mhiramat@kernel.org>
Cc: Ingo Molnar <mingo@redhat.com>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Tomas Glozar <tglozar@redhat.com>
Cc: Juri Lelli <jlelli@redhat.com>
Cc: Clark Williams <williams@redhat.com>
Cc: John Kacur <jkacur@redhat.com>
Link: https://lore.kernel.org/20250728135022.255578-10-gmonaco@redhat.com
Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
Acked-by: Nam Cao <namcao@linutronix.de>
Tested-by: Nam Cao <namcao@linutronix.de>
Signed-off-by: Steven Rostedt (Google) <rostedt@goodmis.org>
23 lines
992 B
Makefile
23 lines
992 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_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_RTAPP) += monitors/rtapp/rtapp.o
|
|
obj-$(CONFIG_RV_MON_PAGEFAULT) += monitors/pagefault/pagefault.o
|
|
obj-$(CONFIG_RV_MON_SLEEP) += monitors/sleep/sleep.o
|
|
obj-$(CONFIG_RV_MON_STS) += monitors/sts/sts.o
|
|
obj-$(CONFIG_RV_MON_NRP) += monitors/nrp/nrp.o
|
|
obj-$(CONFIG_RV_MON_SSSW) += monitors/sssw/sssw.o
|
|
obj-$(CONFIG_RV_MON_OPID) += monitors/opid/opid.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
|