Add IRQF_IRQPOLL for the timer interrupt on x86_64. Signed-off-by: Bernhard Walle Cc: Andi Kleen --- arch/x86_64/kernel/time.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) Index: linux-2.6.21-rc5-mm2/arch/x86_64/kernel/time.c =================================================================== --- linux-2.6.21-rc5-mm2.orig/arch/x86_64/kernel/time.c +++ linux-2.6.21-rc5-mm2/arch/x86_64/kernel/time.c @@ -317,7 +317,10 @@ void __init 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) -- - To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/