diff options
author | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-09-10 23:39:43 +0000 |
---|---|---|
committer | Mike Larkin <mlarkin@cvs.openbsd.org> | 2016-09-10 23:39:43 +0000 |
commit | f3fa6976d54b619d246dfc35f31d6c4bf9fc53b0 (patch) | |
tree | 3546db9a1429ebb5d80a3b6dd345c7849c6a45b7 /sys/arch | |
parent | 416a998ab288584de971d68a0354c544b7bc44dd (diff) |
Skip printing a debug message when an external interrupt is received
Diffstat (limited to 'sys/arch')
-rw-r--r-- | sys/arch/amd64/amd64/vmm.c | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/sys/arch/amd64/amd64/vmm.c b/sys/arch/amd64/amd64/vmm.c index ccb2ab9b7dc..55e95e32cf7 100644 --- a/sys/arch/amd64/amd64/vmm.c +++ b/sys/arch/amd64/amd64/vmm.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vmm.c,v 1.81 2016/09/10 17:15:44 mlarkin Exp $ */ +/* $OpenBSD: vmm.c,v 1.82 2016/09/10 23:39:42 mlarkin Exp $ */ /* * Copyright (c) 2014 Mike Larkin <mlarkin@openbsd.org> * @@ -2924,7 +2924,9 @@ vcpu_run_vmx(struct vcpu *vcpu, struct vm_run_params *vrp) case VMX_EXIT_HLT: break; case VMX_EXIT_INT_WINDOW: - break; + break; + case VMX_EXIT_EXTINT: + break; #ifdef VMM_DEBUG case VMX_EXIT_TRIPLE_FAULT: DPRINTF("%s: vm %d vcpu %d triple fault\n", |