tag | line | file | source code |
_PAGE_USER | 65 | include/asm-i386/pgtable.h | #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY) |
_PAGE_USER | 69 | include/asm-i386/pgtable.h | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED) |
_PAGE_USER | 70 | include/asm-i386/pgtable.h | #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW) |
_PAGE_USER | 71 | include/asm-i386/pgtable.h | #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED) |
_PAGE_USER | 180 | include/asm-i386/pgtable.h | extern inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } |
_PAGE_USER | 182 | include/asm-i386/pgtable.h | extern inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_USER; } |
_PAGE_USER | 188 | include/asm-i386/pgtable.h | extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_USER; return pte; } |
_PAGE_USER | 189 | include/asm-i386/pgtable.h | extern inline pte_t pte_exprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_USER; return pte; } |
_PAGE_USER | 194 | include/asm-i386/pgtable.h | extern inline pte_t pte_mkread(pte_t pte) { pte_val(pte) |= _PAGE_USER; return pte; } |
_PAGE_USER | 195 | include/asm-i386/pgtable.h | extern inline pte_t pte_mkexec(pte_t pte) { pte_val(pte) |= _PAGE_USER; return pte; } |
_PAGE_USER | 81 | include/asm-mips/page.h | #define _PAGE_TABLE (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY | \ |
_PAGE_USER | 87 | include/asm-mips/page.h | #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _CACHE_CACHABLE_NO_WA) |
_PAGE_USER | 88 | include/asm-mips/page.h | #define PAGE_COPY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW | _CACHE_CACHABLE_NO_WA) |
_PAGE_USER | 89 | include/asm-mips/page.h | #define PAGE_READONLY __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _CACHE_CACHABLE_NO_WA) |
_PAGE_USER | 201 | include/asm-mips/page.h | extern inline int pte_read(pte_t pte) { return pte_val(pte) & _PAGE_USER; } |
_PAGE_USER | 203 | include/asm-mips/page.h | extern inline int pte_exec(pte_t pte) { return pte_val(pte) & _PAGE_USER; } |
_PAGE_USER | 209 | include/asm-mips/page.h | extern inline pte_t pte_rdprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_USER; return pte; } |
_PAGE_USER | 210 | include/asm-mips/page.h | extern inline pte_t pte_exprotect(pte_t pte) { pte_val(pte) &= ~_PAGE_USER; return pte; } |
_PAGE_USER | 215 | include/asm-mips/page.h | extern inline pte_t pte_mkread(pte_t pte) { pte_val(pte) |= _PAGE_USER; return pte; } |
_PAGE_USER | 216 | include/asm-mips/page.h | extern inline pte_t pte_mkexec(pte_t pte) { pte_val(pte) |= _PAGE_USER; return pte; } |