From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:48549) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHB6F-0003Np-F8 for qemu-devel@nongnu.org; Sun, 17 Mar 2013 06:46:00 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1UHB6D-0004w6-OS for qemu-devel@nongnu.org; Sun, 17 Mar 2013 06:45:59 -0400 Received: from mout.web.de ([212.227.15.3]:63219) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1UHB6C-0004vu-Hk for qemu-devel@nongnu.org; Sun, 17 Mar 2013 06:45:56 -0400 Message-ID: <51459EDE.1050909@web.de> Date: Sun, 17 Mar 2013 11:45:50 +0100 From: Jan Kiszka MIME-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit Subject: [Qemu-devel] [PATCH] vmxcap: Update according to SDM of January 2013 List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: Gleb Natapov , Marcelo Tosatti Cc: qemu-devel , kvm From: Jan Kiszka This adds reporting of VMCS shadowing, #VE, IA32_SMBASE, unrestricted VMWRITE and fixes the range of the MSEG revision ID. Signed-off-by: Jan Kiszka --- scripts/kvm/vmxcap | 6 +++++- 1 files changed, 5 insertions(+), 1 deletions(-) diff --git a/scripts/kvm/vmxcap b/scripts/kvm/vmxcap index a79f816..c90eda4 100755 --- a/scripts/kvm/vmxcap +++ b/scripts/kvm/vmxcap @@ -168,6 +168,8 @@ controls = [ 11: 'RDRAND exiting', 12: 'Enable INVPCID', 13: 'Enable VM functions', + 14: 'VMCS shadowing', + 18: 'EPT-violation #VE' }, cap_msr = MSR_IA32_VMX_PROCBASED_CTLS2, ), @@ -212,10 +214,12 @@ controls = [ 6: 'HLT activity state', 7: 'Shutdown activity state', 8: 'Wait-for-SIPI activity state', + 15: 'IA32_SMBASE support', (16,24): 'Number of CR3-target values', (25,27): 'MSR-load/store count recommenation', 28: 'IA32_SMM_MONITOR_CTL[2] can be set to 1', - (32,62): 'MSEG revision identifier', + 29: 'VMWRITE to VM-exit information fields', + (32,63): 'MSEG revision identifier', }, msr = MSR_IA32_VMX_MISC_CTLS, ), -- 1.7.3.4