taglinefilesource code
_SUN4C_PAGE_PRIV97arch/sparc/mm/sun4c.cint sun4c_pte_read(pte_t pte)    { return !(pte_val(pte) & _SUN4C_PAGE_PRIV); }
_SUN4C_PAGE_PRIV99arch/sparc/mm/sun4c.cint sun4c_pte_exec(pte_t pte)    { return !(pte_val(pte) & _SUN4C_PAGE_PRIV); }
_SUN4C_PAGE_PRIV105arch/sparc/mm/sun4c.cpte_t sun4c_pte_rdprotect(pte_t pte)  { pte_val(pte) |= _SUN4C_PAGE_PRIV; return pte; }
_SUN4C_PAGE_PRIV106arch/sparc/mm/sun4c.cpte_t sun4c_pte_exprotect(pte_t pte)  { pte_val(pte) |= _SUN4C_PAGE_PRIV; return pte; }
_SUN4C_PAGE_PRIV111arch/sparc/mm/sun4c.cpte_t sun4c_pte_mkread(pte_t pte)  { pte_val(pte) &= ~_SUN4C_PAGE_PRIV; return pte; }
_SUN4C_PAGE_PRIV112arch/sparc/mm/sun4c.cpte_t sun4c_pte_mkexec(pte_t pte)  { pte_val(pte) &= ~_SUN4C_PAGE_PRIV; return pte; }
_SUN4C_PAGE_PRIV896arch/sparc/mm/sun4c.cpte |= (_SUN4C_PAGE_PRIV | _SUN4C_PAGE_WRITE |
_SUN4C_PAGE_PRIV910arch/sparc/mm/sun4c.cput_pte(kadb_begin, (pte | _SUN4C_PAGE_PRIV));
_SUN4C_PAGE_PRIV61include/asm-sparc/pgtsun4c.h#define SUN4C_PAGE_NONE     __pgprot(_SUN4C_PAGE_VALID | _SUN4C_PAGE_PRIV | \
_SUN4C_PAGE_PRIV70include/asm-sparc/pgtsun4c.h_SUN4C_PAGE_PRIV | _SUN4C_PAGE_DIRTY | \