Commit b34942fe authored by Bernhard Walle's avatar Bernhard Walle Committed by Linus Torvalds

Add IRQF_IRQPOLL flag on i386

Add IRQF_IRQPOLL to timer interrupts on i386.
Signed-off-by: default avatarBernhard Walle <bwalle@suse.de>
Cc: Andi Kleen <ak@suse.de>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Thomas Gleixner <tglx@linutronix.de>
Cc: Alan Cox <alan@lxorguk.ukuu.org.uk>
Cc: James Bottomley <James.Bottomley@steeleye.com>
Signed-off-by: default avatarAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: default avatarLinus Torvalds <torvalds@linux-foundation.org>
parent e6d828f4
...@@ -81,7 +81,7 @@ void __init trap_init_hook(void) ...@@ -81,7 +81,7 @@ void __init trap_init_hook(void)
static struct irqaction irq0 = { static struct irqaction irq0 = {
.handler = timer_interrupt, .handler = timer_interrupt,
.flags = IRQF_DISABLED | IRQF_NOBALANCING, .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL,
.mask = CPU_MASK_NONE, .mask = CPU_MASK_NONE,
.name = "timer" .name = "timer"
}; };
......
...@@ -116,7 +116,7 @@ void __init pre_setup_arch_hook() ...@@ -116,7 +116,7 @@ void __init pre_setup_arch_hook()
static struct irqaction irq0 = { static struct irqaction irq0 = {
.handler = timer_interrupt, .handler = timer_interrupt,
.flags = IRQF_DISABLED, .flags = IRQF_DISABLED | IRQF_IRQPOLL,
.name = "timer", .name = "timer",
}; };
......
...@@ -42,7 +42,7 @@ void __init trap_init_hook(void) ...@@ -42,7 +42,7 @@ void __init trap_init_hook(void)
static struct irqaction irq0 = { static struct irqaction irq0 = {
.handler = timer_interrupt, .handler = timer_interrupt,
.flags = IRQF_DISABLED | IRQF_NOBALANCING, .flags = IRQF_DISABLED | IRQF_NOBALANCING | IRQF_IRQPOLL,
.mask = CPU_MASK_NONE, .mask = CPU_MASK_NONE,
.name = "timer" .name = "timer"
}; };
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment