This is a note to let you know that I've just added the patch titled timekeeping: Add missing update call in timekeeping_resume()
to the 3.4-stable tree which can be found at: http://www.kernel.org/git/?p=linux/kernel/git/stable/stable-queue.git;a=summary The filename of the patch is: timekeeping-add-missing-update-call-in-timekeeping_resume.patch and it can be found in the queue-3.4 subdirectory. If you, or anyone else, feels it should not be added to the stable tree, please let <sta...@vger.kernel.org> know about it. >From johns...@us.ibm.com Tue Jul 17 14:27:38 2012 From: John Stultz <johns...@us.ibm.com> Date: Tue, 17 Jul 2012 02:39:56 -0400 Subject: timekeeping: Add missing update call in timekeeping_resume() To: sta...@vger.kernel.org Cc: Thomas Gleixner <t...@linutronix.de>, LKML <linux-kernel@vger.kernel.org>, Linux PM list <linux...@vger.kernel.org>, John Stultz <johns...@us.ibm.com>, Ingo Molnar <mi...@kernel.org>, Peter Zijlstra <a.p.zijls...@chello.nl>, Prarit Bhargava <pra...@redhat.com>, Linus Torvalds <torva...@linux-foundation.org> Message-ID: <1342507196-54327-8-git-send-email-johns...@us.ibm.com> From: Thomas Gleixner <t...@linutronix.de> This is a backport of 3e997130bd2e8c6f5aaa49d6e3161d4d29b43ab0 The leap second rework unearthed another issue of inconsistent data. On timekeeping_resume() the timekeeper data is updated, but nothing calls timekeeping_update(), so now the update code in the timer interrupt sees stale values. This has been the case before those changes, but then the timer interrupt was using stale data as well so this went unnoticed for quite some time. Add the missing update call, so all the data is consistent everywhere. Reported-by: Andreas Schwab <sch...@linux-m68k.org> Reported-and-tested-by: "Rafael J. Wysocki" <r...@sisk.pl> Reported-and-tested-by: Martin Steigerwald <mar...@lichtvoll.de> Cc: John Stultz <johns...@us.ibm.com> Cc: Ingo Molnar <mi...@kernel.org> Cc: Peter Zijlstra <a.p.zijls...@chello.nl>, Cc: Prarit Bhargava <pra...@redhat.com> Signed-off-by: Thomas Gleixner <t...@linutronix.de> Signed-off-by: John Stultz <johns...@us.ibm.com> Signed-off-by: Linus Torvalds <torva...@linux-foundation.org> Cc: Prarit Bhargava <pra...@redhat.com> Cc: Thomas Gleixner <t...@linutronix.de> Signed-off-by: John Stultz <johns...@us.ibm.com> Signed-off-by: Greg Kroah-Hartman <gre...@linuxfoundation.org> --- kernel/time/timekeeping.c | 1 + 1 file changed, 1 insertion(+) --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -719,6 +719,7 @@ static void timekeeping_resume(void) timekeeper.clock->cycle_last = timekeeper.clock->read(timekeeper.clock); timekeeper.ntp_error = 0; timekeeping_suspended = 0; + timekeeping_update(false); write_sequnlock_irqrestore(&timekeeper.lock, flags); touch_softlockup_watchdog(); Patches currently in stable-queue which might be from johns...@us.ibm.com are queue-3.4/timekeeping-fix-leapsecond-triggered-load-spike-issue.patch queue-3.4/hrtimer-update-hrtimer-base-offsets-each-hrtimer_interrupt.patch queue-3.4/timekeeping-add-missing-update-call-in-timekeeping_resume.patch queue-3.4/hrtimers-move-lock-held-region-in-hrtimer_interrupt.patch queue-3.4/hrtimer-provide-clock_was_set_delayed.patch queue-3.4/timekeeping-provide-hrtimer-update-function.patch queue-3.4/timekeeping-maintain-ktime_t-based-offsets-for-hrtimers.patch -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/