]> nv-tegra.nvidia Code Review - linux-3.10.git/commitdiff
cpumask: Use accessors code in core
authorRusty Russell <rusty@rustcorp.com.au>
Wed, 31 Dec 2008 23:42:15 +0000 (10:12 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Wed, 31 Dec 2008 23:42:15 +0000 (10:12 +1030)
Impact: use new API

cpu_*_map are going away in favour of cpu_*_mask, but const pointers.
So we have accessors where we really do want to frob them.  Archs
will also need the (trivial) conversion before we can finally remove
cpu_*_map.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
init/main.c

index 2a7ce0f8e45353af2204c017c1921afdd0ba5c91..84d3732c0ce50ee435447a24f48d5e85e3072850 100644 (file)
@@ -527,9 +527,9 @@ static void __init boot_cpu_init(void)
 {
        int cpu = smp_processor_id();
        /* Mark the boot cpu "present", "online" etc for SMP and UP case */
-       cpu_set(cpu, cpu_online_map);
-       cpu_set(cpu, cpu_present_map);
-       cpu_set(cpu, cpu_possible_map);
+       set_cpu_online(cpu, true);
+       set_cpu_present(cpu, true);
+       set_cpu_possible(cpu, true);
 }
 
 void __init __weak smp_setup_processor_id(void)