]> git.ipfire.org Git - thirdparty/linux.git/commitdiff
Revert "selftests/mm: remove local __NR_* definitions"
authorJohn Hubbard <jhubbard@nvidia.com>
Fri, 14 Feb 2025 03:38:50 +0000 (19:38 -0800)
committerAndrew Morton <akpm@linux-foundation.org>
Thu, 6 Mar 2025 05:36:12 +0000 (21:36 -0800)
This reverts commit a5c6bc590094a1a73cf6fa3f505e1945d2bf2461.

The general approach described in commit e076eaca5906 ("selftests: break
the dependency upon local header files") was taken one step too far here:
it should not have been extended to include the syscall numbers.  This is
because doing so would require per-arch support in tools/include/uapi, and
no such support exists.

This revert fixes two separate reports of test failures, from Dave
Hansen[1], and Li Wang[2].  An excerpt of Dave's report:

Before this commit (a5c6bc590094a1a73cf6fa3f505e1945d2bf2461) things are
fine.  But after, I get:

running PKEY tests for unsupported CPU/OS

An excerpt of Li's report:

    I just found that mlock2_() return a wrong value in mlock2-test

[1] https://lore.kernel.org/dc585017-6740-4cab-a536-b12b37a7582d@intel.com
[2] https://lore.kernel.org/CAEemH2eW=UMu9+turT2jRie7+6ewUazXmA6kL+VBo3cGDGU6RA@mail.gmail.com

Link: https://lkml.kernel.org/r/20250214033850.235171-1-jhubbard@nvidia.com
Fixes: a5c6bc590094 ("selftests/mm: remove local __NR_* definitions")
Signed-off-by: John Hubbard <jhubbard@nvidia.com>
Cc: Dave Hansen <dave.hansen@intel.com>
Cc: Li Wang <liwang@redhat.com>
Cc: David Hildenbrand <david@redhat.com>
Cc: Jeff Xu <jeffxu@chromium.org>
Cc: Andrei Vagin <avagin@google.com>
Cc: Axel Rasmussen <axelrasmussen@google.com>
Cc: Christian Brauner <brauner@kernel.org>
Cc: Kees Cook <kees@kernel.org>
Cc: Kent Overstreet <kent.overstreet@linux.dev>
Cc: Liam R. Howlett <Liam.Howlett@oracle.com>
Cc: Muhammad Usama Anjum <usama.anjum@collabora.com>
Cc: Peter Xu <peterx@redhat.com>
Cc: Rich Felker <dalias@libc.org>
Cc: Shuah Khan <shuah@kernel.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
tools/testing/selftests/mm/hugepage-mremap.c
tools/testing/selftests/mm/ksm_functional_tests.c
tools/testing/selftests/mm/memfd_secret.c
tools/testing/selftests/mm/mkdirty.c
tools/testing/selftests/mm/mlock2.h
tools/testing/selftests/mm/protection_keys.c
tools/testing/selftests/mm/uffd-common.c
tools/testing/selftests/mm/uffd-stress.c
tools/testing/selftests/mm/uffd-unit-tests.c

index ada9156cc497b3644487ee22dcadfa9b116c8aba..c463d1c09c9b4a5689feb194b13c3b8838827888 100644 (file)
@@ -15,7 +15,7 @@
 #define _GNU_SOURCE
 #include <stdlib.h>
 #include <stdio.h>
-#include <asm-generic/unistd.h>
+#include <unistd.h>
 #include <sys/mman.h>
 #include <errno.h>
 #include <fcntl.h> /* Definition of O_* constants */
index 66b4e111b5a27312c73532bd1f13ea1cf9fccea4..b61803e36d1cf5aefd9d69e85f3ba3962517758e 100644 (file)
@@ -11,7 +11,7 @@
 #include <string.h>
 #include <stdbool.h>
 #include <stdint.h>
-#include <asm-generic/unistd.h>
+#include <unistd.h>
 #include <errno.h>
 #include <fcntl.h>
 #include <sys/mman.h>
@@ -369,6 +369,7 @@ unmap:
        munmap(map, size);
 }
 
+#ifdef __NR_userfaultfd
 static void test_unmerge_uffd_wp(void)
 {
        struct uffdio_writeprotect uffd_writeprotect;
@@ -429,6 +430,7 @@ close_uffd:
 unmap:
        munmap(map, size);
 }
+#endif
 
 /* Verify that KSM can be enabled / queried with prctl. */
 static void test_prctl(void)
@@ -684,7 +686,9 @@ int main(int argc, char **argv)
                exit(test_child_ksm());
        }
 
+#ifdef __NR_userfaultfd
        tests++;
+#endif
 
        ksft_print_header();
        ksft_set_plan(tests);
@@ -696,7 +700,9 @@ int main(int argc, char **argv)
        test_unmerge();
        test_unmerge_zero_pages();
        test_unmerge_discarded();
+#ifdef __NR_userfaultfd
        test_unmerge_uffd_wp();
+#endif
 
        test_prot_none();
 
index 74c911aa3aea9f94c3074bd9a962d6f2281aa55c..9a0597310a76511c8f01d08b58fc780730d01a63 100644 (file)
@@ -17,7 +17,7 @@
 
 #include <stdlib.h>
 #include <string.h>
-#include <asm-generic/unistd.h>
+#include <unistd.h>
 #include <errno.h>
 #include <stdio.h>
 #include <fcntl.h>
@@ -28,6 +28,8 @@
 #define pass(fmt, ...) ksft_test_result_pass(fmt, ##__VA_ARGS__)
 #define skip(fmt, ...) ksft_test_result_skip(fmt, ##__VA_ARGS__)
 
