summaryrefslogtreecommitdiff
path: root/usr.sbin
diff options
context:
space:
mode:
authorDave Voutila <dv@cvs.openbsd.org>2024-07-12 13:51:13 +0000
committerDave Voutila <dv@cvs.openbsd.org>2024-07-12 13:51:13 +0000
commit545301fbad354cc0fa10e5231760ebb4613beaea (patch)
tree006ec12dd5ac3f30cab72da531da73c069d1f828 /usr.sbin
parentcf7b4bd528ebf4884417bf1974d7107d19bf98f3 (diff)
Quiet vmd debug logging about page faults.
When we get bumped to userland and the fault is already handled, don't log anything. It's way too chatty and helps nobody trying to debug things.
Diffstat (limited to 'usr.sbin')
-rw-r--r--usr.sbin/vmd/x86_vm.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/usr.sbin/vmd/x86_vm.c b/usr.sbin/vmd/x86_vm.c
index c6c4b2a9ed7..d0caf98dd12 100644
--- a/usr.sbin/vmd/x86_vm.c
+++ b/usr.sbin/vmd/x86_vm.c
@@ -1,4 +1,4 @@
-/* $OpenBSD: x86_vm.c,v 1.1 2024/07/10 10:41:19 dv Exp $ */
+/* $OpenBSD: x86_vm.c,v 1.2 2024/07/12 13:51:12 dv Exp $ */
/*
* Copyright (c) 2015 Mike Larkin <mlarkin@openbsd.org>
*
@@ -674,7 +674,6 @@ vcpu_exit_eptviolation(struct vm_run_params *vrp)
#endif /* MMIO_NOTYET */
switch (ve->vee.vee_fault_type) {
case VEE_FAULT_HANDLED:
- log_debug("%s: fault already handled", __func__);
break;
#if MMIO_NOTYET