Lines Matching refs:pte
20 pte_t *ptep, pte_t pte);
55 pte_t pte, int dirty) in huge_ptep_set_access_flags() argument
57 int changed = !pte_same(huge_ptep_get(ptep), pte); in huge_ptep_set_access_flags()
60 set_huge_pte_at(vma->vm_mm, addr, ptep, pte); in huge_ptep_set_access_flags()
68 pte_t pte = huge_ptep_get_and_clear(mm, addr, ptep); in huge_ptep_set_wrprotect() local
69 set_huge_pte_at(mm, addr, ptep, pte_wrprotect(pte)); in huge_ptep_set_wrprotect()
77 static inline int huge_pte_none(pte_t pte) in huge_pte_none() argument
79 return pte_none(pte); in huge_pte_none()
82 static inline int huge_pte_write(pte_t pte) in huge_pte_write() argument
84 return pte_write(pte); in huge_pte_write()
87 static inline int huge_pte_dirty(pte_t pte) in huge_pte_dirty() argument
89 return pte_dirty(pte); in huge_pte_dirty()
92 static inline pte_t huge_pte_mkwrite(pte_t pte) in huge_pte_mkwrite() argument
94 return pte_mkwrite(pte); in huge_pte_mkwrite()
97 static inline pte_t huge_pte_mkdirty(pte_t pte) in huge_pte_mkdirty() argument
99 return pte_mkdirty(pte); in huge_pte_mkdirty()
102 static inline pte_t huge_pte_wrprotect(pte_t pte) in huge_pte_wrprotect() argument
104 return pte_wrprotect(pte); in huge_pte_wrprotect()
107 static inline pte_t huge_pte_modify(pte_t pte, pgprot_t newprot) in huge_pte_modify() argument
109 return pte_modify(pte, newprot); in huge_pte_modify()