Lines Matching refs:pte
73 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
74 #define pte_read(pte) (!(pte_val(pte) & _PAGE_NOT_USER)) argument
75 #define pte_write(pte) (!(pte_val(pte) & _PAGE_READONLY)) argument
76 #define pte_exec(pte) (!(pte_val(pte) & _PAGE_NOT_USER)) argument
77 #define pte_dirty(pte) (!(pte_val(pte) & _PAGE_CLEAN)) argument
78 #define pte_young(pte) (!(pte_val(pte) & _PAGE_OLD)) argument
80 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) |= _PAGE_READONLY; return pte; } in pte_wrprotect() argument
81 static inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) |= _PAGE_NOT_USER; return pte; } in pte_rdprotect() argument
82 static inline pte_t pte_exprotect(pte_t pte) { pte_val(pte) |= _PAGE_NOT_USER; return pte; } in pte_exprotect() argument
83 static inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) |= _PAGE_CLEAN; return pte; } in pte_mkclean() argument
84 static inline pte_t pte_mkold(pte_t pte) { pte_val(pte) |= _PAGE_OLD; return pte; } in pte_mkold() argument
86 static inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) &= ~_PAGE_READONLY; return pte; } in pte_mkwrite() argument
87 static inline pte_t pte_mkread(pte_t pte) { pte_val(pte) &= ~_PAGE_NOT_USER; return pte; } in pte_mkread() argument
88 static inline pte_t pte_mkexec(pte_t pte) { pte_val(pte) &= ~_PAGE_NOT_USER; return pte; } in pte_mkexec() argument
89 static inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) &= ~_PAGE_CLEAN; return pte; } in pte_mkdirty() argument
90 static inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) &= ~_PAGE_OLD; return pte; } in pte_mkyoung() argument