pgalloc.h 2.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125
  1. /*
  2. * This file is subject to the terms and conditions of the GNU General Public
  3. * License. See the file "COPYING" in the main directory of this archive
  4. * for more details.
  5. *
  6. * Copyright (C) 1994 - 2001, 2003 by Ralf Baechle
  7. * Copyright (C) 1999, 2000, 2001 Silicon Graphics, Inc.
  8. */
  9. #ifndef _ASM_PGALLOC_H
  10. #define _ASM_PGALLOC_H
  11. #include <linux/config.h>
  12. #include <linux/highmem.h>
  13. #include <linux/mm.h>
  14. static inline void pmd_populate_kernel(struct mm_struct *mm, pmd_t *pmd,
  15. pte_t *pte)
  16. {
  17. set_pmd(pmd, __pmd((unsigned long)pte));
  18. }
  19. static inline void pmd_populate(struct mm_struct *mm, pmd_t *pmd,
  20. struct page *pte)
  21. {
  22. set_pmd(pmd, __pmd((unsigned long)page_address(pte)));
  23. }
  24. /*
  25. * Initialize a new pgd / pmd table with invalid pointers.
  26. */
  27. extern void pgd_init(unsigned long page);
  28. extern void pmd_init(unsigned long page, unsigned long pagetable);
  29. static inline pgd_t *pgd_alloc(struct mm_struct *mm)
  30. {
  31. pgd_t *ret, *init;
  32. ret = (pgd_t *) __get_free_pages(GFP_KERNEL, PGD_ORDER);
  33. if (ret) {
  34. init = pgd_offset(&init_mm, 0);
  35. pgd_init((unsigned long)ret);
  36. memcpy(ret + USER_PTRS_PER_PGD, init + USER_PTRS_PER_PGD,
  37. (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
  38. }
  39. return ret;
  40. }
  41. static inline void pgd_free(pgd_t *pgd)
  42. {
  43. free_pages((unsigned long)pgd, PGD_ORDER);
  44. }
  45. static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
  46. unsigned long address)
  47. {
  48. pte_t *pte;
  49. pte = (pte_t *) __get_free_pages(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO, PTE_ORDER);
  50. return pte;
  51. }
  52. static inline struct page *pte_alloc_one(struct mm_struct *mm,
  53. unsigned long address)
  54. {
  55. struct page *pte;
  56. pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT, PTE_ORDER);
  57. if (pte)
  58. clear_highpage(pte);
  59. return pte;
  60. }
  61. static inline void pte_free_kernel(pte_t *pte)
  62. {
  63. free_pages((unsigned long)pte, PTE_ORDER);
  64. }
  65. static inline void pte_free(struct page *pte)
  66. {
  67. __free_pages(pte, PTE_ORDER);
  68. }
  69. #define __pte_free_tlb(tlb,pte) tlb_remove_page((tlb),(pte))
  70. #ifdef CONFIG_MIPS32
  71. #define pgd_populate(mm, pmd, pte) BUG()
  72. /*
  73. * allocating and freeing a pmd is trivial: the 1-entry pmd is
  74. * inside the pgd, so has no extra memory associated with it.
  75. */
  76. #define pmd_alloc_one(mm, addr) ({ BUG(); ((pmd_t *)2); })
  77. #define pmd_free(x) do { } while (0)
  78. #define __pmd_free_tlb(tlb,x) do { } while (0)
  79. #endif
  80. #ifdef CONFIG_MIPS64
  81. #define pgd_populate(mm, pgd, pmd) set_pgd(pgd, __pgd(pmd))
  82. static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address)
  83. {
  84. pmd_t *pmd;
  85. pmd = (pmd_t *) __get_free_pages(GFP_KERNEL|__GFP_REPEAT, PMD_ORDER);
  86. if (pmd)
  87. pmd_init((unsigned long)pmd, (unsigned long)invalid_pte_table);
  88. return pmd;
  89. }
  90. static inline void pmd_free(pmd_t *pmd)
  91. {
  92. free_pages((unsigned long)pmd, PMD_ORDER);
  93. }
  94. #define __pmd_free_tlb(tlb,x) pmd_free(x)
  95. #endif
  96. #define check_pgt_cache() do { } while (0)
  97. #endif /* _ASM_PGALLOC_H */