Home
last modified time | relevance | path

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

/linux/include/linux/
H A Dpgtable.h1524 static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) in pgprot_modify() argument
1526 if (pgprot_val(oldprot) == pgprot_val(pgprot_noncached(oldprot))) in pgprot_modify()
1528 if (pgprot_val(oldprot) == pgprot_val(pgprot_writecombine(oldprot))) in pgprot_modify()
1530 if (pgprot_val(oldprot) == pgprot_val(pgprot_device(oldprot))) in pgprot_modify()
/linux/mm/
H A Dvma.h417 static inline pgprot_t vm_pgprot_modify(pgprot_t oldprot, vm_flags_t vm_flags) in vm_pgprot_modify() argument
419 return pgprot_modify(oldprot, vm_get_page_prot(vm_flags)); in vm_pgprot_modify()
/linux/tools/testing/vma/
H A Dvma_internal.h867 static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) in pgprot_modify() argument
869 return __pgprot(pgprot_val(oldprot) | pgprot_val(newprot)); in pgprot_modify()
/linux/arch/x86/include/asm/
H A Dpgtable.h862 static inline pgprot_t pgprot_modify(pgprot_t oldprot, pgprot_t newprot) in pgprot_modify() argument
864 pgprotval_t preservebits = pgprot_val(oldprot) & _PAGE_CHG_MASK; in pgprot_modify()