mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2025-01-23 20:19:57 +07:00
powerpc/mm/hugetlb: Handle hugepage size supported by hash config
W.r.t hash page table config, we support 16MB and 16GB as the hugepage size. Update the hstate_get_psize to handle 16M and 16G. Signed-off-by: Aneesh Kumar K.V <aneesh.kumar@linux.vnet.ibm.com> Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
This commit is contained in:
parent
bee8b3b56d
commit
ccf17c8b5c
@ -21,6 +21,10 @@ static inline int hstate_get_psize(struct hstate *hstate)
|
||||
return MMU_PAGE_2M;
|
||||
else if (shift == mmu_psize_defs[MMU_PAGE_1G].shift)
|
||||
return MMU_PAGE_1G;
|
||||
else if (shift == mmu_psize_defs[MMU_PAGE_16M].shift)
|
||||
return MMU_PAGE_16M;
|
||||
else if (shift == mmu_psize_defs[MMU_PAGE_16G].shift)
|
||||
return MMU_PAGE_16G;
|
||||
else {
|
||||
WARN(1, "Wrong huge page shift\n");
|
||||
return mmu_virtual_psize;
|
||||
|
Loading…
Reference in New Issue
Block a user