aboutsummaryrefslogtreecommitdiffstats
path: root/arch/i386/kernel/asm-offsets.c
diff options
context:
space:
mode:
authorJeremy Fitzhardinge <jeremy@goop.org>2006-12-06 20:14:03 -0500
committerAndi Kleen <andi@basil.nowhere.org>2006-12-06 20:14:03 -0500
commitb2938f880890ebfcccad356275e0000193153623 (patch)
treef2dcde93e6bd449369e4d305f081e9c12af99948 /arch/i386/kernel/asm-offsets.c
parent49d26b6eaa8e970c8cf6e299e6ccba2474191bf5 (diff)
[PATCH] i386: Implement smp_processor_id() with the PDA
Use the cpu_number in the PDA to implement raw_smp_processor_id. This is a little simpler than using thread_info, though the cpu field in thread_info cannot be removed since it is used for things other than getting the current CPU in common code. Signed-off-by: Jeremy Fitzhardinge <jeremy@xensource.com> Signed-off-by: Andi Kleen <ak@suse.de> Cc: Chuck Ebbert <76306.1226@compuserve.com> Cc: Zachary Amsden <zach@vmware.com> Cc: Jan Beulich <jbeulich@novell.com> Cc: Andi Kleen <ak@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org>
Diffstat (limited to 'arch/i386/kernel/asm-offsets.c')
-rw-r--r--arch/i386/kernel/asm-offsets.c4
1 files changed, 3 insertions, 1 deletions
diff --git a/arch/i386/kernel/asm-offsets.c b/arch/i386/kernel/asm-offsets.c
index 9620872d3534..85f1b038e9c3 100644
--- a/arch/i386/kernel/asm-offsets.c
+++ b/arch/i386/kernel/asm-offsets.c
@@ -51,7 +51,6 @@ void foo(void)
51 OFFSET(TI_exec_domain, thread_info, exec_domain); 51 OFFSET(TI_exec_domain, thread_info, exec_domain);
52 OFFSET(TI_flags, thread_info, flags); 52 OFFSET(TI_flags, thread_info, flags);
53 OFFSET(TI_status, thread_info, status); 53 OFFSET(TI_status, thread_info, status);
54 OFFSET(TI_cpu, thread_info, cpu);
55 OFFSET(TI_preempt_count, thread_info, preempt_count); 54 OFFSET(TI_preempt_count, thread_info, preempt_count);
56 OFFSET(TI_addr_limit, thread_info, addr_limit); 55 OFFSET(TI_addr_limit, thread_info, addr_limit);
57 OFFSET(TI_restart_block, thread_info, restart_block); 56 OFFSET(TI_restart_block, thread_info, restart_block);
@@ -97,4 +96,7 @@ void foo(void)
97 DEFINE(VDSO_PRELINK, VDSO_PRELINK); 96 DEFINE(VDSO_PRELINK, VDSO_PRELINK);
98 97
99 OFFSET(crypto_tfm_ctx_offset, crypto_tfm, __crt_ctx); 98 OFFSET(crypto_tfm_ctx_offset, crypto_tfm, __crt_ctx);
99
100 BLANK();
101 OFFSET(PDA_cpu, i386_pda, cpu_number);
100} 102}