diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-03-17 19:36:55 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-24 17:57:30 -0400 |
commit | 4f76cd382213b29dd3658e3e1ea47c0c2be06f3c (patch) | |
tree | a4822f341a6896ace039760d1df963b5f159c665 /include/asm-x86/pgalloc.h | |
parent | 79bf6d66abb5a20813a19dd365dfc49104f0bb88 (diff) |
x86: add common mm/pgtable.c
Add a common arch/x86/mm/pgtable.c file for common pagetable functions.
Signed-off-by: Jeremy Fitzhardinge <jeremy.fitzhardinge@citrix.com>
Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'include/asm-x86/pgalloc.h')
-rw-r--r-- | include/asm-x86/pgalloc.h | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/include/asm-x86/pgalloc.h b/include/asm-x86/pgalloc.h index 5886eed05886..ea9d27ad7f4e 100644 --- a/include/asm-x86/pgalloc.h +++ b/include/asm-x86/pgalloc.h | |||
@@ -1,5 +1,23 @@ | |||
1 | #ifndef _ASM_X86_PGALLOC_H | ||
2 | #define _ASM_X86_PGALLOC_H | ||
3 | |||
4 | #include <linux/threads.h> | ||
5 | #include <linux/mm.h> /* for struct page */ | ||
6 | #include <linux/pagemap.h> | ||
7 | |||
8 | /* | ||
9 | * Allocate and free page tables. | ||
10 | */ | ||
11 | extern pgd_t *pgd_alloc(struct mm_struct *); | ||
12 | extern void pgd_free(struct mm_struct *mm, pgd_t *pgd); | ||
13 | |||
14 | extern pte_t *pte_alloc_one_kernel(struct mm_struct *, unsigned long); | ||
15 | extern pgtable_t pte_alloc_one(struct mm_struct *, unsigned long); | ||
16 | |||
1 | #ifdef CONFIG_X86_32 | 17 | #ifdef CONFIG_X86_32 |
2 | # include "pgalloc_32.h" | 18 | # include "pgalloc_32.h" |
3 | #else | 19 | #else |
4 | # include "pgalloc_64.h" | 20 | # include "pgalloc_64.h" |
5 | #endif | 21 | #endif |
22 | |||
23 | #endif /* _ASM_X86_PGALLOC_H */ | ||