Home
last modified time | relevance | path

Searched refs:SUN3_PAGE_WRITEABLE (Results 1 – 2 of 2) sorted by relevance

/linux-6.12.1/arch/m68k/include/asm/
Dsun3_pgtable.h31 #define SUN3_PAGE_WRITEABLE (0x40000000) macro
49 | SUN3_PAGE_WRITEABLE \
59 | SUN3_PAGE_WRITEABLE \
65 | SUN3_PAGE_WRITEABLE \
140 static inline int pte_write(pte_t pte) { return pte_val(pte) & SUN3_PAGE_WRITEABLE; } in pte_write()
144 static inline pte_t pte_wrprotect(pte_t pte) { pte_val(pte) &= ~SUN3_PAGE_WRITEABLE; return pte; } in pte_wrprotect()
147 static inline pte_t pte_mkwrite_novma(pte_t pte){ pte_val(pte) |= SUN3_PAGE_WRITEABLE; return pte; } in pte_mkwrite_novma()
/linux-6.12.1/arch/m68k/sun3/
Dmmu_emu.c79 if (val & SUN3_PAGE_WRITEABLE) pr_cont(" write"); in print_pte()
97 flags[1] = (val & SUN3_PAGE_WRITEABLE) ? 'w' : '-'; in print_pte()
411 if (pte_val (*pte) & SUN3_PAGE_WRITEABLE) in mmu_emu_handle_fault()