diff options
author | Jeff Dike <[email protected]> | 2008-02-04 22:31:22 -0800 |
---|---|---|
committer | Linus Torvalds <[email protected]> | 2008-02-05 09:44:31 -0800 |
commit | d449c5036778dfa00374c55c9c9f02bd45574c58 (patch) | |
tree | e5d365dee19edcdd6af997f3215d34acb3843851 | |
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 <[email protected]>
Signed-off-by: Andrew Morton <[email protected]>
Signed-off-by: Linus Torvalds <[email protected]>
-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 @@ typedef struct mm_context { struct mm_id id; - unsigned long last_page_table; -#ifdef CONFIG_3_LEVEL_PGTABLES - unsigned long last_pmd; -#endif struct uml_ldt ldt; } mm_context_t; |