Lines Matching refs:pte_get_bits
103 #define pte_present(x) pte_get_bits(x, (_PAGE_PRESENT | _PAGE_PROTNONE))
122 return((pte_get_bits(pte, _PAGE_USER)) && in pte_read()
123 !(pte_get_bits(pte, _PAGE_PROTNONE))); in pte_read()
127 return((pte_get_bits(pte, _PAGE_USER)) && in pte_exec()
128 !(pte_get_bits(pte, _PAGE_PROTNONE))); in pte_exec()
133 return((pte_get_bits(pte, _PAGE_RW)) && in pte_write()
134 !(pte_get_bits(pte, _PAGE_PROTNONE))); in pte_write()
139 return pte_get_bits(pte, _PAGE_DIRTY); in pte_dirty()
144 return pte_get_bits(pte, _PAGE_ACCESSED); in pte_young()
149 return pte_get_bits(pte, _PAGE_NEWPAGE); in pte_newpage()
154 return(pte_present(pte) && (pte_get_bits(pte, _PAGE_NEWPROT))); in pte_newprot()
183 if (likely(pte_get_bits(pte, _PAGE_RW))) in pte_wrprotect()
192 if (unlikely(pte_get_bits(pte, _PAGE_USER))) in pte_mkread()
212 if (unlikely(pte_get_bits(pte, _PAGE_RW))) in pte_mkwrite_novma()
347 return pte_get_bits(pte, _PAGE_SWP_EXCLUSIVE); in pte_swp_exclusive()