提交 4793923d 编写于 作者: M Miaohe Lin 提交者: Zheng Zengkai

mm/hugetlb: use helper huge_page_order and pages_per_huge_page

stable inclusion
from stable-5.10.50
commit 0da83a815d33e39a29391c13de3462b9b6115350
bugzilla: 174522 https://gitee.com/openeuler/kernel/issues/I4DNFY

Reference: https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git/commit/?id=0da83a815d33e39a29391c13de3462b9b6115350

--------------------------------

[ Upstream commit c78a7f36 ]

Since commit a5516438 ("hugetlb: modular state for hugetlb page
size"), we can use huge_page_order to access hstate->order and
pages_per_huge_page to fetch the pages per huge page.  But
gather_bootmem_prealloc() forgot to use it.

Link: https://lkml.kernel.org/r/20210114114435.40075-1-linmiaohe@huawei.comSigned-off-by: NMiaohe Lin <linmiaohe@huawei.com>
Reviewed-by: NDavid Hildenbrand <david@redhat.com>
Reviewed-by: NMike Kravetz <mike.kravetz@oracle.com>
Signed-off-by: NAndrew Morton <akpm@linux-foundation.org>
Signed-off-by: NLinus Torvalds <torvalds@linux-foundation.org>
Signed-off-by: NSasha Levin <sashal@kernel.org>
Signed-off-by: NChen Jun <chenjun102@huawei.com>
Acked-by: NWeilong Chen <chenweilong@huawei.com>
Signed-off-by: NChen Jun <chenjun102@huawei.com>
Signed-off-by: NZheng Zengkai <zhengzengkai@huawei.com>
上级 940d59f4
...@@ -2560,7 +2560,7 @@ static void __init gather_bootmem_prealloc(void) ...@@ -2560,7 +2560,7 @@ static void __init gather_bootmem_prealloc(void)
struct hstate *h = m->hstate; struct hstate *h = m->hstate;
WARN_ON(page_count(page) != 1); WARN_ON(page_count(page) != 1);
prep_compound_huge_page(page, h->order); prep_compound_huge_page(page, huge_page_order(h));
WARN_ON(PageReserved(page)); WARN_ON(PageReserved(page));
prep_new_huge_page(h, page, page_to_nid(page)); prep_new_huge_page(h, page, page_to_nid(page));
put_page(page); /* free it into the hugepage allocator */ put_page(page); /* free it into the hugepage allocator */
...@@ -2572,7 +2572,7 @@ static void __init gather_bootmem_prealloc(void) ...@@ -2572,7 +2572,7 @@ static void __init gather_bootmem_prealloc(void)
* side-effects, like CommitLimit going negative. * side-effects, like CommitLimit going negative.
*/ */
if (hstate_is_gigantic(h)) if (hstate_is_gigantic(h))
adjust_managed_page_count(page, 1 << h->order); adjust_managed_page_count(page, pages_per_huge_page(h));
cond_resched(); cond_resched();
} }
} }
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册