Skip to content

Commit b66b1b7

Browse files
Baolin Wangakpm00
authored andcommitted
mm: shmem: avoid allocating huge pages larger than MAX_PAGECACHE_ORDER for shmem
Similar to commit d659b71 ("mm/huge_memory: avoid PMD-size page cache if needed"), ARM64 can support 512MB PMD-sized THP when the base page size is 64KB, which is larger than the maximum supported page cache size MAX_PAGECACHE_ORDER. This is not expected. To fix this issue, use THP_ORDERS_ALL_FILE_DEFAULT for shmem to filter allowable huge orders. [[email protected]: remove comment, per Barry] Link: https://lkml.kernel.org/r/[email protected] [[email protected]: remove local `orders'] Link: https://lkml.kernel.org/r/[email protected] Link: https://lkml.kernel.org/r/117121665254442c3c7f585248296495e5e2b45c.1722404078.git.baolin.wang@linux.alibaba.com Fixes: e7a2ab7 ("mm: shmem: add mTHP support for anonymous shmem") Signed-off-by: Baolin Wang <[email protected]> Signed-off-by: Kefeng Wang <[email protected]> Reviewed-by: Barry Song <[email protected]> Cc: Barry Song <[email protected]> Cc: David Hildenbrand <[email protected]> Cc: Gavin Shan <[email protected]> Cc: Hugh Dickins <[email protected]> Cc: Lance Yang <[email protected]> Cc: Matthew Wilcox <[email protected]> Cc: Ryan Roberts <[email protected]> Cc: Zi Yan <[email protected]> Signed-off-by: Andrew Morton <[email protected]>
1 parent 5161b48 commit b66b1b7

File tree

1 file changed

+1
-6
lines changed

1 file changed

+1
-6
lines changed

mm/shmem.c

Lines changed: 1 addition & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1629,11 +1629,6 @@ unsigned long shmem_allowable_huge_orders(struct inode *inode,
16291629
unsigned long mask = READ_ONCE(huge_shmem_orders_always);
16301630
unsigned long within_size_orders = READ_ONCE(huge_shmem_orders_within_size);
16311631
unsigned long vm_flags = vma->vm_flags;
1632-
/*
1633-
* Check all the (large) orders below HPAGE_PMD_ORDER + 1 that
1634-
* are enabled for this vma.
1635-
*/
1636-
unsigned long orders = BIT(PMD_ORDER + 1) - 1;
16371632
loff_t i_size;
16381633
int order;
16391634

@@ -1678,7 +1673,7 @@ unsigned long shmem_allowable_huge_orders(struct inode *inode,
16781673
if (global_huge)
16791674
mask |= READ_ONCE(huge_shmem_orders_inherit);
16801675

1681-
return orders & mask;
1676+
return THP_ORDERS_ALL_FILE_DEFAULT & mask;
16821677
}
16831678

16841679
static unsigned long shmem_suitable_orders(struct inode *inode, struct vm_fault *vmf,

0 commit comments

Comments
 (0)