]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
e2fsck: don't verify bitmap checksums
authorDarrick J. Wong <djwong@us.ibm.com>
Mon, 30 Jul 2012 23:10:04 +0000 (19:10 -0400)
committerTheodore Ts'o <tytso@mit.edu>
Mon, 30 Jul 2012 23:10:04 +0000 (19:10 -0400)
Since the correct inode and block bitmaps are calculated in pass 5,
don't fail the bitmap read operation in prior passes since (a)
incorrect results won't kill us and (b) if we fail early, we'll never
_get_ to pass 5.

Signed-off-by: Darrick J. Wong <djwong@us.ibm.com>
Signed-off-by: Theodore Ts'o <tytso@mit.edu>
e2fsck/util.c

index 7c4caab0e4a443df97b16df1aa55700cc9478a38..a808eec3b92e6c007b1879aa028996a560091461 100644 (file)
@@ -277,7 +277,9 @@ void e2fsck_read_bitmaps(e2fsck_t ctx)
        old_op = ehandler_operation(_("reading inode and block bitmaps"));
        e2fsck_set_bitmap_type(fs, EXT2FS_BMAP64_RBTREE, "fs_bitmaps",
                               &save_type);
+       ctx->fs->flags |= EXT2_FLAG_IGNORE_CSUM_ERRORS;
        retval = ext2fs_read_bitmaps(fs);
+       ctx->fs->flags &= ~EXT2_FLAG_IGNORE_CSUM_ERRORS;
        fs->default_bitmap_type = save_type;
        ehandler_operation(old_op);
        if (retval) {