summaryrefslogtreecommitdiff
path: root/include
diff options
context:
space:
mode:
authorvboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2014-05-09 01:51:16 +0000
committervboxsync <vboxsync@cfe28804-0f27-0410-a406-dd0f0b0b656f>2014-05-09 01:51:16 +0000
commita5bad53323a71792240d440a4d18eb834d5b024d (patch)
tree6dcaec8babe5a33e7746533168a9c9d9300ba4ce /include
parentf8de29def2c769aa3d3a9bb24109855c6d19ad61 (diff)
downloadVirtualBox-svn-a5bad53323a71792240d440a4d18eb834d5b024d.tar.gz
VMM/HMVMXR0: Implemented EFER swapping using VMCS controls.
git-svn-id: https://www.virtualbox.org/svn/vbox/trunk@51220 cfe28804-0f27-0410-a406-dd0f0b0b656f
Diffstat (limited to 'include')
-rw-r--r--include/VBox/err.h20
1 files changed, 16 insertions, 4 deletions
diff --git a/include/VBox/err.h b/include/VBox/err.h
index cbd3cf7181b..56c5595c749 100644
--- a/include/VBox/err.h
+++ b/include/VBox/err.h
@@ -1940,18 +1940,30 @@
#define VERR_VMX_INVALID_VMCS_PTR_TO_START_VM (-4022)
/** Internal VMX processing error no 1. */
#define VERR_HMVMX_IPE_1 (-4023)
-/** Internal VMX processing error no 1. */
+/** Internal VMX processing error no 2. */
#define VERR_HMVMX_IPE_2 (-4024)
-/** Internal VMX processing error no 1. */
+/** Internal VMX processing error no 3. */
#define VERR_HMVMX_IPE_3 (-4025)
-/** Internal VMX processing error no 1. */
+/** Internal VMX processing error no 4. */
#define VERR_HMVMX_IPE_4 (-4026)
-/** Internal VMX processing error no 1. */
+/** Internal VMX processing error no 5. */
#define VERR_HMVMX_IPE_5 (-4027)
/** VT-x features for all modes (SMX and non-SMX) disabled by the BIOS. */
#define VERR_VMX_MSR_ALL_VMXON_DISABLED (-4028)
/** VT-x features disabled by the BIOS. */
#define VERR_VMX_MSR_VMXON_DISABLED (-4029)
+/** VM-Entry Controls internal cache invalid. */
+#define VERR_VMX_ENTRY_CTLS_CACHE_INVALID (-4030)
+/** VM-Exit Controls internal cache invalid. */
+#define VERR_VMX_EXIT_CTLS_CACHE_INVALID (-4031)
+/** VM-Execution Pin-based Controls internal cache invalid. */
+#define VERR_VMX_PIN_EXEC_CTLS_CACHE_INVALID (-4032)
+/** VM-Execution Primary Processor-based Controls internal cache
+ * invalid. */
+#define VERR_VMX_PROC_EXEC_CTLS_CACHE_INVALID (-4033)
+/** VM-Execution Secondary Processor-based Controls internal
+ * cache invalid. */
+#define VERR_VMX_PROC_EXEC2_CTLS_CACHE_INVALID (-4034)
/** @} */