On Friday 27 February 2009, Felipe Balbi wrote: > > > > +static irqreturn_t powerbutton_irq(int irq, void *dev_id) > > > +{ > > > + int err; > > > + u8 value; > > > + > > > +#ifdef CONFIG_LOCKDEP > > > + /* WORKAROUND for lockdep forcing IRQF_DISABLED on us, which > > > + * we don't want and can't tolerate. Although it might be > > > + * friendlier not to borrow this thread context... > > > + */ > > > + local_irq_enable(); > > > +#endif > > > + > > > + err = twl4030_i2c_read_u8(TWL4030_MODULE_PM_MASTER, &value, > > > + STS_HW_CONDITIONS); And right there is the reason we can't tolerate IRQF_DISABLED: this IRQ handler must run in a thread, since it needs to make sleeping calls through the I2C stack. (Typically using high speed I2C -- 2.6 MHz or more -- so it's not pokey slow; but this IRQ handler thread must still sleep.) > > > + ... > > > > Tell us some more about this lockdep thing ;) See kernel/irq/manage.c ... it forces IRQF_DISABLED on. That periodically hiddes locking bugs, because it makes debug kernels (with lockdep) act *very* differently from normal ones "in the field" (no lockdep). It also prevents some drivers from working with lockdep. Two that come immediatly to mind are the AT91 and OMAP1 MMC/SD drivers. (Though I suppose they might work if they grow an #ifdef like above.) The root cause is that the lock dependency analysis is currently making a troublesome simplifying assumption: all IRQ handlers disable IRQs. At this point I think it's fair to say most do NOT disable IRQs. Peter Zijlstra was really hoping to Tom-Sawyer a fix to this issue out of someone, but I think he gave up on that approach a while back. :) I'd still like to see the appended patch merge, so that developers at least get a heads-up when lockdep introduces adds such gremlins to system testing. Or, various drivers could depend on !LOCKDEP ... but that would only help (a little) *after* bugs get tracked down to "root cause == lockdep", wasting much time. > David Brownell can comment better about it, that came from him when we > were converting twl4030 driver(s) to a more readable form :-) > > If you take a look at all twl4030's children, you'll all of them needed > that. > > Dave, could you comment, please ? There are actually two issues. The lockdep issue is one ... the above #ifdef suffices to work around it for all the TWL4030 (family) IRQs. The other is that Linux needs real support for threaded interrupts. Almost every I2C (or SPI) device that raises an IRQ needs its IRQ handler to run in a thread, and most of them have the same type of workqueue-based hack to get such a thread. (Some others have bugs instead...) Obviously, if any threaded IRQ handler grabs a mutex, but lockdep has disabled IRQs, trouble ensues... I've lost track of the status of the threaded IRQ stuff, but the last proposal I saw from Thomas Gleixner looked like it omitted IRQ chaining support that TWL4030 type chips need. See drivers/mfd/twl4030-irq.c for what AFAIK is the only in-tree example of an irq_chip where the guts of the irq_chip methods themselves must run in threads (to mask/ack/... IRQs using i2c registers). Presumably the threaded IRQ support will offer cleaner ways to handle such stuff. - Dave ======== CUT HERE From: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> When lockdep turns on IRQF_DISABLED, emit a warning to make it easier to track down problems this introduces in drivers that expect handlers to run with IRQs enabled. Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> --- kernel/irq/manage.c | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) --- a/kernel/irq/manage.c +++ b/kernel/irq/manage.c @@ -689,7 +689,11 @@ int request_irq(unsigned int irq, irq_ha /* * Lockdep wants atomic interrupt handlers: */ - irqflags |= IRQF_DISABLED; + if (!(irqflags & IRQF_DISABLED)) { + pr_warning("IRQ %d/%s: lockdep sets IRQF_DISABLED\n", + irq, devname); + irqflags |= IRQF_DISABLED; + } #endif /* * Sanity-check: shared interrupts must pass in a real dev-ID, -- To unsubscribe from this list: send the line "unsubscribe linux-input" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html