pgtable-3level.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192
  1. #ifndef _ASM_X86_PGTABLE_3LEVEL_H
  2. #define _ASM_X86_PGTABLE_3LEVEL_H
  3. /*
  4. * Intel Physical Address Extension (PAE) Mode - three-level page
  5. * tables on PPro+ CPUs.
  6. *
  7. * Copyright (C) 1999 Ingo Molnar <mingo@redhat.com>
  8. */
  9. #define pte_ERROR(e) \
  10. printk("%s:%d: bad pte %p(%08lx%08lx).\n", \
  11. __FILE__, __LINE__, &(e), (e).pte_high, (e).pte_low)
  12. #define pmd_ERROR(e) \
  13. printk("%s:%d: bad pmd %p(%016Lx).\n", \
  14. __FILE__, __LINE__, &(e), pmd_val(e))
  15. #define pgd_ERROR(e) \
  16. printk("%s:%d: bad pgd %p(%016Lx).\n", \
  17. __FILE__, __LINE__, &(e), pgd_val(e))
  18. /* Rules for using set_pte: the pte being assigned *must* be
  19. * either not present or in a state where the hardware will
  20. * not attempt to update the pte. In places where this is
  21. * not possible, use pte_get_and_clear to obtain the old pte
  22. * value and then use set_pte to update it. -ben
  23. */
  24. static inline void native_set_pte(pte_t *ptep, pte_t pte)
  25. {
  26. ptep->pte_high = pte.pte_high;
  27. smp_wmb();
  28. ptep->pte_low = pte.pte_low;
  29. }
  30. #define pmd_read_atomic pmd_read_atomic
  31. /*
  32. * pte_offset_map_lock on 32bit PAE kernels was reading the pmd_t with
  33. * a "*pmdp" dereference done by gcc. Problem is, in certain places
  34. * where pte_offset_map_lock is called, concurrent page faults are
  35. * allowed, if the mmap_sem is hold for reading. An example is mincore
  36. * vs page faults vs MADV_DONTNEED. On the page fault side
  37. * pmd_populate rightfully does a set_64bit, but if we're reading the
  38. * pmd_t with a "*pmdp" on the mincore side, a SMP race can happen
  39. * because gcc will not read the 64bit of the pmd atomically. To fix
  40. * this all places running pmd_offset_map_lock() while holding the
  41. * mmap_sem in read mode, shall read the pmdp pointer using this
  42. * function to know if the pmd is null nor not, and in turn to know if
  43. * they can run pmd_offset_map_lock or pmd_trans_huge or other pmd
  44. * operations.
  45. *
  46. * Without THP if the mmap_sem is hold for reading, the
  47. * pmd can only transition from null to not null while pmd_read_atomic runs.
  48. * So there's no need of literally reading it atomically.
  49. *
  50. * With THP if the mmap_sem is hold for reading, the pmd can become
  51. * THP or null or point to a pte (and in turn become "stable") at any
  52. * time under pmd_read_atomic, so it's mandatory to read it atomically
  53. * with cmpxchg8b.
  54. */
  55. #ifndef CONFIG_TRANSPARENT_HUGEPAGE
  56. static inline pmd_t pmd_read_atomic(pmd_t *pmdp)
  57. {
  58. pmdval_t ret;
  59. u32 *tmp = (u32 *)pmdp;
  60. ret = (pmdval_t) (*tmp);
  61. if (ret) {
  62. /*
  63. * If the low part is null, we must not read the high part
  64. * or we can end up with a partial pmd.
  65. */
  66. smp_rmb();
  67. ret |= ((pmdval_t)*(tmp + 1)) << 32;
  68. }
  69. return (pmd_t) { ret };
  70. }
  71. #else /* CONFIG_TRANSPARENT_HUGEPAGE */
  72. static inline pmd_t pmd_read_atomic(pmd_t *pmdp)
  73. {
  74. return (pmd_t) { atomic64_read((atomic64_t *)pmdp) };
  75. }
  76. #endif /* CONFIG_TRANSPARENT_HUGEPAGE */
  77. static inline void native_set_pte_atomic(pte_t *ptep, pte_t pte)
  78. {
  79. set_64bit((unsigned long long *)(ptep), native_pte_val(pte));
  80. }
  81. static inline void native_set_pmd(pmd_t *pmdp, pmd_t pmd)
  82. {
  83. set_64bit((unsigned long long *)(pmdp), native_pmd_val(pmd));
  84. }
  85. static inline void native_set_pud(pud_t *pudp, pud_t pud)
  86. {
  87. set_64bit((unsigned long long *)(pudp), native_pud_val(pud));
  88. }
  89. /*
  90. * For PTEs and PDEs, we must clear the P-bit first when clearing a page table
  91. * entry, so clear the bottom half first and enforce ordering with a compiler
  92. * barrier.
  93. */
  94. static inline void native_pte_clear(struct mm_struct *mm, unsigned long addr,
  95. pte_t *ptep)
  96. {
  97. ptep->pte_low = 0;
  98. smp_wmb();
  99. ptep->pte_high = 0;
  100. }
  101. static inline void native_pmd_clear(pmd_t *pmd)
  102. {
  103. u32 *tmp = (u32 *)pmd;
  104. *tmp = 0;
  105. smp_wmb();
  106. *(tmp + 1) = 0;
  107. }
  108. static inline void pud_clear(pud_t *pudp)
  109. {
  110. set_pud(pudp, __pud(0));
  111. /*
  112. * According to Intel App note "TLBs, Paging-Structure Caches,
  113. * and Their Invalidation", April 2007, document 317080-001,
  114. * section 8.1: in PAE mode we explicitly have to flush the
  115. * TLB via cr3 if the top-level pgd is changed...
  116. *
  117. * Currently all places where pud_clear() is called either have
  118. * flush_tlb_mm() followed or don't need TLB flush (x86_64 code or
  119. * pud_clear_bad()), so we don't need TLB flush here.
  120. */
  121. }
  122. #ifdef CONFIG_SMP
  123. static inline pte_t native_ptep_get_and_clear(pte_t *ptep)
  124. {
  125. pte_t res;
  126. /* xchg acts as a barrier before the setting of the high bits */
  127. res.pte_low = xchg(&ptep->pte_low, 0);
  128. res.pte_high = ptep->pte_high;
  129. ptep->pte_high = 0;
  130. return res;
  131. }
  132. #else
  133. #define native_ptep_get_and_clear(xp) native_local_ptep_get_and_clear(xp)
  134. #endif
  135. #ifdef CONFIG_SMP
  136. union split_pmd {
  137. struct {
  138. u32 pmd_low;
  139. u32 pmd_high;
  140. };
  141. pmd_t pmd;
  142. };
  143. static inline pmd_t native_pmdp_get_and_clear(pmd_t *pmdp)
  144. {
  145. union split_pmd res, *orig = (union split_pmd *)pmdp;
  146. /* xchg acts as a barrier before setting of the high bits */
  147. res.pmd_low = xchg(&orig->pmd_low, 0);
  148. res.pmd_high = orig->pmd_high;
  149. orig->pmd_high = 0;
  150. return res.pmd;
  151. }
  152. #else
  153. #define native_pmdp_get_and_clear(xp) native_local_pmdp_get_and_clear(xp)
  154. #endif
  155. /*
  156. * Bits 0, 6 and 7 are taken in the low part of the pte,
  157. * put the 32 bits of offset into the high part.
  158. */
  159. #define pte_to_pgoff(pte) ((pte).pte_high)
  160. #define pgoff_to_pte(off) \
  161. ((pte_t) { { .pte_low = _PAGE_FILE, .pte_high = (off) } })
  162. #define PTE_FILE_MAX_BITS 32
  163. /* Encode and de-code a swap entry */
  164. #define MAX_SWAPFILES_CHECK() BUILD_BUG_ON(MAX_SWAPFILES_SHIFT > 5)
  165. #define __swp_type(x) (((x).val) & 0x1f)
  166. #define __swp_offset(x) ((x).val >> 5)
  167. #define __swp_entry(type, offset) ((swp_entry_t){(type) | (offset) << 5})
  168. #define __pte_to_swp_entry(pte) ((swp_entry_t){ (pte).pte_high })
  169. #define __swp_entry_to_pte(x) ((pte_t){ { .pte_high = (x).val } })
  170. #endif /* _ASM_X86_PGTABLE_3LEVEL_H */