Messages in this thread Patch in this message |  | | | From | David Brownell <> | | Subject | Re: PATCH: 2.6.26-rc8: Fix IRQF_DISABLED for shared interrupts | | Date | Mon, 30 Jun 2008 12:57:48 -0700 |
| |
On Monday 30 June 2008, David Brownell wrote: > > On Monday 30 June 2008, Stefan Becker wrote: > > It seems IRQF_SHARED | IRQF_DISABLED has already been discussed several > > times on LKML: > > Given that, I'm surprised that nobody has added a warning that > prints when those two flags are both passed to request_irq().
Well, here's a fix for that little problem.
Notice the rude interaction with LOCKDEP too. If you used that, you'd never have seen the behavior you saw. And if you did use that, with non-IRQF_DISABLED interrupt handlers, you'd wrongly believe some IRQ code paths always ran with IRQs disabled...
- Dave
===== CUT HERE We periodically have problems that get tracked down to the IRQ 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 will be missing some IRQ-related bugs involving IRQ handlers that don't set IRQF_DISABLED.)
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net> --- kernel/irq/manage.c | 12 ++++++++++++ 1 file changed, 12 insertions(+) --- a/kernel/irq/manage.c 2008-06-30 12:28:58.000000000 -0700 +++ b/kernel/irq/manage.c 2008-06-30 12:46:54.000000000 -0700 @@ -539,6 +539,18 @@ int request_irq(unsigned int irq, irq_ha struct irqaction *action; int retval; + /* + * handle_IRQ_event() always ignores IRQF_DISABLED except for + * the _first_ irqaction (sigh). That can cause oopsing, but + * the behavior is classified as "will not fix" so we need to + * start nudging drivers away from using that idiom. + */ + if ((irqflags & (IRQF_SHARED|IRQF_DISABLED)) + == (IRQF_SHARED|IRQF_DISABLED)) + pr_warning("IRQ %d/%s: IRQF_DISABLED is not " + "guaranteed on shared IRQs\n", + irq, devname); + #ifdef CONFIG_LOCKDEP /* * Lockdep wants atomic interrupt handlers:
|  |