All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2] softirq: add irq off checking for __raise_softirq_irqoff
@ 2020-08-14  4:55 Jiafei Pan
  2020-09-10  2:30 ` Jiafei Pan
  2020-09-16 13:21 ` [tip: irq/core] softirq: Add debug check to __raise_softirq_irqoff() tip-bot2 for Jiafei Pan
  0 siblings, 2 replies; 3+ messages in thread
From: Jiafei Pan @ 2020-08-14  4:55 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.

Enable CONFIG_PROVE_LOCKING to use lockdep_assert_irqs_disabled() to
check hardirqs and softirqs status, and provide warning in irqs enabled
context.

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
---
Changes in v2:
- use lockdep_assert_irqs_disabled()
- removed extra comments
- changed commit message

 kernel/softirq.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/softirq.c b/kernel/softirq.c
index bf88d7f62433..09229ad82209 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -481,6 +481,7 @@ void raise_softirq(unsigned int nr)
 
 void __raise_softirq_irqoff(unsigned int nr)
 {
+	lockdep_assert_irqs_disabled();
 	trace_softirq_raise(nr);
 	or_softirq_pending(1UL << nr);
 }
-- 
2.17.1


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

* RE: [PATCH v2] softirq: add irq off checking for __raise_softirq_irqoff
  2020-08-14  4:55 [PATCH v2] softirq: add irq off checking for __raise_softirq_irqoff Jiafei Pan
@ 2020-09-10  2:30 ` Jiafei Pan
  2020-09-16 13:21 ` [tip: irq/core] softirq: Add debug check to __raise_softirq_irqoff() tip-bot2 for Jiafei Pan
  1 sibling, 0 replies; 3+ messages in thread
From: Jiafei Pan @ 2020-09-10  2:30 UTC (permalink / raw)
  To: Jiafei Pan, peterz, mingo, tglx, rostedt, romain.perier, will
  Cc: linux-kernel, linux-rt-users, Leo Li, Vladimir Oltean, Jiafei Pan

@Thomas Gleixner, any more comments for v2 patch? Can we merge it? Thanks.

Best Regards,
Jiafei.

> -----Original Message-----
> From: Jiafei Pan <Jiafei.Pan@nxp.com>
> Sent: Friday, August 14, 2020 12:55 PM
> To: peterz@infradead.org; mingo@kernel.org; tglx@linutronix.de;
> rostedt@goodmis.org; romain.perier@gmail.com; will@kernel.org
> Cc: linux-kernel@vger.kernel.org; linux-rt-users@vger.kernel.org; Jiafei Pan
> <jiafei.pan@nxp.com>; Leo Li <leoyang.li@nxp.com>; Vladimir Oltean
> <vladimir.oltean@nxp.com>; Jiafei Pan <jiafei.pan@nxp.com>
> Subject: [PATCH v2] softirq: add irq off checking for __raise_softirq_irqoff
> 
> __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.
> 
> Enable CONFIG_PROVE_LOCKING to use lockdep_assert_irqs_disabled() to
> check hardirqs and softirqs status, and provide warning in irqs enabled
> context.
> 
> Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
> ---
> Changes in v2:
> - use lockdep_assert_irqs_disabled()
> - removed extra comments
> - changed commit message
> 
>  kernel/softirq.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/kernel/softirq.c b/kernel/softirq.c
> index bf88d7f62433..09229ad82209 100644
> --- a/kernel/softirq.c
> +++ b/kernel/softirq.c
> @@ -481,6 +481,7 @@ void raise_softirq(unsigned int nr)
> 
>  void __raise_softirq_irqoff(unsigned int nr)
>  {
> +	lockdep_assert_irqs_disabled();
>  	trace_softirq_raise(nr);
>  	or_softirq_pending(1UL << nr);
>  }
> --
> 2.17.1


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

* [tip: irq/core] softirq: Add debug check to __raise_softirq_irqoff()
  2020-08-14  4:55 [PATCH v2] softirq: add irq off checking for __raise_softirq_irqoff Jiafei Pan
  2020-09-10  2:30 ` Jiafei Pan
@ 2020-09-16 13:21 ` tip-bot2 for Jiafei Pan
  1 sibling, 0 replies; 3+ messages in thread
From: tip-bot2 for Jiafei Pan @ 2020-09-16 13:21 UTC (permalink / raw)
  To: linux-tip-commits; +Cc: Jiafei Pan, Thomas Gleixner, x86, LKML

The following commit has been merged into the irq/core branch of tip:

Commit-ID:     cdabce2e3dff7e4bcef73473987618569d178af3
Gitweb:        https://git.kernel.org/tip/cdabce2e3dff7e4bcef73473987618569d178af3
Author:        Jiafei Pan <Jiafei.Pan@nxp.com>
AuthorDate:    Fri, 14 Aug 2020 12:55:22 +08:00
Committer:     Thomas Gleixner <tglx@linutronix.de>
CommitterDate: Wed, 16 Sep 2020 15:18:56 +02:00

softirq: Add debug check to __raise_softirq_irqoff()

__raise_softirq_irqoff() must be called with interrupts disabled to protect
the per CPU softirq pending state update against an interrupt and soft
interrupt handling on return from interrupt.

Add a lockdep assertion to validate the calling convention.

[ tglx: Massaged changelog ]

Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Link: https://lore.kernel.org/r/20200814045522.45719-1-Jiafei.Pan@nxp.com

---
 kernel/softirq.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/kernel/softirq.c b/kernel/softirq.c
index bf88d7f..09229ad 100644
--- a/kernel/softirq.c
+++ b/kernel/softirq.c
@@ -481,6 +481,7 @@ void raise_softirq(unsigned int nr)
 
 void __raise_softirq_irqoff(unsigned int nr)
 {
+	lockdep_assert_irqs_disabled();
 	trace_softirq_raise(nr);
 	or_softirq_pending(1UL << nr);
 }

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

end of thread, other threads:[~2020-09-16 18:03 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2020-08-14  4:55 [PATCH v2] softirq: add irq off checking for __raise_softirq_irqoff Jiafei Pan
2020-09-10  2:30 ` Jiafei Pan
2020-09-16 13:21 ` [tip: irq/core] softirq: Add debug check to __raise_softirq_irqoff() tip-bot2 for Jiafei Pan

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.