Lines Matching refs:pte
20 pte_t *ptep, pte_t pte);
59 pte_t pte, int dirty) in huge_ptep_set_access_flags() argument
61 int changed = !pte_same(huge_ptep_get(ptep), pte); in huge_ptep_set_access_flags()
64 set_huge_pte_at(vma->vm_mm, addr, ptep, pte); in huge_ptep_set_access_flags()
72 pte_t pte = huge_ptep_get_and_clear(mm, addr, ptep); in huge_ptep_set_wrprotect() local
73 set_huge_pte_at(mm, addr, ptep, pte_wrprotect(pte)); in huge_ptep_set_wrprotect()
81 static inline int huge_pte_none(pte_t pte) in huge_pte_none() argument
83 return pte_none(pte); in huge_pte_none()
86 static inline int huge_pte_write(pte_t pte) in huge_pte_write() argument
88 return pte_write(pte); in huge_pte_write()
91 static inline int huge_pte_dirty(pte_t pte) in huge_pte_dirty() argument
93 return pte_dirty(pte); in huge_pte_dirty()
96 static inline pte_t huge_pte_mkwrite(pte_t pte) in huge_pte_mkwrite() argument
98 return pte_mkwrite(pte); in huge_pte_mkwrite()
101 static inline pte_t huge_pte_mkdirty(pte_t pte) in huge_pte_mkdirty() argument
103 return pte_mkdirty(pte); in huge_pte_mkdirty()
106 static inline pte_t huge_pte_wrprotect(pte_t pte) in huge_pte_wrprotect() argument
108 return pte_wrprotect(pte); in huge_pte_wrprotect()
111 static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot) in huge_pte_modify() argument
113 return pte_modify(pte, newprot); in huge_pte_modify()