summaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorMike Larkin <mlarkin@cvs.openbsd.org>2019-04-22 03:54:17 +0000
committerMike Larkin <mlarkin@cvs.openbsd.org>2019-04-22 03:54:17 +0000
commitc8148fe1563be73c9971e8b4219f0e3158c5bbfd (patch)
treebfee90c325c3a2974861307b41e34d01e13a5c8a /sys
parentfdb30f4e6bb57c6755967cf75abd9d7d9dc97a8f (diff)
vmm(4): remove a debug printf that was causing lock issues (it was being
called from an IPI routine).
Diffstat (limited to 'sys')
-rw-r--r--sys/arch/amd64/amd64/vmm.c4
1 files changed, 1 insertions, 3 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c
index 40caeab245d..8bf1f5020f4 100644
--- a/sys/arch/amd64/amd64/vmm.c
+++ b/sys/arch/amd64/amd64/vmm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: vmm.c,v 1.239 2019/04/20 23:44:36 kn Exp $ */
+/* $OpenBSD: vmm.c,v 1.240 2019/04/22 03:54:16 mlarkin Exp $ */
/*
* Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org>
*
@@ -917,8 +917,6 @@ start_vmm_on_cpu(struct cpu_info *ci)
}
/* Enter VMX mode */
- DPRINTF("%s: Enabling VMX, vmxon region @0x%llx\n",
- __func__, (uint64_t)ci->ci_vmxon_region_pa);
if (vmxon((uint64_t *)&ci->ci_vmxon_region_pa))
return;
}