Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S933346AbcLILRL (ORCPT ); Fri, 9 Dec 2016 06:17:11 -0500 Received: from terminus.zytor.com ([198.137.202.10]:42998 "EHLO terminus.zytor.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S932305AbcLILRJ (ORCPT ); Fri, 9 Dec 2016 06:17:09 -0500 Date: Fri, 9 Dec 2016 03:14:48 -0800 From: tip-bot for Thomas Gleixner Message-ID: Cc: cmetcalf@mellanox.com, richardcochran@gmail.com, mingo@kernel.org, christopher.s.hall@intel.com, lvivier@redhat.com, linux-kernel@vger.kernel.org, tglx@linutronix.de, liavr@mellanox.com, peterz@infradead.org, prarit@redhat.com, hpa@zytor.com, john.stultz@linaro.org, david@gibson.dropbear.id.au Reply-To: david@gibson.dropbear.id.au, john.stultz@linaro.org, hpa@zytor.com, prarit@redhat.com, liavr@mellanox.com, peterz@infradead.org, tglx@linutronix.de, linux-kernel@vger.kernel.org, lvivier@redhat.com, christopher.s.hall@intel.com, mingo@kernel.org, richardcochran@gmail.com, cmetcalf@mellanox.com In-Reply-To: <20161208204228.921674404@linutronix.de> References: <20161208204228.921674404@linutronix.de> To: linux-tip-commits@vger.kernel.org Subject: [tip:timers/core] timekeeping: Use mul_u64_u32_shr() instead of open coding it Git-Commit-ID: c029a2bec66e42e57538cb65e28618baf6a4b311 X-Mailer: tip-git-log-daemon Robot-ID: Robot-Unsubscribe: Contact to get blacklisted from these emails MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=UTF-8 Content-Disposition: inline Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2818 Lines: 76 Commit-ID: c029a2bec66e42e57538cb65e28618baf6a4b311 Gitweb: http://git.kernel.org/tip/c029a2bec66e42e57538cb65e28618baf6a4b311 Author: Thomas Gleixner AuthorDate: Thu, 8 Dec 2016 20:49:38 +0000 Committer: Thomas Gleixner CommitDate: Fri, 9 Dec 2016 12:06:42 +0100 timekeeping: Use mul_u64_u32_shr() instead of open coding it The resume code must deal with a clocksource delta which is potentially big enough to overflow the 64bit mult. Replace the open coded handling with the proper function. Signed-off-by: Thomas Gleixner Reviewed-by: David Gibson Acked-by: Peter Zijlstra (Intel) Cc: Parit Bhargava Cc: Laurent Vivier Cc: "Christopher S. Hall" Cc: Chris Metcalf Cc: Richard Cochran Cc: Liav Rehana Cc: John Stultz Link: http://lkml.kernel.org/r/20161208204228.921674404@linutronix.de Signed-off-by: Thomas Gleixner --- kernel/time/timekeeping.c | 26 +++++--------------------- 1 file changed, 5 insertions(+), 21 deletions(-) diff --git a/kernel/time/timekeeping.c b/kernel/time/timekeeping.c index 82e1b5c..da233cd 100644 --- a/kernel/time/timekeeping.c +++ b/kernel/time/timekeeping.c @@ -1644,7 +1644,7 @@ void timekeeping_resume(void) struct clocksource *clock = tk->tkr_mono.clock; unsigned long flags; struct timespec64 ts_new, ts_delta; - cycle_t cycle_now, cycle_delta; + cycle_t cycle_now; sleeptime_injected = false; read_persistent_clock64(&ts_new); @@ -1670,27 +1670,11 @@ void timekeeping_resume(void) cycle_now = tk->tkr_mono.read(clock); if ((clock->flags & CLOCK_SOURCE_SUSPEND_NONSTOP) && cycle_now > tk->tkr_mono.cycle_last) { - u64 num, max = ULLONG_MAX; - u32 mult = clock->mult; - u32 shift = clock->shift; - s64 nsec = 0; - - cycle_delta = clocksource_delta(cycle_now, tk->tkr_mono.cycle_last, - tk->tkr_mono.mask); - - /* - * "cycle_delta * mutl" may cause 64 bits overflow, if the - * suspended time is too long. In that case we need do the - * 64 bits math carefully - */ - do_div(max, mult); - if (cycle_delta > max) { - num = div64_u64(cycle_delta, max); - nsec = (((u64) max * mult) >> shift) * num; - cycle_delta -= num * max; - } - nsec += ((u64) cycle_delta * mult) >> shift; + u64 nsec, cyc_delta; + cyc_delta = clocksource_delta(cycle_now, tk->tkr_mono.cycle_last, + tk->tkr_mono.mask); + nsec = mul_u64_u32_shr(cyc_delta, clock->mult, clock->shift); ts_delta = ns_to_timespec64(nsec); sleeptime_injected = true; } else if (timespec64_compare(&ts_new, &timekeeping_suspend_time) > 0) {