The patch titled Add IRQF_IRQPOLL flag on x86_64 has been removed from the -mm tree. Its filename was add-irqf_irqpoll-flag-on-x86_64.patch This patch was dropped because it was merged into mainline or a subsystem tree ------------------------------------------------------ Subject: Add IRQF_IRQPOLL flag on x86_64 From: Bernhard Walle <bwalle@xxxxxxx> Add IRQF_IRQPOLL for the timer interrupt on x86_64. Signed-off-by: Bernhard Walle <bwalle@xxxxxxx> Cc: Andi Kleen <ak@xxxxxxx> Cc: Ingo Molnar <mingo@xxxxxxx> Cc: Thomas Gleixner <tglx@xxxxxxxxxxxxx> Cc: Alan Cox <alan@xxxxxxxxxxxxxxxxxxx> Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx> --- arch/x86_64/kernel/time.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff -puN arch/x86_64/kernel/time.c~add-irqf_irqpoll-flag-on-x86_64 arch/x86_64/kernel/time.c --- a/arch/x86_64/kernel/time.c~add-irqf_irqpoll-flag-on-x86_64 +++ a/arch/x86_64/kernel/time.c @@ -363,7 +363,10 @@ void stop_timer_interrupt(void) } static struct irqaction irq0 = { - timer_interrupt, IRQF_DISABLED, CPU_MASK_NONE, "timer", NULL, NULL + .handler = timer_interrupt, + .flags = IRQF_DISABLED | IRQF_IRQPOLL, + .mask = CPU_MASK_NONE, + .name = "timer" }; void __init time_init(void) _ Patches currently in -mm which might be from bwalle@xxxxxxx are origin.patch git-r8169.patch use-unchecked_isa_dma-in-sd_revalidate_disk.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