tag | line | file | source code |
_SUN4C_PAGE_PRIV | 97 | arch/sparc/mm/sun4c.c | int sun4c_pte_read(pte_t pte) { return !(pte_val(pte) & _SUN4C_PAGE_PRIV); } |
_SUN4C_PAGE_PRIV | 99 | arch/sparc/mm/sun4c.c | int sun4c_pte_exec(pte_t pte) { return !(pte_val(pte) & _SUN4C_PAGE_PRIV); } |
_SUN4C_PAGE_PRIV | 105 | arch/sparc/mm/sun4c.c | pte_t sun4c_pte_rdprotect(pte_t pte) { pte_val(pte) |= _SUN4C_PAGE_PRIV; return pte; } |
_SUN4C_PAGE_PRIV | 106 | arch/sparc/mm/sun4c.c | pte_t sun4c_pte_exprotect(pte_t pte) { pte_val(pte) |= _SUN4C_PAGE_PRIV; return pte; } |
_SUN4C_PAGE_PRIV | 111 | arch/sparc/mm/sun4c.c | pte_t sun4c_pte_mkread(pte_t pte) { pte_val(pte) &= ~_SUN4C_PAGE_PRIV; return pte; } |
_SUN4C_PAGE_PRIV | 112 | arch/sparc/mm/sun4c.c | pte_t sun4c_pte_mkexec(pte_t pte) { pte_val(pte) &= ~_SUN4C_PAGE_PRIV; return pte; } |
_SUN4C_PAGE_PRIV | 896 | arch/sparc/mm/sun4c.c | pte |= (_SUN4C_PAGE_PRIV | _SUN4C_PAGE_WRITE | |
_SUN4C_PAGE_PRIV | 910 | arch/sparc/mm/sun4c.c | put_pte(kadb_begin, (pte | _SUN4C_PAGE_PRIV)); |
_SUN4C_PAGE_PRIV | 61 | include/asm-sparc/pgtsun4c.h | #define SUN4C_PAGE_NONE __pgprot(_SUN4C_PAGE_VALID | _SUN4C_PAGE_PRIV | \ |
_SUN4C_PAGE_PRIV | 70 | include/asm-sparc/pgtsun4c.h | _SUN4C_PAGE_PRIV | _SUN4C_PAGE_DIRTY | \ |