diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-09-14 18:23:07 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-09-14 18:23:07 +0000 |
commit | 8c70d9a1623f70993dc12378d502f09bdb17bf79 (patch) | |
tree | a9e66e9af90c2a7bf83c0f7c9ac01c4891998f9c /sys/arch | |
parent | be9ea1de43089065b5b8e0abfd2639ddfd373de1 (diff) |
don't dump vcpu state on ept violations, these happen with sufficient
frequency that they cause a lot of dmesg spam and aren't errors to begin
with
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/vmm.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index 55e95e32cf7..9086ddced10 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.82 2016/09/10 23:39:42 mlarkin Exp $ */ +/* $OpenBSD: vmm.c,v 1.83 2016/09/14 18:23:06 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -2927,6 +2927,8 @@ vcpu_run_vmx(struct vcpu *vcpu, struct vm_run_params *vrp) break; case VMX_EXIT_EXTINT: break; + case VMX_EXIT_EPT_VIOLATION: + break; #ifdef VMM_DEBUG case VMX_EXIT_TRIPLE_FAULT: DPRINTF("%s: vm %d vcpu %d triple fault\n", |