summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMike Larkin <mlarkin@cvs.openbsd.org>2016-10-06 07:51:11 +0000
committerMike Larkin <mlarkin@cvs.openbsd.org>2016-10-06 07:51:11 +0000
commit7f9436eac73f865298010c042e0a322dae5be31c (patch)
tree590a12cc9f4fb6fdd4344cffd5c0443eb9ab7260 /sys
parentd36436327899e52817f343d076867854e8a25b34 (diff)
turn off vmm(4) debug mode
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/amd64/vmm.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c
index 5640bb64c10..7826b260380 100644
--- a/sys/arch/amd64/amd64/vmm.c
+++ b/sys/arch/amd64/amd64/vmm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm.c,v 1.90 2016/10/06 07:37:51 mlarkin Exp $ */
+/* $OpenBSD: vmm.c,v 1.91 2016/10/06 07:51:10 mlarkin Exp $ */
/*
* Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org>
*
@@ -40,10 +40,10 @@
#include <dev/isa/isareg.h>
-#define VMM_DEBUG
+/* #define VMM_DEBUG */
#ifdef VMM_DEBUG
-int vmm_debug = 1;
+int vmm_debug = 0;
#define DPRINTF(x...) do { if (vmm_debug) printf(x); } while(0)
#else
#define DPRINTF(x...)