| tag | line | file | source code | 
| _PAGE_COW | 126 | include/asm-mips/pgtable.h | #define PAGE_COPY       __pgprot(_PAGE_PRESENT | __READABLE | _PAGE_COW | \ | 
| _PAGE_COW | 270 | include/asm-mips/pgtable.h | extern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; } | 
| _PAGE_COW | 287 | include/asm-mips/pgtable.h | extern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; } | 
| _PAGE_COW | 329 | include/asm-mips/pgtable.h | pte_val(pte) |= _PAGE_COW; | 
| _PAGE_COW | 120 | include/asm-ppc/pgtable.h | #define PAGE_COPY  __pgprot(_PAGE_PRESENT | _PAGE_USER | _PAGE_ACCESSED | _PAGE_COW) | 
| _PAGE_COW | 252 | include/asm-ppc/pgtable.h | extern inline int pte_cow(pte_t pte)    { return pte_val(pte) & _PAGE_COW; } | 
| _PAGE_COW | 259 | include/asm-ppc/pgtable.h | extern inline pte_t pte_uncow(pte_t pte)  { pte_val(pte) &= ~_PAGE_COW; return pte; } | 
| _PAGE_COW | 265 | include/asm-ppc/pgtable.h | extern inline pte_t pte_mkcow(pte_t pte)  { pte_val(pte) |= _PAGE_COW; return pte; } |