[<prev] [next>] [thread-next>] [day] [month] [year] [list]
Message-ID: <1215809727-28598-1-git-send-email-Uwe.Kleine-Koenig@digi.com>
Date: Fri, 11 Jul 2008 22:55:27 +0200
From: Uwe Kleine-König <Uwe.Kleine-Koenig@...i.com>
To: <linux-kernel@...r.kernel.org>
CC: Thomas Gleixner <tglx@...utronix.de>, Ingo Molnar <mingo@...e.hu>
Subject: [PATCH, RFC] use hrtimer in sched_clock
This should make it unnecessary to overwrite sched_clock for a higher
precision.
With this patch I get sub-jiffie timing with CONFIG_PRINTK_TIME=y.
Signed-off-by: Uwe Kleine-König <Uwe.Kleine-Koenig@...i.com>
Cc: Thomas Gleixner <tglx@...utronix.de>
Cc: Ingo Molnar <mingo@...e.hu>
---
Hello,
I tested the patch on arch-arm/mach-ns9xxx and it seem seams to work.
But I admit I didn't test it deeply and I didn't measure if there is any
overhead.
Best regards
Uwe
kernel/sched_clock.c | 6 +++++-
kernel/time/timekeeping.c | 16 +++++++++-------
2 files changed, 14 insertions(+), 8 deletions(-)
diff --git a/kernel/sched_clock.c b/kernel/sched_clock.c
index ce05271..12daf55 100644
--- a/kernel/sched_clock.c
+++ b/kernel/sched_clock.c
@@ -242,5 +242,9 @@ EXPORT_SYMBOL_GPL(sched_clock_idle_wakeup_event);
*/
unsigned long long __attribute__((weak)) sched_clock(void)
{
- return (unsigned long long)jiffies * (NSEC_PER_SEC / HZ);
+ struct timespec ts;
+
+ ktime_get_ts(&ts);
+
+ return (long long)ts.tv_sec * NSEC_PER_SEC + ts.tv_nsec;
}
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index e91c29f..49412f2 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -67,16 +67,18 @@ struct clocksource *clock;
static inline s64 __get_nsec_offset(void)
{
cycle_t cycle_now, cycle_delta;
- s64 ns_offset;
+ s64 ns_offset = 0;
- /* read clocksource: */
- cycle_now = clocksource_read(clock);
+ if (likely(clock)) {
+ /* read clocksource: */
+ cycle_now = clocksource_read(clock);
- /* calculate the delta since the last update_wall_time: */
- cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
+ /* calculate the delta since the last update_wall_time: */
+ cycle_delta = (cycle_now - clock->cycle_last) & clock->mask;
- /* convert to nanoseconds: */
- ns_offset = cyc2ns(clock, cycle_delta);
+ /* convert to nanoseconds: */
+ ns_offset = cyc2ns(clock, cycle_delta);
+ }
return ns_offset;
}
--
1.5.6.2
--
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