aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/processor.h
diff options
context:
space:
mode:
authorGlauber de Oliveira Costa <gcosta@redhat.com>2008-01-30 07:31:27 -0500
committerIngo Molnar <mingo@elte.hu>2008-01-30 07:31:27 -0500
commit0ccb8acc51693a2aef0f38024943808046d81251 (patch)
treeba3dd7f108803ba3f9ed71304c8ff1ea676cbb30 /include/asm-x86/processor.h
parent683e0253dbd12554b2ee969b15e68105252bff57 (diff)
x86: unify current_text_addr
current_text_addr() has a different implementation in x86_64 and i386, but it is not fundamentally different. I stick to the i386 implementation, that seem to be a common base, and move it to processor.h Signed-off-by: Glauber de Oliveira Costa <gcosta@redhat.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/processor.h')
-rw-r--r--include/asm-x86/processor.h11
1 files changed, 11 insertions, 0 deletions
diff --git a/include/asm-x86/processor.h b/include/asm-x86/processor.h
index 52e3637ef59e..3deb5ba55f55 100644
--- a/include/asm-x86/processor.h
+++ b/include/asm-x86/processor.h
@@ -10,6 +10,17 @@ struct mm_struct;
10#include <asm/page.h> 10#include <asm/page.h>
11#include <asm/system.h> 11#include <asm/system.h>
12 12
13/*
14 * Default implementation of macro that returns current
15 * instruction pointer ("program counter").
16 */
17static inline void *current_text_addr(void)
18{
19 void *pc;
20 asm volatile("mov $1f,%0\n1:":"=r" (pc));
21 return pc;
22}
23
13static inline void native_cpuid(unsigned int *eax, unsigned int *ebx, 24static inline void native_cpuid(unsigned int *eax, unsigned int *ebx,
14 unsigned int *ecx, unsigned int *edx) 25 unsigned int *ecx, unsigned int *edx)
15{ 26{