|
@@ -20,6 +20,28 @@
|
|
|
#include <asm/unistd.h>
|
|
|
#include <asm/vdso.h>
|
|
|
|
|
|
+#ifdef CONFIG_MIPS_CLOCK_VSYSCALL
|
|
|
+
|
|
|
+static __always_inline long gettimeofday_fallback(struct timeval *_tv,
|
|
|
+ struct timezone *_tz)
|
|
|
+{
|
|
|
+ register struct timezone *tz asm("a1") = _tz;
|
|
|
+ register struct timeval *tv asm("a0") = _tv;
|
|
|
+ register long ret asm("v0");
|
|
|
+ register long nr asm("v0") = __NR_gettimeofday;
|
|
|
+ register long error asm("a3");
|
|
|
+
|
|
|
+ asm volatile(
|
|
|
+ " syscall\n"
|
|
|
+ : "=r" (ret), "=r" (error)
|
|
|
+ : "r" (tv), "r" (tz), "r" (nr)
|
|
|
+ : "memory");
|
|
|
+
|
|
|
+ return error ? -ret : ret;
|
|
|
+}
|
|
|
+
|
|
|
+#endif
|
|
|
+
|
|
|
static __always_inline long clock_gettime_fallback(clockid_t _clkid,
|
|
|
struct timespec *_ts)
|
|
|
{
|
|
@@ -205,7 +227,7 @@ int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
|
|
|
|
|
|
ret = do_realtime(&ts, data);
|
|
|
if (ret)
|
|
|
- return ret;
|
|
|
+ return gettimeofday_fallback(tv, tz);
|
|
|
|
|
|
if (tv) {
|
|
|
tv->tv_sec = ts.tv_sec;
|