aboutsummaryrefslogtreecommitdiffstats
path: root/lib/Kconfig.debug
diff options
context:
space:
mode:
Diffstat (limited to 'lib/Kconfig.debug')
-rw-r--r--lib/Kconfig.debug23
1 files changed, 23 insertions, 0 deletions
diff --git a/lib/Kconfig.debug b/lib/Kconfig.debug
index 124ece1e67ad..eae594cb6ea9 100644
--- a/lib/Kconfig.debug
+++ b/lib/Kconfig.debug
@@ -553,6 +553,16 @@ config DEBUG_SG
553 553
554 If unsure, say N. 554 If unsure, say N.
555 555
556config DEBUG_NOTIFIERS
557 bool "Debug notifier call chains"
558 depends on DEBUG_KERNEL
559 help
560 Enable this to turn on sanity checking for notifier call chains.
561 This is most useful for kernel developers to make sure that
562 modules properly unregister themselves from notifier chains.
563 This is a relatively cheap check but if you care about maximum
564 performance, say N.
565
556config FRAME_POINTER 566config FRAME_POINTER
557 bool "Compile the kernel with frame pointers" 567 bool "Compile the kernel with frame pointers"
558 depends on DEBUG_KERNEL && \ 568 depends on DEBUG_KERNEL && \
@@ -627,6 +637,19 @@ config RCU_CPU_STALL_DETECTOR
627 637
628 Say N if you are unsure. 638 Say N if you are unsure.
629 639
640config RCU_CPU_STALL_DETECTOR
641 bool "Check for stalled CPUs delaying RCU grace periods"
642 depends on CLASSIC_RCU || TREE_RCU
643 default n
644 help
645 This option causes RCU to printk information on which
646 CPUs are delaying the current grace period, but only when
647 the grace period extends for excessive time periods.
648
649 Say Y if you want RCU to perform such checks.
650
651 Say N if you are unsure.
652
630config KPROBES_SANITY_TEST 653config KPROBES_SANITY_TEST
631 bool "Kprobes sanity tests" 654 bool "Kprobes sanity tests"
632 depends on DEBUG_KERNEL 655 depends on DEBUG_KERNEL