diff options
author | Thomas Gleixner <tglx@linutronix.de> | 2014-07-16 17:04:09 -0400 |
---|---|---|
committer | John Stultz <john.stultz@linaro.org> | 2014-07-23 13:17:57 -0400 |
commit | f111adfdd7ff7d9fe54b6efa440b80824984749c (patch) | |
tree | 744adc1270ec2fc2f9fa8c26daff1ad7e0614126 | |
parent | 3fdb14fd1df70325e1e91e1203a699a4803ed741 (diff) |
timekeeping: Use timekeeping_update() instead of memcpy()
We already have a function which does the right thing, that also makes
sure that the coming ktime_t based cached values are getting updated.
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Signed-off-by: John Stultz <john.stultz@linaro.org>
-rw-r--r-- | kernel/time/timekeeping.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 7ca150ad387d..bfe3ea09afc9 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c | |||
@@ -883,8 +883,7 @@ void __init timekeeping_init(void) | |||
883 | tmp.tv_nsec = 0; | 883 | tmp.tv_nsec = 0; |
884 | tk_set_sleep_time(tk, tmp); | 884 | tk_set_sleep_time(tk, tmp); |
885 | 885 | ||
886 | memcpy(&shadow_timekeeper, &tk_core.timekeeper, | 886 | timekeeping_update(tk, TK_MIRROR); |
887 | sizeof(tk_core.timekeeper)); | ||
888 | 887 | ||
889 | write_seqcount_end(&tk_core.seq); | 888 | write_seqcount_end(&tk_core.seq); |
890 | raw_spin_unlock_irqrestore(&timekeeper_lock, flags); | 889 | raw_spin_unlock_irqrestore(&timekeeper_lock, flags); |