Lines Matching defs:pte

123 static inline pte_t pte_mkwrite_novma(pte_t pte)  in pte_mkwrite_novma()
132 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
137 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
143 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
150 static inline pte_t pte_mkexec(pte_t pte) in pte_mkexec()
157 static inline int pte_write(pte_t pte) in pte_write()
162 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_DIRTY; } in pte_dirty()
163 static inline int pte_special(pte_t pte) { return pte_val(pte) & _PAGE_SPECIAL; } in pte_special()
164 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none()
165 static inline bool pte_hashpte(pte_t pte) { return false; } in pte_hashpte()
166 static inline bool pte_ci(pte_t pte) { return pte_val(pte) & _PAGE_NO_CACHE; } in pte_ci()
167 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec()
169 static inline int pte_present(pte_t pte) in pte_present()
174 static inline bool pte_hw_valid(pte_t pte) in pte_hw_valid()
179 static inline int pte_young(pte_t pte) in pte_young()
190 static inline bool pte_read(pte_t pte) in pte_read()
201 static inline bool pte_access_permitted(pte_t pte, bool write) in pte_access_permitted()
227 static inline pte_t pte_exprotect(pte_t pte) in pte_exprotect()
232 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
237 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
242 static inline pte_t pte_mkspecial(pte_t pte) in pte_mkspecial()
248 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge()
254 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
259 static inline int pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
264 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive()
269 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive()
280 pte_t *ptep, pte_t pte, int percpu) in __set_pte_at()