Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame^] | 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 | |
Thomas Gleixner | 96a388d | 2007-10-11 11:20:03 +0200 | [diff] [blame] | 17 | #ifdef CONFIG_X86_32 |
| 18 | # include "pgalloc_32.h" |
| 19 | #else |
| 20 | # include "pgalloc_64.h" |
| 21 | #endif |
Jeremy Fitzhardinge | 4f76cd3 | 2008-03-17 16:36:55 -0700 | [diff] [blame^] | 22 | |
| 23 | #endif /* _ASM_X86_PGALLOC_H */ |