summaryrefslogtreecommitdiffstats
path: root/init
diff options
context:
space:
mode:
Diffstat (limited to 'init')
-rw-r--r--init/Kconfig4
1 files changed, 2 insertions, 2 deletions
diff --git a/init/Kconfig b/init/Kconfig
index 4119a44e4157..fe72c12e06a5 100644
--- a/init/Kconfig
+++ b/init/Kconfig
@@ -545,13 +545,13 @@ config CLASSIC_SRCU
545 545
546config TINY_SRCU 546config TINY_SRCU
547 bool 547 bool
548 default y if TINY_RCU && !CLASSIC_SRCU 548 default y if SRCU && TINY_RCU && !CLASSIC_SRCU
549 help 549 help
550 This option selects the single-CPU non-preemptible version of SRCU. 550 This option selects the single-CPU non-preemptible version of SRCU.
551 551
552config TREE_SRCU 552config TREE_SRCU
553 bool 553 bool
554 default y if !TINY_RCU && !CLASSIC_SRCU 554 default y if SRCU && !TINY_RCU && !CLASSIC_SRCU
555 help 555 help
556 This option selects the full-fledged version of SRCU. 556 This option selects the full-fledged version of SRCU.
557 557