diff options
author | Ravikiran G Thirumalai <kiran@scalex86.org> | 2006-01-11 16:45:39 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-01-11 22:04:59 -0500 |
commit | df79efde82952edc653fa6eb1338a82b87aa0585 (patch) | |
tree | 67abb221cf834c3a7766c406aae1e55aa31b6bcf /arch/x86_64/mm/numa.c | |
parent | 05b3cbd8bb98736387df8a2e1efe311b1fb4d2ad (diff) |
[PATCH] x86_64: Node local pda take 2 -- cpu_pda preparation
Helper patch to change cpu_pda users to use macros to access cpu_pda
instead of the cpu_pda[] array.
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 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/arch/x86_64/mm/numa.c b/arch/x86_64/mm/numa.c index 876e34374412..994dbaeb33f0 100644 --- a/arch/x86_64/mm/numa.c +++ b/arch/x86_64/mm/numa.c | |||
@@ -272,7 +272,7 @@ __cpuinit void numa_add_cpu(int cpu) | |||
272 | 272 | ||
273 | void __cpuinit numa_set_node(int cpu, int node) | 273 | void __cpuinit numa_set_node(int cpu, int node) |
274 | { | 274 | { |
275 | cpu_pda[cpu].nodenumber = node; | 275 | cpu_pda(cpu)->nodenumber = node; |
276 | cpu_to_node[cpu] = node; | 276 | cpu_to_node[cpu] = node; |
277 | } | 277 | } |
278 | 278 | ||