diff options
author | Jaswinder Singh Rajput <jaswinder@infradead.org> | 2009-01-07 11:04:25 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2009-01-07 15:48:25 -0500 |
commit | f472cdba849cc3d838f3788469316e8572463a8c (patch) | |
tree | c6602bdddafd70580f6f13e3714c0c0cda39d931 /arch | |
parent | 6e5385d44b2df05e50a8d07ba0e14d3e32685237 (diff) |
x86: smp.h move stack_processor_id declartion to cpu.h
Impact: cleanup
Signed-off-by: Jaswinder Singh Rajput <jaswinderrajput@gmail.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/cpu.h | 2 | ||||
-rw-r--r-- | arch/x86/include/asm/smp.h | 1 | ||||
-rw-r--r-- | arch/x86/kernel/cpu/common.c | 1 |
3 files changed, 3 insertions, 1 deletions
diff --git a/arch/x86/include/asm/cpu.h b/arch/x86/include/asm/cpu.h index 29aa6d0752b9..f958e7e49c05 100644 --- a/arch/x86/include/asm/cpu.h +++ b/arch/x86/include/asm/cpu.h | |||
@@ -15,6 +15,8 @@ extern void prefill_possible_map(void); | |||
15 | 15 | ||
16 | static inline void prefill_possible_map(void) {} | 16 | static inline void prefill_possible_map(void) {} |
17 | 17 | ||
18 | #define stack_smp_processor_id() 0 | ||
19 | |||
18 | #endif /* CONFIG_SMP */ | 20 | #endif /* CONFIG_SMP */ |
19 | 21 | ||
20 | struct x86_cpu { | 22 | struct x86_cpu { |
diff --git a/arch/x86/include/asm/smp.h b/arch/x86/include/asm/smp.h index 62bd3f68269a..ed4af9a89cfd 100644 --- a/arch/x86/include/asm/smp.h +++ b/arch/x86/include/asm/smp.h | |||
@@ -173,7 +173,6 @@ extern int safe_smp_processor_id(void); | |||
173 | #else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */ | 173 | #else /* !CONFIG_X86_32_SMP && !CONFIG_X86_64_SMP */ |
174 | #define cpu_physical_id(cpu) boot_cpu_physical_apicid | 174 | #define cpu_physical_id(cpu) boot_cpu_physical_apicid |
175 | #define safe_smp_processor_id() 0 | 175 | #define safe_smp_processor_id() 0 |
176 | #define stack_smp_processor_id() 0 | ||
177 | #endif | 176 | #endif |
178 | 177 | ||
179 | #ifdef CONFIG_X86_LOCAL_APIC | 178 | #ifdef CONFIG_X86_LOCAL_APIC |
diff --git a/arch/x86/kernel/cpu/common.c b/arch/x86/kernel/cpu/common.c index 3f95a40f718a..f7619a2eaffe 100644 --- a/arch/x86/kernel/cpu/common.c +++ b/arch/x86/kernel/cpu/common.c | |||
@@ -21,6 +21,7 @@ | |||
21 | #include <asm/asm.h> | 21 | #include <asm/asm.h> |
22 | #include <asm/numa.h> | 22 | #include <asm/numa.h> |
23 | #include <asm/smp.h> | 23 | #include <asm/smp.h> |
24 | #include <asm/cpu.h> | ||
24 | #ifdef CONFIG_X86_LOCAL_APIC | 25 | #ifdef CONFIG_X86_LOCAL_APIC |
25 | #include <asm/mpspec.h> | 26 | #include <asm/mpspec.h> |
26 | #include <asm/apic.h> | 27 | #include <asm/apic.h> |