From c2eb22d29ecd7b7cbdce6b2946cb17e67a86228c Mon Sep 17 00:00:00 2001 From: chao an Date: Tue, 27 Jan 2026 12:16:29 +0800 Subject: [PATCH] sched: Remove FS_PROCFS dependency for SCHED_CRITMONITOR Allow SCHED_CRITMONITOR to be enabled without requiring FS_PROCFS, so it can be used in scenarios like calculating CPU load via SCHED_CPULOAD_CRITMONITOR where procfs is not available. Signed-off-by: chao an --- sched/Kconfig | 1 - 1 file changed, 1 deletion(-) diff --git a/sched/Kconfig b/sched/Kconfig index bc68d2808f6..c214c4cc53b 100644 --- a/sched/Kconfig +++ b/sched/Kconfig @@ -910,7 +910,6 @@ config SCHED_IRQMONITOR config SCHED_CRITMONITOR bool "Enable Critical Section monitoring" default n - depends on FS_PROCFS select IRQCOUNT ---help--- Enables logic that monitors the duration of time that a thread keeps