commit | de1db6ffe2d802460b7e9f2c1e354066e000d6e6 | [log] [tgz] |
---|---|---|
author | Ralf Baechle <ralf@linux-mips.org> | Sun Feb 13 18:53:26 2005 +0000 |
committer | Ralf Baechle <ralf@linux-mips.org> | Sat Oct 29 19:30:32 2005 +0100 |
tree | c5df61f134ed94dd48b3624ffecd8d7f02a22caf | |
parent | 85b6e8184b798d06c854463cdd6c63dd1d4ff47c [diff] |
It's unwise to disable all interrupts of the boot node ;-) Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
diff --git a/arch/mips/sgi-ip27/ip27-smp.c b/arch/mips/sgi-ip27/ip27-smp.c index 17f768c..243f2ab 100644 --- a/arch/mips/sgi-ip27/ip27-smp.c +++ b/arch/mips/sgi-ip27/ip27-smp.c
@@ -156,8 +156,11 @@ { cnodeid_t cnode; - for_each_online_node(cnode) + for_each_online_node(cnode) { + if (cnode == 0) + continue; intr_clear_all(COMPACT_TO_NASID_NODEID(cnode)); + } replicate_kernel_text();