Searched refs:L_PTE_DIRTY (Results 1 – 5 of 5) sorted by relevance
/arch/arm/mm/ |
D | proc-macros.S | 89 #if (L_PTE_EXEC+L_PTE_USER+L_PTE_WRITE+L_PTE_DIRTY+L_PTE_YOUNG+\ 140 tstne r1, #L_PTE_DIRTY 179 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY 188 tst r3, #L_PTE_WRITE | L_PTE_DIRTY @ write and dirty? 222 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY 230 tst r3, #L_PTE_WRITE | L_PTE_DIRTY @ write and dirty?
|
D | mmu.c | 183 #define PROT_PTE_DEVICE L_PTE_PRESENT|L_PTE_YOUNG|L_PTE_DIRTY|L_PTE_WRITE 227 .prot_pte = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | 233 .prot_pte = L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | 422 L_PTE_DIRTY | L_PTE_WRITE | in build_mem_type_table()
|
D | fault-armv.c | 205 L_PTE_DIRTY|L_PTE_WRITE| in check_writebuffer_bugs()
|
D | proc-v7.S | 131 tstne r1, #L_PTE_DIRTY
|
/arch/arm/include/asm/ |
D | pgtable.h | 169 #define L_PTE_DIRTY (1 << 6) macro 284 #define pte_dirty(pte) (pte_val(pte) & L_PTE_DIRTY) 302 PTE_BIT_FUNC(mkclean, &= ~L_PTE_DIRTY); 303 PTE_BIT_FUNC(mkdirty, |= L_PTE_DIRTY);
|