The patch titled genirq: better warning on irqchip->set_type() failure has been added to the -mm tree. Its filename is genirq-better-warning-on-irqchip-set_type-failure.patch Before you just go and hit "reply", please: a) Consider who else should be cc'ed b) Prefer to cc a suitable mailing list as well c) Ideally: find the original patch on the mailing list and do a reply-to-all to that, adding suitable additional cc's *** Remember to use Documentation/SubmitChecklist when testing your code *** See http://www.zip.com.au/~akpm/linux/patches/stuff/added-to-mm.txt to find out what to do about this The current -mm tree may be found at http://userweb.kernel.org/~akpm/mmotm/ ------------------------------------------------------ Subject: genirq: better warning on irqchip->set_type() failure From: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> While I'm glad to finally see the hole fixed whereby passing an invalid IRQ trigger type to request_irq() would be ignored, the current diagnostic isn't quite useful. Fixed by also listing the trigger type which was rejected. Signed-off-by: David Brownell <dbrownell@xxxxxxxxxxxxxxxxxxxxx> Acked-by: Uwe Kleine-König <Uwe.Kleine-Koenig@xxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/irq/manage.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff -puN kernel/irq/manage.c~genirq-better-warning-on-irqchip-set_type-failure kernel/irq/manage.c --- a/kernel/irq/manage.c~genirq-better-warning-on-irqchip-set_type-failure +++ a/kernel/irq/manage.c @@ -330,7 +330,8 @@ static int __irq_set_trigger(struct irq_ ret = chip->set_type(irq, flags & IRQF_TRIGGER_MASK); if (ret) - pr_err("setting flow type for irq %u failed (%pF)\n", + pr_err("setting trigger mode %d for irq %u failed (%pF)\n", + (int)(flags & IRQF_TRIGGER_MASK), irq, chip->set_type); return ret; _ Patches currently in -mm which might be from dbrownell@xxxxxxxxxxxxxxxxxxxxx are origin.patch arm-fix-have_clk-merge-goof.patch mpc52xx_psc_spi-fix-block-transfer.patch spi_s3c24xx-really-assign-busnum.patch gpio-fix-build-on-config_gpio_sysfs=n.patch rtc-dont-return-ebusy-when-mutex_lock_interruptible-fails.patch linux-next.patch spi-new-orion_spi-driver.patch genirq-better-warning-on-irqchip-set_type-failure.patch -- To unsubscribe from this list: send the line "unsubscribe mm-commits" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html