GNU bug report logs -
#6417
[Bug 591969] Re: dd bs=3G || ubuntu-bug coreutils
Previous Next
Reported by: Jim Meyering <jim <at> meyering.net>
Date: Sun, 13 Jun 2010 19:21:02 UTC
Severity: normal
Fixed in version 8.6
Done: Pádraig Brady <P <at> draigBrady.com>
Bug is archived. No further changes may be made.
Full log
Message #8 received at submit <at> debbugs.gnu.org (full text, mbox):
On 06/13/2010 12:19 PM, Jim Meyering wrote:
> + size_t sz = input_blocksize + INPUT_BLOCK_SLOP;
> + real_buf = malloc (sz);
> + if (!real_buf)
> + error (EXIT_FAILURE, 0,
> + _("failed to allocate an input buffer of size %s"),
> + human_size (sz));
Wouldn't it be better to output the exact buffer size,
rather than an approximation? Usually it's better to
output more information, rather than less, to help
debug problems more precisely.
One way to do this would be to output the same string
that the user specified: if the user says "bs=3EiB" then
output "3EiB" in the diagnostic. That would be exact,
and would be a bit friendlier than "3458764513820540928 bytes".
Or, we could output both, as in "3EiB (3458764513820540928 bytes)",
where the first is the string and the second is the integer that
we converted it to.
This bug report was last modified 14 years and 319 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.