tag | line | file | source code |
pte_rdprotect | 274 | include/asm-alpha/pgtable.h | extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) |= _PAGE_FOR; return pte; } |
pte_rdprotect | 281 | include/asm-i386/pgtable.h | extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_USER; return pte; } |
pte_rdprotect | 277 | include/asm-mips/pgtable.h | extern inline pte_t pte_rdprotect(pte_t pte) |
pte_rdprotect | 255 | include/asm-ppc/pgtable.h | extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_USER; return pte; } |