From: Thomas Gleixner <tglx@linutronix.de>
To: John Stultz <john.stultz@linaro.org>
Cc: lkml <linux-kernel@vger.kernel.org>,
Nicolas Pitre <nicolas.pitre@linaro.org>,
Ingo Molnar <mingo@kernel.org>, Josh Boyer <jwboyer@redhat.com>,
One Thousand Gnomes <gnomes@lxorguk.ukuu.org.uk>,
Trevor Cordes <trevor@tecnopolis.ca>,
stable@vger.kernel.org
Subject: Re: [PATCH v3] ktime: Fix ktime_divns to do signed division
Date: Tue, 12 May 2015 16:14:52 +0200 (CEST) [thread overview]
Message-ID: <alpine.DEB.2.11.1505121536460.4225@nanos> (raw)
In-Reply-To: <1431118043-23452-1-git-send-email-john.stultz@linaro.org>
On Fri, 8 May 2015, John Stultz wrote:
> +static inline s64 ktime_divns(const ktime_t kt, s64 div)
> {
> + /*
> + * Negative divisors could cause an inf loop,
> + * so bug out here.
> + */
> + BUG_ON(div < 0);
> if (__builtin_constant_p(div) && !(div >> 32)) {
> - u64 ns = kt.tv64;
> + s64 ns = kt.tv64;
> + int neg = (ns < 0);
> +
> + if (neg)
> + ns = -ns;
> do_div(ns, div);
This triggers the typecheck for u64 in do_div(). The delta patch below
should do the trick.
Thanks,
tglx
diff --git a/include/linux/ktime.h b/include/linux/ktime.h
index ab2de1c7932c..b9620ebe356f 100644
--- a/include/linux/ktime.h
+++ b/include/linux/ktime.h
@@ -177,13 +177,13 @@ static inline s64 ktime_divns(const ktime_t kt, s64 div)
if (__builtin_constant_p(div) && !(div >> 32)) {
s64 ns = kt.tv64;
int neg = (ns < 0);
+ u64 tmp;
if (neg)
ns = -ns;
- do_div(ns, div);
- if (neg)
- ns = -ns;
- return ns;
+ tmp = ns;
+ do_div(tmp, div);
+ return neg ? -tmp : tmp;
} else {
return __ktime_divns(kt, div);
}
diff --git a/kernel/time/hrtimer.c b/kernel/time/hrtimer.c
index c98ce4d9f613..bac65f810afd 100644
--- a/kernel/time/hrtimer.c
+++ b/kernel/time/hrtimer.c
@@ -268,8 +268,9 @@ lock_hrtimer_base(const struct hrtimer *timer, unsigned long *flags)
*/
s64 __ktime_divns(const ktime_t kt, s64 div)
{
- s64 dclc;
int neg, sft = 0;
+ s64 dclc;
+ u64 tmp;
dclc = ktime_to_ns(kt);
neg = (dclc < 0);
@@ -280,12 +281,9 @@ s64 __ktime_divns(const ktime_t kt, s64 div)
sft++;
div >>= 1;
}
- dclc >>= sft;
- do_div(dclc, (unsigned long) div);
- if (neg)
- dclc = -dclc;
-
- return dclc;
+ tmp = dclc >> sft;
+ do_div(tmp, (unsigned long) div);
+ return neg ? -tmp : tmp;
}
EXPORT_SYMBOL_GPL(__ktime_divns);
#endif /* BITS_PER_LONG >= 64 */
next prev parent reply other threads:[~2015-05-12 14:14 UTC|newest]
Thread overview: 6+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-05-08 20:47 [PATCH v3] ktime: Fix ktime_divns to do signed division John Stultz
2015-05-08 21:18 ` Nicolas Pitre
2015-05-11 16:41 ` Trevor Cordes
2015-05-12 14:14 ` Thomas Gleixner [this message]
2015-05-12 15:14 ` John Stultz
2015-05-13 8:21 ` [tip:timers/urgent] " tip-bot for John Stultz
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=alpine.DEB.2.11.1505121536460.4225@nanos \
--to=tglx@linutronix.de \
--cc=gnomes@lxorguk.ukuu.org.uk \
--cc=john.stultz@linaro.org \
--cc=jwboyer@redhat.com \
--cc=linux-kernel@vger.kernel.org \
--cc=mingo@kernel.org \
--cc=nicolas.pitre@linaro.org \
--cc=stable@vger.kernel.org \
--cc=trevor@tecnopolis.ca \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox