svn commit: r242059 - projects/bhyve/usr.sbin/vmmctl

Neel Natu neel at FreeBSD.org
Thu Oct 25 03:39:37 UTC 2012


Author: neel
Date: Thu Oct 25 03:39:36 2012
New Revision: 242059
URL: http://svn.freebsd.org/changeset/base/242059

Log:
  Fix typo: host_rip -> host_rsp
  
  Obtained from:	NetApp

Modified:
  projects/bhyve/usr.sbin/vmmctl/vmmctl.c

Modified: projects/bhyve/usr.sbin/vmmctl/vmmctl.c
==============================================================================
--- projects/bhyve/usr.sbin/vmmctl/vmmctl.c	Thu Oct 25 03:30:16 2012	(r242058)
+++ projects/bhyve/usr.sbin/vmmctl/vmmctl.c	Thu Oct 25 03:39:36 2012	(r242059)
@@ -1404,7 +1404,7 @@ main(int argc, char *argv[])
 	if (!error && (get_host_rsp || get_all)) {
 		error = vm_get_vmcs_field(ctx, vcpu, VMCS_HOST_RSP, &rsp);
 		if (error == 0)
-			printf("host_rip[%d]\t\t0x%016lx\n", vcpu, rsp);
+			printf("host_rsp[%d]\t\t0x%016lx\n", vcpu, rsp);
 	}
 
 	if (!error && (get_guest_sysenter || get_all)) {


More information about the svn-src-projects mailing list