mirror of
				https://github.com/torvalds/linux.git
				synced 2025-11-04 10:40:15 +02:00 
			
		
		
		
	mm/huge_memory.c: add missing read-only THP checking in transparent_hugepage_enabled()
Since commit99cb0dbd47("mm,thp: add read-only THP support for (non-shmem) FS"), read-only THP file mapping is supported. But it forgot to add checking for it in transparent_hugepage_enabled(). To fix it, we add checking for read-only THP file mapping and also introduce helper transhuge_vma_enabled() to check whether thp is enabled for specified vma to reduce duplicated code. We rename transparent_hugepage_enabled to transparent_hugepage_active to make the code easier to follow as suggested by David Hildenbrand. [linmiaohe@huawei.com: define transhuge_vma_enabled next to transhuge_vma_suitable] Link: https://lkml.kernel.org/r/20210514093007.4117906-1-linmiaohe@huawei.com Link: https://lkml.kernel.org/r/20210511134857.1581273-4-linmiaohe@huawei.com Fixes:99cb0dbd47("mm,thp: add read-only THP support for (non-shmem) FS") Signed-off-by: Miaohe Lin <linmiaohe@huawei.com> Reviewed-by: Yang Shi <shy828301@gmail.com> Cc: Alexey Dobriyan <adobriyan@gmail.com> Cc: "Aneesh Kumar K . V" <aneesh.kumar@linux.ibm.com> Cc: Anshuman Khandual <anshuman.khandual@arm.com> Cc: David Hildenbrand <david@redhat.com> Cc: Hugh Dickins <hughd@google.com> Cc: Johannes Weiner <hannes@cmpxchg.org> Cc: Kirill A. Shutemov <kirill.shutemov@linux.intel.com> Cc: Matthew Wilcox <willy@infradead.org> Cc: Minchan Kim <minchan@kernel.org> Cc: Ralph Campbell <rcampbell@nvidia.com> Cc: Rik van Riel <riel@surriel.com> Cc: Song Liu <songliubraving@fb.com> Cc: William Kucharski <william.kucharski@oracle.com> Cc: Zi Yan <ziy@nvidia.com> Cc: Mike Kravetz <mike.kravetz@oracle.com> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
		
							parent
							
								
									dfe5c51c60
								
							
						
					
					
						commit
						e6be37b2e7
					
				
					 5 changed files with 48 additions and 29 deletions
				
			
		| 
						 | 
					@ -832,7 +832,7 @@ static int show_smap(struct seq_file *m, void *v)
 | 
				
			||||||
	__show_smap(m, &mss, false);
 | 
						__show_smap(m, &mss, false);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	seq_printf(m, "THPeligible:    %d\n",
 | 
						seq_printf(m, "THPeligible:    %d\n",
 | 
				
			||||||
		   transparent_hugepage_enabled(vma));
 | 
							   transparent_hugepage_active(vma));
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (arch_pkeys_enabled())
 | 
						if (arch_pkeys_enabled())
 | 
				
			||||||
		seq_printf(m, "ProtectionKey:  %8u\n", vma_pkey(vma));
 | 
							seq_printf(m, "ProtectionKey:  %8u\n", vma_pkey(vma));
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -115,9 +115,34 @@ extern struct kobj_attribute shmem_enabled_attr;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
extern unsigned long transparent_hugepage_flags;
 | 
					extern unsigned long transparent_hugepage_flags;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline bool transhuge_vma_suitable(struct vm_area_struct *vma,
 | 
				
			||||||
 | 
							unsigned long haddr)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						/* Don't have to check pgoff for anonymous vma */
 | 
				
			||||||
 | 
						if (!vma_is_anonymous(vma)) {
 | 
				
			||||||
 | 
							if (!IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
 | 
				
			||||||
 | 
									HPAGE_PMD_NR))
 | 
				
			||||||
 | 
								return false;
 | 
				
			||||||
 | 
						}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
						if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
 | 
				
			||||||
 | 
							return false;
 | 
				
			||||||
 | 
						return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline bool transhuge_vma_enabled(struct vm_area_struct *vma,
 | 
				
			||||||
 | 
										  unsigned long vm_flags)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						/* Explicitly disabled through madvise. */
 | 
				
			||||||
 | 
						if ((vm_flags & VM_NOHUGEPAGE) ||
 | 
				
			||||||
 | 
						    test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
 | 
				
			||||||
 | 
							return false;
 | 
				
			||||||
 | 
						return true;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
/*
 | 
					/*
 | 
				
			||||||
 * to be used on vmas which are known to support THP.
 | 
					 * to be used on vmas which are known to support THP.
 | 
				
			||||||
 * Use transparent_hugepage_enabled otherwise
 | 
					 * Use transparent_hugepage_active otherwise
 | 
				
			||||||
 */
 | 
					 */
 | 
				
			||||||
static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
					static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
| 
						 | 
					@ -128,15 +153,12 @@ static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
	if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_NEVER_DAX))
 | 
						if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_NEVER_DAX))
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (vma->vm_flags & VM_NOHUGEPAGE)
 | 
						if (!transhuge_vma_enabled(vma, vma->vm_flags))
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (vma_is_temporary_stack(vma))
 | 
						if (vma_is_temporary_stack(vma))
 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if (test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_FLAG))
 | 
						if (transparent_hugepage_flags & (1 << TRANSPARENT_HUGEPAGE_FLAG))
 | 
				
			||||||
		return true;
 | 
							return true;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					@ -150,22 +172,7 @@ static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
	return false;
 | 
						return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool transparent_hugepage_enabled(struct vm_area_struct *vma);
 | 
					bool transparent_hugepage_active(struct vm_area_struct *vma);
 | 
				
			||||||
 | 
					 | 
				
			||||||
