From 2f906d844c8ed50f3c160f3bfc0d1f8cd6c31d28 Mon Sep 17 00:00:00 2001 From: Stanislav Shwartsman Date: Tue, 25 Feb 2014 19:56:10 +0000 Subject: [PATCH] fix vmexit reason descriptions --- bochs/cpu/vmx.cc | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/bochs/cpu/vmx.cc b/bochs/cpu/vmx.cc index 563622ef6..33a8f4e4a 100644 --- a/bochs/cpu/vmx.cc +++ b/bochs/cpu/vmx.cc @@ -77,14 +77,14 @@ static const char *VMX_vmexit_reason_name[] = "WRMSR", "VMEntry failure due to invalid guest state", "VMEntry failure due to MSR loading", - "Reserved", + "Reserved35", "MWAIT", "MTF (Monitor Trap Flag)", - "Reserved", + "Reserved38", "MONITOR", "PAUSE", "VMEntry failure due to machine check", - "Reserved", + "Reserved42", "TPR Below Threshold", "APIC Access", "Virtualized EOI", @@ -102,8 +102,11 @@ static const char *VMX_vmexit_reason_name[] = "RDRAND", "INVPCID", "VMFUNC", - "Reserved", + "Reserved60", "RDSEED" + "Reserved62", + "XSAVES", + "XRSTORS" }; ////////////////////////////////////////////////////////////