mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
Add the deadline monitors collection to validate the deadline scheduler,
both for deadline tasks and servers.
The currently implemented monitors are:
* nomiss:
validate dl entities run to completion before their deadiline
Reviewed-by: Nam Cao <namcao@linutronix.de>
Reviewed-by: Juri Lelli <juri.lelli@redhat.com>
Link: https://lore.kernel.org/r/20260330111010.153663-13-gmonaco@redhat.com
Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
16 lines
427 B
Plaintext
16 lines
427 B
Plaintext
# SPDX-License-Identifier: GPL-2.0-only
|
|
#
|
|
config RV_MON_NOMISS
|
|
depends on RV
|
|
depends on HAVE_SYSCALL_TRACEPOINTS
|
|
depends on RV_MON_DEADLINE
|
|
default y
|
|
select HA_MON_EVENTS_ID
|
|
bool "nomiss monitor"
|
|
help
|
|
Monitor to ensure dl entities run to completion before their deadiline.
|
|
This monitor is part of the deadline monitors collection.
|
|
|
|
For further information, see:
|
|
Documentation/trace/rv/monitor_deadline.rst
|