diff options
Diffstat (limited to 'arch/x86/include/asm/pgtable.h')
| -rw-r--r-- | arch/x86/include/asm/pgtable.h | 20 | 
1 files changed, 2 insertions, 18 deletions
diff --git a/arch/x86/include/asm/pgtable.h b/arch/x86/include/asm/pgtable.h index 315535ffb258..65b8e5bb902c 100644 --- a/arch/x86/include/asm/pgtable.h +++ b/arch/x86/include/asm/pgtable.h @@ -234,6 +234,7 @@ static inline unsigned long pmd_pfn(pmd_t pmd)  	return (pfn & pmd_pfn_mask(pmd)) >> PAGE_SHIFT;  } +#define pud_pfn pud_pfn  static inline unsigned long pud_pfn(pud_t pud)  {  	phys_addr_t pfn = pud_val(pud); @@ -387,23 +388,7 @@ static inline pte_t pte_wrprotect(pte_t pte)  #ifdef CONFIG_HAVE_ARCH_USERFAULTFD_WP  static inline int pte_uffd_wp(pte_t pte)  { -	bool wp = pte_flags(pte) & _PAGE_UFFD_WP; - -#ifdef CONFIG_DEBUG_VM -	/* -	 * Having write bit for wr-protect-marked present ptes is fatal, -	 * because it means the uffd-wp bit will be ignored and write will -	 * just go through. -	 * -	 * Use any chance of pgtable walking to verify this (e.g., when -	 * page swapped out or being migrated for all purposes). It means -	 * something is already wrong.  Tell the admin even before the -	 * process crashes. We also nail it with wrong pgtable setup. -	 */ -	WARN_ON_ONCE(wp && pte_write(pte)); -#endif - -	return wp; +	return pte_flags(pte) & _PAGE_UFFD_WP;  }  static inline pte_t pte_mkuffd_wp(pte_t pte) @@ -1200,7 +1185,6 @@ static inline int pgd_none(pgd_t pgd)  extern int direct_gbpages;  void init_mem_mapping(void);  void early_alloc_pgt_buf(void); -extern void memblock_find_dma_reserve(void);  void __init poking_init(void);  unsigned long init_memory_mapping(unsigned long start,  				  unsigned long end, pgprot_t prot);  |