]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
Linux: Fix 32-bit vDSO for clock_gettime on powerpc32
authormaminjie <maminjie2@huawei.com>
Mon, 20 Dec 2021 11:36:32 +0000 (19:36 +0800)
committerAdhemerval Zanella <adhemerval.zanella@linaro.org>
Tue, 21 Dec 2021 12:47:16 +0000 (09:47 -0300)
When the clock_id is CLOCK_PROCESS_CPUTIME_ID or CLOCK_THREAD_CPUTIME_ID,
on the 5.10 kernel powerpc 32-bit, the 32-bit vDSO is executed successfully (
because the __kernel_clock_gettime in arch/powerpc/kernel/vdso32/gettimeofday.S
does not support these two IDs, the 32-bit time_t syscall will be used),
but tp32.tv_sec is equal to 0, causing the 64-bit time_t syscall to continue to be used,
resulting in two system calls.

Fix commit 72e84d1db22203e01a43268de71ea8669eca2863.

Signed-off-by: maminjie <maminjie2@huawei.com>
Reviewed-by: Adhemerval Zanella <adhemerval.zanella@linaro.org>
sysdeps/unix/sysv/linux/clock_gettime.c

index 91df6b3d967bf945ca11d3b04266cb2536ba1858..9c7d9073254843c754dbf2bbf7fa683ef357420a 100644 (file)
@@ -53,7 +53,7 @@ __clock_gettime64 (clockid_t clock_id, struct __timespec64 *tp)
     {
       struct timespec tp32;
       r = INTERNAL_VSYSCALL_CALL (vdso_time, 2, clock_id, &tp32);
-      if (r == 0 && tp32.tv_sec > 0)
+      if (r == 0 && tp32.tv_sec >= 0)
        {
          *tp = valid_timespec_to_timespec64 (tp32);
          return 0;