提交 7ec98e15 编写于 作者: T Thomas Gleixner 提交者: John Stultz

timekeeping: Delay update of clock->cycle_last

For calculating the new timekeeper values store the new cycle_last
value in the timekeeper and update the clock->cycle_last just when we
actually update the new values.
Signed-off-by: NThomas Gleixner <tglx@linutronix.de>
Signed-off-by: NJohn Stultz <john.stultz@linaro.org>
上级 14a3b6ab
......@@ -1271,7 +1271,7 @@ static cycle_t logarithmic_accumulation(struct timekeeper *tk, cycle_t offset,
/* Accumulate one shifted interval */
offset -= interval;
tk->clock->cycle_last += interval;
tk->cycle_last += interval;
tk->xtime_nsec += tk->xtime_interval << shift;
accumulate_nsecs_to_secs(tk);
......@@ -1386,6 +1386,8 @@ static void update_wall_time(void)
*/
accumulate_nsecs_to_secs(tk);
/* Update clock->cycle_last with the new value */
clock->cycle_last = tk->cycle_last;
timekeeping_update(tk, false);
out:
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册