Lines Matching refs:pte
107 static inline pte_t pte_modify (pte_t pte, pgprot_t newprot) in pte_modify() argument
109 pte_val(pte) = (pte_val(pte) & SUN3_PAGE_CHG_MASK) | pgprot_val(newprot); in pte_modify()
110 return pte; in pte_modify()
120 #define __pte_page(pte) \ argument
121 ((unsigned long) __va ((pte_val (pte) & SUN3_PAGE_PGNUM_MASK) << PAGE_SHIFT))
125 static inline int pte_none(pte_t pte) { return !pte_val (pte); } in pte_none() argument
126 static inline int pte_present(pte_t pte) { return pte_val (pte) & SUN3_PAGE_VALID; } in pte_present() argument
130 #define pte_pagenr(pte) ((__pte_page(pte) - PAGE_OFFSET) >> PAGE_SHIFT) argument
131 #define pte_page(pte) (mem_map+pte_pagenr(pte)) argument
163 static inline int pte_read(pte_t pte) { return 1; } in pte_read() argument
164 static inline int pte_write(pte_t pte) { return pte_val(pte) & SUN3_PAGE_WRITEABLE; } in pte_write() argument
165 static inline int pte_exec(pte_t pte) { return 1; } in pte_exec() argument
166 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & SUN3_PAGE_MODIFIED; } in pte_dirty() argument
167 static inline int pte_young(pte_t pte) { return pte_val(pte) & SUN3_PAGE_ACCESSED; } in pte_young() argument
169 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_WRITEABLE; return pte; } in pte_wrprotect() argument
170 static inline pte_t pte_rdprotect(pte_t pte) { return pte; } in pte_rdprotect() argument
171 static inline pte_t pte_exprotect(pte_t pte) { return pte; } in pte_exprotect() argument
172 static inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_MODIFIED; return pte; } in pte_mkclean() argument
173 static inline pte_t pte_mkold(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_ACCESSED; return pte; } in pte_mkold() argument
174 static inline pte_t pte_mkwrite(pte_t pte) { pte_val(pte) |= SUN3_PAGE_WRITEABLE; return pte; } in pte_mkwrite() argument
175 static inline pte_t pte_mkread(pte_t pte) { return pte; } in pte_mkread() argument
176 static inline pte_t pte_mkexec(pte_t pte) { return pte; } in pte_mkexec() argument
177 static inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= SUN3_PAGE_MODIFIED; return pte; } in pte_mkdirty() argument
178 static inline pte_t pte_mkyoung(pte_t pte) { pte_val(pte) |= SUN3_PAGE_ACCESSED; return pte; } in pte_mkyoung() argument
179 static inline pte_t pte_mknocache(pte_t pte) { pte_val(pte) |= SUN3_PAGE_NOCACHE; return pte; } in pte_mknocache() argument
183 static inline pte_t pte_mkcache(pte_t pte) { return pte; } in pte_mkcache() argument