x86: cleanup remaining cpumask_t ops in smpboot code
authorMike Travis <travis@sgi.com>
Sun, 4 Jan 2009 13:18:03 +0000 (05:18 -0800)
committerIngo Molnar <mingo@elte.hu>
Sun, 4 Jan 2009 14:39:26 +0000 (15:39 +0100)
commitc2d1cec1c77f7714672c1efeae075424c929e0d5
tree94afecf37405b93b6807377e4e99cc2ac9323034
parent588235bb53f2c215f0d4b08fd30b461fedc3338e
x86: cleanup remaining cpumask_t ops in smpboot code

Impact: use new cpumask API to reduce memory and stack usage

Allocate the following local cpumasks based on the number of cpus that
are present.  References will use new cpumask API.  (Currently only
modified for x86_64, x86_32 continues to use the *_map variants.)

    cpu_callin_mask
    cpu_callout_mask
    cpu_initialized_mask
    cpu_sibling_setup_mask

Provide the following accessor functions:

    struct cpumask *cpu_sibling_mask(int cpu)
    struct cpumask *cpu_core_mask(int cpu)

Other changes are when setting or clearing the cpu online, possible
or present maps, use the accessor functions.

Signed-off-by: Mike Travis <travis@sgi.com>
Acked-by: Rusty Russell <rusty@rustcorp.com.au>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
arch/x86/include/asm/smp.h
arch/x86/kernel/cpu/common.c
arch/x86/kernel/setup_percpu.c
arch/x86/kernel/smp.c
arch/x86/kernel/smpboot.c