taglinefilesource code
_SUN4C_PAGE_DIRTY156arch/sparc/mm/sun4c.cint sun4c_pte_dirty(pte_t pte)    { return pte_val(pte) & _SUN4C_PAGE_DIRTY; }
_SUN4C_PAGE_DIRTY163arch/sparc/mm/sun4c.cpte_t sun4c_pte_mkclean(pte_t pte)  { pte_val(pte) &= ~_SUN4C_PAGE_DIRTY; return pte; }
_SUN4C_PAGE_DIRTY169arch/sparc/mm/sun4c.cpte_t sun4c_pte_mkdirty(pte_t pte)  { pte_val(pte) |= _SUN4C_PAGE_DIRTY; return pte; }
_SUN4C_PAGE_DIRTY87include/asm-sparc/pgtsun4c.h#define _SUN4C_PAGE_TABLE     (_SUN4C_PAGE_VALID | _SUN4C_PAGE_WRITE | _SUN4C_PAGE_REF | _SUN4C_PAGE_DIRTY | _SUN4C_PAGE_PRIV | _SUN4C_PAGE_NOCACHE) /* No cache for now */
_SUN4C_PAGE_DIRTY88include/asm-sparc/pgtsun4c.h#define _SUN4C_PAGE_CHG_MASK  (_SUN4C_PAGE_REF | _SUN4C_PAGE_DIRTY | _SUN4C_PFN_MASK)
_SUN4C_PAGE_DIRTY89include/asm-sparc/pgtsun4c.h#define _SUN4C_PGD_CHG_MASK   (_SUN4C_PAGE_REF | _SUN4C_PAGE_DIRTY | _SUN4C_PGD_PFN_MASK)
_SUN4C_PAGE_DIRTY95include/asm-sparc/pgtsun4c.h#define SUN4C_PAGE_KERNEL     __pgprot(_SUN4C_PAGE_VALID | _SUN4C_PAGE_WRITE | _SUN4C_PAGE_PRIV | _SUN4C_PAGE_REF | _SUN4C_PAGE_DIRTY | _SUN4C_PAGE_NOCACHE)