浏览代码

[PATCH] alpha smp fix (part #2)

This fixes the bug that caused BUG_ON(!irqs_disabled()) to trigger in
run_posix_cpu_timers() on alpha/smp.  We didn't disable interrupts
properly before calling smp_percpu_timer_interrupt().

We *do* disable interrupts everywhere except this unfortunate
smp_percpu_timer_interrupt().  Fixed thus.

Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Ivan Kokshaysky 20 年之前
父节点
当前提交
4a89a04f1e
共有 1 个文件被更改,包括 2 次插入0 次删除
  1. 2 0
      arch/alpha/kernel/irq_alpha.c

+ 2 - 0
arch/alpha/kernel/irq_alpha.c

@@ -55,6 +55,8 @@ do_entInt(unsigned long type, unsigned long vector,
 #ifdef CONFIG_SMP
 #ifdef CONFIG_SMP
 	  {
 	  {
 		long cpu;
 		long cpu;
+
+		local_irq_disable();
 		smp_percpu_timer_interrupt(regs);
 		smp_percpu_timer_interrupt(regs);
 		cpu = smp_processor_id();
 		cpu = smp_processor_id();
 		if (cpu != boot_cpuid) {
 		if (cpu != boot_cpuid) {