SUN3_PAGE_WRITEABLE
static inline int pte_write(pte_t pte) { return pte_val(pte) & SUN3_PAGE_WRITEABLE; }
static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_WRITEABLE; return pte; }
static inline pte_t pte_mkwrite_novma(pte_t pte){ pte_val(pte) |= SUN3_PAGE_WRITEABLE; return pte; }
| SUN3_PAGE_WRITEABLE \
| SUN3_PAGE_WRITEABLE \
| SUN3_PAGE_WRITEABLE \
if (pte_val (*pte) & SUN3_PAGE_WRITEABLE)
if (val & SUN3_PAGE_WRITEABLE) pr_cont(" write");
flags[1] = (val & SUN3_PAGE_WRITEABLE) ? 'w' : '-';