+#ifdef __NR_memfd_secret
+
 #define PATTERN        0x55
 
 static const int prot = PROT_READ | PROT_WRITE;
@@ -332,3 +334,13 @@ int main(int argc, char *argv[])
 
        ksft_finished();
 }
+
+#else /* __NR_memfd_secret */
+
+int main(int argc, char *argv[])
+{
+       printf("skip: skipping memfd_secret test (missing __NR_memfd_secret)\n");
+       return KSFT_SKIP;
+}
+
+#endif /* __NR_memfd_secret */
index af2fce496912b147fe5b3eab605e84863ff94155..09feeb4536460b40227484161fb9510e19a21727 100644 (file)
@@ -9,7 +9,7 @@
  */
 #include <fcntl.h>
 #include <signal.h>
-#include <asm-generic/unistd.h>
+#include <unistd.h>
 #include <string.h>
 #include <errno.h>
 #include <stdlib.h>
@@ -265,6 +265,7 @@ munmap:
        munmap(mmap_mem, mmap_size);
 }
 
+#ifdef __NR_userfaultfd
 static void test_uffdio_copy(void)
 {
        struct uffdio_register uffdio_register;
@@ -322,6 +323,7 @@ munmap:
        munmap(dst, pagesize);
        free(src);
 }
+#endif /* __NR_userfaultfd */
 
 int main(void)
 {
@@ -334,7 +336,9 @@ int main(void)
                               thpsize / 1024);
                tests += 3;
        }
+#ifdef __NR_userfaultfd
        tests += 1;
+#endif /* __NR_userfaultfd */
 
        ksft_print_header();
        ksft_set_plan(tests);
@@ -364,7 +368,9 @@ int main(void)
        if (thpsize)
                test_pte_mapped_thp();
        /* Placing a fresh page via userfaultfd may set the PTE dirty. */
+#ifdef __NR_userfaultfd
        test_uffdio_copy();
+#endif /* __NR_userfaultfd */
 
        err = ksft_get_fail_cnt();
        if (err)
index 1e5731bab499a33a17107e5c89787582e8b4dbaa..4417eaa5cfb78ba2bb0f51d3418c9b768ff0fe90 100644 (file)
@@ -3,7 +3,6 @@
 #include <errno.h>
 #include <stdio.h>
 #include <stdlib.h>
-#include <asm-generic/unistd.h>
 
 static int mlock2_(void *start, size_t len, int flags)
 {
index a4683f2476f2728d813a32ede08cf90dcca82f81..35565af308af6c758394f5d58e953eeeeb98c545 100644 (file)
@@ -42,7 +42,7 @@
 #include <sys/wait.h>
 #include <sys/stat.h>
 #include <fcntl.h>
-#include <asm-generic/unistd.h>
+#include <unistd.h>
 #include <sys/ptrace.h>
 #include <setjmp.h>
 
index 717539eddf98754250e70e564cd9a59f398bd7ea..7ad6ba660c7d6f1f5762d0b231b92b05e971a3c5 100644 (file)
@@ -673,7 +673,11 @@ int uffd_open_dev(unsigned int flags)
 
 int uffd_open_sys(unsigned int flags)
 {
+#ifdef __NR_userfaultfd
        return syscall(__NR_userfaultfd, flags);
+#else
+       return -1;
+#endif
 }
 
 int uffd_open(unsigned int flags)
index a4b83280998ab7ce8d31e91d8f9fbb47ef11d742..944d559ade21f255404eb38557660e54e81d46b8 100644 (file)
  * pthread_mutex_lock will also verify the atomicity of the memory
  * transfer (UFFDIO_COPY).
  */
-#include <asm-generic/unistd.h>
+
 #include "uffd-common.h"
 
 uint64_t features;
+#ifdef __NR_userfaultfd
 
 #define BOUNCE_RANDOM          (1<<0)
 #define BOUNCE_RACINGFAULTS    (1<<1)
@@ -471,3 +472,15 @@ int main(int argc, char **argv)
               nr_pages, nr_pages_per_cpu);
        return userfaultfd_stress();
 }
+
+#else /* __NR_userfaultfd */
+
+#warning "missing __NR_userfaultfd definition"
+
+int main(void)
+{
+       printf("skip: Skipping userfaultfd test (missing __NR_userfaultfd)\n");
+       return KSFT_SKIP;
+}
+
+#endif /* __NR_userfaultfd */
index 9ff71fa1f9bf09b3ae599250663a25bbe2c13b8a..74c8bc02b5063f4667c4284c432edc7dee7ba3a5 100644 (file)
@@ -5,11 +5,12 @@
  *  Copyright (C) 2015-2023  Red Hat, Inc.
  */
 
-#include <asm-generic/unistd.h>
 #include "uffd-common.h"
 
 #include "../../../../mm/gup_test.h"
 
+#ifdef __NR_userfaultfd
+
 /* The unit test doesn't need a large or random size, make it 32MB for now */
 #define  UFFD_TEST_MEM_SIZE               (32UL << 20)
 
@@ -1558,3 +1559,14 @@ int main(int argc, char *argv[])
        return ksft_get_fail_cnt() ? KSFT_FAIL : KSFT_PASS;
 }
 
+#else /* __NR_userfaultfd */
+
+#warning "missing __NR_userfaultfd definition"
+
+int main(void)
+{
+       printf("Skipping %s (missing __NR_userfaultfd)\n", __file__);
+       return KSFT_SKIP;
+}
+
+#endif /* __NR_userfaultfd */