pgalloc.h 2.9 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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/highmem.h>
  12. #include <linux/mm.h>
  13. #include <linux/sched.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 pmd table with invalid pointers.
  26. */
  27. extern void pmd_init(unsigned long page, unsigned long pagetable);
  28. #ifdef CONFIG_64BIT
  29. static inline void pud_populate(struct mm_struct *mm, pud_t *pud, pmd_t *pmd)
  30. {
  31. set_pud(pud, __pud((unsigned long)pmd));
  32. }
  33. #endif
  34. /*
  35. * Initialize a new pgd / pmd table with invalid pointers.
  36. */
  37. extern void pgd_init(unsigned long page);
  38. static inline pgd_t *pgd_alloc(struct mm_struct *mm)
  39. {
  40. pgd_t *ret, *init;
  41. ret = (pgd_t *) __get_free_pages(GFP_KERNEL, PGD_ORDER);
  42. if (ret) {
  43. init = pgd_offset(&init_mm, 0UL);
  44. pgd_init((unsigned long)ret);
  45. memcpy(ret + USER_PTRS_PER_PGD, init + USER_PTRS_PER_PGD,
  46. (PTRS_PER_PGD - USER_PTRS_PER_PGD) * sizeof(pgd_t));
  47. }
  48. return ret;
  49. }
  50. static inline void pgd_free(pgd_t *pgd)
  51. {
  52. free_pages((unsigned long)pgd, PGD_ORDER);
  53. }
  54. static inline pte_t *pte_alloc_one_kernel(struct mm_struct *mm,
  55. unsigned long address)
  56. {
  57. pte_t *pte;
  58. pte = (pte_t *) __get_free_pages(GFP_KERNEL|__GFP_REPEAT|__GFP_ZERO, PTE_ORDER);
  59. return pte;
  60. }
  61. static inline struct page *pte_alloc_one(struct mm_struct *mm,
  62. unsigned long address)
  63. {
  64. struct page *pte;
  65. pte = alloc_pages(GFP_KERNEL | __GFP_REPEAT, PTE_ORDER);
  66. if (pte)
  67. clear_highpage(pte);
  68. return pte;
  69. }
  70. static inline void pte_free_kernel(pte_t *pte)
  71. {
  72. free_pages((unsigned long)pte, PTE_ORDER);
  73. }
  74. static inline void pte_free(struct page *pte)
  75. {
  76. __free_pages(pte, PTE_ORDER);
  77. }
  78. #define __pte_free_tlb(tlb, pte) tlb_remove_page((tlb), (pte))
  79. #ifdef CONFIG_32BIT
  80. /*
  81. * allocating and freeing a pmd is trivial: the 1-entry pmd is
  82. * inside the pgd, so has no extra memory associated with it.
  83. */
  84. #define pmd_free(x) do { } while (0)
  85. #define __pmd_free_tlb(tlb, x) do { } while (0)
  86. #endif
  87. #ifdef CONFIG_64BIT
  88. static inline pmd_t *pmd_alloc_one(struct mm_struct *mm, unsigned long address)
  89. {
  90. pmd_t *pmd;
  91. pmd = (pmd_t *) __get_free_pages(GFP_KERNEL|__GFP_REPEAT, PMD_ORDER);
  92. if (pmd)
  93. pmd_init((unsigned long)pmd, (unsigned long)invalid_pte_table);
  94. return pmd;
  95. }
  96. static inline void pmd_free(pmd_t *pmd)
  97. {
  98. free_pages((unsigned long)pmd, PMD_ORDER);
  99. }
  100. #define __pmd_free_tlb(tlb, x) pmd_free(x)
  101. #endif
  102. #define check_pgt_cache() do { } while (0)
  103. extern void pagetable_init(void);
  104. #endif /* _ASM_PGALLOC_H */