diff options
author | Mike Travis <travis@sgi.com> | 2008-12-16 20:34:02 -0500 |
---|---|---|
committer | Mike Travis <travis@sgi.com> | 2008-12-16 20:40:58 -0500 |
commit | 1de88cd4a33fcc2fcf70cbce01688723f728675d (patch) | |
tree | 35bf40f91657a372d11ec68587a73bd2a8683152 /arch/x86/kernel/apic.c | |
parent | 168ef543a43678146e06b3911e987ac021d575b8 (diff) |
x86: Use cpumask accessors code for possible/present maps.
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>
Diffstat (limited to 'arch/x86/kernel/apic.c')
-rw-r--r-- | arch/x86/kernel/apic.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/kernel/apic.c b/arch/x86/kernel/apic.c index 3b630ec24935..edda4c00e3d2 100644 --- a/arch/x86/kernel/apic.c +++ b/arch/x86/kernel/apic.c | |||
@@ -1903,8 +1903,8 @@ void __cpuinit generic_processor_info(int apicid, int version) | |||
1903 | } | 1903 | } |
1904 | #endif | 1904 | #endif |
1905 | 1905 | ||
1906 | cpu_set(cpu, cpu_possible_map); | 1906 | set_cpu_possible(cpu, true); |
1907 | cpu_set(cpu, cpu_present_map); | 1907 | set_cpu_present(cpu, true); |
1908 | } | 1908 | } |
1909 | 1909 | ||
1910 | #ifdef CONFIG_X86_64 | 1910 | #ifdef CONFIG_X86_64 |