summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorAnton Blanchard <anton@samba.org>2002-03-26 17:31:33 +1100
committerAnton Blanchard <anton@samba.org>2002-03-26 17:31:33 +1100
commit41d643186962713a3e12ba2714a5b9e44afe1e19 (patch)
treeec09805d345a760e38fc4e951a5b7550a8642aa0 /include
parent67b9b40aa0103cd2aa1517a15e9d9cb66d80a598 (diff)
ppc64: thread.pgdir not required any more
Diffstat (limited to 'include')
-rw-r--r--include/asm-ppc64/processor.h2
1 files changed, 0 insertions, 2 deletions
diff --git a/include/asm-ppc64/processor.h b/include/asm-ppc64/processor.h
index 8fab50556be5..41bde4288bc2 100644
--- a/include/asm-ppc64/processor.h
+++ b/include/asm-ppc64/processor.h
@@ -665,7 +665,6 @@ struct thread_struct {
unsigned long ksp; /* Kernel stack pointer */
struct pt_regs *regs; /* Pointer to saved register state */
mm_segment_t fs; /* for get_fs() validation */
- void *pgdir; /* root of page-table tree */
signed long last_syscall;
double fpr[32]; /* Complete floating point set */
unsigned long fpscr_pad; /* fpr ... fpscr must be contiguous */
@@ -678,7 +677,6 @@ struct thread_struct {
INIT_SP, /* ksp */ \
(struct pt_regs *)INIT_SP - 1, /* regs */ \
KERNEL_DS, /*fs*/ \
- swapper_pg_dir, /* pgdir */ \
0, /* last_syscall */ \
{0}, 0, 0 \
}