From: Theodore Ts'o Date: Sat, 21 Feb 1998 05:01:19 +0000 (+0000) Subject: ChangeLog, dblist.c: X-Git-Tag: E2FSPROGS-1_12~63 X-Git-Url: https://git.whamcloud.com/?a=commitdiff_plain;h=79b05dbed2003cd678ba6b210695420486ce920d;p=tools%2Fe2fsprogs.git ChangeLog, dblist.c: dblist.c (ext2fs_get_num_dirs): Improve the estimation of the number of directories when the block group information is unreliable. --- diff --git a/lib/ext2fs/ChangeLog b/lib/ext2fs/ChangeLog index ddc1f76..e955cd7 100644 --- a/lib/ext2fs/ChangeLog +++ b/lib/ext2fs/ChangeLog @@ -1,3 +1,9 @@ +Fri Feb 20 23:58:01 1998 Theodore Ts'o + + * dblist.c (ext2fs_get_num_dirs): Improve the estimation of the + number of directories when the block group information is + unreliable. + 1998-02-20 Theodore Y. Ts'o * inode.c (ext2fs_get_next_inode): Always do the check to see if the diff --git a/lib/ext2fs/dblist.c b/lib/ext2fs/dblist.c index e756791..5db0c4f 100644 --- a/lib/ext2fs/dblist.c +++ b/lib/ext2fs/dblist.c @@ -40,10 +40,10 @@ errcode_t ext2fs_get_num_dirs(ext2_filsys fs, ino_t *ret_num_dirs) EXT2_CHECK_MAGIC(fs, EXT2_ET_MAGIC_EXT2FS_FILSYS); num_dirs = 0; - max_dirs = 8 * fs->blocksize; + max_dirs = fs->super->s_inodes_per_group; for (i = 0; i < fs->group_desc_count; i++) { if (fs->group_desc[i].bg_used_dirs_count > max_dirs) - num_dirs += max_dirs; + num_dirs += max_dirs / 8; else num_dirs += fs->group_desc[i].bg_used_dirs_count; }