Displaying 1 result from an estimated 1 matches for "__timekeeping_set_tai_offset".
2013 Jun 19
14
[PATCH 2/4] time: add a notifier chain for when the system time is stepped
...call update */
write_seqcount_end(&timekeeper_seq);
raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
- /* signal hrtimers about time change */
- clock_was_set();
+ timekeeping_clock_was_set();
return ret;
}
@@ -607,7 +624,7 @@ void timekeeping_set_tai_offset(s32 tai_offset)
__timekeeping_set_tai_offset(tk, tai_offset);
write_seqcount_end(&timekeeper_seq);
raw_spin_unlock_irqrestore(&timekeeper_lock, flags);
- clock_was_set();
+ timekeeping_clock_was_set();
}
/**
@@ -877,8 +894,7 @@ void timekeeping_inject_sleeptime(struct timespec *delta)
write_seqcount_end(&timekeeper_seq);...