Skip to content

Commit

Permalink
It's unwise to disable all interrupts of the boot node ;-)
Browse files Browse the repository at this point in the history
Signed-off-by: Ralf Baechle <ralf@linux-mips.org>
  • Loading branch information
Ralf Baechle committed Oct 29, 2005
1 parent 85b6e81 commit de1db6f
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion arch/mips/sgi-ip27/ip27-smp.c
Original file line number Diff line number Diff line change
Expand Up @@ -156,8 +156,11 @@ void __init prom_prepare_cpus(unsigned int max_cpus)
{
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();

Expand Down

0 comments on commit de1db6f

Please sign in to comment.