History log of /src/bin/dd/misc.c |
Revision | | Date | Author | Comments |
1.26 |
| 09-Oct-2021 |
rillig | dd: clean up function summary
No functional change. Ideally the binary would have stayed the same, but GCC 10.3.0 inserts a nop and reorders the code.
|
1.25 |
| 09-Oct-2021 |
rillig | dd: fix lint error about 'return expr' from void function
No change to the resulting binary. The 'return' statements are necessary for GCC to generate the exact same object code, even though they can be removed without affecting the functionality, as seen before the 'else'.
|
1.24 |
| 10-Sep-2021 |
rillig | bin: remove unnecessary lint comment CONSTCOND
Since 2021-01-31, lint no longer warns about 'do ... while (0)'.
No functional change.
|
1.23 |
| 07-Nov-2011 |
jym | branches: 1.23.42; As suggested by Enami, rework the msgfmt logic a bit: - error out when an unknown specifier is used. Do this in f_msgfmt(), before dd(1) starts operation. - allow buffer_write() to flush the internal buffer even when NULL is passed as parameter.
Some whitespace fixes too.
|
1.22 |
| 06-Nov-2011 |
jym | Add a new command to dd(1): msgfmt. The command modifies the output of the information summary returned by dd(1). This can be used to specify messages in a more usable (or parseable) format like human-readable values.
My intent is to re-use this for building image files and quick I/O benchmarking.
Reviewed by tsutsui@ on tech-userlevel. See also http://mail-index.netbsd.org/tech-userlevel/2010/12/03/msg004179.html
Some examples:
$ dd if=/dev/zero of=/dev/null bs=1m count=1 msgfmt=human 1+0 records in 1+0 records out 1048576 bytes (1,0 MB) transferred in 0.001 secs (1048576000 bytes/sec - 1,0 GB/sec)
$ dd if=/dev/zero of=/dev/null count=1 msgfmt=' > <speed>%E</speed> > <time>%s</time> > <bytes>%b</bytes> > ' <speed>500 KB/sec</speed> <time>0.001</time> <bytes>512</bytes>
|
1.21 |
| 05-Oct-2007 |
lukem | branches: 1.21.28; Convert to using raise_default_signal(3).
|
1.20 |
| 03-Jul-2007 |
lukem | branches: 1.20.4; In the SIGINT handler, explicitly display a summary and then raise the default SIGINT handler to exit, rather than exit(0) and relying upon the atexit() to display the summary. Per SUS6.
|
1.19 |
| 17-Jan-2004 |
dbj | add support for conv=sparse inspired by freebsd, although this patch attempts to avoid some potential bugs in their implementation.
|
1.18 |
| 04-Jan-2004 |
jschauma | remove unused code left from printescaped() backput as pointed out by Jeff Ito in PR bin/23969 and PR bin/23970.
|
1.17 |
| 14-Sep-2003 |
jschauma | Following private discussion with kleink@ and hubertf@ and public discussion on tech-userlevel@, back out printescaped() functionality. kleink: ``We sell rope.''
|
1.16 |
| 07-Aug-2003 |
agc | Move UCB-licensed code from 4-clause to 3-clause licence.
Patches provided by Joel Baker in PR 22249, verified by myself.
|
1.15 |
| 04-Aug-2003 |
jschauma | As discusses a little while back on tech-userlevel:
If stdout is a tty, use vis(3) to print any filenames to prevent garbage from being printed if the filename contains control- or other non-printable characters.
While here, sprinkle some EXIT_FAILURE and NOTREACHED where appropriate.
|
1.14 |
| 26-Nov-2001 |
enami | a bit more cosmetic changes.
|
1.13 |
| 25-Nov-2001 |
lukem | - Use u_longlong_t instead of u_quad_t, u_long, or int for various buffer sizes - Add strsuftoull(), which parses a number into a u_longlong_t, with multiplication support, and support for 'g' (GB) and 't' (TB) suffices. If an error occurs, print to stderr and exit. Based on get_blk() from args.c and strsufto*() (in other programs) - Add strsuftoullx(), which acts as per strsuftoull() but returns the error in the supplied buffer instead (if the returned buffer != "", an error occurred) - Replace get_bsz() use with strsuftoull() - Remove (now) unnecessary argument validation - Remove unused {f,p,s,t}_stats fields in struct IO
|
1.12 |
| 25-Nov-2001 |
lukem | - ANSI KNF - WARNS=2 (mainly converting some "char *" -> "const char *")
|
1.11 |
| 28-Apr-2001 |
ross | In the words of Our Fearless Leader, I am "utterly sick" of dd(1) lying to me about transfer rates. Do some fixed point frobbing to get stuff like: 2486864 bytes transferred in 0.272 secs (9142882 bytes/sec)
|
1.10 |
| 04-Jan-2001 |
lukem | use more standard %ll_ in favour of %q_
|
1.9 |
| 29-Jul-1999 |
hubertf | Add "progress=1" switch to show a sign of life by printing a '.' for every block written to the output file.
|
1.8 |
| 28-Jul-1998 |
mycroft | Delint.
|
1.7 |
| 06-Feb-1998 |
thorpej | quads must be cast to long long for printing.
|
1.6 |
| 04-Feb-1998 |
enami | Use u_quad_t instead of u_long to define struct STAT.bytes, which is used to count bytes transfered, so that it won't overflow even if transfer is more than 4Gbytes.
|
1.5 |
| 20-Jul-1997 |
christos | Fix compiler warnings. Add WARNS=1
|
1.4 |
| 21-Mar-1995 |
cgd | convert to new RCS id conventions.
|
1.3 |
| 22-Sep-1994 |
mycroft | Merge 4.4-Lite version.
|
1.2 |
| 01-Aug-1993 |
mycroft | Add RCS identifiers.
|
1.1 |
| 04-May-1993 |
glass | branches: 1.1.1; added dd(1) from ftp.uu.net:bsd-sources; torching GNU dd
|
1.1.1.1 |
| 22-Sep-1994 |
mycroft | Import original 4.4-Lite version.
|
1.20.4.1 |
| 06-Nov-2007 |
matt | sync with HEAD
|
1.21.28.1 |
| 10-Nov-2011 |
yamt | sync with head
|
1.23.42.2 |
| 21-Apr-2020 |
martin | Ooops, restore accidently removed files from merge mishap
|
1.23.42.1 |
| 21-Apr-2020 |
martin | Sync with HEAD
|