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_COW208include/asm-alpha/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW215include/asm-alpha/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW221include/asm-alpha/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW70include/asm-i386/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_COW185include/asm-i386/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW192include/asm-i386/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW198include/asm-i386/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW88include/asm-mips/page.h#define PAGE_COPY       __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW | _CACHE_CACHABLE_NO_WA)
_PAGE_COW206include/asm-mips/page.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW213include/asm-mips/page.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW219include/asm-mips/page.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }
_PAGE_COW120include/asm-ppc/pgtable.h#define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW)
_PAGE_COW252include/asm-ppc/pgtable.hextern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; }
_PAGE_COW259include/asm-ppc/pgtable.hextern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; }
_PAGE_COW265include/asm-ppc/pgtable.hextern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; }