Lines Matching defs:pte

111 # define pte_none(pte)		(!(((pte).pte_high) & ~_PAGE_GLOBAL))  argument
113 # define pte_none(pte) (!(((pte).pte_low | (pte).pte_high) & ~_PAGE_GLOBAL)) argument
116 #define pte_present(pte) ((pte).pte_low & _PAGE_PRESENT) argument
117 #define pte_no_exec(pte) ((pte).pte_low & _PAGE_NO_EXEC) argument
119 static inline void set_pte(pte_t *ptep, pte_t pte)
162 #define pte_none(pte) (!(pte_val(pte) & ~_PAGE_GLOBAL)) argument
163 #define pte_present(pte) (pte_val(pte) & _PAGE_PRESENT) argument
164 #define pte_no_exec(pte) (pte_val(pte) & _PAGE_NO_EXEC) argument
205 pte_t *ptep, pte_t pte, unsigned int nr)
262 static inline int pte_special(pte_t pte)
267 static inline pte_t pte_mkspecial(pte_t pte)
273 static inline int pte_special(pte_t pte)
278 static inline pte_t pte_mkspecial(pte_t pte)
291 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; }
292 static inline int pte_dirty(pte_t pte) { return pte.pte_low & _PAGE_MODIFIED; }
293 static inline int pte_young(pte_t pte) { return pte.pte_low & _PAGE_ACCESSED; }
295 static inline pte_t pte_wrprotect(pte_t pte)
304 static inline pte_t pte_mkclean(pte_t pte)
313 static inline pte_t pte_mkold(pte_t pte)
322 static inline pte_t pte_mkwrite_novma(pte_t pte)
333 static inline pte_t pte_mkdirty(pte_t pte)
344 static inline pte_t pte_mkyoung(pte_t pte)
355 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; }
356 static inline int pte_dirty(pte_t pte) { return pte_val(pte) & _PAGE_MODIFIED; }
357 static inline int pte_young(pte_t pte) { return pte_val(pte) & _PAGE_ACCESSED; }
359 static inline pte_t pte_wrprotect(pte_t pte)
365 static inline pte_t pte_mkclean(pte_t pte)
371 static inline pte_t pte_mkold(pte_t pte)
377 static inline pte_t pte_mkwrite_novma(pte_t pte)
385 static inline pte_t pte_mkdirty(pte_t pte)
393 static inline pte_t pte_mkyoung(pte_t pte)
404 static inline int pte_huge(pte_t pte) { return pte_val(pte) & _PAGE_HUGE; }
406 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)
514 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
523 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
532 static inline pte_t pte_modify(pte_t pte, pgprot_t newprot)
543 static inline int pte_swp_exclusive(pte_t pte)
548 static inline pte_t pte_swp_mkexclusive(pte_t pte)
554 static inline pte_t pte_swp_clear_exclusive(pte_t pte)
560 static inline int pte_swp_exclusive(pte_t pte)
565 static inline pte_t pte_swp_mkexclusive(pte_t pte)
571 static inline pte_t pte_swp_clear_exclusive(pte_t pte)
586 pte_t pte = *ptep; local
603 pte_t pte = *(pte_t *)pmdp; local