taglinefilesource code
_PAGE_FOR79include/asm-alpha/pgtable.h#define PAGE_NONE  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
_PAGE_FOR98include/asm-alpha/pgtable.h#define __P000  _PAGE_P(_PAGE_FOE | _PAGE_FOW | _PAGE_FOR)
_PAGE_FOR102include/asm-alpha/pgtable.h#define __P100  _PAGE_P(_PAGE_FOW | _PAGE_FOR)
_PAGE_FOR107include/asm-alpha/pgtable.h#define __S000  _PAGE_S(_PAGE_FOE | _PAGE_FOW | _PAGE_FOR)
_PAGE_FOR111include/asm-alpha/pgtable.h#define __S100  _PAGE_S(_PAGE_FOW | _PAGE_FOR)
_PAGE_FOR203include/asm-alpha/pgtable.hextern inline int pte_read(pte_t pte)    { return !(pte_val(pte) & _PAGE_FOR); }
_PAGE_FOR211include/asm-alpha/pgtable.hextern inline pte_t pte_rdprotect(pte_t pte)  { pte_val(pte) |= _PAGE_FOR; return pte; }
_PAGE_FOR217include/asm-alpha/pgtable.hextern inline pte_t pte_mkread(pte_t pte)  { pte_val(pte) &= ~_PAGE_FOR; return pte; }