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.
1 parent ca825b6 commit 584f86cCopy full SHA for 584f86c
src/vmm/src/arch/x86_64/xstate.rs
@@ -43,6 +43,7 @@ pub fn request_dynamic_xstate_features() -> Result<(), XstateError> {
43
// causes guest crash during boot because a guest calls XSETBV instruction with all
44
// XSAVE feature bits enumerated on CPUID and XSETBV only accepts either of both Intel
45
// AMX bits enabled or disabled; otherwise resulting in general protection fault.
46
+ // https://lore.kernel.org/all/[email protected]/
47
if supported_xfeatures & INTEL_AMX_MASK == INTEL_AMX_MASK {
48
request_xfeature_permission(arch_prctl::ARCH_XCOMP_TILEDATA).map_err(|err| {
49
XstateError::RequestFeaturePermission(arch_prctl::ARCH_XCOMP_TILEDATA, err)
0 commit comments