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 a7356c1 commit 42ceb8bCopy full SHA for 42ceb8b
src/vmm/src/arch/x86_64/xstate.rs
@@ -72,7 +72,7 @@ fn get_supported_xfeatures() -> Result<Option<u64>, std::io::Error> {
72
Ok(()) => Ok(Some(supported_xfeatures)),
73
// EINVAL is returned if the dynamic XSTATE feature enabling is not supported (e.g. kernel
74
// version prior to v5.17).
75
- // https://github.com/torvalds/linux/commit/980fe2fddcff21937c93532b4597c8ea450346c1
+ // https://github.com/torvalds/linux/commit/db8268df0983adc2bb1fb48c9e5f7bfbb5f617f3
76
Err(err) if err.raw_os_error() == Some(libc::EINVAL) => Ok(None),
77
Err(err) => Err(err),
78
}
0 commit comments