diff options
author | Brian Gerst <brgerst@gmail.com> | 2009-01-30 03:47:53 -0500 |
---|---|---|
committer | Tejun Heo <tj@kernel.org> | 2009-01-31 00:28:50 -0500 |
commit | 552be871e67ff577ed36beb2f53d078b42304739 (patch) | |
tree | fa8a1160674f319db5c9dfe9360e22fb44ade300 /arch/x86/mach-voyager | |
parent | 2749ebe320ff9f77548d10fcc0a3464ac21c8e58 (diff) |
x86: pass in cpu number to switch_to_new_gdt()
Impact: cleanup, prepare for xen boot fix.
Xen needs to call this function very early to setup the GDT and
per-cpu segments. Remove the call to smp_processor_id() and just
pass in the cpu number.
Signed-off-by: Brian Gerst <brgerst@gmail.com>
Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'arch/x86/mach-voyager')
-rw-r--r-- | arch/x86/mach-voyager/voyager_smp.c | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/arch/x86/mach-voyager/voyager_smp.c b/arch/x86/mach-voyager/voyager_smp.c index 331cd6d56483..58c7cac3440d 100644 --- a/arch/x86/mach-voyager/voyager_smp.c +++ b/arch/x86/mach-voyager/voyager_smp.c | |||
@@ -1746,12 +1746,13 @@ static void __init voyager_smp_prepare_cpus(unsigned int max_cpus) | |||
1746 | 1746 | ||
1747 | static void __cpuinit voyager_smp_prepare_boot_cpu(void) | 1747 | static void __cpuinit voyager_smp_prepare_boot_cpu(void) |
1748 | { | 1748 | { |
1749 | switch_to_new_gdt(); | 1749 | int cpu = smp_processor_id(); |
1750 | switch_to_new_gdt(cpu); | ||
1750 | 1751 | ||
1751 | cpu_set(smp_processor_id(), cpu_online_map); | 1752 | cpu_set(cpu, cpu_online_map); |
1752 | cpu_set(smp_processor_id(), cpu_callout_map); | 1753 | cpu_set(cpu, cpu_callout_map); |
1753 | cpu_set(smp_processor_id(), cpu_possible_map); | 1754 | cpu_set(cpu, cpu_possible_map); |
1754 | cpu_set(smp_processor_id(), cpu_present_map); | 1755 | cpu_set(cpu, cpu_present_map); |
1755 | } | 1756 | } |
1756 | 1757 | ||
1757 | static int __cpuinit voyager_cpu_up(unsigned int cpu) | 1758 | static int __cpuinit voyager_cpu_up(unsigned int cpu) |