diff options
author | Steven Whitehouse <swhiteho@redhat.com> | 2010-01-29 15:20:34 +0000 |
---|---|---|
committer | Steven Whitehouse <swhiteho@redhat.com> | 2010-02-01 10:00:23 +0000 |
commit | 7fe3ec6fe58d2bfe97fe7a5d731c29299a8ffd35 (patch) | |
tree | 11f06ae31f0f1f843ca6db94318c168ac2e0b2b2 /fs | |
parent | 55f0b4c546d1c87cccba63dc0fc5eb70e2b41733 (diff) | |
download | linux-7fe3ec6fe58d2bfe97fe7a5d731c29299a8ffd35.tar.bz2 |
GFS2: Fix previous patch
The do_div() call needs to remain.
Signed-off-by: Steven Whitehouse <swhiteho@redhat.com>
Diffstat (limited to 'fs')
-rw-r--r-- | fs/gfs2/rgrp.c | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/fs/gfs2/rgrp.c b/fs/gfs2/rgrp.c index 6702b82b375c..46534a554cce 100644 --- a/fs/gfs2/rgrp.c +++ b/fs/gfs2/rgrp.c @@ -591,6 +591,7 @@ static int gfs2_ri_update(struct gfs2_inode *ip) u64 rgrp_count = ip->i_disksize; int error; + do_div(rgrp_count, sizeof(struct gfs2_rindex)); clear_rgrpdi(sdp); file_ra_state_init(&ra_state, inode->i_mapping); |