]> git.baikalelectronics.ru Git - kernel.git/commit
hugetlbfs: make hugepage size conversion more readable
authorMiaohe Lin <linmiaohe@huawei.com>
Wed, 24 Feb 2021 20:10:14 +0000 (12:10 -0800)
committerLinus Torvalds <torvalds@linux-foundation.org>
Wed, 24 Feb 2021 21:38:35 +0000 (13:38 -0800)
commitcc81831cb5556a56a3b579d815421c591103c54f
tree08956ce1596f3960a428aacd08459aa5c2a6400f
parent7505dd43201c28aa64f4a60b6f5d20e1963c5b70
hugetlbfs: make hugepage size conversion more readable

The calculation 1U << (h->order + PAGE_SHIFT - 10) is actually equal to
(PAGE_SHIFT << (h->order)) >> 10.  So we can make it more readable by
replace it with huge_page_size(h) >> 10.

Link: https://lkml.kernel.org/r/20210122083141.24548-1-linmiaohe@huawei.com
Signed-off-by: Miaohe Lin <linmiaohe@huawei.com>
Reviewed-by: Mike Kravetz <mike.kravetz@oracle.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
fs/hugetlbfs/inode.c