From owner-svn-soc-all@FreeBSD.ORG Tue Jul 3 19:19:05 2012 Return-Path: Delivered-To: svn-soc-all@FreeBSD.org Received: from socsvn.FreeBSD.org (unknown [IPv6:2001:4f8:fff6::2f]) by hub.freebsd.org (Postfix) with SMTP id B1AA3106566C for ; Tue, 3 Jul 2012 19:19:03 +0000 (UTC) (envelope-from syuu@FreeBSD.org) Received: by socsvn.FreeBSD.org (sSMTP sendmail emulation); Tue, 03 Jul 2012 19:19:03 +0000 Date: Tue, 03 Jul 2012 19:19:03 +0000 From: syuu@FreeBSD.org To: svn-soc-all@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Message-Id: <20120703191903.B1AA3106566C@hub.freebsd.org> Cc: Subject: socsvn commit: r238926 - in soc2012/syuu/bhyve-bios/sys/amd64: include vmm/intel X-BeenThere: svn-soc-all@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: SVN commit messages for the entire Summer of Code repository List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Jul 2012 19:19:05 -0000 Author: syuu Date: Tue Jul 3 19:19:03 2012 New Revision: 238926 URL: http://svnweb.FreeBSD.org/socsvn/?view=rev&rev=238926 Log: Rename VM_EXITCODE_VMCALL to VM_EXITCODE_HYPERCALL, because vmcall is Intel specific instruction name Modified: soc2012/syuu/bhyve-bios/sys/amd64/include/vmm.h soc2012/syuu/bhyve-bios/sys/amd64/vmm/intel/vmx.c Modified: soc2012/syuu/bhyve-bios/sys/amd64/include/vmm.h ============================================================================== --- soc2012/syuu/bhyve-bios/sys/amd64/include/vmm.h Tue Jul 3 18:59:13 2012 (r238925) +++ soc2012/syuu/bhyve-bios/sys/amd64/include/vmm.h Tue Jul 3 19:19:03 2012 (r238926) @@ -228,7 +228,7 @@ VM_EXITCODE_MTRAP, VM_EXITCODE_PAUSE, VM_EXITCODE_PAGING, - VM_EXITCODE_VMCALL, + VM_EXITCODE_HYPERCALL, VM_EXITCODE_MAX }; Modified: soc2012/syuu/bhyve-bios/sys/amd64/vmm/intel/vmx.c ============================================================================== --- soc2012/syuu/bhyve-bios/sys/amd64/vmm/intel/vmx.c Tue Jul 3 18:59:13 2012 (r238925) +++ soc2012/syuu/bhyve-bios/sys/amd64/vmm/intel/vmx.c Tue Jul 3 19:19:03 2012 (r238926) @@ -1190,7 +1190,7 @@ vmexit->u.paging.cr3 = vmcs_guest_cr3(); break; case EXIT_REASON_VMCALL: - vmexit->exitcode = VM_EXITCODE_VMCALL; + vmexit->exitcode = VM_EXITCODE_HYPERCALL; break; default: break;