From: Venki Pallipadi Disable irq balancing on IRQ0. Several SIS chipsets lock up when you try to change affinity of IRQ #0. Signed-off-by: Venkatesh Pallipadi Signed-off-by: Thomas Gleixner Cc: Andi Kleen Cc: Ingo Molnar Cc: john stultz Signed-off-by: Andrew Morton --- arch/x86_64/kernel/time.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff -puN arch/x86_64/kernel/time.c~x86_64-block-irq-balancing-for-timer arch/x86_64/kernel/time.c --- a/arch/x86_64/kernel/time.c~x86_64-block-irq-balancing-for-timer +++ a/arch/x86_64/kernel/time.c @@ -360,7 +360,7 @@ void stop_timer_interrupt(void) static struct irqaction irq0 = { .handler = timer_interrupt, - .flags = IRQF_DISABLED | IRQF_IRQPOLL, + .flags = IRQF_DISABLED | IRQF_IRQPOLL | IRQF_NOBALANCING, .mask = CPU_MASK_NONE, .name = "timer" }; _