static inline bool transhuge_vma_suitable(struct vm_area_struct *vma,
 | 
					 | 
				
			||||||
		unsigned long haddr)
 | 
					 | 
				
			||||||
{
 | 
					 | 
				
			||||||
	/* Don't have to check pgoff for anonymous vma */
 | 
					 | 
				
			||||||
	if (!vma_is_anonymous(vma)) {
 | 
					 | 
				
			||||||
		if (!IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
 | 
					 | 
				
			||||||
				HPAGE_PMD_NR))
 | 
					 | 
				
			||||||
			return false;
 | 
					 | 
				
			||||||
	}
 | 
					 | 
				
			||||||
 | 
					 | 
				
			||||||
	if (haddr < vma->vm_start || haddr + HPAGE_PMD_SIZE > vma->vm_end)
 | 
					 | 
				
			||||||
		return false;
 | 
					 | 
				
			||||||
	return true;
 | 
					 | 
				
			||||||
}
 | 
					 | 
				
			||||||
 | 
					
 | 
				
			||||||
#define transparent_hugepage_use_zero_page()				\
 | 
					#define transparent_hugepage_use_zero_page()				\
 | 
				
			||||||
	(transparent_hugepage_flags &					\
 | 
						(transparent_hugepage_flags &					\
 | 
				
			||||||
| 
						 | 
					@ -352,7 +359,7 @@ static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
	return false;
 | 
						return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline bool transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
					static inline bool transparent_hugepage_active(struct vm_area_struct *vma)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	return false;
 | 
						return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					@ -363,6 +370,12 @@ static inline bool transhuge_vma_suitable(struct vm_area_struct *vma,
 | 
				
			||||||
	return false;
 | 
						return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					static inline bool transhuge_vma_enabled(struct vm_area_struct *vma,
 | 
				
			||||||
 | 
										  unsigned long vm_flags)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						return false;
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline void prep_transhuge_page(struct page *page) {}
 | 
					static inline void prep_transhuge_page(struct page *page) {}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
static inline bool is_transparent_hugepage(struct page *page)
 | 
					static inline bool is_transparent_hugepage(struct page *page)
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -64,7 +64,14 @@ static atomic_t huge_zero_refcount;
 | 
				
			||||||
struct page *huge_zero_page __read_mostly;
 | 
					struct page *huge_zero_page __read_mostly;
 | 
				
			||||||
unsigned long huge_zero_pfn __read_mostly = ~0UL;
 | 
					unsigned long huge_zero_pfn __read_mostly = ~0UL;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
bool transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
					static inline bool file_thp_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
 | 
					{
 | 
				
			||||||
 | 
						return transhuge_vma_enabled(vma, vma->vm_flags) && vma->vm_file &&
 | 
				
			||||||
 | 
						       !inode_is_open_for_write(vma->vm_file->f_inode) &&
 | 
				
			||||||
 | 
						       (vma->vm_flags & VM_EXEC);
 | 
				
			||||||
 | 
					}
 | 
				
			||||||
 | 
					
 | 
				
			||||||
 | 
					bool transparent_hugepage_active(struct vm_area_struct *vma)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	/* The addr is used to check if the vma size fits */
 | 
						/* The addr is used to check if the vma size fits */
 | 
				
			||||||
	unsigned long addr = (vma->vm_end & HPAGE_PMD_MASK) - HPAGE_PMD_SIZE;
 | 
						unsigned long addr = (vma->vm_end & HPAGE_PMD_MASK) - HPAGE_PMD_SIZE;
 | 
				
			||||||
| 
						 | 
					@ -75,6 +82,8 @@ bool transparent_hugepage_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
		return __transparent_hugepage_enabled(vma);
 | 
							return __transparent_hugepage_enabled(vma);
 | 
				
			||||||
	if (vma_is_shmem(vma))
 | 
						if (vma_is_shmem(vma))
 | 
				
			||||||
		return shmem_huge_enabled(vma);
 | 
							return shmem_huge_enabled(vma);
 | 
				
			||||||
 | 
						if (IS_ENABLED(CONFIG_READ_ONLY_THP_FOR_FS))
 | 
				
			||||||
 | 
							return file_thp_enabled(vma);
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	return false;
 | 
						return false;
 | 
				
			||||||
}
 | 
					}
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -442,9 +442,7 @@ static inline int khugepaged_test_exit(struct mm_struct *mm)
 | 
				
			||||||
static bool hugepage_vma_check(struct vm_area_struct *vma,
 | 
					static bool hugepage_vma_check(struct vm_area_struct *vma,
 | 
				
			||||||
			       unsigned long vm_flags)
 | 
								       unsigned long vm_flags)
 | 
				
			||||||
{
 | 
					{
 | 
				
			||||||
	/* Explicitly disabled through madvise. */
 | 
						if (!transhuge_vma_enabled(vma, vm_flags))
 | 
				
			||||||
	if ((vm_flags & VM_NOHUGEPAGE) ||
 | 
					 | 
				
			||||||
	    test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
 | 
					 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	/* Enabled via shmem mount options or sysfs settings. */
 | 
						/* Enabled via shmem mount options or sysfs settings. */
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
| 
						 | 
					@ -4040,8 +4040,7 @@ bool shmem_huge_enabled(struct vm_area_struct *vma)
 | 
				
			||||||
	loff_t i_size;
 | 
						loff_t i_size;
 | 
				
			||||||
	pgoff_t off;
 | 
						pgoff_t off;
 | 
				
			||||||
 | 
					
 | 
				
			||||||
	if ((vma->vm_flags & VM_NOHUGEPAGE) ||
 | 
						if (!transhuge_vma_enabled(vma, vma->vm_flags))
 | 
				
			||||||
	    test_bit(MMF_DISABLE_THP, &vma->vm_mm->flags))
 | 
					 | 
				
			||||||
		return false;
 | 
							return false;
 | 
				
			||||||
	if (shmem_huge == SHMEM_HUGE_FORCE)
 | 
						if (shmem_huge == SHMEM_HUGE_FORCE)
 | 
				
			||||||
		return true;
 | 
							return true;
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
		Reference in a new issue