summaryrefslogtreecommitdiffstats
path: root/include/asm-x86_64/pda.h
diff options
context:
space:
mode:
authorRavikiran G Thirumalai2006-01-11 22:45:42 +0100
committerLinus Torvalds2006-01-12 04:04:59 +0100
commit365ba9179f84244d2ffa98e46ae3cddfeb2ef6ff (patch)
treeb84be7f9f929d8084fa76af2618877439baee841 /include/asm-x86_64/pda.h
parent[PATCH] x86_64: Node local pda take 2 -- cpu_pda preparation (diff)
downloadkernel-qcow2-linux-365ba9179f84244d2ffa98e46ae3cddfeb2ef6ff.tar.gz
kernel-qcow2-linux-365ba9179f84244d2ffa98e46ae3cddfeb2ef6ff.tar.xz
kernel-qcow2-linux-365ba9179f84244d2ffa98e46ae3cddfeb2ef6ff.zip
[PATCH] x86_64: Allocate PDAs in the local node
Patch uses a static PDA array early at boot and reallocates processor PDA with node local memory when kmalloc is ready, just before pda_init. The boot_cpu_pda is needed since the cpu_pda is used even before pda_init for that cpu is called (to set the static per-cpu areas offset table etc) 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 'include/asm-x86_64/pda.h')
-rw-r--r--include/asm-x86_64/pda.h5
1 files changed, 3 insertions, 2 deletions
diff --git a/include/asm-x86_64/pda.h b/include/asm-x86_64/pda.h
index dc33d28a72dd..c7ab38a601af 100644
--- a/include/asm-x86_64/pda.h
+++ b/include/asm-x86_64/pda.h
@@ -27,9 +27,10 @@ struct x8664_pda {
unsigned apic_timer_irqs;
} ____cacheline_aligned_in_smp;
-extern struct x8664_pda _cpu_pda[];
+extern struct x8664_pda *_cpu_pda[];
+extern struct x8664_pda boot_cpu_pda[];
-#define cpu_pda(i) (&_cpu_pda[i])
+#define cpu_pda(i) (_cpu_pda[i])
/*
* There is no fast way to get the base address of the PDA, all the accesses