pgalloc.h 1.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. /*
  2. * include/asm-xtensa/pgalloc.h
  3. *
  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.
  7. *
  8. * Copyright (C) 2001-2007 Tensilica Inc.
  9. */
  10. #ifndef _XTENSA_PGALLOC_H
  11. #define _XTENSA_PGALLOC_H
  12. #ifdef __KERNEL__
  13. #include <linux/highmem.h>
  14. /*
  15. * Allocating and freeing a pmd is trivial: the 1-entry pmd is
  16. * inside the pgd, so has no extra memory associated with it.
  17. */
  18. #define pmd_populate_kernel(mm, pmdp, ptep) \
  19. (pmd_val(*(pmdp)) = ((unsigned long)ptep))
  20. #define pmd_populate(mm, pmdp, page) \
  21. (pmd_val(*(pmdp)) = ((unsigned long)page_to_virt(page)))
  22. #define pmd_pgtable(pmd) pmd_page(pmd)
  23. static inline pgd_t*
  24. pgd_alloc(struct mm_struct *mm)
  25. {
  26. return (pgd_t*) __get_free_pages(GFP_KERNEL | __GFP_ZERO, PGD_ORDER);
  27. }
  28. static inline void pgd_free(struct mm_struct *mm, pgd_t *pgd)
  29. {
  30. free_page((unsigned long)pgd);
  31. }
  32. /* Use a slab cache for the pte pages (see also sparc64 implementation) */
  33. extern struct kmem_cache *pgtable_cache;
  34. static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
  35. unsigned long address)
  36. {
  37. return kmem_cache_alloc(pgtable_cache, GFP_KERNEL|__GFP_REPEAT);
  38. }
  39. static inline pgtable_t pte_alloc_one(struct mm_struct *mm,
  40. unsigned long addr)
  41. {
  42. struct page *page;
  43. page = virt_to_page(pte_alloc_one_kernel(mm, addr));
  44. pgtable_page_ctor(page);
  45. return page;
  46. }
  47. static inline void pte_free_kernel(struct mm_struct *mm, pte_t *pte)
  48. {
  49. kmem_cache_free(pgtable_cache, pte);
  50. }
  51. static inline void pte_free(struct mm_struct *mm, pgtable_t pte)
  52. {
  53. pgtable_page_dtor(pte);
  54. kmem_cache_free(pgtable_cache, page_address(pte));
  55. }
  56. #define pmd_pgtable(pmd) pmd_page(pmd)
  57. #endif /* __KERNEL__ */
  58. #endif /* _XTENSA_PGALLOC_H */