Searched refs:_PAGE_WRITE (Results 1 – 2 of 2) sorted by relevance
25 #define PAGE_SHARED __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \33 #define PAGE_USERIO __pgprot(_PAGE_PRESENT | _PAGE_READ | _PAGE_WRITE | \193 static inline int pte_write(pte_t pte) { return pte.pte_low & _PAGE_WRITE; } in pte_write()200 pte.pte_low &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE); in pte_wrprotect()221 pte.pte_low |= _PAGE_WRITE; in pte_mkwrite()232 if (pte.pte_low & _PAGE_WRITE) { in pte_mkdirty()249 static inline int pte_write(pte_t pte) { return pte_val(pte) & _PAGE_WRITE; } in pte_write()256 pte_val(pte) &= ~(_PAGE_WRITE | _PAGE_SILENT_WRITE); in pte_wrprotect()274 pte_val(pte) |= _PAGE_WRITE; in pte_mkwrite()283 if (pte_val(pte) & _PAGE_WRITE) in pte_mkdirty()
39 #define _PAGE_WRITE (1<<8) /* implemented in software */ macro57 #define _PAGE_WRITE (1<<2) /* implemented in software */ macro133 #define __WRITEABLE (_PAGE_WRITE | _PAGE_SILENT_WRITE | _PAGE_MODIFIED)