aboutsummaryrefslogtreecommitdiffstats
path: root/kernel
diff options
context:
space:
mode:
authorThomas Gleixner <tglx@linutronix.de>2012-07-17 13:33:54 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2012-07-19 11:58:46 -0400
commit03a90b9a6f7eec70edde4eb1f88fa8a5c058d85e (patch)
tree16207bc8fca8b26b607bbb04c521bfb0c9ab635e /kernel
parentd21e4baf4523fec26e3c70cb78b013ad3b245c83 (diff)
timekeeping: Maintain ktime_t based offsets for hrtimers
This is a backport of 5b9fe759a678e05be4937ddf03d50e950207c1c0 We need to update the hrtimer clock offsets from the hrtimer interrupt context. To avoid conversions from timespec to ktime_t maintain a ktime_t based representation of those offsets in the timekeeper. This puts the conversion overhead into the code which updates the underlying offsets and provides fast accessible values in the hrtimer interrupt. Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <johnstul@us.ibm.com> Reviewed-by: Ingo Molnar <mingo@kernel.org> Acked-by: Peter Zijlstra <a.p.zijlstra@chello.nl> Acked-by: Prarit Bhargava <prarit@redhat.com> Link: http://lkml.kernel.org/r/1341960205-56738-4-git-send-email-johnstul@us.ibm.com Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Cc: Prarit Bhargava <prarit@redhat.com> Cc: Thomas Gleixner <tglx@linutronix.de> Signed-off-by: John Stultz <johnstul@us.ibm.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'kernel')
-rw-r--r--kernel/time/timekeeping.c25
1 files changed, 24 insertions, 1 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c
index 92014744e52..d6477733fc0 100644
--- a/kernel/time/timekeeping.c
+++ b/kernel/time/timekeeping.c
@@ -161,18 +161,34 @@ static struct timespec xtime __attribute__ ((aligned (16)));
161static struct timespec wall_to_monotonic __attribute__ ((aligned (16))); 161static struct timespec wall_to_monotonic __attribute__ ((aligned (16)));
162static struct timespec total_sleep_time; 162static struct timespec total_sleep_time;
163 163
164/* Offset clock monotonic -> clock realtime */
165static ktime_t offs_real;
166
167/* Offset clock monotonic -> clock boottime */
168static ktime_t offs_boot;
169
164/* 170/*
165 * The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock. 171 * The raw monotonic time for the CLOCK_MONOTONIC_RAW posix clock.
166 */ 172 */
167static struct timespec raw_time; 173static struct timespec raw_time;
168 174
169/* must hold write on xtime_lock */ 175/* must hold write on xtime_lock */
176static void update_rt_offset(void)
177{
178 struct timespec tmp, *wtm = &wall_to_monotonic;
179
180 set_normalized_timespec(&tmp, -wtm->tv_sec, -wtm->tv_nsec);
181 offs_real = timespec_to_ktime(tmp);
182}
183
184/* must hold write on xtime_lock */
170static void timekeeping_update(bool clearntp) 185static void timekeeping_update(bool clearntp)
171{ 186{
172 if (clearntp) { 187 if (clearntp) {
173 timekeeper.ntp_error = 0; 188 timekeeper.ntp_error = 0;
174 ntp_clear(); 189 ntp_clear();
175 } 190 }
191 update_rt_offset();
176 update_vsyscall(&xtime, &wall_to_monotonic, 192 update_vsyscall(&xtime, &wall_to_monotonic,
177 timekeeper.clock, timekeeper.mult); 193 timekeeper.clock, timekeeper.mult);
178} 194}
@@ -587,6 +603,7 @@ void __init timekeeping_init(void)
587 } 603 }
588 set_normalized_timespec(&wall_to_monotonic, 604 set_normalized_timespec(&wall_to_monotonic,
589 -boot.tv_sec, -boot.tv_nsec); 605 -boot.tv_sec, -boot.tv_nsec);
606 update_rt_offset();
590 total_sleep_time.tv_sec = 0; 607 total_sleep_time.tv_sec = 0;
591 total_sleep_time.tv_nsec = 0; 608 total_sleep_time.tv_nsec = 0;
592 write_sequnlock_irqrestore(&xtime_lock, flags); 609 write_sequnlock_irqrestore(&xtime_lock, flags);
@@ -595,6 +612,12 @@ void __init timekeeping_init(void)
595/* time in seconds when suspend began */ 612/* time in seconds when suspend began */
596static struct timespec timekeeping_suspend_time; 613static struct timespec timekeeping_suspend_time;
597 614
615static void update_sleep_time(struct timespec t)
616{
617 total_sleep_time = t;
618 offs_boot = timespec_to_ktime(t);
619}
620
598/** 621/**
599 * __timekeeping_inject_sleeptime - Internal function to add sleep interval 622 * __timekeeping_inject_sleeptime - Internal function to add sleep interval
600 * @delta: pointer to a timespec delta value 623 * @delta: pointer to a timespec delta value
@@ -606,7 +629,7 @@ static void __timekeeping_inject_sleeptime(struct timespec *delta)
606{ 629{
607 xtime = timespec_add(xtime, *delta); 630 xtime = timespec_add(xtime, *delta);
608 wall_to_monotonic = timespec_sub(wall_to_monotonic, *delta); 631 wall_to_monotonic = timespec_sub(wall_to_monotonic, *delta);
609 total_sleep_time = timespec_add(total_sleep_time, *delta); 632 update_sleep_time(timespec_add(total_sleep_time, *delta));
610} 633}
611 634
612 635