1 #ifndef _ALPHA_PGALLOC_H
2 #define _ALPHA_PGALLOC_H
5 #include <linux/mmzone.h>
8 * Allocate and free page tables. The xxx_kernel() versions are
9 * used to allocate a kernel page table - this turns on ASN bits
14 pmd_populate(struct mm_struct
*mm
, pmd_t
*pmd
, struct page
*pte
)
16 pmd_set(pmd
, (pte_t
*)(page_to_pa(pte
) + PAGE_OFFSET
));
20 pmd_populate_kernel(struct mm_struct
*mm
, pmd_t
*pmd
, pte_t
*pte
)
26 pgd_populate(struct mm_struct
*mm
, pgd_t
*pgd
, pmd_t
*pmd
)
31 extern pgd_t
*pgd_alloc(struct mm_struct
*mm
);
36 free_page((unsigned long)pgd
);
40 pmd_alloc_one(struct mm_struct
*mm
, unsigned long address
)
42 pmd_t
*ret
= (pmd_t
*)__get_free_page(GFP_KERNEL
|__GFP_REPEAT
|__GFP_ZERO
);
49 free_page((unsigned long)pmd
);
52 extern pte_t
*pte_alloc_one_kernel(struct mm_struct
*mm
, unsigned long addr
);
55 pte_free_kernel(pte_t
*pte
)
57 free_page((unsigned long)pte
);
60 static inline struct page
*
61 pte_alloc_one(struct mm_struct
*mm
, unsigned long addr
)
63 pte_t
*pte
= pte_alloc_one_kernel(mm
, addr
);
65 return virt_to_page(pte
);
70 pte_free(struct page
*page
)
75 #define check_pgt_cache() do { } while (0)
77 #endif /* _ALPHA_PGALLOC_H */