On Fri, May 20, 2011 at 05:36:47PM +0200, Lukas Czerner wrote: > mke2fs and resize2fs allows specifying filesystem size as a parameter, > former called as blocks-count. However it has been a little bit messy so > this commit fixes it mainly by updating man pages. > > We can not specify filesystem size in blocks count without specifying > blocksize as well. It is because we need blocks count to determine > filesystem type, and we need filesystem type to determine blocksize. So > it should not be allowed, however due to compatibility reason it should > be still possible, so at least print warning message for now, so we can > easily restrict that later. > > Filesystem size can be specified using units as suffixes. This was not > documented for mke2fs, so this commits adds proper documentation into > mke2fs man page. > > For the sake of completeness add 'b' (filesystem blocks) unit. I'd much rather fix this by documenting that without a suffix, it will be interpreted as the number of blocks if -b is specified, and that if -b is not specified, it will be interpreted as kilobytes (but that this usage is deprecated). > @@ -37,6 +38,14 @@ unsigned long long parse_num_blocks2(const char *arg, int log_block_size) > num >>= (1+log_block_size); > break; > case '\0': > + case 'b': > + if (!log_block_size) { > + fprintf(stderr, > + _("Warning: You should not specify filesystem " > + "size without specifying block size '-b'. " > + "Will assume 1024 byte blocks!\n" > + )); > + } > break; > default: > return 0; I'd much rather not add this, since there may be other programs using parse_num_blocks2() that aren't mke2fs or tune2fs, where -b doesn't make sense. - Ted -- To unsubscribe from this list: send the line "unsubscribe linux-ext4" in the body of a message to majordomo@xxxxxxxxxxxxxxx More majordomo info at http://vger.kernel.org/majordomo-info.html