linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] request_any_context_irq(): set IRQF_ONESHOT flag to ensure IRQ request
@ 2015-03-03 12:22 Valentin Rothberg
  0 siblings, 0 replies; only message in thread
From: Valentin Rothberg @ 2015-03-03 12:22 UTC (permalink / raw)
  To: tglx, linux-kernel; +Cc: Valentin Rothberg

Since commit 1c6c69525b40eb76de8adf039409722015927dc3 ("genirq: Reject
bogus threaded irq requests") threaded IRQs without a primary handler
need to be requested with IRQF_ONESHOT, otherwise the request will fail.

Generated by: scripts/coccinelle/misc/irqf_oneshot.cocci

Signed-off-by: Valentin Rothberg <Valentin.Rothberg@lip6.fr>
---
The function has been added by commit ae731f8d ("genirq: Introduce
request_any_context_irq()"), so before "Reject bogus threaded irq
requests".  LXR gives me less than a dozen of references on this
function, so it's likely that this code path has not been executed for
a longer while.
---
 kernel/irq/manage.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index c0a1100..76a1610 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -1597,7 +1597,8 @@ int request_any_context_irq(unsigned int irq, irq_handler_t handler,
 
 	if (irq_settings_is_nested_thread(desc)) {
 		ret = request_threaded_irq(irq, NULL, handler,
-					   flags, name, dev_id);
+					   flags | IRQF_ONESHOT, name,
+					   dev_id);
 		return !ret ? IRQC_IS_NESTED : ret;
 	}
 
-- 
1.9.1


^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2015-03-03 12:22 UTC | newest]

Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-03-03 12:22 [PATCH] request_any_context_irq(): set IRQF_ONESHOT flag to ensure IRQ request Valentin Rothberg

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