mm/hugetlb: use already existing interface huge_page_shift
Use the already existing interface huge_page_shift instead of h->order + PAGE_SHIFT. Signed-off-by: Wanpeng Li <liwanp@linux.vnet.ibm.com> Cc: KAMEZAWA Hiroyuki <kamezawa.hiroyu@jp.fujitsu.com> Cc: David Rientjes <rientjes@google.com> Cc: Benjamin Herrenschmidt <benh@kernel.crashing.org> Reviewed-by: Michal Hocko <mhocko@suse.cz> Signed-off-by: Andrew Morton <akpm@linux-foundation.org> Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
This commit is contained in:
Родитель
5f1e31d2f5
Коммит
2415cf12e0
|
@ -357,7 +357,7 @@ void add_gpage(u64 addr, u64 page_size, unsigned long number_of_pages)
|
|||
int alloc_bootmem_huge_page(struct hstate *hstate)
|
||||
{
|
||||
struct huge_bootmem_page *m;
|
||||
int idx = shift_to_mmu_psize(hstate->order + PAGE_SHIFT);
|
||||
int idx = shift_to_mmu_psize(huge_page_shift(hstate));
|
||||
int nr_gpages = gpage_freearray[idx].nr_gpages;
|
||||
|
||||
if (nr_gpages == 0)
|
||||
|
|
|
@ -319,7 +319,7 @@ unsigned long vma_kernel_pagesize(struct vm_area_struct *vma)
|
|||
|
||||
hstate = hstate_vma(vma);
|
||||
|
||||
return 1UL << (hstate->order + PAGE_SHIFT);
|
||||
return 1UL << huge_page_shift(hstate);
|
||||
}
|
||||
EXPORT_SYMBOL_GPL(vma_kernel_pagesize);
|
||||
|
||||
|
|
Загрузка…
Ссылка в новой задаче