2 * include/asm-xtensa/pgalloc.h
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License version 2 as
6 * published by the Free Software Foundation.
8 * Copyright (C) 2001-2007 Tensilica Inc.
11 #ifndef _XTENSA_PGALLOC_H
12 #define _XTENSA_PGALLOC_H
16 #include <linux/highmem.h>
19 * Allocating and freeing a pmd is trivial: the 1-entry pmd is
20 * inside the pgd, so has no extra memory associated with it.
23 #define pmd_populate_kernel(mm, pmdp, ptep) \
24 (pmd_val(*(pmdp)) = ((unsigned long)ptep))
25 #define pmd_populate(mm, pmdp, page) \
26 (pmd_val(*(pmdp)) = ((unsigned long)page_to_virt(page)))
27 #define pmd_pgtable(pmd) pmd_page(pmd)
30 pgd_alloc(struct mm_struct
*mm
)
32 return (pgd_t
*) __get_free_pages(GFP_KERNEL
| __GFP_ZERO
, PGD_ORDER
);
35 static inline void pgd_free(struct mm_struct
*mm
, pgd_t
*pgd
)
37 free_page((unsigned long)pgd
);
40 /* Use a slab cache for the pte pages (see also sparc64 implementation) */
42 extern struct kmem_cache
*pgtable_cache
;
44 static inline pte_t
*pte_alloc_one_kernel(struct mm_struct
*mm
,
45 unsigned long address
)
47 return kmem_cache_alloc(pgtable_cache
, GFP_KERNEL
|__GFP_REPEAT
);
50 <<<<<<< HEAD
:include
/asm-xtensa
/pgalloc
.h
51 static inline pte_token_t
pte_alloc_one(struct mm_struct
*mm
,
53 static inline pgtable_t
pte_alloc_one(struct mm_struct
*mm
,
54 >>>>>>> 264e3e889d86e552b4191d69bb60f4f3b383135a
:include
/asm-xtensa
/pgalloc
.h
59 page
= virt_to_page(pte_alloc_one_kernel(mm
, addr
));
60 pgtable_page_ctor(page
);
64 static inline void pte_free_kernel(struct mm_struct
*mm
, pte_t
*pte
)
66 kmem_cache_free(pgtable_cache
, pte
);
69 static inline void pte_free(struct mm_struct
*mm
, pgtable_t pte
)
71 pgtable_page_dtor(pte
);
72 kmem_cache_free(pgtable_cache
, page_address(pte
));
74 #define pmd_pgtable(pmd) pmd_page(pmd)
76 #endif /* __KERNEL__ */
77 #endif /* _XTENSA_PGALLOC_H */