diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2025-04-02 10:04:48 -0700 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2025-04-02 10:04:48 -0700 |
commit | da0512b2a3b4124b1483751f090d7ac13a713f0e (patch) | |
tree | 42ba2c0c1d11d6f51b9cfe6e9b3f0b08ffd6f7ac | |
parent | 002dcfd05740801ab30f88350de47e47c916af1c (diff) | |
parent | 1dc1e0b9d694eb9016d3105ca4ba8bd90eba888a (diff) |
Merge tag 'rcu-fixes-v6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux
Pull RCU fix from Boqun Feng:
- srcu: Make FORCE_NEED_SRCU_NMI_SAFE depend on RCU_EXPERT
* tag 'rcu-fixes-v6.15' of git://git.kernel.org/pub/scm/linux/kernel/git/rcu/linux:
srcu: Make FORCE_NEED_SRCU_NMI_SAFE depend on RCU_EXPERT
-rw-r--r-- | kernel/rcu/Kconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/kernel/rcu/Kconfig b/kernel/rcu/Kconfig index aa42de4d2768..4d9b21f69eaa 100644 --- a/kernel/rcu/Kconfig +++ b/kernel/rcu/Kconfig @@ -68,6 +68,8 @@ config TREE_SRCU config FORCE_NEED_SRCU_NMI_SAFE bool "Force selection of NEED_SRCU_NMI_SAFE" depends on !TINY_SRCU + depends on RCU_EXPERT + depends on ARCH_HAS_NMI_SAFE_THIS_CPU_OPS select NEED_SRCU_NMI_SAFE default n help |