diff mbox series

[v1,1/3] target/i386: Remove FRED dependency on WRMSRNS

Message ID 20250103084827.1820007-2-xin@zytor.com (mailing list archive)
State New
Headers show
Series target/i386: Add the immediate form MSR access instruction support | expand

Commit Message

Xin Li (Intel) Jan. 3, 2025, 8:48 a.m. UTC
WRMSRNS doesn't become a required feature for FERD, and Linux has
removed the dependency, as such remove it from Qemu.

Signed-off-by: Xin Li (Intel) <xin@zytor.com>
---
 target/i386/cpu.c | 4 ----
 1 file changed, 4 deletions(-)
diff mbox series

Patch

diff --git a/target/i386/cpu.c b/target/i386/cpu.c
index 0b639848cd..8a1223acb3 100644
--- a/target/i386/cpu.c
+++ b/target/i386/cpu.c
@@ -1771,10 +1771,6 @@  static FeatureDep feature_dependencies[] = {
         .from = { FEAT_7_1_EAX,             CPUID_7_1_EAX_LKGS },
         .to = { FEAT_7_1_EAX,               CPUID_7_1_EAX_FRED },
     },
-    {
-        .from = { FEAT_7_1_EAX,             CPUID_7_1_EAX_WRMSRNS },
-        .to = { FEAT_7_1_EAX,               CPUID_7_1_EAX_FRED },
-    },
     {
         .from = { FEAT_7_0_EBX,             CPUID_7_0_EBX_SGX },
         .to = { FEAT_7_0_ECX,               CPUID_7_0_ECX_SGX_LC },