linux-rt-users.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] softirq: add irq off checking for __raise_softirq_irqoff
@ 2020-08-06  4:07 Jiafei Pan
  2020-08-13  3:03 ` Jiafei Pan
                   ` (2 more replies)
  0 siblings, 3 replies; 9+ messages in thread
From: Jiafei Pan @ 2020-08-06  4:07 UTC (permalink / raw)
  To: peterz, mingo, tglx, rostedt, romain.perier, will
  Cc: linux-kernel, linux-rt-users, jiafei.pan, leoyang.li,
	vladimir.oltean, Jiafei Pan

__raise_softirq_irqoff will update per-CPU mask of pending softirqs,
it need to be called in irq disabled context in order to keep it atomic
operation, otherwise it will be interrupted by hardware interrupt,
and per-CPU softirqs pending mask will be corrupted, the result is
there will be unexpected issue, for example hrtimer soft irq will
be losed and soft hrtimer will never be expire and handled.

Adding irqs disabled checking here to provide warning in irqs enabled
context.

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
---
 kernel/softirq.c | 5 +++++
 1 file changed, 5 insertions(+)

diff --git a/kernel/softirq.c b/kernel/softirq.c
index bf88d7f62433..11f61e54a3ae 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -481,6 +481,11 @@ void raise_softirq(unsigned int nr)
 
 void __raise_softirq_irqoff(unsigned int nr)
 {
+	/* This function can only be called in irq disabled context,
+	 * otherwise or_softirq_pending will be interrupted by hardware
+	 * interrupt, so that there will be unexpected issue.
+	 */
+	WARN_ON_ONCE(!irqs_disabled());
 	trace_softirq_raise(nr);
 	or_softirq_pending(1UL << nr);
 }
-- 
2.17.1


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

end of thread, other threads:[~2020-08-14  4:17 UTC | newest]

Thread overview: 9+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-06  4:07 [PATCH] softirq: add irq off checking for __raise_softirq_irqoff Jiafei Pan
2020-08-13  3:03 ` Jiafei Pan
2020-08-13 14:56   ` Steven Rostedt
2020-08-14  2:21     ` [EXT] " Jiafei Pan
2020-08-14  2:24       ` Steven Rostedt
2020-08-14  4:17     ` Jiafei Pan
2020-08-13  5:58 ` Peter Zijlstra
2020-08-14  3:28   ` [EXT] " Jiafei Pan
2020-08-13  7:33 ` Thomas Gleixner

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).