[PATCH] ARM SMP: Rename cpu_present_mask to cpu_possible_map
[deliverable/linux.git] / arch / arm / kernel / smp.c
index a931409c8fe405340cab9205ad1d5af156583d9c..44a27b2a3c290bf495b7882d09a23ae0fa0b799b 100644 (file)
@@ -36,7 +36,7 @@
  * The present bitmask indicates that the CPU is physically present.
  * The online bitmask indicates that the CPU is up and running.
  */
-cpumask_t cpu_present_mask;
+cpumask_t cpu_possible_map;
 cpumask_t cpu_online_map;
 
 /*
@@ -235,7 +235,7 @@ void __init smp_prepare_boot_cpu(void)
 {
        unsigned int cpu = smp_processor_id();
 
-       cpu_set(cpu, cpu_present_mask);
+       cpu_set(cpu, cpu_possible_map);
        cpu_set(cpu, cpu_online_map);
 }
 
This page took 0.034892 seconds and 5 git commands to generate.