The patch titled small irq management simplification has been removed from the -mm tree. Its filename was small-irq-management-simplification.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ 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 file 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 adjust-legacy-ide-resource-setting-v2.patch i386-adjustments-to-page-table-dump-during-oops-v3.patch i386-adjustments-to-page-table-dump-during-oops-v4.patch x86-mtrr-range-check-correction.patch x86-consolidate-smp_send_stop.patch fix-i386-and-x86_64-fault-information-pollution.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