summaryrefslogtreecommitdiff
path: root/include/asm-x86/current_64.h
diff options
context:
space:
mode:
authorChristoph Lameter <clameter@sgi.com>2008-05-09 19:09:48 -0700
committerThomas Gleixner <tglx@linutronix.de>2008-05-25 08:58:35 +0200
commitf0766440dda7ace8a43b030f75e2dcb82449fb85 (patch)
tree7965d522a3ec8323aa965949b96d500fa5f3a304 /include/asm-x86/current_64.h
parentbfe4bb1526945e446d2912bef2e1e2cbd2c7349e (diff)
x86: unify current.h
Simply stitch these together. There are just two definitions that are shared but the file is resonably small and putting these things together shows that further unifications requires a unification of the per cpu / pda handling between both arches. Signed-off-by: Christoph Lameter <clameter@sgi.com> Signed-off-by: Ingo Molnar <mingo@elte.hu> Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/current_64.h')
-rw-r--r--include/asm-x86/current_64.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/include/asm-x86/current_64.h b/include/asm-x86/current_64.h
deleted file mode 100644
index 2d368ede2fc1..000000000000
--- a/include/asm-x86/current_64.h
+++ /dev/null
@@ -1,27 +0,0 @@
-#ifndef _X86_64_CURRENT_H
-#define _X86_64_CURRENT_H
-
-#if !defined(__ASSEMBLY__)
-struct task_struct;
-
-#include <asm/pda.h>
-
-static inline struct task_struct *get_current(void)
-{
- struct task_struct *t = read_pda(pcurrent);
- return t;
-}
-
-#define current get_current()
-
-#else
-
-#ifndef ASM_OFFSET_H
-#include <asm/asm-offsets.h>
-#endif
-
-#define GET_CURRENT(reg) movq %gs:(pda_pcurrent),reg
-
-#endif
-
-#endif /* !(_X86_64_CURRENT_H) */