diff options
-rw-r--r-- | arch/s390/kernel/smp.c | 15 |
1 files changed, 10 insertions, 5 deletions
diff --git a/arch/s390/kernel/smp.c b/arch/s390/kernel/smp.c index d0a2745aec7f..7dbe00c76c6b 100644 --- a/arch/s390/kernel/smp.c +++ b/arch/s390/kernel/smp.c | |||
@@ -677,17 +677,21 @@ static unsigned int __initdata possible_cpus; | |||
677 | 677 | ||
678 | void __init smp_setup_cpu_possible_map(void) | 678 | void __init smp_setup_cpu_possible_map(void) |
679 | { | 679 | { |
680 | unsigned int pcpus, cpu; | 680 | unsigned int phy_cpus, pos_cpus, cpu; |
681 | 681 | ||
682 | pcpus = min(smp_count_cpus() + additional_cpus, (unsigned int) NR_CPUS); | 682 | phy_cpus = smp_count_cpus(); |
683 | pos_cpus = min(phy_cpus + additional_cpus, (unsigned int) NR_CPUS); | ||
683 | 684 | ||
684 | if (possible_cpus) | 685 | if (possible_cpus) |
685 | pcpus = min(possible_cpus, (unsigned int) NR_CPUS); | 686 | pos_cpus = min(possible_cpus, (unsigned int) NR_CPUS); |
686 | 687 | ||
687 | for (cpu = 0; cpu < pcpus; cpu++) | 688 | for (cpu = 0; cpu < pos_cpus; cpu++) |
688 | cpu_set(cpu, cpu_possible_map); | 689 | cpu_set(cpu, cpu_possible_map); |
689 | 690 | ||
690 | cpu_present_map = cpu_possible_map; | 691 | phy_cpus = min(phy_cpus, pos_cpus); |
692 | |||
693 | for (cpu = 0; cpu < phy_cpus; cpu++) | ||
694 | cpu_set(cpu, cpu_present_map); | ||
691 | } | 695 | } |
692 | 696 | ||
693 | #ifdef CONFIG_HOTPLUG_CPU | 697 | #ifdef CONFIG_HOTPLUG_CPU |
@@ -843,6 +847,7 @@ void __devinit smp_prepare_boot_cpu(void) | |||
843 | 847 | ||
844 | void smp_cpus_done(unsigned int max_cpus) | 848 | void smp_cpus_done(unsigned int max_cpus) |
845 | { | 849 | { |
850 | cpu_present_map = cpu_possible_map; | ||
846 | } | 851 | } |
847 | 852 | ||
848 | /* | 853 | /* |