taglinefilesource code
_PAGE_USER674arch/ppc/mm/init.cif (kernel_pages_are_copyback || (pg->flags & _PAGE_USER) || (va < (unsigned long)&_etext))
_PAGE_USER688arch/ppc/mm/init.cif (pg->flags & _PAGE_USER)
_PAGE_USER65include/asm-i386/pgtable.h#define _PAGE_TABLE  (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
_PAGE_USER69include/asm-i386/pgtable.h#define PAGE_SHARED  __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER70include/asm-i386/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_USER71include/asm-i386/pgtable.h#define PAGE_READONLY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER180include/asm-i386/pgtable.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER182include/asm-i386/pgtable.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER188include/asm-i386/pgtable.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER189include/asm-i386/pgtable.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER194include/asm-i386/pgtable.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER195include/asm-i386/pgtable.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER81include/asm-mips/page.h#define _PAGE_TABLE     (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY | \
_PAGE_USER87include/asm-mips/page.h#define PAGE_SHARED     __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _CACHE_CACHABLE_NO_WA)
_PAGE_USER88include/asm-mips/page.h#define PAGE_COPY       __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW | _CACHE_CACHABLE_NO_WA)
_PAGE_USER89include/asm-mips/page.h#define PAGE_READONLY   __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _CACHE_CACHABLE_NO_WA)
_PAGE_USER201include/asm-mips/page.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER203include/asm-mips/page.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER209include/asm-mips/page.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER210include/asm-mips/page.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER215include/asm-mips/page.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER216include/asm-mips/page.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER115include/asm-ppc/pgtable.h#define _PAGE_TABLE  (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
_PAGE_USER119include/asm-ppc/pgtable.h#define PAGE_SHARED  __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER120include/asm-ppc/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_USER121include/asm-ppc/pgtable.h#define PAGE_READONLY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER247include/asm-ppc/pgtable.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER249include/asm-ppc/pgtable.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER255include/asm-ppc/pgtable.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER256include/asm-ppc/pgtable.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER261include/asm-ppc/pgtable.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER262include/asm-ppc/pgtable.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }