svn commit: r260550 - head/usr.sbin/bhyvectl
Neel Natu
neel at FreeBSD.org
Sat Jan 11 17:37:53 UTC 2014
Author: neel
Date: Sat Jan 11 17:37:53 2014
New Revision: 260550
URL: http://svnweb.freebsd.org/changeset/base/260550
Log:
Fix amd64 build breakage caused by r260532.
Submitted by: Marcus Karlsson (mk at acc.umu.se)
Pointy hat to: me
Modified:
head/usr.sbin/bhyvectl/bhyvectl.c
Modified: head/usr.sbin/bhyvectl/bhyvectl.c
==============================================================================
--- head/usr.sbin/bhyvectl/bhyvectl.c Sat Jan 11 16:52:09 2014 (r260549)
+++ head/usr.sbin/bhyvectl/bhyvectl.c Sat Jan 11 17:37:53 2014 (r260550)
@@ -1453,8 +1453,7 @@ main(int argc, char *argv[])
}
if (!error && (get_vmcs_exit_interruption_info || get_all)) {
- error = vm_get_vmcs_field(ctx, vcpu,
- VMCS_EXIT_INTERRUPTION_INFO, &u64);
+ error = vm_get_vmcs_field(ctx, vcpu, VMCS_EXIT_INTR_INFO, &u64);
if (error == 0) {
printf("vmcs_exit_interruption_info[%d]\t0x%08lx\n",
vcpu, u64);
@@ -1462,8 +1461,8 @@ main(int argc, char *argv[])
}
if (!error && (get_vmcs_exit_interruption_error || get_all)) {
- error = vm_get_vmcs_field(ctx, vcpu,
- VMCS_EXIT_INTERRUPTION_ERROR, &u64);
+ error = vm_get_vmcs_field(ctx, vcpu, VMCS_EXIT_INTR_ERRCODE,
+ &u64);
if (error == 0) {
printf("vmcs_exit_interruption_error[%d]\t0x%08lx\n",
vcpu, u64);
More information about the svn-src-head
mailing list