Home
last modified time | relevance | path

Searched refs:L_PTE_WRITE (Results 1 – 4 of 4) sorted by relevance

/linux-2.4.37.9/include/asm-arm/proc-armv/
Dpgtable.h117 #define L_PTE_WRITE (1 << 5) macro
129 #define PAGE_SHARED __pgprot(_L_PTE_DEFAULT | _L_PTE_READ | L_PTE_WRITE)
131 …ERNEL __pgprot(_L_PTE_DEFAULT | L_PTE_CACHEABLE | L_PTE_BUFFERABLE | L_PTE_DIRTY | L_PTE_WRITE)
142 #define pte_write(pte) (pte_val(pte) & L_PTE_WRITE)
152 PTE_BIT_FUNC(wrprotect, &= ~L_PTE_WRITE);
153 PTE_BIT_FUNC(mkwrite, |= L_PTE_WRITE);
/linux-2.4.37.9/arch/arm/tools/
Dgetconstants.c54 DEFN("LPTE_WRITE", L_PTE_WRITE); in func()
/linux-2.4.37.9/arch/arm/mm/
Dioremap.c76 pgprot = __pgprot(L_PTE_PRESENT | L_PTE_YOUNG | L_PTE_DIRTY | L_PTE_WRITE | flags); in remap_area_pmd()
Dmm-armv.c245 (md->prot_write ? L_PTE_WRITE : 0) | in create_mapping()