Lines Matching defs:pte

132 # define pte_none(pte)		(!(((pte).pte_high) & ~_PAGE_GLOBAL))  argument
134 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument
137 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
138 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
140 static inline void set_pte(pte_t *ptep, pte_t pte)
183 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
184 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
185 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
270 static inline int pte_special(pte_t pte)
275 static inline pte_t pte_mkspecial(pte_t pte)
281 static inline int pte_special(pte_t pte)
286 static inline pte_t pte_mkspecial(pte_t pte)
299 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
300 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
301 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
303 static inline pte_t pte_wrprotect(pte_t pte)
312 static inline pte_t pte_mkclean(pte_t pte)
321 static inline pte_t pte_mkold(pte_t pte)
330 static inline pte_t pte_mkwrite(pte_t pte)
341 static inline pte_t pte_mkdirty(pte_t pte)
352 static inline pte_t pte_mkyoung(pte_t pte)
363 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
364 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
365 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
367 static inline pte_t pte_wrprotect(pte_t pte)
373 static inline pte_t pte_mkclean(pte_t pte)
379 static inline pte_t pte_mkold(pte_t pte)
385 static inline pte_t pte_mkwrite(pte_t pte)
393 static inline pte_t pte_mkdirty(pte_t pte)
401 static inline pte_t pte_mkyoung(pte_t pte)
412 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
414 static inline pte_t pte_mkhuge(pte_t pte)
422 static inline bool pte_soft_dirty(pte_t pte)
428 static inline pte_t pte_mksoft_dirty(pte_t pte)
435 static inline pte_t pte_clear_soft_dirty(pte_t pte)
507 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
516 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
525 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
542 pte_t pte = *ptep; local
552 pte_t pte = *(pte_t *)pmdp; local