diff options
author | Chris Metcalf <cmetcalf@tilera.com> | 2011-08-11 16:54:28 -0400 |
---|---|---|
committer | Trond Myklebust <Trond.Myklebust@netapp.com> | 2012-01-05 10:42:42 -0500 |
commit | 3476f114addb7b96912840a234702f660a1f460b (patch) | |
tree | 830f4aa3e7a280af8d3e02d7a67e25bdffa7ab37 /fs/nfs | |
parent | 0b1c8fc43c1f9fcde2d18182988f05eeaaae509b (diff) |
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>
Diffstat (limited to 'fs/nfs')
-rw-r--r-- | fs/nfs/nfs4filelayout.c | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/fs/nfs/nfs4filelayout.c b/fs/nfs/nfs4filelayout.c index a62d36b9a99e..71ec08617e23 100644 --- a/fs/nfs/nfs4filelayout.c +++ b/fs/nfs/nfs4filelayout.c | |||
@@ -49,13 +49,14 @@ filelayout_get_dense_offset(struct nfs4_filelayout_segment *flseg, | |||
49 | loff_t offset) | 49 | loff_t offset) |
50 | { | 50 | { |
51 | u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count; | 51 | u32 stripe_width = flseg->stripe_unit * flseg->dsaddr->stripe_count; |
52 | u64 tmp; | 52 | u64 stripe_no; |
53 | u32 rem; | ||
53 | 54 | ||
54 | offset -= flseg->pattern_offset; | 55 | offset -= flseg->pattern_offset; |
55 | tmp = offset; | 56 | stripe_no = div_u64(offset, stripe_width); |
56 | do_div(tmp, 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 | /* This function is used by the layout driver to calculate the | 62 | /* This function is used by the layout driver to calculate the |