taglinefilesource code
_PAGE_USER51include/asm-i386/pgtable.h#define _PAGE_TABLE  (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
_PAGE_USER55include/asm-i386/pgtable.h#define PAGE_SHARED  __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER56include/asm-i386/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_USER57include/asm-i386/pgtable.h#define PAGE_READONLY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER169include/asm-i386/pgtable.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER171include/asm-i386/pgtable.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER177include/asm-i386/pgtable.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER178include/asm-i386/pgtable.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER183include/asm-i386/pgtable.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER184include/asm-i386/pgtable.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER75include/asm-mips/page.h#define _PAGE_TABLE     (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY | \
_PAGE_USER81include/asm-mips/page.h#define PAGE_SHARED     __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _CACHE_CACHABLE_NO_WA)
_PAGE_USER82include/asm-mips/page.h#define PAGE_COPY       __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW | _CACHE_CACHABLE_NO_WA)
_PAGE_USER83include/asm-mips/page.h#define PAGE_READONLY   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _CACHE_CACHABLE_NO_WA)
_PAGE_USER195include/asm-mips/page.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER197include/asm-mips/page.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER203include/asm-mips/page.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER204include/asm-mips/page.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER209include/asm-mips/page.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER210include/asm-mips/page.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }