1 #ifndef _ASM_GENERIC_PGTABLE_H
2 #define _ASM_GENERIC_PGTABLE_H
4 #ifndef __HAVE_ARCH_PTEP_ESTABLISH
6 * Establish a new mapping:
8 * - update the page tables
9 * - inform the TLB about the new one
11 * We hold the mm semaphore for reading and vma->vm_mm->page_table_lock.
13 * Note: the old pte is known to not be writable, so we don't need to
14 * worry about dirty bits etc getting lost.
16 #ifndef __HAVE_ARCH_SET_PTE_ATOMIC
17 #define ptep_establish(__vma, __address, __ptep, __entry) \
19 set_pte_at((__vma)->vm_mm, (__address), __ptep, __entry); \
20 flush_tlb_page(__vma, __address); \
22 #else /* __HAVE_ARCH_SET_PTE_ATOMIC */
23 #define ptep_establish(__vma, __address, __ptep, __entry) \
25 set_pte_atomic(__ptep, __entry); \
26 flush_tlb_page(__vma, __address); \
28 #endif /* __HAVE_ARCH_SET_PTE_ATOMIC */
31 #ifndef __HAVE_ARCH_PTEP_SET_ACCESS_FLAGS
33 * Largely same as above, but only sets the access flags (dirty,
34 * accessed, and writable). Furthermore, we know it always gets set
35 * to a "more permissive" setting, which allows most architectures
38 #define ptep_set_access_flags(__vma, __address, __ptep, __entry, __dirty) \
40 set_pte_at((__vma)->vm_mm, (__address), __ptep, __entry); \
41 flush_tlb_page(__vma, __address); \
45 #ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_YOUNG
46 #define ptep_test_and_clear_young(__vma, __address, __ptep) \
48 pte_t __pte = *(__ptep); \
50 if (!pte_young(__pte)) \
53 set_pte_at((__vma)->vm_mm, (__address), \
54 (__ptep), pte_mkold(__pte)); \
59 #ifndef __HAVE_ARCH_PTEP_CLEAR_YOUNG_FLUSH
60 #define ptep_clear_flush_young(__vma, __address, __ptep) \
63 __young = ptep_test_and_clear_young(__vma, __address, __ptep); \
65 flush_tlb_page(__vma, __address); \
70 #ifndef __HAVE_ARCH_PTEP_TEST_AND_CLEAR_DIRTY
71 #define ptep_test_and_clear_dirty(__vma, __address, __ptep) \
73 pte_t __pte = *__ptep; \
75 if (!pte_dirty(__pte)) \
78 set_pte_at((__vma)->vm_mm, (__address), (__ptep), \
79 pte_mkclean(__pte)); \
84 #ifndef __HAVE_ARCH_PTEP_CLEAR_DIRTY_FLUSH
85 #define ptep_clear_flush_dirty(__vma, __address, __ptep) \
88 __dirty = ptep_test_and_clear_dirty(__vma, __address, __ptep); \
90 flush_tlb_page(__vma, __address); \
95 #ifndef __HAVE_ARCH_PTEP_GET_AND_CLEAR
96 #define ptep_get_and_clear(__mm, __address, __ptep) \
98 pte_t __pte = *(__ptep); \
99 pte_clear((__mm), (__address), (__ptep)); \
104 #ifndef __HAVE_ARCH_PTEP_CLEAR_FLUSH
105 #define ptep_clear_flush(__vma, __address, __ptep) \
108 __pte = ptep_get_and_clear((__vma)->vm_mm, __address, __ptep); \
109 flush_tlb_page(__vma, __address); \
114 #ifndef __HAVE_ARCH_PTEP_SET_WRPROTECT
115 static inline void ptep_set_wrprotect(struct mm_struct
*mm
, unsigned long address
, pte_t
*ptep
)
117 pte_t old_pte
= *ptep
;
118 set_pte_at(mm
, address
, ptep
, pte_wrprotect(old_pte
));
122 #ifndef __HAVE_ARCH_PTE_SAME
123 #define pte_same(A,B) (pte_val(A) == pte_val(B))
126 #ifndef __HAVE_ARCH_PAGE_TEST_AND_CLEAR_DIRTY
127 #define page_test_and_clear_dirty(page) (0)
130 #ifndef __HAVE_ARCH_PAGE_TEST_AND_CLEAR_YOUNG
131 #define page_test_and_clear_young(page) (0)
134 #ifndef __HAVE_ARCH_PGD_OFFSET_GATE
135 #define pgd_offset_gate(mm, addr) pgd_offset(mm, addr)
138 #ifndef __HAVE_ARCH_LAZY_MMU_PROT_UPDATE
139 #define lazy_mmu_prot_update(pte) do { } while (0)
143 * When walking page tables, get the address of the next boundary, or
144 * the end address of the range if that comes earlier. Although end might
145 * wrap to 0 only in clear_page_range, __boundary may wrap to 0 throughout.
149 #define pgd_addr_end(addr, end) \
150 ({ unsigned long __boundary = ((addr) + PGDIR_SIZE) & PGDIR_MASK; \
151 (__boundary - 1 < (end) - 1)? __boundary: (end); \
156 #define pud_addr_end(addr, end) \
157 ({ unsigned long __boundary = ((addr) + PUD_SIZE) & PUD_MASK; \
158 (__boundary - 1 < (end) - 1)? __boundary: (end); \
163 #define pmd_addr_end(addr, end) \
164 ({ unsigned long __boundary = ((addr) + PMD_SIZE) & PMD_MASK; \
165 (__boundary - 1 < (end) - 1)? __boundary: (end); \
171 * When walking page tables, we usually want to skip any p?d_none entries;
172 * and any p?d_bad entries - reporting the error before resetting to none.
173 * Do the tests inline, but report and clear the bad entry in mm/memory.c.
175 void pgd_clear_bad(pgd_t
*);
176 void pud_clear_bad(pud_t
*);
177 void pmd_clear_bad(pmd_t
*);
179 static inline int pgd_none_or_clear_bad(pgd_t
*pgd
)
183 if (unlikely(pgd_bad(*pgd
))) {
190 static inline int pud_none_or_clear_bad(pud_t
*pud
)
194 if (unlikely(pud_bad(*pud
))) {
201 static inline int pmd_none_or_clear_bad(pmd_t
*pmd
)
205 if (unlikely(pmd_bad(*pmd
))) {
211 #endif /* !__ASSEMBLY__ */
213 #endif /* _ASM_GENERIC_PGTABLE_H */