diff options
author | grog <grog@FreeBSD.org> | 1999-10-13 03:29:13 +0000 |
---|---|---|
committer | grog <grog@FreeBSD.org> | 1999-10-13 03:29:13 +0000 |
commit | 00578e9ef1e0c754be943eadc0fda688e102e16d (patch) | |
tree | ff6ce2bead5c5e1c825cf2b4ff29be0f96f3aa89 /sbin | |
parent | 61c0c72ac5d01b0c3ba58567f2087fe07c13f09c (diff) | |
download | FreeBSD-src-00578e9ef1e0c754be943eadc0fda688e102e16d.zip FreeBSD-src-00578e9ef1e0c754be943eadc0fda688e102e16d.tar.gz |
Change default init sizes from 64 kB to 60 kB, since the block device
interface limits it to this anyway.
Change the name of the v flag variable from 'verbose' to 'vflag',
indicating the multiple use (verbose or verify).
Add -S flag to specify the size of some operations.
Diffstat (limited to 'sbin')
-rw-r--r-- | sbin/vinum/vext.h | 12 |
1 files changed, 8 insertions, 4 deletions
diff --git a/sbin/vinum/vext.h b/sbin/vinum/vext.h index e6b032f..2a47c3e 100644 --- a/sbin/vinum/vext.h +++ b/sbin/vinum/vext.h @@ -32,13 +32,16 @@ * in contract, strict liability, or tort (including negligence or * otherwise) arising in any way out of the use of this software, even if * advised of the possibility of such damage. - * */ -/* $FreeBSD$ */ +/* + * $Id: vext.h,v 1.13 1999/10/12 05:41:36 grog Exp grog $ + * $FreeBSD$ + */ #define MAXARGS 64 /* maximum number of args on a line */ -#define PLEXINITSIZE 61440 /* this is what the system does somewhere */ +#define PLEXINITSIZE 65536 /* init in this size chunks */ +#define MAXPLEXINITSIZE 65536 /* max chunk size to use for init */ #define MAXDATETEXT 128 /* date text in history (far too much) */ enum { @@ -135,10 +138,11 @@ u_int64_t sizespec(char *spec); void timestamp(); extern int force; /* set to 1 to force some dangerous ops */ -extern int verbose; /* set verbose operation */ +extern int vflag; /* set verbose operation or verify */ extern int Verbose; /* very verbose operation */ extern int recurse; /* set recursion */ extern int sflag; /* show statistics */ +extern int SSize; /* sector size for revive */ extern int dowait; /* wait for children to exit */ extern char *objectname; /* name for some functions */ |