Lines Matching defs:pte
137 # define pte_none(pte) (!(((pte).pte_high) & ~_PAGE_GLOBAL)) argument
139 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument
142 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
143 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
145 static inline void set_pte(pte_t *ptep, pte_t pte)
188 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
189 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
190 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
276 static inline int pte_special(pte_t pte)
281 static inline pte_t pte_mkspecial(pte_t pte)
287 static inline int pte_special(pte_t pte)
292 static inline pte_t pte_mkspecial(pte_t pte)
305 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
306 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
307 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
309 static inline pte_t pte_wrprotect(pte_t pte)
318 static inline pte_t pte_mkclean(pte_t pte)
327 static inline pte_t pte_mkold(pte_t pte)
336 static inline pte_t pte_mkwrite(pte_t pte)
347 static inline pte_t pte_mkdirty(pte_t pte)
358 static inline pte_t pte_mkyoung(pte_t pte)
369 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
370 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
371 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
373 static inline pte_t pte_wrprotect(pte_t pte)
379 static inline pte_t pte_mkclean(pte_t pte)
385 static inline pte_t pte_mkold(pte_t pte)
391 static inline pte_t pte_mkwrite(pte_t pte)
399 static inline pte_t pte_mkdirty(pte_t pte)
407 static inline pte_t pte_mkyoung(pte_t pte)
418 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
420 static inline pte_t pte_mkhuge(pte_t pte)
428 static inline bool pte_soft_dirty(pte_t pte)
434 static inline pte_t pte_mksoft_dirty(pte_t pte)
441 static inline pte_t pte_clear_soft_dirty(pte_t pte)
513 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
522 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
531 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
548 pte_t pte = *ptep; local
558 pte_t pte = *(pte_t *)pmdp; local