taglinefilesource code
pte_wrprotect204include/asm-alpha/pgtable.hextern inline pte_t pte_wrprotect(pte_t pte)  { pte_val(pte) |= _PAGE_FOW; return pte; }
pte_wrprotect176include/asm-i386/pgtable.hextern inline pte_t pte_wrprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_RW; return pte; }
pte_wrprotect202include/asm-mips/page.hextern inline pte_t pte_wrprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_RW; return pte; }
pte_wrprotect187include/asm-sparc/pgtable.hextern inline pte_t pte_wrprotect(pte_t pte)  { pte_val(pte) &= ~_PAGE_WRITE; return pte; }