SUN3_PAGE_MODIFIED
static inline int pte_dirty(pte_t pte) { return pte_val(pte) & SUN3_PAGE_MODIFIED; }
static inline pte_t pte_mkclean(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_MODIFIED; return pte; }
static inline pte_t pte_mkdirty(pte_t pte) { pte_val(pte) |= SUN3_PAGE_MODIFIED; return pte; }
| SUN3_PAGE_MODIFIED)
| SUN3_PAGE_ACCESSED | SUN3_PAGE_MODIFIED)
flags[5] = (val & SUN3_PAGE_MODIFIED) ? 'm' : '-';
| SUN3_PAGE_MODIFIED);
if (val & SUN3_PAGE_MODIFIED) pr_cont(" modified");