Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 11 Jan 2014 17:37:53 +0000 (UTC)
From:      Neel Natu <neel@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org
Subject:   svn commit: r260550 - head/usr.sbin/bhyvectl
Message-ID:  <201401111737.s0BHbrIj066002@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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@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);



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201401111737.s0BHbrIj066002>