From: Theodore Ts'o Date: Thu, 27 Jan 2005 23:13:33 +0000 (-0500) Subject: Cset exclude: tytso@think.thunk.org|ChangeSet|20050123214956|52665 X-Git-Tag: E2FSPROGS-1_36~20 X-Git-Url: https://git.whamcloud.com/gitweb?a=commitdiff_plain;h=5780ead245fec02b83a18e0e12835732acdb64b1;p=tools%2Fe2fsprogs.git Cset exclude: tytso@think.thunk.org|ChangeSet|20050123214956|52665 --- diff --git a/e2fsck/ChangeLog b/e2fsck/ChangeLog index 1d99b1b..c10fa86 100644 --- a/e2fsck/ChangeLog +++ b/e2fsck/ChangeLog @@ -19,12 +19,6 @@ free counts is too large, force a full filesystem check. (Addresses Debian Bug: #291571) -2005-01-21 Theodore Ts'o - - * 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 * unix.c (e2fsck_simple_progress): Use fixed integer math diff --git a/e2fsck/super.c b/e2fsck/super.c index 9a662f0..f508c4e 100644 --- a/e2fsck/super.c +++ b/e2fsck/super.c @@ -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;