diff options
| author | Neel Natu <neel@FreeBSD.org> | 2014-01-01 21:17:08 +0000 |
|---|---|---|
| committer | Neel Natu <neel@FreeBSD.org> | 2014-01-01 21:17:08 +0000 |
| commit | 0492757c70a3c9f5eb9bf279625325b3edf10a2d (patch) | |
| tree | b489c0f89e8cab4444f5d2635c829e734f88c162 /usr.sbin/bhyvectl | |
| parent | e1b5472915c901d23894c018f2f6175552eb5d52 (diff) | |
Notes
Diffstat (limited to 'usr.sbin/bhyvectl')
| -rw-r--r-- | usr.sbin/bhyvectl/bhyvectl.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/usr.sbin/bhyvectl/bhyvectl.c b/usr.sbin/bhyvectl/bhyvectl.c index c697492230de..efb111f2bc6a 100644 --- a/usr.sbin/bhyvectl/bhyvectl.c +++ b/usr.sbin/bhyvectl/bhyvectl.c @@ -273,11 +273,13 @@ dump_vm_run_exitcode(struct vm_exit *vmexit, int vcpu) break; case VM_EXITCODE_VMX: printf("\treason\t\tVMX\n"); - printf("\terror\t\t%d\n", vmexit->u.vmx.error); + printf("\tstatus\t\t%d\n", vmexit->u.vmx.status); printf("\texit_reason\t0x%08x (%u)\n", vmexit->u.vmx.exit_reason, vmexit->u.vmx.exit_reason); printf("\tqualification\t0x%016lx\n", vmexit->u.vmx.exit_qualification); + printf("\tinst_type\t\t%d\n", vmexit->u.vmx.inst_type); + printf("\tinst_error\t\t%d\n", vmexit->u.vmx.inst_error); break; default: printf("*** unknown vm run exitcode %d\n", vmexit->exitcode); |
