diff options
author | Stanislaw Gruszka <sgruszka@redhat.com> | 2019-03-07 19:28:18 -0500 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2019-03-07 21:32:00 -0500 |
commit | cdc94a37493135e355dfc0b0e086d84e3eadb50d (patch) | |
tree | 6ef3fffed75206a1b44d0038d55d0bad914fe497 /lib/div64.c | |
parent | 1db604f676b2edb7b18de7881f4d5988e97be616 (diff) |
lib/div64.c: off by one in shift
fls counts bits starting from 1 to 32 (returns 0 for zero argument). If
we add 1 we shift right one bit more and loose precision from divisor,
what cause function incorect results with some numbers.
Corrected code was tested in user-space, see bugzilla:
https://bugzilla.kernel.org/show_bug.cgi?id=202391
Link: http://lkml.kernel.org/r/1548686944-11891-1-git-send-email-sgruszka@redhat.com
Fixes: 658716d19f8f ("div64_u64(): improve precision on 32bit platforms")
Signed-off-by: Stanislaw Gruszka <sgruszka@redhat.com>
Reported-by: Siarhei Volkau <lis8215@gmail.com>
Tested-by: Siarhei Volkau <lis8215@gmail.com>
Acked-by: Oleg Nesterov <oleg@redhat.com>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
Signed-off-by: Linus Torvalds <torvalds@linux-foundation.org>
Diffstat (limited to 'lib/div64.c')
-rw-r--r-- | lib/div64.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lib/div64.c b/lib/div64.c index 01c8602bb6ff..ee146bb4c558 100644 --- a/lib/div64.c +++ b/lib/div64.c | |||
@@ -109,7 +109,7 @@ u64 div64_u64_rem(u64 dividend, u64 divisor, u64 *remainder) | |||
109 | quot = div_u64_rem(dividend, divisor, &rem32); | 109 | quot = div_u64_rem(dividend, divisor, &rem32); |
110 | *remainder = rem32; | 110 | *remainder = rem32; |
111 | } else { | 111 | } else { |
112 | int n = 1 + fls(high); | 112 | int n = fls(high); |
113 | quot = div_u64(dividend >> n, divisor >> n); | 113 | quot = div_u64(dividend >> n, divisor >> n); |
114 | 114 | ||
115 | if (quot != 0) | 115 | if (quot != 0) |
@@ -147,7 +147,7 @@ u64 div64_u64(u64 dividend, u64 divisor) | |||
147 | if (high == 0) { | 147 | if (high == 0) { |
148 | quot = div_u64(dividend, divisor); | 148 | quot = div_u64(dividend, divisor); |
149 | } else { | 149 | } else { |
150 | int n = 1 + fls(high); | 150 | int n = fls(high); |
151 | quot = div_u64(dividend >> n, divisor >> n); | 151 | quot = div_u64(dividend >> n, divisor >> n); |
152 | 152 | ||
153 | if (quot != 0) | 153 | if (quot != 0) |