summaryrefslogtreecommitdiffstats
path: root/arch/x86/include/asm/pda.h
diff options
context:
space:
mode:
authorBrian Gerst2009-01-18 16:38:58 +0100
committerTejun Heo2009-01-18 16:38:58 +0100
commitc6f5e0acd5d12ee23f701f15889872e67b47caa6 (patch)
treea4613618f06d7519f954745b893b4f572ecd39d9 /arch/x86/include/asm/pda.h
parentx86-64: Move cpu number from PDA to per-cpu and consolidate with 32-bit. (diff)
downloadkernel-qcow2-linux-c6f5e0acd5d12ee23f701f15889872e67b47caa6.tar.gz
kernel-qcow2-linux-c6f5e0acd5d12ee23f701f15889872e67b47caa6.tar.xz
kernel-qcow2-linux-c6f5e0acd5d12ee23f701f15889872e67b47caa6.zip
x86-64: Move current task from PDA to per-cpu and consolidate with 32-bit.
Signed-off-by: Brian Gerst <brgerst@gmail.com> Signed-off-by: Tejun Heo <tj@kernel.org>
Diffstat (limited to 'arch/x86/include/asm/pda.h')
-rw-r--r--arch/x86/include/asm/pda.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/x86/include/asm/pda.h b/arch/x86/include/asm/pda.h
index 668d5a5b6f70..7209302d9227 100644
--- a/arch/x86/include/asm/pda.h
+++ b/arch/x86/include/asm/pda.h
@@ -11,8 +11,8 @@
/* Per processor datastructure. %gs points to it while the kernel runs */
struct x8664_pda {
- struct task_struct *pcurrent; /* 0 Current process */
- unsigned long dummy;
+ unsigned long unused1;
+ unsigned long unused2;
unsigned long kernelstack; /* 16 top of kernel stack for current */
unsigned long oldrsp; /* 24 user rsp for system call */
int irqcount; /* 32 Irq nesting counter. Starts -1 */