mirror of
https://github.com/yuzu-emu/unicorn.git
synced 2024-12-23 10:05:40 +00:00
target/i386: add MDS-NO feature
Microarchitectural Data Sampling is a hardware vulnerability which allows unprivileged speculative access to data which is available in various CPU internal buffers. Some Intel processors use the ARCH_CAP_MDS_NO bit in the IA32_ARCH_CAPABILITIES MSR to report that they are not vulnerable, make it available to guests. Backports commit 20140a82c67467f53814ca197403d5e1b561a5e5 from qemu
This commit is contained in:
parent
a4f2517f46
commit
1341e371a8
|
@ -1198,7 +1198,7 @@ static FeatureWordInfo feature_word_info[FEATURE_WORDS] = {
|
|||
.type = MSR_FEATURE_WORD,
|
||||
.feat_names = {
|
||||
"rdctl-no", "ibrs-all", "rsba", "skip-l1dfl-vmentry",
|
||||
"ssb-no", NULL, NULL, NULL,
|
||||
"ssb-no", "mds-no", NULL, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
NULL, NULL, NULL, NULL,
|
||||
|
|
Loading…
Reference in a new issue