]> bbs.cooldavid.org Git - net-next-2.6.git/commitdiff
sparc64: Prevent sparc64 from invoking irq handlers on offline CPUs
authorPaul E. McKenney <paulmck@linux.vnet.ibm.com>
Wed, 3 Sep 2008 09:15:30 +0000 (02:15 -0700)
committerDavid S. Miller <davem@davemloft.net>
Wed, 3 Sep 2008 09:15:30 +0000 (02:15 -0700)
Make sparc64 refrain from clearing a given to-be-offlined CPU's bit in the
cpu_online_mask until it has processed pending irqs.  This change
prevents other CPUs from being blindsided by an apparently offline CPU
nevertheless changing globally visible state.

Signed-off-by: Paul E. McKenney <paulmck@linux.vnet.ibm.com>
Signed-off-by: David S. Miller <davem@davemloft.net>
arch/sparc64/kernel/smp.c

index 0712a445f98e181f4f4fa4e2fb1f57f52cb35c03..2be166c544ca42a27222325cc61001b5190e368c 100644 (file)
@@ -1303,10 +1303,6 @@ int __cpu_disable(void)
        c->core_id = 0;
        c->proc_id = -1;
 
-       ipi_call_lock();
-       cpu_clear(cpu, cpu_online_map);
-       ipi_call_unlock();
-
        smp_wmb();
 
        /* Make sure no interrupts point to this cpu.  */
@@ -1316,6 +1312,10 @@ int __cpu_disable(void)
        mdelay(1);
        local_irq_disable();
 
+       ipi_call_lock();
+       cpu_clear(cpu, cpu_online_map);
+       ipi_call_unlock();
+
        return 0;
 }