projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
d85a60d
)
Add IRQF_IRQPOLL flag on x86_64
author
Bernhard Walle
<
[email protected]
>
Tue, 8 May 2007 07:35:28 +0000
(
00:35
-0700)
committer
Linus Torvalds
<
[email protected]
>
Tue, 8 May 2007 18:15:22 +0000
(11:15 -0700)
Add IRQF_IRQPOLL for the timer interrupt on x86_64.
Signed-off-by: Bernhard Walle <
[email protected]
>
Cc: Andi Kleen <
[email protected]
>
Cc: Ingo Molnar <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc: Alan Cox <
[email protected]
>
Signed-off-by: Andrew Morton <
[email protected]
>
Signed-off-by: Linus Torvalds <
[email protected]
>
arch/x86_64/kernel/time.c
patch
|
blob
|
history
diff --git
a/arch/x86_64/kernel/time.c
b/arch/x86_64/kernel/time.c
index 0652e173813b82f6a7b99c4f1f8a41d5a6e085f3..4a0895bacf5166197b0054706c7830bfe2bdf522 100644
(file)
--- 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)