Lines Matching defs:pte
59 static inline bool pte_user(pte_t pte) in pte_user()
386 #define __pte_to_swp_entry(pte) ((swp_entry_t) { pte_val(pte) >> 3 }) argument
389 static inline int pte_swp_exclusive(pte_t pte) in pte_swp_exclusive()
394 static inline pte_t pte_swp_mkexclusive(pte_t pte) in pte_swp_mkexclusive()
399 static inline pte_t pte_swp_clear_exclusive(pte_t pte) in pte_swp_clear_exclusive()
405 static inline int pte_write(pte_t pte) { return !!(pte_val(pte) & _PAGE_RW);} in pte_write()
406 static inline int pte_read(pte_t pte) { return 1; } in pte_read()
407 static inline int pte_dirty(pte_t pte) { return !!(pte_val(pte) & _PAGE_DIRTY); } in pte_dirty()
408 static inline int pte_young(pte_t pte) { return !!(pte_val(pte) & _PAGE_ACCESSED); } in pte_young()
409 static inline int pte_special(pte_t pte) { return !!(pte_val(pte) & _PAGE_SPECIAL); } in pte_special()
410 static inline int pte_none(pte_t pte) { return (pte_val(pte) & ~_PTE_NONE_MASK) == 0; } in pte_none()
411 static inline bool pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_EXEC; } in pte_exec()
413 static inline int pte_present(pte_t pte) in pte_present()
418 static inline bool pte_hw_valid(pte_t pte) in pte_hw_valid()
423 static inline bool pte_hashpte(pte_t pte) in pte_hashpte()
428 static inline bool pte_ci(pte_t pte) in pte_ci()
438 static inline bool pte_access_permitted(pte_t pte, bool write) in pte_access_permitted()
466 static inline pte_t pte_wrprotect(pte_t pte) in pte_wrprotect()
471 static inline pte_t pte_exprotect(pte_t pte) in pte_exprotect()
476 static inline pte_t pte_mkclean(pte_t pte) in pte_mkclean()
481 static inline pte_t pte_mkold(pte_t pte) in pte_mkold()
486 static inline pte_t pte_mkexec(pte_t pte) in pte_mkexec()
491 static inline pte_t pte_mkpte(pte_t pte) in pte_mkpte()
496 static inline pte_t pte_mkwrite_novma(pte_t pte) in pte_mkwrite_novma()
501 static inline pte_t pte_mkdirty(pte_t pte) in pte_mkdirty()
506 static inline pte_t pte_mkyoung(pte_t pte) in pte_mkyoung()
511 static inline pte_t pte_mkspecial(pte_t pte) in pte_mkspecial()
516 static inline pte_t pte_mkhuge(pte_t pte) in pte_mkhuge()
521 static inline pte_t pte_mkprivileged(pte_t pte) in pte_mkprivileged()
526 static inline pte_t pte_mkuser(pte_t pte) in pte_mkuser()
531 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot) in pte_modify()
561 pte_t *ptep, pte_t pte, int percpu) in __set_pte_at()