Commit 3476f114addb7b96912840a234702f660a1f460b
Committed by
Trond Myklebust
1 parent
0b1c8fc43c
Exists in
master
and in
6 other branches
nfs: fix a minor do_div portability issue
This change modifies filelayout_get_dense_offset() to use the functions in math64.h and thus avoid a 32-bit platform compile error trying to use do_div() on an s64 type. Signed-off-by: Chris Metcalf <cmetcalf@tilera.com> Reviewed-by: Boaz Harrosh <bharrosh@panasas.com> Signed-off-by: Trond Myklebust <Trond.Myklebust@netapp.com>
Showing 1 changed file with 5 additions and 4 deletions Side-by-side Diff
fs/nfs/nfs4filelayout.c
... | ... | @@ -49,13 +49,14 @@ |
49 | 49 | loff_t offset) |
50 | 50 | { |
51 | 51 | u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count; |
52 | - u64 tmp; | |
52 | + u64 stripe_no; | |
53 | + u32 rem; | |
53 | 54 | |
54 | 55 | offset -= flseg->pattern_offset; |
55 | - tmp = offset; | |
56 | - do_div(tmp, stripe_width); | |
56 | + stripe_no = div_u64(offset, stripe_width); | |
57 | + div_u64_rem(offset, flseg->stripe_unit, &rem); | |
57 | 58 | |
58 | - return tmp * flseg->stripe_unit + do_div(offset, flseg->stripe_unit); | |
59 | + return stripe_no * flseg->stripe_unit + rem; | |
59 | 60 | } |
60 | 61 | |
61 | 62 | /* This function is used by the layout driver to calculate the |