aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Brownell <dbrownell@users.sourceforge.net>2008-12-01 17:31:37 -0500
committerIngo Molnar <mingo@elte.hu>2008-12-02 05:25:29 -0500
commit470c66239ef0336429b35345f3f615d47341e13b (patch)
tree8816b081041daa9b5f8332b0c803678cbbd04e1f
parent7807fafa52b990abb321f1212416c71e64523ecb (diff)
genirq: warn when IRQF_DISABLED may be ignored
Impact: emit new warning We periodically waste time tracking down problems from the genirq framework not respecting IRQF_DISABLED for some shared IRQ cases. Linus views this as "will not fix", but we're still left with the bugs caused by this misbehavior. This patch adds a nag message in request_irq(), so that drivers can fix their IRQ handlers to avoid this problem. Note that developers will never see the relevant bugs when they run with LOCKDEP, so it's no wonder these bugs are hard to find. (That also means LOCKDEP is overlooking some IRQ-related bugs involving IRQ handlers that don't set IRQF_DISABLED...) Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Signed-off-by: Ingo Molnar <mingo@elte.hu>
-rw-r--r--kernel/irq/manage.c12
1 files changed, 12 insertions, 0 deletions
diff --git a/kernel/irq/manage.c b/kernel/irq/manage.c
index c498a1b8c621..7fd891c3a33d 100644
--- a/kernel/irq/manage.c
+++ b/kernel/irq/manage.c
@@ -635,6 +635,18 @@ int request_irq(unsigned int irq, irq_handler_t handler,
635 struct irq_desc *desc; 635 struct irq_desc *desc;
636 int retval; 636 int retval;
637 637
638 /*
639 * handle_IRQ_event() always ignores IRQF_DISABLED except for
640 * the _first_ irqaction (sigh). That can cause oopsing, but
641 * the behavior is classified as "will not fix" so we need to
642 * start nudging drivers away from using that idiom.
643 */
644 if ((irqflags & (IRQF_SHARED|IRQF_DISABLED))
645 == (IRQF_SHARED|IRQF_DISABLED))
646 pr_warning("IRQ %d/%s: IRQF_DISABLED is not "
647 "guaranteed on shared IRQs\n",
648 irq, devname);
649
638#ifdef CONFIG_LOCKDEP 650#ifdef CONFIG_LOCKDEP
639 /* 651 /*
640 * Lockdep wants atomic interrupt handlers: 652 * Lockdep wants atomic interrupt handlers: