Commit 41d64318 authored by Anton Blanchard's avatar Anton Blanchard

ppc64: thread.pgdir not required any more

parent 67b9b40a
...@@ -665,7 +665,6 @@ struct thread_struct { ...@@ -665,7 +665,6 @@ struct thread_struct {
unsigned long ksp; /* Kernel stack pointer */ unsigned long ksp; /* Kernel stack pointer */
struct pt_regs *regs; /* Pointer to saved register state */ struct pt_regs *regs; /* Pointer to saved register state */
mm_segment_t fs; /* for get_fs() validation */ mm_segment_t fs; /* for get_fs() validation */
void *pgdir; /* root of page-table tree */
signed long last_syscall; signed long last_syscall;
double fpr[32]; /* Complete floating point set */ double fpr[32]; /* Complete floating point set */
unsigned long fpscr_pad; /* fpr ... fpscr must be contiguous */ unsigned long fpscr_pad; /* fpr ... fpscr must be contiguous */
...@@ -678,7 +677,6 @@ struct thread_struct { ...@@ -678,7 +677,6 @@ struct thread_struct {
INIT_SP, /* ksp */ \ INIT_SP, /* ksp */ \
(struct pt_regs *)INIT_SP - 1, /* regs */ \ (struct pt_regs *)INIT_SP - 1, /* regs */ \
KERNEL_DS, /*fs*/ \ KERNEL_DS, /*fs*/ \
swapper_pg_dir, /* pgdir */ \
0, /* last_syscall */ \ 0, /* last_syscall */ \
{0}, 0, 0 \ {0}, 0, 0 \
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment