]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
GFS2: fsck.gfs2 reported statfs error after gfs2_grow
authorBob Peterson <rpeterso@redhat.com>
Tue, 7 Dec 2010 18:58:56 +0000 (13:58 -0500)
committerSteven Whitehouse <swhiteho@redhat.com>
Tue, 7 Dec 2010 18:55:07 +0000 (18:55 +0000)
When you do gfs2_grow it failed to take the very last
rgrp into account when adding up the new free space due
to an off-by-one error.  It was not reading the last
rgrp from the rindex because of a check for "<=" that
should have been "<".  Therefore, fsck.gfs2 was finding
(and fixing) an error with the system statfs file.

Signed-off-by: Bob Peterson <rpeterso@redhat.com>
fs/gfs2/rgrp.c

index 25dbe5c84dffad361dcf96bea334cc8b9cda3a3f..7293ea27020c680307e0145e863ebbb7eb0d6949 100644 (file)
@@ -500,7 +500,7 @@ u64 gfs2_ri_total(struct gfs2_sbd *sdp)
        for (rgrps = 0;; rgrps++) {
                loff_t pos = rgrps * sizeof(struct gfs2_rindex);
 
-               if (pos + sizeof(struct gfs2_rindex) >= i_size_read(inode))
+               if (pos + sizeof(struct gfs2_rindex) > i_size_read(inode))
                        break;
                error = gfs2_internal_read(ip, &ra_state, buf, &pos,
                                           sizeof(struct gfs2_rindex));