diff options
author | Jeff Dike <jdike@addtoit.com> | 2008-02-05 01:31:22 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2008-02-05 12:44:31 -0500 |
commit | d449c5036778dfa00374c55c9c9f02bd45574c58 (patch) | |
tree | e5d365dee19edcdd6af997f3215d34acb3843851 /arch/um | |
parent | 576c013df0ac9ad1f217452c14ddde246bb1a70d (diff) |
uml: remove unused fields from mm_context
The 3-level page table fixes forgot to remove a couple now-unused fields from
struct mm_context.
Signed-off-by: Jeff Dike <jdike@linux.intel.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'arch/um')
-rw-r--r-- | arch/um/include/um_mmu.h | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/arch/um/include/um_mmu.h b/arch/um/include/um_mmu.h index 8855d8df512f..82865fcf6872 100644 --- a/arch/um/include/um_mmu.h +++ b/arch/um/include/um_mmu.h | |||
@@ -12,10 +12,6 @@ | |||
12 | 12 | ||
13 | typedef struct mm_context { | 13 | typedef struct mm_context { |
14 | struct mm_id id; | 14 | struct mm_id id; |
15 | unsigned long last_page_table; | ||
16 | #ifdef CONFIG_3_LEVEL_PGTABLES | ||
17 | unsigned long last_pmd; | ||
18 | #endif | ||
19 | struct uml_ldt ldt; | 15 | struct uml_ldt ldt; |
20 | } mm_context_t; | 16 | } mm_context_t; |
21 | 17 | ||