Searched refs:L_PTE_YOUNG (Results 1 – 7 of 7) 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+\ 153 tst r1, #L_PTE_YOUNG 179 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY 191 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young? 222 eor r3, r1, #L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_WRITE | L_PTE_DIRTY 236 tst r3, #L_PTE_PRESENT | L_PTE_YOUNG @ present and young?
|
D | copypage-v4mc.c | 30 #define minicache_pgprot __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | \
|
D | copypage-xscale.c | 32 #define minicache_pgprot __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | \
|
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 | 420 pgprot_user = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | user_pgprot); in build_mem_type_table() 421 pgprot_kernel = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | in build_mem_type_table()
|
D | fault-armv.c | 204 pgprot_t prot = __pgprot(L_PTE_PRESENT|L_PTE_YOUNG| in check_writebuffer_bugs()
|
D | proc-v7.S | 142 tst r1, #L_PTE_YOUNG
|
/arch/arm/include/asm/ |
D | pgtable.h | 166 #define L_PTE_YOUNG (1 << 1) macro 199 #define _L_PTE_DEFAULT L_PTE_PRESENT | L_PTE_YOUNG 285 #define pte_young(pte) (pte_val(pte) & L_PTE_YOUNG) 304 PTE_BIT_FUNC(mkold, &= ~L_PTE_YOUNG); 305 PTE_BIT_FUNC(mkyoung, |= L_PTE_YOUNG);
|