diff options
author | Ravikiran Thirumalai <kiran@scalex86.org> | 2006-01-11 16:45:36 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:04:59 -0500 |
commit | 05b3cbd8bb98736387df8a2e1efe311b1fb4d2ad (patch) | |
tree | 46ca01cfe38d2df4c6f93ba0325a3f2a1e97ea71 /arch/x86_64/mm/numa.c | |
parent | 0b91317e338f42367de6d53f5e14f273aae7d034 (diff) |
[PATCH] x86_64: Early initialization of cpu_to_node
Patch enables early intialization of cpu_to_node.
apicid_to_node is built by reading the SRAT table, from acpi_numa_init with
ACPI_NUMA and k8_scan_nodes with K8_NUMA.
x86_cpu_to_apicid is built by parsing the ACPI MADT table, from acpi_boot_init.
We combine these two tables and setup cpu_to_node.
Early intialization helps the static per_cpu_areas in getting pages from
correct node.
Change since last release:
Do not initialize early init_cpu_to_node for faking node cases.
Patch tested on TYAN dual core 4P board with K8 only, ACPI_NUMA.
Tested on EM64T NUMA. Also tested with numa=off, numa=fake, and running
a kernel compiled with NUMA on a regular EM64 2 way SMP.
Signed-off-by: Alok N Kataria <alokk@calsoftinc.com>
Signed-off-by: Ravikiran Thirumalai <kiran@scalex86.org>
Signed-off-by: Shai Fultheim <shai@scalex86.org>
Signed-off-by: Andi Kleen <ak@suse.de>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
Diffstat (limited to 'arch/x86_64/mm/numa.c')
-rw-r--r-- | arch/x86_64/mm/numa.c | 25 |
1 files changed, 25 insertions, 0 deletions
diff --git a/arch/x86_64/mm/numa.c b/arch/x86_64/mm/numa.c index 42ec1f4f491a..876e34374412 100644 --- a/arch/x86_64/mm/numa.c +++ b/arch/x86_64/mm/numa.c | |||
@@ -330,6 +330,31 @@ __init int numa_setup(char *opt) | |||
330 | return 1; | 330 | return 1; |
331 | } | 331 | } |
332 | 332 | ||
333 | /* | ||
334 | * Setup early cpu_to_node. | ||
335 | * | ||
336 | * Populate cpu_to_node[] only if x86_cpu_to_apicid[], | ||
337 | * and apicid_to_node[] tables have valid entries for a CPU. | ||
338 | * This means we skip cpu_to_node[] initialisation for NUMA | ||
339 | * emulation and faking node case (when running a kernel compiled | ||
340 | * for NUMA on a non NUMA box), which is OK as cpu_to_node[] | ||
341 | * is already initialized in a round robin manner at numa_init_array, | ||
342 | * prior to this call, and this initialization is good enough | ||
343 | * for the fake NUMA cases. | ||
344 | */ | ||
345 | void __init init_cpu_to_node(void) | ||
346 | { | ||
347 | int i; | ||
348 | for (i = 0; i < NR_CPUS; i++) { | ||
349 | u8 apicid = x86_cpu_to_apicid[i]; | ||
350 | if (apicid == BAD_APICID) | ||
351 | continue; | ||
352 | if (apicid_to_node[apicid] == NUMA_NO_NODE) | ||
353 | continue; | ||
354 | cpu_to_node[i] = apicid_to_node[apicid]; | ||
355 | } | ||
356 | } | ||
357 | |||
333 | EXPORT_SYMBOL(cpu_to_node); | 358 | EXPORT_SYMBOL(cpu_to_node); |
334 | EXPORT_SYMBOL(node_to_cpumask); | 359 | EXPORT_SYMBOL(node_to_cpumask); |
335 | EXPORT_SYMBOL(memnode_shift); | 360 | EXPORT_SYMBOL(memnode_shift); |