Module Name: src
Committed By: christos
Date: Mon Nov 9 16:54:27 UTC 2015
Modified Files:
src/sys/dev: vnd.c
Log Message:
disable debugging
To generate a diff of this commit:
cvs rdiff -u -r1.249 -r1.250 src/sys/dev/vnd.c
Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.
Modified files:
Index: src/sys/dev/vnd.c
diff -u src/sys/dev/vnd.c:1.249 src/sys/dev/vnd.c:1.250
--- src/sys/dev/vnd.c:1.249 Mon Nov 9 11:52:09 2015
+++ src/sys/dev/vnd.c Mon Nov 9 11:54:26 2015
@@ -1,4 +1,4 @@
-/* $NetBSD: vnd.c,v 1.249 2015/11/09 16:52:09 christos Exp $ */
+/* $NetBSD: vnd.c,v 1.250 2015/11/09 16:54:26 christos Exp $ */
/*-
* Copyright (c) 1996, 1997, 1998, 2008 The NetBSD Foundation, Inc.
@@ -91,14 +91,13 @@
*/
#include <sys/cdefs.h>
-__KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.249 2015/11/09 16:52:09 christos Exp $");
+__KERNEL_RCSID(0, "$NetBSD: vnd.c,v 1.250 2015/11/09 16:54:26 christos Exp $");
#if defined(_KERNEL_OPT)
#include "opt_vnd.h"
#include "opt_compat_netbsd.h"
#endif
-#define DEBUG
#include <sys/param.h>
#include <sys/systm.h>
#include <sys/namei.h>
@@ -140,7 +139,7 @@ int dovndcluster = 1;
#define VDB_INIT 0x02
#define VDB_IO 0x04
#define VDB_LABEL 0x08
-int vnddebug = 0xff;
+int vnddebug = 0;
#endif
#define vndunit(x) DISKUNIT(x)