[PATCH] selftests/vdso: Add linux/sched.h to fix CLONE_NEWTIME build error

From: SurajSonawane2415
Date: Wed Oct 02 2024 - 11:30:42 EST


Fix build error in vdso_test_getrandom.c due to missing CLONE_NEWTIME.
Include linux/sched.h to define CLONE_NEWTIME.
Ensure successful compilation by resolving the missing header issue.

Signed-off-by: SurajSonawane2415 <surajsonawane0215@xxxxxxxxx>
---
tools/testing/selftests/vDSO/vdso_test_getrandom.c | 1 +
1 file changed, 1 insertion(+)

diff --git a/tools/testing/selftests/vDSO/vdso_test_getrandom.c b/tools/testing/selftests/vDSO/vdso_test_getrandom.c
index 72a1d9b43..3f2a4dbf8 100644
--- a/tools/testing/selftests/vDSO/vdso_test_getrandom.c
+++ b/tools/testing/selftests/vDSO/vdso_test_getrandom.c
@@ -22,6 +22,7 @@
#include <linux/random.h>
#include <linux/compiler.h>
#include <linux/ptrace.h>
+#include <linux/sched.h>

#include "../kselftest.h"
#include "parse_vdso.h"
--
2.34.1