diff options
Diffstat (limited to 'arch/x86/include/asm/pgtable.h')
| -rw-r--r-- | arch/x86/include/asm/pgtable.h | 8 | 
1 files changed, 4 insertions, 4 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index 63c2552b6b65..b444d83cfc95 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h @@ -350,14 +350,14 @@ static inline pmd_t pmd_set_flags(pmd_t pmd, pmdval_t set)  {  	pmdval_t v = native_pmd_val(pmd); -	return __pmd(v | set); +	return native_make_pmd(v | set);  }  static inline pmd_t pmd_clear_flags(pmd_t pmd, pmdval_t clear)  {  	pmdval_t v = native_pmd_val(pmd); -	return __pmd(v & ~clear); +	return native_make_pmd(v & ~clear);  }  static inline pmd_t pmd_mkold(pmd_t pmd) @@ -409,14 +409,14 @@ static inline pud_t pud_set_flags(pud_t pud, pudval_t set)  {  	pudval_t v = native_pud_val(pud); -	return __pud(v | set); +	return native_make_pud(v | set);  }  static inline pud_t pud_clear_flags(pud_t pud, pudval_t clear)  {  	pudval_t v = native_pud_val(pud); -	return __pud(v & ~clear); +	return native_make_pud(v & ~clear);  }  static inline pud_t pud_mkold(pud_t pud)  |