aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Travis <travis@sgi.com>2008-05-12 15:21:12 -0400
committerIngo Molnar <mingo@elte.hu>2008-07-08 05:31:23 -0400
commit7891a24e1ee50c96896c0cf7da216a8e7b573ca5 (patch)
tree266b61fbb62a1f9825e473d02bc528049e31e7fb
parent23ca4bba3e20c6c3cb11c1bb0ab4770b724d39ac (diff)
x86: restore pda nodenumber field
* Restore the nodenumber field in the x86_64 pda. This field is slightly different than the x86_cpu_to_node_map mainly because it's a static indication of which node the cpu is on while the cpu to node map is a dyanamic mapping that may get reset if the cpu goes offline. This also simplifies the numa_node_id() macro. For inclusion into sched-devel/latest tree. Based on: git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux-2.6.git + sched-devel/latest .../mingo/linux-2.6-sched-devel.git Signed-off-by: Mike Travis <travis@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
-rw-r--r--arch/x86/kernel/setup.c4
-rw-r--r--include/asm-x86/pda.h1
-rw-r--r--include/asm-x86/topology.h2
3 files changed, 6 insertions, 1 deletions
diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
index 03caa8e4351f..0dff17ee3d73 100644
--- a/arch/x86/kernel/setup.c
+++ b/arch/x86/kernel/setup.c
@@ -32,6 +32,7 @@ EXPORT_EARLY_PER_CPU_SYMBOL(x86_bios_cpu_apicid);
32#if defined(CONFIG_NUMA) && defined(CONFIG_X86_64) 32#if defined(CONFIG_NUMA) && defined(CONFIG_X86_64)
33#define X86_64_NUMA 1 33#define X86_64_NUMA 1
34 34
35/* map cpu index to node index */
35DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE); 36DEFINE_EARLY_PER_CPU(int, x86_cpu_to_node_map, NUMA_NO_NODE);
36EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map); 37EXPORT_EARLY_PER_CPU_SYMBOL(x86_cpu_to_node_map);
37#endif 38#endif
@@ -155,6 +156,9 @@ void __cpuinit numa_set_node(int cpu, int node)
155{ 156{
156 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map); 157 int *cpu_to_node_map = early_per_cpu_ptr(x86_cpu_to_node_map);
157 158
159 if (node != NUMA_NO_NODE)
160 cpu_pda(cpu)->nodenumber = node;
161
158 if (cpu_to_node_map) 162 if (cpu_to_node_map)
159 cpu_to_node_map[cpu] = node; 163 cpu_to_node_map[cpu] = node;
160 164
diff --git a/include/asm-x86/pda.h b/include/asm-x86/pda.h
index 101fb9e11954..de2ad9ac35a9 100644
--- a/include/asm-x86/pda.h
+++ b/include/asm-x86/pda.h
@@ -22,6 +22,7 @@ struct x8664_pda {
22 offset 40!!! */ 22 offset 40!!! */
23#endif 23#endif
24 char *irqstackptr; 24 char *irqstackptr;
25 int nodenumber; /* number of current node */
25 unsigned int __softirq_pending; 26 unsigned int __softirq_pending;
26 unsigned int __nmi_count; /* number of NMI on this CPUs */ 27 unsigned int __nmi_count; /* number of NMI on this CPUs */
27 short mmu_state; 28 short mmu_state;
diff --git a/include/asm-x86/topology.h b/include/asm-x86/topology.h
index dac09cb66dca..c0e6ff7671ea 100644
--- a/include/asm-x86/topology.h
+++ b/include/asm-x86/topology.h
@@ -66,7 +66,7 @@ extern cpumask_t node_to_cpumask_map[];
66DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map); 66DECLARE_EARLY_PER_CPU(int, x86_cpu_to_node_map);
67 67
68/* Returns the number of the current Node. */ 68/* Returns the number of the current Node. */
69#define numa_node_id() (per_cpu(x86_cpu_to_node_map, raw_smp_processor_id())) 69#define numa_node_id() read_pda(nodenumber)
70 70
71#ifdef CONFIG_DEBUG_PER_CPU_MAPS 71#ifdef CONFIG_DEBUG_PER_CPU_MAPS
72extern int cpu_to_node(int cpu); 72extern int cpu_to_node(int cpu);