]> git.ipfire.org Git - thirdparty/kernel/stable.git/commitdiff
locking/lockdep: Enforce PROVE_RAW_LOCK_NESTING only if ARCH_SUPPORTS_RT
authorWaiman Long <longman@redhat.com>
Thu, 28 Nov 2024 02:00:09 +0000 (21:00 -0500)
committerPeter Zijlstra <peterz@infradead.org>
Mon, 2 Dec 2024 11:16:58 +0000 (12:16 +0100)
Relax the rule to set PROVE_RAW_LOCK_NESTING by default only for arches
that supports PREEMPT_RT.  For arches that do not support PREEMPT_RT,
they will not be forced to address unimportant raw lock nesting issues
when they want to enable PROVE_LOCKING.  They do have the option
to enable it to look for these raw locking nesting problems if they
choose to.

Suggested-by: Guenter Roeck <linux@roeck-us.net>
Signed-off-by: Waiman Long <longman@redhat.com>
Signed-off-by: Peter Zijlstra (Intel) <peterz@infradead.org>
Tested-by: Guenter Roeck <linux@roeck-us.net>
Link: https://lore.kernel.org/r/20241128020009.83347-1-longman@redhat.com
lib/Kconfig.debug

index f3d72370587936fa373129cc9b246f15dac907be..49a3819d4d7c25d974fa32fb1d079e8919c7b4e3 100644 (file)
@@ -1397,9 +1397,9 @@ config PROVE_LOCKING
         For more details, see Documentation/locking/lockdep-design.rst.
 
 config PROVE_RAW_LOCK_NESTING
-       bool
+       bool "Enable raw_spinlock - spinlock nesting checks" if !ARCH_SUPPORTS_RT
        depends on PROVE_LOCKING
-       default y
+       default y if ARCH_SUPPORTS_RT
        help
         Enable the raw_spinlock vs. spinlock nesting checks which ensure
         that the lock nesting rules for PREEMPT_RT enabled kernels are