diff options
Diffstat (limited to 'arch/ia64/kernel/smpboot.c')
| -rw-r--r-- | arch/ia64/kernel/smpboot.c | 17 |
1 files changed, 7 insertions, 10 deletions
diff --git a/arch/ia64/kernel/smpboot.c b/arch/ia64/kernel/smpboot.c index 52290547c85b..7700e23034bb 100644 --- a/arch/ia64/kernel/smpboot.c +++ b/arch/ia64/kernel/smpboot.c | |||
| @@ -581,14 +581,14 @@ smp_build_cpu_map (void) | |||
| 581 | 581 | ||
| 582 | ia64_cpu_to_sapicid[0] = boot_cpu_id; | 582 | ia64_cpu_to_sapicid[0] = boot_cpu_id; |
| 583 | cpus_clear(cpu_present_map); | 583 | cpus_clear(cpu_present_map); |
| 584 | cpu_set(0, cpu_present_map); | 584 | set_cpu_present(0, true); |
| 585 | cpu_set(0, cpu_possible_map); | 585 | set_cpu_possible(0, true); |
| 586 | for (cpu = 1, i = 0; i < smp_boot_data.cpu_count; i++) { | 586 | for (cpu = 1, i = 0; i < smp_boot_data.cpu_count; i++) { |
| 587 | sapicid = smp_boot_data.cpu_phys_id[i]; | 587 | sapicid = smp_boot_data.cpu_phys_id[i]; |
| 588 | if (sapicid == boot_cpu_id) | 588 | if (sapicid == boot_cpu_id) |
| 589 | continue; | 589 | continue; |
| 590 | cpu_set(cpu, cpu_present_map); | 590 | set_cpu_present(cpu, true); |
| 591 | cpu_set(cpu, cpu_possible_map); | 591 | set_cpu_possible(cpu, true); |
| 592 | ia64_cpu_to_sapicid[cpu] = sapicid; | 592 | ia64_cpu_to_sapicid[cpu] = sapicid; |
| 593 | cpu++; | 593 | cpu++; |
| 594 | } | 594 | } |
| @@ -626,12 +626,9 @@ smp_prepare_cpus (unsigned int max_cpus) | |||
| 626 | */ | 626 | */ |
| 627 | if (!max_cpus) { | 627 | if (!max_cpus) { |
| 628 | printk(KERN_INFO "SMP mode deactivated.\n"); | 628 | printk(KERN_INFO "SMP mode deactivated.\n"); |
| 629 | cpus_clear(cpu_online_map); | 629 | init_cpu_online(cpumask_of(0)); |
| 630 | cpus_clear(cpu_present_map); | 630 | init_cpu_present(cpumask_of(0)); |
| 631 | cpus_clear(cpu_possible_map); | 631 | init_cpu_possible(cpumask_of(0)); |
| 632 | cpu_set(0, cpu_online_map); | ||
| 633 | cpu_set(0, cpu_present_map); | ||
| 634 | cpu_set(0, cpu_possible_map); | ||
| 635 | return; | 632 | return; |
| 636 | } | 633 | } |
| 637 | } | 634 | } |
