selftests: core: remove duplicate defines
authorMuhammad Usama Anjum <usama.anjum@collabora.com>
Fri, 6 Oct 2023 10:07:37 +0000 (15:07 +0500)
committerShuah Khan <skhan@linuxfoundation.org>
Fri, 6 Oct 2023 23:33:47 +0000 (17:33 -0600)
Remove duplicate defines which are already defined in kernel headers and
re-definition isn't required.

Signed-off-by: Muhammad Usama Anjum <usama.anjum@collabora.com>
Signed-off-by: Shuah Khan <skhan@linuxfoundation.org>
tools/testing/selftests/core/close_range_test.c

index 749239930ca83fc45c3424a7b4d36841b78d12c3..534576f06df1cc78f63619d873f77ad0390f45e5 100644 (file)
 #include "../kselftest_harness.h"
 #include "../clone3/clone3_selftests.h"
 
-#ifndef __NR_close_range
-       #if defined __alpha__
-               #define __NR_close_range 546
-       #elif defined _MIPS_SIM
-               #if _MIPS_SIM == _MIPS_SIM_ABI32        /* o32 */
-                       #define __NR_close_range (436 + 4000)
-               #endif
-               #if _MIPS_SIM == _MIPS_SIM_NABI32       /* n32 */
-                       #define __NR_close_range (436 + 6000)
-               #endif
-               #if _MIPS_SIM == _MIPS_SIM_ABI64        /* n64 */
-                       #define __NR_close_range (436 + 5000)
-               #endif
-       #elif defined __ia64__
-               #define __NR_close_range (436 + 1024)
-       #else
-               #define __NR_close_range 436
-       #endif
-#endif
-
-#ifndef CLOSE_RANGE_UNSHARE
-#define CLOSE_RANGE_UNSHARE    (1U << 1)
-#endif
-
-#ifndef CLOSE_RANGE_CLOEXEC
-#define CLOSE_RANGE_CLOEXEC    (1U << 2)
-#endif
-
 static inline int sys_close_range(unsigned int fd, unsigned int max_fd,
                                  unsigned int flags)
 {