On Wed, Aug 14, 2019 at 07:29:36AM +1000, Dave Chinner wrote: > On Tue, Aug 13, 2019 at 07:24:14AM -0700, Darrick J. Wong wrote: > > On Tue, Aug 13, 2019 at 03:14:19PM +1000, Dave Chinner wrote: > > > From: Dave Chinner <dchinner@xxxxxxxxxx> > > > - } > > > - if (*sp == 's') { > > > - if (!sectsize) { > > > - fprintf(stderr, > > > -_("Sectorsize must be specified prior to using 's' suffix.\n")); > > > > Hmm, so this message is replaced with "Not a valid value or illegal suffix"? > > Actually, the error message is this: > > # mkfs.xfs -f -b size=1b /dev/vdc > Invalid value 1b for -b size option. Not a valid value or illegal suffix > > It does actually tell you what the value is, what option is wrong, > and the message shold be fairly clear that specifying the block size > in using a "blocks" suffix is illegal. > > > That's not anywhere near as helpful as the old message... maybe we > > should have this set errno or something so that callers can distinguish > > between "you sent garbled input" vs. "you need to set up > > blocksize /sectsize"... ? > > Actually, the error will only occur when you use -s size= or -b > size= options, as if they are not specified we use the default > values in mkfs and cvtnum is always called with a valid > blocksize/sectorsize pair. i.e. This error only triggers when validating > the base sector size/block size options because that occurs before > we set the global varibles mkfs will use for cvtnum.... > > It's a chicken-egg thing, and I figured the error message prefix > would be sufficient to point out the problem with the value suffic > used for these kinda unusual corner cases. Heh, ok, carry on then. :) Reviewed-by: Darrick J. Wong <darrick.wong@xxxxxxxxxx> --D > Cheers, > > Dave. > -- > Dave Chinner > david@xxxxxxxxxxxxx