The patch titled small irq management simplification has been added to the -mm tree. Its filename is small-irq-management-simplification.patch *** 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 ------------------------------------------------------ Subject: small irq management simplification From: "Jan Beulich" <jbeulich@xxxxxxxxxx> Use mask_ack_irq() where possible. Signed-off-by: Jan Beulich <jbeulich@xxxxxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- kernel/irq/chip.c | 6 ++---- 1 files changed, 2 insertions(+), 4 deletions(-) diff -puN kernel/irq/chip.c~small-irq-management-simplification kernel/irq/chip.c --- a/kernel/irq/chip.c~small-irq-management-simplification +++ a/kernel/irq/chip.c @@ -565,10 +565,8 @@ __set_irq_handler(unsigned int irq, irq_ /* Uninstall? */ if (handle == handle_bad_irq) { - if (desc->chip != &no_irq_chip) { - desc->chip->mask(irq); - desc->chip->ack(irq); - } + if (desc->chip != &no_irq_chip) + mask_ack_irq(desc, irq); desc->status |= IRQ_DISABLED; desc->depth = 1; } _ Patches currently in -mm which might be from jbeulich@xxxxxxxxxx are origin.patch broken-config_compat_vdso-on-i386.patch x86-fatal-kernel-faults-should-update-thread-struct.patch i386-adjustments-to-page-table-dump-during-oops-v3.patch small-irq-management-simplification.patch x86-mtrr-range-check-correction.patch x86-consolidate-smp_send_stop.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