aboutsummaryrefslogtreecommitdiffstats
path: root/arch/x86/kernel/smpboot.c
diff options
context:
space:
mode:
authorGlauber Costa <gcosta@redhat.com>2008-06-04 14:35:03 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 06:48:24 -0400
commit1481a3dd42c21ac4a8b9497cb9f5df816d6b064f (patch)
tree9c183950aeba74cdd5e436b8e3c32d757fc30fba /arch/x86/kernel/smpboot.c
parentb553a1e0ff48bd66fd18f705370e47c0b4ecea61 (diff)
x86: move cpu_exit_clear to process_32.c
Take it out of smpboot.c, and move it to process_32.c, closer to its only user. Signed-off-by: Glauber Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu>
Diffstat (limited to 'arch/x86/kernel/smpboot.c')
-rw-r--r--arch/x86/kernel/smpboot.c19
1 files changed, 1 insertions, 18 deletions
diff --git a/arch/x86/kernel/smpboot.c b/arch/x86/kernel/smpboot.c
index 820c23dbe76..67af727f733 100644
--- a/arch/x86/kernel/smpboot.c
+++ b/arch/x86/kernel/smpboot.c
@@ -181,7 +181,7 @@ static void map_cpu_to_logical_apicid(void)
181 map_cpu_to_node(cpu, node); 181 map_cpu_to_node(cpu, node);
182} 182}
183 183
184static void numa_remove_cpu(int cpu) 184void numa_remove_cpu(int cpu)
185{ 185{
186 cpu_2_logical_apicid[cpu] = BAD_APICID; 186 cpu_2_logical_apicid[cpu] = BAD_APICID;
187 unmap_cpu_to_node(cpu); 187 unmap_cpu_to_node(cpu);
@@ -1227,23 +1227,6 @@ void __init native_smp_cpus_done(unsigned int max_cpus)
1227 1227
1228#ifdef CONFIG_HOTPLUG_CPU 1228#ifdef CONFIG_HOTPLUG_CPU
1229 1229
1230# ifdef CONFIG_X86_32
1231void cpu_exit_clear(void)
1232{
1233 int cpu = raw_smp_processor_id();
1234
1235 idle_task_exit();
1236
1237 cpu_uninit();
1238 irq_ctx_exit(cpu);
1239
1240 cpu_clear(cpu, cpu_callout_map);
1241 cpu_clear(cpu, cpu_callin_map);
1242
1243 numa_remove_cpu(cpu);
1244}
1245# endif /* CONFIG_X86_32 */
1246
1247static void remove_siblinginfo(int cpu) 1230static void remove_siblinginfo(int cpu)
1248{ 1231{
1249 int sibling; 1232 int sibling;