diff options
author | John Stultz <john.stultz@linaro.org> | 2013-04-10 15:41:49 -0400 |
---|---|---|
committer | Thomas Gleixner <tglx@linutronix.de> | 2013-04-11 04:19:44 -0400 |
commit | 4e8f8b34b92b6514cc070aeb94d317cadd5071d7 (patch) | |
tree | ecbef4b23bff0198081a605b88b39aee205d1923 /kernel | |
parent | 51fd36f3fad8447c487137ae26b9d0b3ce77bb25 (diff) |
timekeeping: Make sure to notify hrtimers when TAI offset changes
Now that we have CLOCK_TAI timers, make sure we notify hrtimer
code when TAI offset is changed.
Signed-off-by: John Stultz <john.stultz@linaro.org>
Link: http://lkml.kernel.org/r/1365622909-953-1-git-send-email-john.stultz@linaro.org
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
Diffstat (limited to 'kernel')
-rw-r--r-- | kernel/time/timekeeping.c | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index c4d2a8751f3e..675f720a848b 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c | |||
@@ -607,6 +607,7 @@ void timekeeping_set_tai_offset(s32 tai_offset) | |||
607 | __timekeeping_set_tai_offset(tk, tai_offset); | 607 | __timekeeping_set_tai_offset(tk, tai_offset); |
608 | write_seqcount_end(&timekeeper_seq); | 608 | write_seqcount_end(&timekeeper_seq); |
609 | raw_spin_unlock_irqrestore(&timekeeper_lock, flags); | 609 | raw_spin_unlock_irqrestore(&timekeeper_lock, flags); |
610 | clock_was_set(); | ||
610 | } | 611 | } |
611 | 612 | ||
612 | /** | 613 | /** |
@@ -1639,7 +1640,7 @@ int do_adjtimex(struct timex *txc) | |||
1639 | struct timekeeper *tk = &timekeeper; | 1640 | struct timekeeper *tk = &timekeeper; |
1640 | unsigned long flags; | 1641 | unsigned long flags; |
1641 | struct timespec ts; | 1642 | struct timespec ts; |
1642 | s32 tai; | 1643 | s32 orig_tai, tai; |
1643 | int ret; | 1644 | int ret; |
1644 | 1645 | ||
1645 | /* Validate the data before disabling interrupts */ | 1646 | /* Validate the data before disabling interrupts */ |
@@ -1663,10 +1664,13 @@ int do_adjtimex(struct timex *txc) | |||
1663 | raw_spin_lock_irqsave(&timekeeper_lock, flags); | 1664 | raw_spin_lock_irqsave(&timekeeper_lock, flags); |
1664 | write_seqcount_begin(&timekeeper_seq); | 1665 | write_seqcount_begin(&timekeeper_seq); |
1665 | 1666 | ||
1666 | tai = tk->tai_offset; | 1667 | orig_tai = tai = tk->tai_offset; |
1667 | ret = __do_adjtimex(txc, &ts, &tai); | 1668 | ret = __do_adjtimex(txc, &ts, &tai); |
1668 | 1669 | ||
1669 | __timekeeping_set_tai_offset(tk, tai); | 1670 | if (tai != orig_tai) { |
1671 | __timekeeping_set_tai_offset(tk, tai); | ||
1672 | clock_was_set_delayed(); | ||
1673 | } | ||
1670 | write_seqcount_end(&timekeeper_seq); | 1674 | write_seqcount_end(&timekeeper_seq); |
1671 | raw_spin_unlock_irqrestore(&timekeeper_lock, flags); | 1675 | raw_spin_unlock_irqrestore(&timekeeper_lock, flags); |
1672 | 1676 | ||