Lines Matching defs:pte

114 # define pte_none(pte)		(!(((pte).pte_high) & ~_PAGE_GLOBAL))  argument
116 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument
119 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
120 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
122 static inline void set_pte(pte_t *ptep, pte_t pte)
165 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
166 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
167 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
252 static inline int pte_special(pte_t pte)
257 static inline pte_t pte_mkspecial(pte_t pte)
263 static inline int pte_special(pte_t pte)
268 static inline pte_t pte_mkspecial(pte_t pte)
281 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
282 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
283 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
285 static inline pte_t pte_wrprotect(pte_t pte)
294 static inline pte_t pte_mkclean(pte_t pte)
303 static inline pte_t pte_mkold(pte_t pte)
312 static inline pte_t pte_mkwrite(pte_t pte)
323 static inline pte_t pte_mkdirty(pte_t pte)
334 static inline pte_t pte_mkyoung(pte_t pte)
345 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
346 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
347 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
349 static inline pte_t pte_wrprotect(pte_t pte)
355 static inline pte_t pte_mkclean(pte_t pte)
361 static inline pte_t pte_mkold(pte_t pte)
367 static inline pte_t pte_mkwrite(pte_t pte)
375 static inline pte_t pte_mkdirty(pte_t pte)
383 static inline pte_t pte_mkyoung(pte_t pte)
394 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
396 static inline pte_t pte_mkhuge(pte_t pte)
418 static inline bool pte_soft_dirty(pte_t pte)
424 static inline pte_t pte_mksoft_dirty(pte_t pte)
431 static inline pte_t pte_clear_soft_dirty(pte_t pte)
503 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
512 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
521 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
532 static inline int pte_swp_exclusive(pte_t pte)
537 static inline pte_t pte_swp_mkexclusive(pte_t pte)
543 static inline pte_t pte_swp_clear_exclusive(pte_t pte)
549 static inline int pte_swp_exclusive(pte_t pte)
554 static inline pte_t pte_swp_mkexclusive(pte_t pte)
560 static inline pte_t pte_swp_clear_exclusive(pte_t pte)
573 pte_t pte = *ptep; local
583 pte_t pte = *(pte_t *)pmdp; local