linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 1/1] rcutree/rcu_bh_qs: disable irq while calling rcu_preempt_qs()
@ 2013-12-05  9:52 Tiejun Chen
  2013-12-05 15:26 ` Paul Gortmaker
  0 siblings, 1 reply; 5+ messages in thread
From: Tiejun Chen @ 2013-12-05  9:52 UTC (permalink / raw)
  To: bigeasy, tglx; +Cc: linux-rt-users

Any callers should make sure irq is disabled before calling rcu_preempt_qs().

Signed-off-by: Tiejun Chen <tiejun.chen@windriver.com>
---
 kernel/rcutree.c |    5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kernel/rcutree.c b/kernel/rcutree.c
index 7ec834d..6f6d133 100644
--- a/kernel/rcutree.c
+++ b/kernel/rcutree.c
@@ -186,7 +186,12 @@ static void rcu_preempt_qs(int cpu);
 
 void rcu_bh_qs(int cpu)
 {
+	unsigned long flags;
+
+	/* Callers to this function, rcu_preempt_qs(), must disable irqs. */
+	local_irq_save(flags);
 	rcu_preempt_qs(cpu);
+	local_irq_restore(flags);
 }
 #else
 void rcu_bh_qs(int cpu)
-- 
1.7.9.5


^ permalink raw reply related	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2013-12-15 12:01 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2013-12-05  9:52 [PATCH 1/1] rcutree/rcu_bh_qs: disable irq while calling rcu_preempt_qs() Tiejun Chen
2013-12-05 15:26 ` Paul Gortmaker
2013-12-06  1:57   ` "“tiejun.chen”"
2013-12-06 17:13     ` Paul Gortmaker
2013-12-15 12:01       ` Sebastian Andrzej Siewior

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).