]> git.ipfire.org Git - thirdparty/e2fsprogs.git/commitdiff
Cset exclude: tytso@think.thunk.org|ChangeSet|20050123214956|52665
authorTheodore Ts'o <tytso@mit.edu>
Thu, 27 Jan 2005 23:13:33 +0000 (18:13 -0500)
committerTheodore Ts'o <tytso@mit.edu>
Thu, 27 Jan 2005 23:13:33 +0000 (18:13 -0500)
e2fsck/ChangeLog
e2fsck/super.c

index 1d99b1b447a7beb142e9e23649b6da34857a7ce7..c10fa864f27ee6db00b4918e5cec388d812ada52 100644 (file)
                free counts is too large, force a full filesystem check.
                (Addresses Debian Bug: #291571)
 
-2005-01-21  Theodore Ts'o  <tytso@mit.edu>
-
-       * super.c (check_resize_inode): If resize feature is set, but
-               s_reserved_gdt_blocks is zero, do not insist that resize
-               inode must have double indirect block.
-
 2005-01-19  Theodore Ts'o  <tytso@mit.edu>
 
        * unix.c (e2fsck_simple_progress): Use fixed integer math
index 9a662f0ad8ef342b4458fb05733b24122c361c1a..f508c4ea6b003cecc4a57c0e1c0388d36e67575c 100644 (file)
@@ -368,9 +368,6 @@ void check_resize_inode(e2fsck_t ctx)
         * only block in use is the double indirect block
         */
        blk = inode.i_block[EXT2_DIND_BLOCK];
-       if (!blk && !fs->super->s_reserved_gdt_blocks)
-               /* No reserved gdt blocks; no need for dind block */
-               return;
        for (i=0; i < EXT2_N_BLOCKS; i++) {
                if (i != EXT2_DIND_BLOCK && inode.i_block[i])
                        break;