taglinefilesource code
_PAGE_USER670arch/ppc/mm/init.cif (kernel_pages_are_copyback || (pg->flags & _PAGE_USER) || (va < (unsigned long)&_etext))
_PAGE_USER684arch/ppc/mm/init.cif (pg->flags & _PAGE_USER)
_PAGE_USER157include/asm-i386/pgtable.h#define _PAGE_TABLE  (_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED | _PAGE_DIRTY)
_PAGE_USER161include/asm-i386/pgtable.h#define PAGE_SHARED  __pgprot(_PAGE_PRESENT | _PAGE_RW | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER162include/asm-i386/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER163include/asm-i386/pgtable.h#define PAGE_READONLY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED)
_PAGE_USER272include/asm-i386/pgtable.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER274include/asm-i386/pgtable.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_USER; }
_PAGE_USER279include/asm-i386/pgtable.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER280include/asm-i386/pgtable.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_USER; return pte; }
_PAGE_USER284include/asm-i386/pgtable.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_USER; return pte; }
_PAGE_USER285include/asm-i386/pgtable.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; }