taglinefilesource code
_PAGE_COW81include/asm-alpha/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_VALID | __ACCESS_BITS | _PAGE_FOW | _PAGE_COW)
_PAGE_COW87include/asm-alpha/pgtable.h#define _PAGE_P(x) _PAGE_NORMAL((x) | (((x) & _PAGE_FOW)?0:(_PAGE_FOW | _PAGE_COW)))
_PAGE_COW213include/asm-alpha/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW220include/asm-alpha/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW226include/asm-alpha/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW56include/asm-i386/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_COW174include/asm-i386/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW181include/asm-i386/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW187include/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_COW73include/asm-sparc/pgtable.h#define PAGE_COPY       __pgprot(_PAGE_VALID | _PAGE_REF | _PAGE_COW)
_PAGE_COW185include/asm-sparc/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW192include/asm-sparc/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW198include/asm-sparc/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }