summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Evans <bde@FreeBSD.org>1998-02-20 13:27:36 +0000
committerBruce Evans <bde@FreeBSD.org>1998-02-20 13:27:36 +0000
commitb9cecfcd537604a280ac14620ae7bd6bc59e9797 (patch)
tree55e9917cb2fe55e09550eab5287ed8c348ffbf10
parent39e4376ba79d20f9d1b73397d4f20f4e2b0aef25 (diff)
Notes
-rw-r--r--sys/dev/vn/vn.c14
1 files changed, 3 insertions, 11 deletions
diff --git a/sys/dev/vn/vn.c b/sys/dev/vn/vn.c
index fb921d981d0f..8439c52d6d5b 100644
--- a/sys/dev/vn/vn.c
+++ b/sys/dev/vn/vn.c
@@ -38,7 +38,7 @@
* from: Utah Hdr: vn.c 1.13 94/04/02
*
* from: @(#)vn.c 8.6 (Berkeley) 4/1/94
- * $Id: vn.c,v 1.53 1998/01/24 02:54:05 eivind Exp $
+ * $Id: vn.c,v 1.54 1998/02/09 06:07:59 eivind Exp $
*/
/*
@@ -106,15 +106,6 @@ static struct bdevsw vn_bdevsw =
{ vnopen, vnclose, vnstrategy, vnioctl, /*15*/
vndump, vnsize, D_DISK | D_NOCLUSTERRW, "vn", &vn_cdevsw, -1 };
-
-#ifdef DEBUG
-static int dovncluster = 1;
-static int vndebug = 0x00;
-#define VDB_FOLLOW 0x01
-#define VDB_INIT 0x02
-#define VDB_IO 0x04
-#endif
-
#define vnunit(dev) dkunit(dev)
#define getvnbuf() \
@@ -625,7 +616,8 @@ vndump(dev_t dev)
{
return (ENODEV);
}
-static vn_devsw_installed = 0;
+
+static int vn_devsw_installed;
static void
vn_drvinit(void *unused)