diff options
author | travis@sgi.com <travis@sgi.com> | 2008-01-30 07:33:11 -0500 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-01-30 07:33:11 -0500 |
commit | 3b41908902df1dba141cd7de1a727bb03718a654 (patch) | |
tree | 988d687ff1a2636bcca32cb303d58421e0aa7926 /arch/x86/kernel/genapic_64.c | |
parent | 30964d54e94229f567a7312a0e6666f9deb6a488 (diff) |
x86: cleanup x86_cpu_to_apicid references
Clean up references to x86_cpu_to_apicid. Removes extraneous
comments and standardizes on "x86_*_early_ptr" for the early
kernel init references.
Signed-off-by: Mike Travis <travis@sgi.com>
Reviewed-by: Christoph Lameter <clameter@sgi.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'arch/x86/kernel/genapic_64.c')
-rw-r--r-- | arch/x86/kernel/genapic_64.c | 11 |
1 files changed, 2 insertions, 9 deletions
diff --git a/arch/x86/kernel/genapic_64.c b/arch/x86/kernel/genapic_64.c index ac2b78f24074..4ae7b6440260 100644 --- a/arch/x86/kernel/genapic_64.c +++ b/arch/x86/kernel/genapic_64.c | |||
@@ -24,17 +24,10 @@ | |||
24 | #include <acpi/acpi_bus.h> | 24 | #include <acpi/acpi_bus.h> |
25 | #endif | 25 | #endif |
26 | 26 | ||
27 | /* | 27 | /* which logical CPU number maps to which CPU (physical APIC ID) */ |
28 | * which logical CPU number maps to which CPU (physical APIC ID) | ||
29 | * | ||
30 | * The following static array is used during kernel startup | ||
31 | * and the x86_cpu_to_apicid_ptr contains the address of the | ||
32 | * array during this time. Is it zeroed when the per_cpu | ||
33 | * data area is removed. | ||
34 | */ | ||
35 | u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata | 28 | u16 x86_cpu_to_apicid_init[NR_CPUS] __initdata |
36 | = { [0 ... NR_CPUS-1] = BAD_APICID }; | 29 | = { [0 ... NR_CPUS-1] = BAD_APICID }; |
37 | void *x86_cpu_to_apicid_ptr; | 30 | void *x86_cpu_to_apicid_early_ptr; |
38 | DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID; | 31 | DEFINE_PER_CPU(u16, x86_cpu_to_apicid) = BAD_APICID; |
39 | EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid); | 32 | EXPORT_PER_CPU_SYMBOL(x86_cpu_to_apicid); |
40 | 33 | ||