2024-01-11 03:51:12

by Huyadi

[permalink] [raw]
Subject: [PATCH] selftests/core: Fix build issue with CLOSE_RANGE_UNSHARE

From: "Hu.Yadi" <[email protected]>

Add head file to fix cpmpile error:

gcc -g -isystem /home/linux/usr/include close_range_test.c -o /home/linux/tools/testing/selftests/core/close_range_test
close_range_test.c: In function ‘close_range_unshare’:
close_range_test.c:111:11: error: ‘CLOSE_RANGE_UNSHARE’ undeclared (first use in this function); did you mean ‘CLONE_NEWUSER’?
CLOSE_RANGE_UNSHARE);
^~~~~~~~~~~~~~~~~~~

Signed-off-by: Hu.Yadi <[email protected]>
Suggested-by: Jiao <[email protected]>
Reviewed-by: Berlin <[email protected]>
---
tools/testing/selftests/core/close_range_test.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tools/testing/selftests/core/close_range_test.c b/tools/testing/selftests/core/close_range_test.c
index 534576f06df1..563bc1e55937 100644
--- a/tools/testing/selftests/core/close_range_test.c
+++ b/tools/testing/selftests/core/close_range_test.c
@@ -12,7 +12,7 @@
#include <syscall.h>
#include <unistd.h>
#include <sys/resource.h>
-
+#include <linux/close_range.h>
#include "../kselftest_harness.h"
#include "../clone3/clone3_selftests.h"

--
2.23.0



2024-01-12 05:25:59

by Huyadi

[permalink] [raw]
Subject: 回复: [PATCH] selftests/core: Fix build iss ue with CLOSE_RANGE_UNSHARE

Any comments will be appreciated

>From: "Hu.Yadi" <[email protected]>
>
>Add head file to fix cpmpile error:
>
>gcc -g -isystem /home/linux/usr/include close_range_test.c -o /home/linux/tools/testing/selftests/core/close_range_test
>close_range_test.c: In function ‘close_range_unshare’:
>close_range_test.c:111:11: error: ‘CLOSE_RANGE_UNSHARE’ undeclared (first use in this function); did you mean ‘CLONE_NEWUSER’?
> CLOSE_RANGE_UNSHARE);
> ^~~~~~~~~~~~~~~~~~~
>

>Signed-off-by: Hu.Yadi <[email protected]>
>Suggested-by: Jiao <[email protected]>
>Reviewed-by: Berlin <[email protected]>
>---
> tools/testing/selftests/core/close_range_test.c | 2 +-
> 1 file changed, 1 insertion(+), 1 deletion(-)
>
>diff --git a/tools/testing/selftests/core/close_range_test.c b/tools/testing/selftests/core/close_range_test.c
>index 534576f06df1..563bc1e55937 100644
>--- a/tools/testing/selftests/core/close_range_test.c
>+++ b/tools/testing/selftests/core/close_range_test.c
>@@ -12,7 +12,7 @@
> #include <syscall.h>
> #include <unistd.h>
> #include <sys/resource.h>
>-
>+#include <linux/close_range.h>
> #include "../kselftest_harness.h"
> #include "../clone3/clone3_selftests.h"
>
>--
>2.23.0