diff options
author | neel <neel@FreeBSD.org> | 2014-10-10 23:52:56 +0000 |
---|---|---|
committer | neel <neel@FreeBSD.org> | 2014-10-10 23:52:56 +0000 |
commit | bfa9f55e70c0c7e6dffec4b120e5315a76b6db78 (patch) | |
tree | dca6ef9a2170f73dabf337324c62f8ef8a3f4285 /sys/amd64/vmm/vmm.c | |
parent | ae1ff84ece91e97a57c3b53f820787e1e59f26a4 (diff) | |
parent | 82f995d6f356b994e66f41e2426e3e609e6a58cc (diff) | |
download | FreeBSD-src-bfa9f55e70c0c7e6dffec4b120e5315a76b6db78.zip FreeBSD-src-bfa9f55e70c0c7e6dffec4b120e5315a76b6db78.tar.gz |
IFC @r272887
Diffstat (limited to 'sys/amd64/vmm/vmm.c')
-rw-r--r-- | sys/amd64/vmm/vmm.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/sys/amd64/vmm/vmm.c b/sys/amd64/vmm/vmm.c index d73c7b3..af62294 100644 --- a/sys/amd64/vmm/vmm.c +++ b/sys/amd64/vmm/vmm.c @@ -1497,6 +1497,10 @@ restart: case VM_EXITCODE_INOUT_STR: error = vm_handle_inout(vm, vcpuid, vme, &retu); break; + case VM_EXITCODE_MONITOR: + case VM_EXITCODE_MWAIT: + vm_inject_ud(vm, vcpuid); + break; default: retu = true; /* handled in userland */ break; |