diff options
author | Jeremy Fitzhardinge <jeremy@goop.org> | 2008-03-17 19:36:58 -0400 |
---|---|---|
committer | Ingo Molnar <mingo@elte.hu> | 2008-04-24 17:57:30 -0400 |
commit | 170fdff7057d4247e3f28cca96d0db1fbc854e3b (patch) | |
tree | b0d5281dc5de0b9a0ddb1e626818d8f7f562713c /include/asm-x86/pgalloc.h | |
parent | 397f687ab7f840dbe50353c4b60108672b653d0c (diff) |
x86: move pmd functions into common asm/pgalloc.h
Common definitions for 3-level 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 | 33 |
1 files changed, 33 insertions, 0 deletions
diff --git a/include/asm-x86/pgalloc.h b/include/asm-x86/pgalloc.h index 0d15e21eefec..ae23839db20b 100644 --- a/include/asm-x86/pgalloc.h +++ b/include/asm-x86/pgalloc.h | |||
@@ -40,6 +40,39 @@ static inline void pte_free(struct mm_struct *mm, struct page *pte) | |||
40 | 40 | ||
41 | extern void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte); | 41 | extern void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte); |
42 | 42 | ||
43 | static inline void pmd_populate_kernel(struct mm_struct *mm, | ||
44 | pmd_t *pmd, pte_t *pte) | ||
45 | { | ||
46 | paravirt_alloc_pt(mm, __pa(pte) >> PAGE_SHIFT); | ||
47 | set_pmd(pmd, __pmd(__pa(pte) | _PAGE_TABLE)); | ||
48 | } | ||
49 | |||
50 | static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd, | ||
51 | struct page *pte) | ||
52 | { | ||
53 | unsigned long pfn = page_to_pfn(pte); | ||
54 | |||
55 | paravirt_alloc_pt(mm, pfn); | ||
56 | set_pmd(pmd, __pmd(((pteval_t)pfn << PAGE_SHIFT) | _PAGE_TABLE)); | ||
57 | } | ||
58 | |||
59 | #define pmd_pgtable(pmd) pmd_page(pmd) | ||
60 | |||
61 | #if PAGETABLE_LEVELS > 2 | ||
62 | static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long addr) | ||
63 | { | ||
64 | return (pmd_t *)get_zeroed_page(GFP_KERNEL|__GFP_REPEAT); | ||
65 | } | ||
66 | |||
67 | static inline void pmd_free(struct mm_struct *mm, pmd_t *pmd) | ||
68 | { | ||
69 | BUG_ON((unsigned long)pmd & (PAGE_SIZE-1)); | ||
70 | free_page((unsigned long)pmd); | ||
71 | } | ||
72 | |||
73 | extern void __pmd_free_tlb(struct mmu_gather *tlb, pmd_t *pmd); | ||
74 | #endif /* PAGETABLE_LEVELS > 2 */ | ||
75 | |||
43 | #ifdef CONFIG_X86_32 | 76 | #ifdef CONFIG_X86_32 |
44 | # include "pgalloc_32.h" | 77 | # include "pgalloc_32.h" |
45 | #else | 78 | #else |