mirror of
https://github.com/torvalds/linux.git
synced 2026-09-26 18:12:03 +02:00
Add a wakeup monitor to detect a lower-priority task waking up a higher-priority task. The rtapp/sleep monitor already detects this. However, that monitor triggers an error in the context of the wakee task and user only gets the stacktrace of that task. It is also extremely useful to get the stacktrace of the waker task, which this monitor offers. In other words, this monitor complements the rtapp/sleep monitor. Signed-off-by: Nam Cao <namcao@linutronix.de> Reviewed-by: Gabriele Monaco <gmonaco@redhat.com> Link: https://lore.kernel.org/r/ba5658fa13e49ada466b84a2c211f233037180b5.1781852967.git.namcao@linutronix.de Signed-off-by: Gabriele Monaco <gmonaco@redhat.com>
12 lines
381 B
Plaintext
12 lines
381 B
Plaintext
config RV_MON_RTAPP
|
|
depends on RV
|
|
depends on RV_PER_TASK_MONITORS >= 3
|
|
bool "rtapp monitor"
|
|
help
|
|
Collection of monitors to check for common problems with real-time
|
|
application that may cause unexpected latency.
|
|
|
|
If you are developing a real-time system and not entirely sure whether
|
|
the applications are designed correctly for real-time, you want to say
|
|
Y here.
|