taglinefilesource code
_PAGE_COW79include/asm-alpha/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW | _PAGE_COW)
_PAGE_COW85include/asm-alpha/pgtable.h#define __P000  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOR | _PAGE_FOW | _PAGE_FOE)
_PAGE_COW86include/asm-alpha/pgtable.h#define __P001  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOW | _PAGE_FOE)
_PAGE_COW87include/asm-alpha/pgtable.h#define __P010  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOR | _PAGE_FOE)
_PAGE_COW88include/asm-alpha/pgtable.h#define __P011  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOE)
_PAGE_COW89include/asm-alpha/pgtable.h#define __P100  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOR | _PAGE_FOW)
_PAGE_COW90include/asm-alpha/pgtable.h#define __P101  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOW)
_PAGE_COW91include/asm-alpha/pgtable.h#define __P110  _PAGE_NORMAL(_PAGE_COW | _PAGE_FOR)
_PAGE_COW92include/asm-alpha/pgtable.h#define __P111  _PAGE_NORMAL(_PAGE_COW)
_PAGE_COW182include/asm-alpha/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW189include/asm-alpha/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW195include/asm-alpha/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW58include/asm-i386/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_COW157include/asm-i386/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW164include/asm-i386/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW170include/asm-i386/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW82include/asm-mips/page.h#define PAGE_COPY       __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW | _CACHE_CACHABLE_NO_WA)
_PAGE_COW200include/asm-mips/page.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW207include/asm-mips/page.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW213include/asm-mips/page.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW72include/asm-sparc/pgtable.h#define PAGE_COPY       __pgprot(_PAGE_VALID | _PAGE_REF | _PAGE_COW)
_PAGE_COW169include/asm-sparc/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW176include/asm-sparc/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW182include/asm-sparc/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }