Skip to content

Commit 7efa6f2

Browse files
Terry Trittonakpm00
authored andcommitted
selftests/mm: uffd-unit-test check if huge page size is 0
If HUGETLBFS is not enabled then the default_huge_page_size function will return 0 and cause a divide by 0 error. Add a check to see if the huge page size is 0 and skip the hugetlb tests if it is. Link: https://lkml.kernel.org/r/20240205145055.3545806-2-terry.tritton@linaro.org Fixes: 16a45b5 ("selftests/mm: add framework for uffd-unit-test") Signed-off-by: Terry Tritton <terry.tritton@linaro.org> Cc: Peter Griffin <peter.griffin@linaro.org> Cc: Shuah Khan <shuah@kernel.org> Cc: Peter Xu <peterx@redhat.com> Cc: <stable@vger.kernel.org> Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
1 parent e9e3db6 commit 7efa6f2

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tools/testing/selftests/mm/uffd-unit-tests.c

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1517,6 +1517,12 @@ int main(int argc, char *argv[])
15171517
continue;
15181518

15191519
uffd_test_start("%s on %s", test->name, mem_type->name);
1520+
if ((mem_type->mem_flag == MEM_HUGETLB ||
1521+
mem_type->mem_flag == MEM_HUGETLB_PRIVATE) &&
1522+
(default_huge_page_size() == 0)) {
1523+
uffd_test_skip("huge page size is 0, feature missing?");
1524+
continue;
1525+
}
15201526
if (!uffd_feature_supported(test)) {
15211527
uffd_test_skip("feature missing");
15221528
continue;

0 commit comments

Comments
 (0)