selftests: clone3: remove duplicate defines
authorMuhammad Usama Anjum <usama.anjum@collabora.com>
Fri, 6 Oct 2023 10:07:36 +0000 (15:07 +0500)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 6 Oct 2023 23:33:42 +0000 (17:33 -0600)
Remove duplicate defines which are already included in kernel headers.
MAX_PID_NS_LEVEL macro is used inside kernel only. It isn't exposed to
userspace. So it is never defined in test application. Remove #ifndef in
this case.

Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/clone3/clone3_cap_checkpoint_restore.c
tools/testing/selftests/clone3/clone3_clear_sighand.c
tools/testing/selftests/clone3/clone3_selftests.h
tools/testing/selftests/clone3/clone3_set_tid.c

index 52d3f0364bdaa1b1ecf744247de63c77f3c2079f..31b56d6256550b62aca41495f6d716d17cd5f54a 100644 (file)
@@ -27,9 +27,7 @@
 #include "../kselftest_harness.h"
 #include "clone3_selftests.h"
 
-#ifndef MAX_PID_NS_LEVEL
 #define MAX_PID_NS_LEVEL 32
-#endif
 
 static void child_exit(int ret)
 {
index 47a8c0fc3676b8703f4e58d5be671e32a03b7d39..54a8b2445be99fb3aca46401ee27a5fe47aaa5ce 100644 (file)
 #include "../kselftest.h"
 #include "clone3_selftests.h"
 
-#ifndef CLONE_CLEAR_SIGHAND
-#define CLONE_CLEAR_SIGHAND 0x100000000ULL
-#endif
-
 static void nop_handler(int signo)
 {
 }
index e81ffaaee02ba7701f8e1093c5c25dafa17fde77..3d2663fe50ba56f011629e4f2eb68a72bcceb087 100644 (file)
 
 #define ptr_to_u64(ptr) ((__u64)((uintptr_t)(ptr)))
 
-#ifndef CLONE_INTO_CGROUP
-#define CLONE_INTO_CGROUP 0x200000000ULL /* Clone into a specific cgroup given the right permissions. */
-#endif
-
 #ifndef __NR_clone3
 #define __NR_clone3 -1
 #endif
@@ -32,18 +28,9 @@ struct __clone_args {
        __aligned_u64 stack;
        __aligned_u64 stack_size;
        __aligned_u64 tls;
-#ifndef CLONE_ARGS_SIZE_VER0
-#define CLONE_ARGS_SIZE_VER0 64        /* sizeof first published struct */
-#endif
        __aligned_u64 set_tid;
        __aligned_u64 set_tid_size;
-#ifndef CLONE_ARGS_SIZE_VER1
-#define CLONE_ARGS_SIZE_VER1 80        /* sizeof second published struct */
-#endif
        __aligned_u64 cgroup;
-#ifndef CLONE_ARGS_SIZE_VER2
-#define CLONE_ARGS_SIZE_VER2 88        /* sizeof third published struct */
-#endif
 };
 
 static pid_t sys_clone3(struct __clone_args *args, size_t size)
index 0229e9ebb995eb112c0289e7b1d4caab71834c53..ed785afb60770d5cb62530fd134fc0a92e72ef04 100644 (file)
@@ -23,9 +23,7 @@
 #include "../kselftest.h"
 #include "clone3_selftests.h"
 
-#ifndef MAX_PID_NS_LEVEL
 #define MAX_PID_NS_LEVEL 32
-#endif
 
 static int pipe_1[2];
 static int pipe_2[2];