Lines Matching defs:pmd
13 static inline pte_t pmd_pte(pmd_t pmd) in pmd_pte()
23 #define pmd_wrprotect(pmd) pte_pmd(pte_wrprotect(pmd_pte(pmd))) argument
24 #define pmd_mkwrite(pmd) pte_pmd(pte_mkwrite(pmd_pte(pmd))) argument
25 #define pmd_mkdirty(pmd) pte_pmd(pte_mkdirty(pmd_pte(pmd))) argument
26 #define pmd_mkold(pmd) pte_pmd(pte_mkold(pmd_pte(pmd))) argument
27 #define pmd_mkyoung(pmd) pte_pmd(pte_mkyoung(pmd_pte(pmd))) argument
28 #define pmd_mkhuge(pmd) pte_pmd(pte_mkhuge(pmd_pte(pmd))) argument
29 #define pmd_mkinvalid(pmd) pte_pmd(pte_mknotpresent(pmd_pte(pmd))) argument
30 #define pmd_mkclean(pmd) pte_pmd(pte_mkclean(pmd_pte(pmd))) argument
32 #define pmd_write(pmd) pte_write(pmd_pte(pmd)) argument
33 #define pmd_young(pmd) pte_young(pmd_pte(pmd)) argument
34 #define pmd_dirty(pmd) pte_dirty(pmd_pte(pmd)) argument
38 #define pmd_trans_huge(pmd) (pmd_val(pmd) & _PAGE_HW_SZ) argument
42 static inline pmd_t pmd_modify(pmd_t pmd, pgprot_t newprot) in pmd_modify()
52 pmd_t *pmdp, pmd_t pmd) in set_pmd_at()