cpumask: Use accessors code.: sparc64

Impact: use new API

Use the accessors rather than frobbing bits directly.  Most of this is
in arch code I haven't even compiled, but is straightforward.

Signed-off-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Mike Travis <travis@sgi.com>
This commit is contained in:
Rusty Russell 2009-03-16 14:40:23 +10:30
parent fe73971cdd
commit 89229071c0
2 changed files with 3 additions and 3 deletions

View File

@ -567,7 +567,7 @@ static void __init report_platform_properties(void)
max_cpu = NR_CPUS;
}
for (i = 0; i < max_cpu; i++)
cpu_set(i, cpu_possible_map);
set_cpu_possible(i, true);
}
#endif

View File

@ -518,8 +518,8 @@ void __init of_fill_in_cpu_data(void)
}
#ifdef CONFIG_SMP
cpu_set(cpuid, cpu_present_map);
cpu_set(cpuid, cpu_possible_map);
set_cpu_present(cpuid, true);
set_cpu_possible(cpuid, true);
#endif
}