diff options
| author | Brian Gerst <brgerst@gmail.com> | 2009-01-26 22:56:47 -0500 |
|---|---|---|
| committer | Tejun Heo <tj@kernel.org> | 2009-01-26 22:56:47 -0500 |
| commit | 2f2f52bad72f5e1ca5d1b9ad00a7b57a8cbd9159 (patch) | |
| tree | a371346bf27fcceb156676cab2b6311c14b388ed | |
| parent | 6470aff619fbb9dff8dfe8afa5033084cd55ca20 (diff) | |
x86: move setup_cpu_local_masks()
Impact: Code movement, no functional change.
Move setup_cpu_local_masks() to kernel/cpu/common.c, where the
masks are defined.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
| -rw-r--r-- | arch/x86/include/asm/cpumask.h | 4 | ||||
| -rw-r--r-- | arch/x86/kernel/cpu/common.c | 9 | ||||
| -rw-r--r-- | arch/x86/kernel/setup_percpu.c | 19 |
3 files changed, 13 insertions, 19 deletions
diff --git a/arch/x86/include/asm/cpumask.h b/arch/x86/include/asm/cpumask.h index 26c6dad90479..a7f3c75f8ad7 100644 --- a/arch/x86/include/asm/cpumask.h +++ b/arch/x86/include/asm/cpumask.h | |||
| @@ -10,6 +10,8 @@ extern cpumask_var_t cpu_callout_mask; | |||
| 10 | extern cpumask_var_t cpu_initialized_mask; | 10 | extern cpumask_var_t cpu_initialized_mask; |
| 11 | extern cpumask_var_t cpu_sibling_setup_mask; | 11 | extern cpumask_var_t cpu_sibling_setup_mask; |
| 12 | 12 | ||
| 13 | extern void setup_cpu_local_masks(void); | ||
| 14 | |||
| 13 | #else /* CONFIG_X86_32 */ | 15 | #else /* CONFIG_X86_32 */ |
| 14 | 16 | ||
| 15 | extern cpumask_t cpu_callin_map; | 17 | extern cpumask_t cpu_callin_map; |
| @@ -22,6 +24,8 @@ extern cpumask_t cpu_sibling_setup_map; | |||
| 22 | #define cpu_initialized_mask ((struct cpumask *)&cpu_initialized) | 24 | #define cpu_initialized_mask ((struct cpumask *)&cpu_initialized) |
| 23 | #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) | 25 | #define cpu_sibling_setup_mask ((struct cpumask *)&cpu_sibling_setup_map) |
| 24 | 26 | ||
| 27 | static inline void setup_cpu_local_masks(void) { } | ||
| 28 | |||
| 25 | #endif /* CONFIG_X86_32 */ | 29 | #endif /* CONFIG_X86_32 */ |
| 26 | 30 | ||
| 27 | #endif /* __ASSEMBLY__ */ | 31 | #endif /* __ASSEMBLY__ */ |
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 99904f288d6a..67e30c8a282c 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
| @@ -52,6 +52,15 @@ cpumask_var_t cpu_initialized_mask; | |||
| 52 | /* representing cpus for which sibling maps can be computed */ | 52 | /* representing cpus for which sibling maps can be computed */ |
| 53 | cpumask_var_t cpu_sibling_setup_mask; | 53 | cpumask_var_t cpu_sibling_setup_mask; |
| 54 | 54 | ||
| 55 | /* correctly size the local cpu masks */ | ||
| 56 | void setup_cpu_local_masks(void) | ||
| 57 | { | ||
| 58 | alloc_bootmem_cpumask_var(&cpu_initialized_mask); | ||
| 59 | alloc_bootmem_cpumask_var(&cpu_callin_mask); | ||
| 60 | alloc_bootmem_cpumask_var(&cpu_callout_mask); | ||
| 61 | alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask); | ||
| 62 | } | ||
| 63 | |||
| 55 | #else /* CONFIG_X86_32 */ | 64 | #else /* CONFIG_X86_32 */ |
| 56 | 65 | ||
| 57 | cpumask_t cpu_callin_map; | 66 | cpumask_t cpu_callin_map; |
diff --git a/arch/x86/kernel/setup_percpu.c b/arch/x86/kernel/setup_percpu.c index cb6d622520be..7bebdba8eb89 100644 --- a/arch/x86/kernel/setup_percpu.c +++ b/arch/x86/kernel/setup_percpu.c | |||
| @@ -51,25 +51,6 @@ DEFINE_EARLY_PER_CPU(u16, x86_bios_cpu_apicid, BAD_APICID); | |||
| 51 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid); | 51 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_apicid); |
| 52 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid); | 52 | EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid); |
| 53 | 53 | ||
| 54 | #ifdef CONFIG_X86_64 | ||
| 55 | |||
| 56 | /* correctly size the local cpu masks */ | ||
| 57 | static void setup_cpu_local_masks(void) | ||
| 58 | { | ||
| 59 | alloc_bootmem_cpumask_var(&cpu_initialized_mask); | ||
| 60 | alloc_bootmem_cpumask_var(&cpu_callin_mask); | ||
| 61 | alloc_bootmem_cpumask_var(&cpu_callout_mask); | ||
| 62 | alloc_bootmem_cpumask_var(&cpu_sibling_setup_mask); | ||
| 63 | } | ||
| 64 | |||
| 65 | #else /* CONFIG_X86_32 */ | ||
| 66 | |||
| 67 | static inline void setup_cpu_local_masks(void) | ||
| 68 | { | ||
| 69 | } | ||
| 70 | |||
| 71 | #endif /* CONFIG_X86_32 */ | ||
| 72 | |||
| 73 | #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA | 54 | #ifdef CONFIG_HAVE_SETUP_PER_CPU_AREA |
| 74 | 55 | ||
| 75 | #ifdef CONFIG_X86_64 | 56 | #ifdef CONFIG_X86_64 |
