diff options
author | 2025-04-02 10:04:48 -0700 | |
---|---|---|
committer | 2025-04-02 10:04:48 -0700 | |
commit | da0512b2a3b4124b1483751f090d7ac13a713f0e (patch) | |
tree | 42ba2c0c1d11d6f51b9cfe6e9b3f0b08ffd6f7ac | |
parent | Merge tag 'kgdb-6.15-rc1' of git://git.kernel.org/pub/scm/linux/kernel/git/danielt/linux (diff) | |
parent | srcu: Make FORCE_NEED_SRCU_NMI_SAFE depend on RCU_EXPERT (diff) | |
download | linux-rng-da0512b2a3b4124b1483751f090d7ac13a713f0e.tar.xz linux-rng-da0512b2a3b4124b1483751f090d7ac13a713f0e.zip |
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 |