Patch "mm/huge_memory.c: remove dedicated macro HPAGE_CACHE_INDEX_MASK" has been added to the 5.13-stable tree

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

 



This is a note to let you know that I've just added the patch titled

    mm/huge_memory.c: remove dedicated macro HPAGE_CACHE_INDEX_MASK

to the 5.13-stable tree which can be found at:
    http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary

The filename of the patch is:
     mm-huge_memory.c-remove-dedicated-macro-hpage_cache_.patch
and it can be found in the queue-5.13 subdirectory.

If you, or anyone else, feels it should not be added to the stable tree,
please let <stable@xxxxxxxxxxxxxxx> know about it.



commit 06a973eecca887e89846221ee2df771e2424b48e
Author: Miaohe Lin <linmiaohe@xxxxxxxxxx>
Date:   Wed Jun 30 18:47:43 2021 -0700

    mm/huge_memory.c: remove dedicated macro HPAGE_CACHE_INDEX_MASK
    
    [ Upstream commit b2bd53f18bb7f7cfc91b3bb527d7809376700a8e ]
    
    Patch series "Cleanup and fixup for huge_memory:, v3.
    
    This series contains cleanups to remove dedicated macro and remove
    unnecessary tlb_remove_page_size() for huge zero pmd.  Also this adds
    missing read-only THP checking for transparent_hugepage_enabled() and
    avoids discarding hugepage if other processes are mapping it.  More
    details can be found in the respective changelogs.
    
    Thi patch (of 5):
    
    Rewrite the pgoff checking logic to remove macro HPAGE_CACHE_INDEX_MASK
    which is only used here to simplify the code.
    
    Link: https://lkml.kernel.org/r/20210511134857.1581273-1-linmiaohe@xxxxxxxxxx
    Link: https://lkml.kernel.org/r/20210511134857.1581273-2-linmiaohe@xxxxxxxxxx
    Signed-off-by: Miaohe Lin <linmiaohe@xxxxxxxxxx>
    Reviewed-by: Yang Shi <shy828301@xxxxxxxxx>
    Reviewed-by: Anshuman Khandual <anshuman.khandual@xxxxxxx>
    Reviewed-by: David Hildenbrand <david@xxxxxxxxxx>
    Cc: Zi Yan <ziy@xxxxxxxxxx>
    Cc: William Kucharski <william.kucharski@xxxxxxxxxx>
    Cc: Matthew Wilcox <willy@xxxxxxxxxxxxx>
    Cc: "Aneesh Kumar K . V" <aneesh.kumar@xxxxxxxxxxxxx>
    Cc: Ralph Campbell <rcampbell@xxxxxxxxxx>
    Cc: Song Liu <songliubraving@xxxxxx>
    Cc: Kirill A. Shutemov <kirill.shutemov@xxxxxxxxxxxxxxx>
    Cc: Rik van Riel <riel@xxxxxxxxxxx>
    Cc: Johannes Weiner <hannes@xxxxxxxxxxx>
    Cc: Minchan Kim <minchan@xxxxxxxxxx>
    Cc: Hugh Dickins <hughd@xxxxxxxxxx>
    Cc: Alexey Dobriyan <adobriyan@xxxxxxxxx>
    Cc: Mike Kravetz <mike.kravetz@xxxxxxxxxx>
    Signed-off-by: Andrew Morton <akpm@xxxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Linus Torvalds <torvalds@xxxxxxxxxxxxxxxxxxxx>
    Signed-off-by: Sasha Levin <sashal@xxxxxxxxxx>

diff --git a/include/linux/huge_mm.h b/include/linux/huge_mm.h
index 2a8ebe6c222e..8a5f49abcfa2 100644
--- a/include/linux/huge_mm.h
+++ b/include/linux/huge_mm.h
@@ -152,15 +152,13 @@ static inline bool __transparent_hugepage_enabled(struct vm_area_struct *vma)
 
 bool transparent_hugepage_enabled(struct vm_area_struct *vma);
 
-#define HPAGE_CACHE_INDEX_MASK (HPAGE_PMD_NR - 1)
-
 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 (((vma->vm_start >> PAGE_SHIFT) & HPAGE_CACHE_INDEX_MASK) !=
-			(vma->vm_pgoff & HPAGE_CACHE_INDEX_MASK))
+		if (!IS_ALIGNED((vma->vm_start >> PAGE_SHIFT) - vma->vm_pgoff,
+				HPAGE_PMD_NR))
 			return false;
 	}
 



[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Index of Archives]     [Linux USB Devel]     [Linux Audio Users]     [Yosemite News]     [Linux Kernel]     [Linux SCSI]

  Powered by Linux