taglinefilesource code
_PAGE_VALID70include/asm-alpha/pgtable.h#define _PAGE_TABLE  (_PAGE_VALID | __DIRTY_BITS | __ACCESS_BITS)
_PAGE_VALID77include/asm-alpha/pgtable.h#define PAGE_NONE  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
_PAGE_VALID78include/asm-alpha/pgtable.h#define PAGE_SHARED  __pgprot(_PAGE_VALID | __ACCESS_BITS)
_PAGE_VALID79include/asm-alpha/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW | _PAGE_COW)
_PAGE_VALID80include/asm-alpha/pgtable.h#define PAGE_READONLY  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW)
_PAGE_VALID81include/asm-alpha/pgtable.h#define PAGE_KERNEL  __pgprot(_PAGE_VALID | _PAGE_ASM | _PAGE_KRE | _PAGE_KWE)
_PAGE_VALID83include/asm-alpha/pgtable.h#define _PAGE_NORMAL(x) __pgprot(_PAGE_VALID | __ACCESS_BITS | (x))
_PAGE_VALID160include/asm-alpha/pgtable.hextern inline int pte_present(pte_t pte)  { return pte_val(pte) & _PAGE_VALID; }
_PAGE_VALID165include/asm-alpha/pgtable.hextern inline int pmd_present(pmd_t pmd)  { return pmd_val(pmd) & _PAGE_VALID; }
_PAGE_VALID170include/asm-alpha/pgtable.hextern inline int pgd_present(pgd_t pgd)  { return pgd_val(pgd) & _PAGE_VALID; }
_PAGE_VALID67include/asm-sparc/pgtable.h#define _PAGE_TABLE     (_PAGE_VALID | _PAGE_WRITE | _PAGE_DIRTY)
_PAGE_VALID70include/asm-sparc/pgtable.h#define PAGE_NONE       __pgprot(_PAGE_VALID | _PAGE_REF)
_PAGE_VALID71include/asm-sparc/pgtable.h#define PAGE_SHARED     __pgprot(_PAGE_VALID | _PAGE_WRITE | _PAGE_REF)
_PAGE_VALID72include/asm-sparc/pgtable.h#define PAGE_COPY       __pgprot(_PAGE_VALID | _PAGE_REF | _PAGE_COW)
_PAGE_VALID73include/asm-sparc/pgtable.h#define PAGE_READONLY   __pgprot(_PAGE_VALID | _PAGE_REF)
_PAGE_VALID74include/asm-sparc/pgtable.h#define PAGE_KERNEL     __pgprot(_PAGE_VALID | _PAGE_PRIV)
_PAGE_VALID76include/asm-sparc/pgtable.h#define _PAGE_NORMAL(x) __pgprot(_PAGE_VALID | _PAGE_REF | (x))
_PAGE_VALID147include/asm-sparc/pgtable.hextern inline int pte_present(pte_t pte)  { return pte_val(pte) & _PAGE_VALID; }
_PAGE_VALID152include/asm-sparc/pgtable.hextern inline int pmd_present(pmd_t pmd)  { return pmd_val(pmd) & _PAGE_VALID; }
_PAGE_VALID157include/asm-sparc/pgtable.hextern inline int pgd_present(pgd_t pgd)  { return pgd_val(pgd) & _PAGE_VALID; }
_PAGE_VALID164include/asm-sparc/pgtable.hextern inline int pte_read(pte_t pte)    { return pte_val(pte) & _PAGE_VALID; }
_PAGE_VALID166include/asm-sparc/pgtable.hextern inline int pte_exec(pte_t pte)    { return pte_val(pte) & _PAGE_VALID; }
_PAGE_VALID172include/asm-sparc/pgtable.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_VALID; return pte; }
_PAGE_VALID173include/asm-sparc/pgtable.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_VALID; return pte; }
_PAGE_VALID178include/asm-sparc/pgtable.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) |= _PAGE_VALID; return pte; }
_PAGE_VALID179include/asm-sparc/pgtable.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) |= _PAGE_VALID; return pte; }