-$Id: CHANGES,v 1.48 2000/03/02 13:33:00 stelian Exp $
+$Id: CHANGES,v 1.49 2000/03/08 10:51:29 stelian Exp $
Changes between versions 0.4b15 and 0.4b16 (released ?????????????)
===================================================================
1. Fixed some several duplicate 'DUMP: DUMP:' in the
output of dump.
+2. Corrected the estimation of blocks to dump. Note that
+ this is still wrong for large directory inodes, due
+ to the size of a BSD directory entry on the tape
+ (estimation is based on the size of the ext2 directory,
+ which is smaller because it doesn't contain the null
+ character at the end).
+
+3. Made dump report the total number of MB written to
+ tape at the end of run. Thanks to W. Reilly Cooley
+ <wcooley@nakedape.cc> for the patch.
+
Changes between versions 0.4b14 and 0.4b15 (released March 2, 2000)
===================================================================
-$Id: THANKS,v 1.23 2000/03/01 10:16:05 stelian Exp $
+$Id: THANKS,v 1.24 2000/03/08 10:51:29 stelian Exp $
Dump and restore were written by the people of the CSRG at the University
of California, Berkeley.
Rob Cermak cermak@ahab.rutgers.edu
Isaac Chuang ike@isl.stanford.edu
Rainer Clasen bj@ncc.cicely.de
+W. Reilly Cooley wcooley@nakedape.cc
Abhijit Dasgupta abhijit@ans.net
Andreas Dilger adilger@home.com
Jason Fearon jasonf@netrider.org.au
#ifndef lint
static const char rcsid[] =
- "$Id: main.c,v 1.21 2000/03/03 11:43:35 stelian Exp $";
+ "$Id: main.c,v 1.22 2000/03/08 10:51:29 stelian Exp $";
#endif /* not lint */
#include <sys/param.h>
tnow = trewind();
if (pipeout)
- msg("%ld tape blocks\n", spcl.c_tapea);
+ msg("%ld tape blocks (%.2fMB)\n", spcl.c_tapea,
+ ((double)spcl.c_tapea * TP_BSIZE / 1048576));
else
- msg("%ld tape blocks on %d volumes(s)\n",
- spcl.c_tapea, spcl.c_volume);
+ msg("%ld tape blocks (%.2fMB) on %d volume(s)\n",
+ spcl.c_tapea,
+ ((double)spcl.c_tapea * TP_BSIZE / 1048576),
+ spcl.c_volume);
/* report dump performance, avoid division through zero */
if (tend_writing - tstart_writing == 0)