aboutsummaryrefslogtreecommitdiffstats
path: root/include/asm-x86/pgalloc.h
diff options
context:
space:
mode:
Diffstat (limited to 'include/asm-x86/pgalloc.h')
-rw-r--r--include/asm-x86/pgalloc.h33
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
41extern void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte); 41extern void __pte_free_tlb(struct mmu_gather *tlb, struct page *pte);
42 42
43static 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
50static 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
62static 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
67static 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
73extern 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