* Add libblkid1-udeb package for the Debian Installer.
* Use the SS_READLINE_PATH environment variable to control the search
for a suitable readine library.
+ * Fix bug in mke2fs, which was was incorrectly checking the argument
+ to the -g option if the default block size is used. (Closes: #188319)
- -- Theodore Y. Ts'o <tytso@mit.edu> Fri, 11 Apr 2003 12:55:34 -0400
+ -- Theodore Y. Ts'o <tytso@mit.edu> Fri, 11 Apr 2003 13:45:18 -0400
e2fsprogs (1.32+1.33-WIP-2003.03.30-2) unstable; urgency=low
2003-04-11 Theodore Ts'o <tytso@mit.edu>
+ * mke2fs.c (PRS): Fix bug where mke2fs was incorrectly checking
+ the argument to the -g option, if the default block size
+ is used. (Addresses Debian bug #188319)
+
* tune2fs.8.in, mke2fs.8.in: Document the dir_index filesystem
feature which can be used with the -O option.
int c;
int size;
char * tmp;
- blk_t group_blk_max = 8192;
int blocksize = 0;
int inode_ratio = 0;
int inode_size = 0;
blocksize);
param.s_log_block_size =
int_log2(blocksize >> EXT2_MIN_BLOCK_LOG_SIZE);
- group_blk_max = blocksize * 8;
break;
case 'c': /* Check for bad blocks */
case 't': /* deprecated */
if (param.s_blocks_per_group) {
if (param.s_blocks_per_group < 256 ||
- param.s_blocks_per_group > group_blk_max) {
+ param.s_blocks_per_group > 8 * EXT2_BLOCK_SIZE(¶m)) {
com_err(program_name, 0,
_("blocks per group count out of range"));
exit(1);