We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d8d9fa4 + e7a16e6 commit d64481aCopy full SHA for d64481a
src/include/xhyve/vmm/intel/vmx_controls.h
@@ -74,6 +74,7 @@
74
#define PROCBASED2_ENABLE_INVPCID (1u << 12)
75
#define PROCBASED2_VMCS_SHADOW (1u << 14)
76
#define PROCBASED2_RDSEED_EXITING (1u << 16)
77
+#define PROCBASED2_XSAVES (1u << 20)
78
79
/* VM Exit Controls */
80
#define VM_EXIT_SAVE_DEBUG_CONTROLS (1u << 2)
src/lib/vmm/intel/vmx.c
@@ -92,7 +92,8 @@
92
PROCBASED2_RDRAND_EXITING | \
93
PROCBASED2_ENABLE_INVPCID /* FIXME */ | \
94
PROCBASED2_RDSEED_EXITING | \
95
- PROCBASED2_VMCS_SHADOW)
+ PROCBASED2_VMCS_SHADOW | \
96
+ PROCBASED2_XSAVES)
97
#define PINBASED_CTLS_ONE_SETTING \
98
(PINBASED_EXTINT_EXITING | \
99
PINBASED_NMI_EXITING | \
0 commit comments