[<prev] [next>] [<thread-prev] [thread-next>] [day] [month] [year] [list]
Message-Id: <bfda46b29ab69c531543ac77f1cfd1f0e3adea77.1324831829.git.luto@amacapital.net>
Date: Sun, 25 Dec 2011 08:51:01 -0800
From: Andy Lutomirski <luto@...capital.net>
To: linux-kernel@...r.kernel.org, Kumar Sundararajan <kumar@...com>,
john stultz <johnstul@...ibm.com>, Arun Sharma <asharma@...com>
Cc: Peter Zijlstra <peterz@...radead.org>, Ingo Molnar <mingo@...e.hu>,
Thomas Gleixner <tglx@...utronix.de>,
Richard Cochran <richardcochran@...il.com>,
Andy Lutomirski <luto@...capital.net>
Subject: [PATCH 2/4] x86-64: Add __vdso_clock_gettime_ns vsyscall
This is just for the ABI. The next patch optimizes the implementation.
Signed-off-by: Andy Lutomirski <luto@...capital.net>
---
arch/x86/vdso/vclock_gettime.c | 70 ++++++++++++++++++++++++++++++---------
arch/x86/vdso/vdso.lds.S | 7 ++++
2 files changed, 61 insertions(+), 16 deletions(-)
diff --git a/arch/x86/vdso/vclock_gettime.c b/arch/x86/vdso/vclock_gettime.c
index 6bc0e72..c8a2b46 100644
--- a/arch/x86/vdso/vclock_gettime.c
+++ b/arch/x86/vdso/vclock_gettime.c
@@ -82,7 +82,7 @@ notrace static inline long vgetns(void)
return (v * gtod->clock.mult) >> gtod->clock.shift;
}
-notrace static noinline int do_realtime(struct timespec *ts)
+notrace static noinline void do_realtime(struct timespec *ts)
{
unsigned long seq, ns;
do {
@@ -92,10 +92,9 @@ notrace static noinline int do_realtime(struct timespec *ts)
ns = vgetns();
} while (unlikely(read_seqretry(>od->lock, seq)));
timespec_add_ns(ts, ns);
- return 0;
}
-notrace static noinline int do_monotonic(struct timespec *ts)
+notrace static noinline void do_monotonic(struct timespec *ts)
{
unsigned long seq, ns, secs;
do {
@@ -115,11 +114,9 @@ notrace static noinline int do_monotonic(struct timespec *ts)
}
ts->tv_sec = secs;
ts->tv_nsec = ns;
-
- return 0;
}
-notrace static noinline int do_realtime_coarse(struct timespec *ts)
+notrace static noinline void do_realtime_coarse(struct timespec *ts)
{
unsigned long seq;
do {
@@ -127,10 +124,9 @@ notrace static noinline int do_realtime_coarse(struct timespec *ts)
ts->tv_sec = gtod->wall_time_coarse.tv_sec;
ts->tv_nsec = gtod->wall_time_coarse.tv_nsec;
} while (unlikely(read_seqretry(>od->lock, seq)));
- return 0;
}
-notrace static noinline int do_monotonic_coarse(struct timespec *ts)
+notrace static noinline void do_monotonic_coarse(struct timespec *ts)
{
unsigned long seq, ns, secs;
do {
@@ -150,25 +146,29 @@ notrace static noinline int do_monotonic_coarse(struct timespec *ts)
}
ts->tv_sec = secs;
ts->tv_nsec = ns;
-
- return 0;
}
notrace int __vdso_clock_gettime(clockid_t clock, struct timespec *ts)
{
switch (clock) {
case CLOCK_REALTIME:
- if (likely(gtod->clock.vclock_mode != VCLOCK_NONE))
- return do_realtime(ts);
+ if (likely(gtod->clock.vclock_mode != VCLOCK_NONE)) {
+ do_realtime(ts);
+ return 0;
+ }
break;
case CLOCK_MONOTONIC:
- if (likely(gtod->clock.vclock_mode != VCLOCK_NONE))
- return do_monotonic(ts);
+ if (likely(gtod->clock.vclock_mode != VCLOCK_NONE)) {
+ do_monotonic(ts);
+ return 0;
+ }
break;
case CLOCK_REALTIME_COARSE:
- return do_realtime_coarse(ts);
+ do_realtime_coarse(ts);
+ return 0;
case CLOCK_MONOTONIC_COARSE:
- return do_monotonic_coarse(ts);
+ do_monotonic_coarse(ts);
+ return 0;
}
return vdso_fallback_gettime(clock, ts);
@@ -176,6 +176,44 @@ notrace int __vdso_clock_gettime(clockid_t clock, struct timespec *ts)
int clock_gettime(clockid_t, struct timespec *)
__attribute__((weak, alias("__vdso_clock_gettime")));
+notrace int __vdso_clock_gettime_ns(clockid_t clock, struct timens *t)
+{
+ /* This implementation is slow. It will be improved later. */
+
+ struct timespec ts;
+ int error;
+
+ switch (clock) {
+ case CLOCK_REALTIME:
+ if (likely(gtod->clock.vclock_mode != VCLOCK_NONE)) {
+ do_realtime(&ts);
+ goto done;
+ }
+ break;
+ case CLOCK_MONOTONIC:
+ if (likely(gtod->clock.vclock_mode != VCLOCK_NONE)) {
+ do_monotonic(&ts);
+ goto done;
+ }
+ break;
+ case CLOCK_REALTIME_COARSE:
+ do_realtime_coarse(&ts);
+ goto done;
+ case CLOCK_MONOTONIC_COARSE:
+ do_monotonic_coarse(&ts);
+ goto done;
+ }
+
+ error = vdso_fallback_gettime(clock, &ts);
+ if (error)
+ return error;
+
+done:
+ t->ns = ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec;
+ t->padding = 0;
+ return 0;
+}
+
notrace int __vdso_gettimeofday(struct timeval *tv, struct timezone *tz)
{
long ret;
diff --git a/arch/x86/vdso/vdso.lds.S b/arch/x86/vdso/vdso.lds.S
index b96b267..238f500 100644
--- a/arch/x86/vdso/vdso.lds.S
+++ b/arch/x86/vdso/vdso.lds.S
@@ -17,6 +17,10 @@
VERSION {
LINUX_2.6 {
global:
+ /*
+ * These are the original vsyscalls. They have weak symbols
+ * without the __vdso_ prefix for ABI compatibility.
+ */
clock_gettime;
__vdso_clock_gettime;
gettimeofday;
@@ -25,6 +29,9 @@ VERSION {
__vdso_getcpu;
time;
__vdso_time;
+
+ /* New vsyscalls are just plain functions. */
+ __vdso_clock_gettime_ns;
local: *;
};
}
--
1.7.7.4
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@...r.kernel.org
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/
Powered by blists - more mailing lists