From: Bernhard Walle Date: Tue, 8 May 2007 07:35:28 +0000 (-0700) Subject: Add IRQF_IRQPOLL flag on x86_64 X-Git-Url: http://drtracing.org/?a=commitdiff_plain;h=e6d828f44655bb85e67fda79fd0028a56168e4e0;p=deliverable%2Flinux.git Add IRQF_IRQPOLL flag on x86_64 Add IRQF_IRQPOLL for the timer interrupt on x86_64. Signed-off-by: Bernhard Walle Cc: Andi Kleen Cc: Ingo Molnar Cc: Thomas Gleixner Cc: Alan Cox Signed-off-by: Andrew Morton Signed-off-by: Linus Torvalds --- diff --git a/arch/x86_64/kernel/time.c b/arch/x86_64/kernel/time.c index 0652e173813b..4a0895bacf51 100644 --- a/arch/x86_64/kernel/time.c +++ b/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)