00db10
From 01c3d9bb14a1e90159d6999cf3469e62c0c5d4b2 Mon Sep 17 00:00:00 2001
00db10
From: Adhemerval Zanella <azanella@linux.vnet.ibm.com>
00db10
Date: Fri, 3 May 2013 15:00:31 -0500
00db10
Subject: [PATCH 27/42] PowerPC: Add time vDSO support
00db10
00db10
PowerPC kernel now provides a vDSO implementation for time syscall
00db10
(commit fcb41a2030abe0eb716ef0798035ef9562097f42). This patch changes
00db10
time syscall wrapper to use the vDSO when available. It also changes
00db10
the default non vDSO time on PowerPC to use sysdeps/posix/time.c
00db10
(since gettimeofday is a vDSO call).
00db10
(cherry picked from commit 83e7640f6bf68708ecf0b09d83c670203167271e)
00db10
---
00db10
 sysdeps/unix/sysv/linux/powerpc/Versions         |  1 +
00db10
 sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h |  6 ++-
00db10
 sysdeps/unix/sysv/linux/powerpc/init-first.c     |  4 +-
00db10
 sysdeps/unix/sysv/linux/powerpc/time.c           | 62 ++++++++++++++++++++++++
00db10
 5 files changed, 81 insertions(+), 3 deletions(-)
00db10
 create mode 100644 sysdeps/unix/sysv/linux/powerpc/time.c
00db10
00db10
diff --git glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/Versions glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/Versions
00db10
index 396a423..289c4fe 100644
00db10
--- glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/Versions
00db10
+++ glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/Versions
00db10
@@ -4,5 +4,6 @@ libc {
00db10
     __vdso_clock_gettime;
00db10
     __vdso_clock_getres;
00db10
     __vdso_getcpu;
00db10
+    __vdso_time;
00db10
   }
00db10
 }
00db10
diff --git glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
00db10
index e4ae630..f7f635e 100644
00db10
--- glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
00db10
+++ glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/bits/libc-vdso.h
00db10
@@ -32,14 +32,16 @@ extern void *__vdso_get_tbfreq;
00db10
 
00db10
 extern void *__vdso_getcpu;
00db10
 
00db10
+extern void *__vdso_time;
00db10
+
00db10
 /* This macro is needed for PPC64 to return a skeleton OPD entry of a vDSO
00db10
    symbol.  This works because _dl_vdso_vsym always return the function
00db10
    address, and no vDSO symbols use the TOC or chain pointers from the OPD
00db10
    so we can allow them to be garbage.  */
00db10
 #if defined(__PPC64__) || defined(__powerpc64__)
00db10
-#define VDSO_IFUNC_RET(value)  &value
00db10
+#define VDSO_IFUNC_RET(value)  ((void *) &(value))
00db10
 #else
00db10
-#define VDSO_IFUNC_RET(value)  value
00db10
+#define VDSO_IFUNC_RET(value)  ((void *) (value))
00db10
 #endif
00db10
 
00db10
 #endif
00db10
diff --git glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/init-first.c glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/init-first.c
00db10
index 5587e2a..3cefd9b 100644
00db10
--- glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/init-first.c
00db10
+++ glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/init-first.c
00db10
@@ -28,7 +28,7 @@ void *__vdso_clock_gettime;
00db10
 void *__vdso_clock_getres;
00db10
 void *__vdso_get_tbfreq;
00db10
 void *__vdso_getcpu;
00db10
-
00db10
+void *__vdso_time;
00db10
 
00db10
 static inline void
00db10
 _libc_vdso_platform_setup (void)
00db10
@@ -44,6 +44,8 @@ _libc_vdso_platform_setup (void)
00db10
   __vdso_get_tbfreq = _dl_vdso_vsym ("__kernel_get_tbfreq", &linux2615);
00db10
 
00db10
   __vdso_getcpu = _dl_vdso_vsym ("__kernel_getcpu", &linux2615);
00db10
+
00db10
+  __vdso_time = _dl_vdso_vsym ("__kernel_time", &linux2615);
00db10
 }
00db10
 
00db10
 # define VDSO_SETUP _libc_vdso_platform_setup
00db10
diff --git glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/time.c glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/time.c
00db10
new file mode 100644
00db10
index 0000000..66b4eb3
00db10
--- /dev/null
00db10
+++ glibc-2.17-c758a686/sysdeps/unix/sysv/linux/powerpc/time.c
00db10
@@ -0,0 +1,62 @@
00db10
+/* time system call for Linux/PowerPC.
00db10
+   Copyright (C) 2013 Free Software Foundation, Inc.
00db10
+   This file is part of the GNU C Library.
00db10
+
00db10
+   The GNU C Library is free software; you can redistribute it and/or
00db10
+   modify it under the terms of the GNU Lesser General Public
00db10
+   License as published by the Free Software Foundation; either
00db10
+   version 2.1 of the License, or (at your option) any later version.
00db10
+
00db10
+   The GNU C Library is distributed in the hope that it will be useful,
00db10
+   but WITHOUT ANY WARRANTY; without even the implied warranty of
00db10
+   MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
00db10
+   Lesser General Public License for more details.
00db10
+
00db10
+   You should have received a copy of the GNU Lesser General Public
00db10
+   License along with the GNU C Library; if not, see
00db10
+   <http://www.gnu.org/licenses/>.  */
00db10
+
00db10
+#ifdef SHARED
00db10
+
00db10
+# include <time.h>
00db10
+# include <sysdep.h>
00db10
+# include <bits/libc-vdso.h>
00db10
+
00db10
+void *time_ifunc (void) asm ("time");
00db10
+
00db10
+static time_t
00db10
+time_syscall (time_t *t)
00db10
+{
00db10
+  struct timeval tv;
00db10
+  time_t result;
00db10
+
00db10
+  if (INLINE_VSYSCALL (gettimeofday, 2, &tv, NULL) < 0)
00db10
+    result = (time_t) -1;
00db10
+  else
00db10
+    result = (time_t) tv.tv_sec;
00db10
+
00db10
+  if (t != NULL)
00db10
+    *t = result;
00db10
+  return result;
00db10
+}
00db10
+
00db10
+void *
00db10
+time_ifunc (void)
00db10
+{
00db10
+  /* If the vDSO is not available we fall back to the syscall.  */
00db10
+  return (__vdso_time ? VDSO_IFUNC_RET (__vdso_time)
00db10
+	  : time_syscall);
00db10
+}
00db10
+asm (".type time, %gnu_indirect_function");
00db10
+
00db10
+/* This is doing "libc_hidden_def (time)" but the compiler won't
00db10
+ * let us do it in C because it doesn't know we're defining time
00db10
+ * here in this file.  */
00db10
+asm (".globl __GI_time\n"
00db10
+     "__GI_time = time");
00db10
+
00db10
+#else
00db10
+
00db10
+#include <sysdeps/posix/time.c>
00db10
+
00db10
+#endif
00db10
-- 
00db10
1.7.11.7
00db10