* [PATCH] linux/interrupt.h: allow "guard" notation to disable and reenable IRQ
@ 2024-05-30 18:07 Dmitry Torokhov
2024-06-04 18:51 ` Thomas Gleixner
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2024-05-30 18:07 UTC (permalink / raw)
To: linux-kernel; +Cc: Thomas Gleixner, Peter Zijlstra
Drivers often need to first disable an interrupt, carry out some
action, and then reenable the interrupt. Introduce support for the
"guard" notation for this so that the following is possible:
...
scoped_cond_guard(mutex_intr, return -EINTR, &data->sysfs_mutex) {
guard(disable_irq)(&client->irq);
error = elan_acquire_baseline(data);
if (error)
return error;
}
...
Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
---
include/linux/interrupt.h | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/include/linux/interrupt.h b/include/linux/interrupt.h
index 5c9bdd3ffccc..3a36e64119c8 100644
--- a/include/linux/interrupt.h
+++ b/include/linux/interrupt.h
@@ -5,6 +5,7 @@
#include <linux/kernel.h>
#include <linux/bitops.h>
+#include <linux/cleanup.h>
#include <linux/cpumask.h>
#include <linux/irqreturn.h>
#include <linux/irqnr.h>
@@ -235,6 +236,9 @@ extern void enable_percpu_irq(unsigned int irq, unsigned int type);
extern bool irq_percpu_is_enabled(unsigned int irq);
extern void irq_wake_thread(unsigned int irq, void *dev_id);
+DEFINE_LOCK_GUARD_1(disable_irq, int,
+ disable_irq(*_T->lock), enable_irq(*_T->lock))
+
extern void disable_nmi_nosync(unsigned int irq);
extern void disable_percpu_nmi(unsigned int irq);
extern void enable_nmi(unsigned int irq);
--
2.45.1.288.g0e0cd299f1-goog
--
Dmitry
^ permalink raw reply related [flat|nested] 4+ messages in thread* Re: [PATCH] linux/interrupt.h: allow "guard" notation to disable and reenable IRQ
2024-05-30 18:07 [PATCH] linux/interrupt.h: allow "guard" notation to disable and reenable IRQ Dmitry Torokhov
@ 2024-06-04 18:51 ` Thomas Gleixner
2024-06-04 20:55 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Thomas Gleixner @ 2024-06-04 18:51 UTC (permalink / raw)
To: Dmitry Torokhov, linux-kernel; +Cc: Peter Zijlstra
On Thu, May 30 2024 at 11:07, Dmitry Torokhov wrote:
> Drivers often need to first disable an interrupt, carry out some
> action, and then reenable the interrupt. Introduce support for the
> "guard" notation for this so that the following is possible:
>
> ...
>
> scoped_cond_guard(mutex_intr, return -EINTR, &data->sysfs_mutex) {
> guard(disable_irq)(&client->irq);
>
> error = elan_acquire_baseline(data);
> if (error)
> return error;
> }
>
> ...
>
> Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
I assume you want to carry this through the input tree, so you can
modify the drivers.
If so:
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] linux/interrupt.h: allow "guard" notation to disable and reenable IRQ
2024-06-04 18:51 ` Thomas Gleixner
@ 2024-06-04 20:55 ` Dmitry Torokhov
2024-06-06 21:45 ` Dmitry Torokhov
0 siblings, 1 reply; 4+ messages in thread
From: Dmitry Torokhov @ 2024-06-04 20:55 UTC (permalink / raw)
To: Thomas Gleixner; +Cc: linux-kernel, Peter Zijlstra
On Tue, Jun 04, 2024 at 08:51:06PM +0200, Thomas Gleixner wrote:
> On Thu, May 30 2024 at 11:07, Dmitry Torokhov wrote:
> > Drivers often need to first disable an interrupt, carry out some
> > action, and then reenable the interrupt. Introduce support for the
> > "guard" notation for this so that the following is possible:
> >
> > ...
> >
> > scoped_cond_guard(mutex_intr, return -EINTR, &data->sysfs_mutex) {
> > guard(disable_irq)(&client->irq);
> >
> > error = elan_acquire_baseline(data);
> > if (error)
> > return error;
> > }
> >
> > ...
> >
> > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
>
> I assume you want to carry this through the input tree, so you can
> modify the drivers.
>
> If so:
>
> Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Thanks Thomas. I'll stick this patch into an immutable branch off v6.9
in case you (or someone else) wants to pull it in and start using it.
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread* Re: [PATCH] linux/interrupt.h: allow "guard" notation to disable and reenable IRQ
2024-06-04 20:55 ` Dmitry Torokhov
@ 2024-06-06 21:45 ` Dmitry Torokhov
0 siblings, 0 replies; 4+ messages in thread
From: Dmitry Torokhov @ 2024-06-06 21:45 UTC (permalink / raw)
To: Thomas Gleixner; +Cc: linux-kernel, Peter Zijlstra
On Tue, Jun 04, 2024 at 01:55:34PM -0700, Dmitry Torokhov wrote:
> On Tue, Jun 04, 2024 at 08:51:06PM +0200, Thomas Gleixner wrote:
> > On Thu, May 30 2024 at 11:07, Dmitry Torokhov wrote:
> > > Drivers often need to first disable an interrupt, carry out some
> > > action, and then reenable the interrupt. Introduce support for the
> > > "guard" notation for this so that the following is possible:
> > >
> > > ...
> > >
> > > scoped_cond_guard(mutex_intr, return -EINTR, &data->sysfs_mutex) {
> > > guard(disable_irq)(&client->irq);
> > >
> > > error = elan_acquire_baseline(data);
> > > if (error)
> > > return error;
> > > }
> > >
> > > ...
> > >
> > > Signed-off-by: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> >
> > I assume you want to carry this through the input tree, so you can
> > modify the drivers.
> >
> > If so:
> >
> > Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
>
> Thanks Thomas. I'll stick this patch into an immutable branch off v6.9
> in case you (or someone else) wants to pull it in and start using it.
I made:
git://git.kernel.org/pub/scm/linux/kernel/git/dtor/input.git ib/6.9-disable-irq-guard
Thanks.
--
Dmitry
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2024-06-06 21:45 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-05-30 18:07 [PATCH] linux/interrupt.h: allow "guard" notation to disable and reenable IRQ Dmitry Torokhov
2024-06-04 18:51 ` Thomas Gleixner
2024-06-04 20:55 ` Dmitry Torokhov
2024-06-06 21:45 ` Dmitry Torokhov
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox