summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAndreas Klemm <andreas@FreeBSD.org>1998-09-16 20:52:12 +0000
committerAndreas Klemm <andreas@FreeBSD.org>1998-09-16 20:52:12 +0000
commit678bcd77289625922b7a0e1dc0a3d31b2978d1b9 (patch)
treedc1336e9ee111730ca2c195a5e8bf7e889e0ba4f
parent53398df2a8638989c3e7d9c85a30c238c5851b8c (diff)
Notes
-rw-r--r--sbin/dump/main.c16
1 files changed, 1 insertions, 15 deletions
diff --git a/sbin/dump/main.c b/sbin/dump/main.c
index 0807b5825780..5cbefc165a69 100644
--- a/sbin/dump/main.c
+++ b/sbin/dump/main.c
@@ -42,7 +42,7 @@ static const char copyright[] =
static char sccsid[] = "@(#)main.c 8.6 (Berkeley) 5/1/95";
#endif
static const char rcsid[] =
- "$Id: main.c,v 1.16 1998/06/15 06:58:10 charnier Exp $";
+ "$Id: main.c,v 1.17 1998/07/14 09:19:47 jkoshy Exp $";
#endif /* not lint */
#include <sys/param.h>
@@ -147,20 +147,6 @@ main(argc, argv)
case 'b': /* blocks per tape write */
ntrec = numarg("number of blocks per write",
1L, 1000L);
- /*
- * XXX
- * physio(9) currently slices all requests to
- * 64 KB chunks. So now, if somebody entered
- * e.g. 96 KB block size here, he would effectively
- * yield one 64 KB and one 32 KB block, which
- * restore cannot handle.
- * Thus we currently enforce pyhsio(9)'s limit
- * here, too.
- */
- if ( ntrec > 64 ) {
- msg("please choose a blocksize <= 64\n");
- exit(X_STARTUP);
- }
break;
case 'c': /* Tape is cart. not 9-track */