diff options
Diffstat (limited to 'arch/parisc/kernel/smp.c')
-rw-r--r-- | arch/parisc/kernel/smp.c | 7 |
1 files changed, 6 insertions, 1 deletions
diff --git a/arch/parisc/kernel/smp.c b/arch/parisc/kernel/smp.c index 30c28ab14540..4065b5e48c9d 100644 --- a/arch/parisc/kernel/smp.c +++ b/arch/parisc/kernel/smp.c | |||
@@ -292,10 +292,15 @@ smp_cpu_init(int cpunum) | |||
292 | * Slaves start using C here. Indirectly called from smp_slave_stext. | 292 | * Slaves start using C here. Indirectly called from smp_slave_stext. |
293 | * Do what start_kernel() and main() do for boot strap processor (aka monarch) | 293 | * Do what start_kernel() and main() do for boot strap processor (aka monarch) |
294 | */ | 294 | */ |
295 | void __init smp_callin(void) | 295 | void __init smp_callin(unsigned long pdce_proc) |
296 | { | 296 | { |
297 | int slave_id = cpu_now_booting; | 297 | int slave_id = cpu_now_booting; |
298 | 298 | ||
299 | #ifdef CONFIG_64BIT | ||
300 | WARN_ON(((unsigned long)(PAGE0->mem_pdc_hi) << 32 | ||
301 | | PAGE0->mem_pdc) != pdce_proc); | ||
302 | #endif | ||
303 | |||
299 | smp_cpu_init(slave_id); | 304 | smp_cpu_init(slave_id); |
300 | preempt_disable(); | 305 | preempt_disable(); |
301 | 306 | ||