[LTP] [PATCH V2 4/6] syscalls: settimeofday: Use gettimeofday()
Viresh Kumar
viresh.kumar@linaro.org
Fri May 22 08:54:10 CEST 2020
Passing struct timeval to __NR_gettimeofday syscall is incompatible and
may cause issues as it must only be used with the libc gettimeofday()
syscall. Use gettimeofday() instead of calling it with tst_syscall() to
fix that.
Signed-off-by: Viresh Kumar <viresh.kumar@linaro.org>
---
testcases/kernel/syscalls/settimeofday/settimeofday01.c | 4 ++--
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/testcases/kernel/syscalls/settimeofday/settimeofday01.c b/testcases/kernel/syscalls/settimeofday/settimeofday01.c
index 7ce3dc5a47b3..b7f84b00fdc8 100644
--- a/testcases/kernel/syscalls/settimeofday/settimeofday01.c
+++ b/testcases/kernel/syscalls/settimeofday/settimeofday01.c
@@ -21,7 +21,7 @@ static void verify_settimeofday(void)
suseconds_t delta;
struct timeval tv1, tv2;
- if (tst_syscall(__NR_gettimeofday, &tv1, NULL) == -1)
+ if (gettimeofday(&tv1, NULL) == -1)
tst_brk(TBROK | TERRNO, "gettimeofday(&tv1, NULL) failed");
tv1.tv_sec += VAL_SEC;
@@ -35,7 +35,7 @@ static void verify_settimeofday(void)
return;
}
- if (tst_syscall(__NR_gettimeofday, &tv2, NULL) == -1)
+ if (gettimeofday(&tv2, NULL) == -1)
tst_brk(TBROK | TERRNO, "gettimeofday(&tv2, NULL) failed");
if (tv2.tv_sec > tv1.tv_sec) {
--
2.25.0.rc1.19.g042ed3e048af
More information about the ltp
mailing list