aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/kernel
diff options
context:
space:
mode:
authorIngo Molnar <mingo@kernel.org>2020-04-14 08:36:41 +0200
committerIngo Molnar <mingo@kernel.org>2020-04-14 08:36:41 +0200
commit40e7d7bdc19e65a356ca6d692c6e56ec45012737 (patch)
treeaf01b8ec9a914c5677c37702f6dfb83470260e73 /kernel
parentLinux 5.7-rc1 (diff)
parentrcu: Don't acquire lock in NMI handler in rcu_nmi_enter_common() (diff)
downloadwireguard-linux-40e7d7bdc19e65a356ca6d692c6e56ec45012737.tar.xz
wireguard-linux-40e7d7bdc19e65a356ca6d692c6e56ec45012737.zip
Merge branch 'urgent-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/paulmck/linux-rcu into core/urgent
Pull RCU fix from Paul E. McKenney. Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/rcu/tree.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/kernel/rcu/tree.c b/kernel/rcu/tree.c
index 06548e2ebb72..d9a49cd6065a 100644
--- a/kernel/rcu/tree.c
+++ b/kernel/rcu/tree.c
@@ -825,7 +825,7 @@ static __always_inline void rcu_nmi_enter_common(bool irq)
rcu_cleanup_after_idle();
incby = 1;
- } else if (tick_nohz_full_cpu(rdp->cpu) &&
+ } else if (irq && tick_nohz_full_cpu(rdp->cpu) &&
rdp->dynticks_nmi_nesting == DYNTICK_IRQ_NONIDLE &&
READ_ONCE(rdp->rcu_urgent_qs) &&
!READ_ONCE(rdp->rcu_forced_tick)) {