taglinefilesource code
_PAGE_FOE110include/asm-alpha/page.h#define PAGE_NONE  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
_PAGE_FOE118include/asm-alpha/page.h#define __P000  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
_PAGE_FOE119include/asm-alpha/page.h#define __P001  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOW | _PAGE_FOE)
_PAGE_FOE120include/asm-alpha/page.h#define __P010  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOR | _PAGE_FOE)
_PAGE_FOE121include/asm-alpha/page.h#define __P011  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOE)
_PAGE_FOE127include/asm-alpha/page.h#define __S000  _PAGE_NORMAL(_PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
_PAGE_FOE128include/asm-alpha/page.h#define __S001  _PAGE_NORMAL(_PAGE_FOW | _PAGE_FOE)
_PAGE_FOE129include/asm-alpha/page.h#define __S010  _PAGE_NORMAL(_PAGE_FOR | _PAGE_FOE)
_PAGE_FOE130include/asm-alpha/page.h#define __S011  _PAGE_NORMAL(_PAGE_FOE)
_PAGE_FOE225include/asm-alpha/page.hextern inline int pte_exec(pte_t pte)    { return !(pte_val(pte) & _PAGE_FOE); }
_PAGE_FOE232include/asm-alpha/page.hextern inline pte_t pte_exprotect(pte_t pte)  { pte_val(pte) |= _PAGE_FOE; return pte; }
_PAGE_FOE238include/asm-alpha/page.hextern inline pte_t pte_mkexec(pte_t pte)  { pte_val(pte) &= _PAGE_FOE; return pte; }