43 lines
1.6 KiB
Diff
43 lines
1.6 KiB
Diff
|
|
From 26ddb3428182503b28ac87cad7543eb241a9d353 Mon Sep 17 00:00:00 2001
|
||
|
|
From: Xiaoyao Li <xiaoyao.li@intel.com>
|
||
|
|
Date: Mon, 15 Jan 2024 04:13:25 -0500
|
||
|
|
Subject: [PATCH] i386/cpu: Mask with XCR0/XSS mask for FEAT_XSAVE_XCR0_HI and
|
||
|
|
FEAT_XSAVE_XSS_HI leafs
|
||
|
|
|
||
|
|
commit a11a365159b944e05be76f3ec3b98c8b38cb70fd upstream.
|
||
|
|
|
||
|
|
The value of FEAT_XSAVE_XCR0_HI leaf and FEAT_XSAVE_XSS_HI leaf also
|
||
|
|
need to be masked by XCR0 and XSS mask respectively, to make it
|
||
|
|
logically correct.
|
||
|
|
|
||
|
|
Fixes: 301e90675c3f ("target/i386: Enable support for XSAVES based features")
|
||
|
|
Signed-off-by: Xiaoyao Li <xiaoyao.li@intel.com>
|
||
|
|
Reviewed-by: Yang Weijiang <weijiang.yang@intel.com>
|
||
|
|
Message-ID: <20240115091325.1904229-3-xiaoyao.li@intel.com>
|
||
|
|
Cc: qemu-stable@nongnu.org
|
||
|
|
Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
|
||
|
|
Signed-off-by: Jason Zeng <jason.zeng@intel.com>
|
||
|
|
---
|
||
|
|
target/i386/cpu.c | 4 ++--
|
||
|
|
1 file changed, 2 insertions(+), 2 deletions(-)
|
||
|
|
|
||
|
|
diff --git a/target/i386/cpu.c b/target/i386/cpu.c
|
||
|
|
index 8b9ef218d3..a66e5a357b 100644
|
||
|
|
--- a/target/i386/cpu.c
|
||
|
|
+++ b/target/i386/cpu.c
|
||
|
|
@@ -6947,9 +6947,9 @@ static void x86_cpu_enable_xsave_components(X86CPU *cpu)
|
||
|
|
}
|
||
|
|
|
||
|
|
env->features[FEAT_XSAVE_XCR0_LO] = mask & CPUID_XSTATE_XCR0_MASK;
|
||
|
|
- env->features[FEAT_XSAVE_XCR0_HI] = mask >> 32;
|
||
|
|
+ env->features[FEAT_XSAVE_XCR0_HI] = (mask & CPUID_XSTATE_XCR0_MASK) >> 32;
|
||
|
|
env->features[FEAT_XSAVE_XSS_LO] = mask & CPUID_XSTATE_XSS_MASK;
|
||
|
|
- env->features[FEAT_XSAVE_XSS_HI] = mask >> 32;
|
||
|
|
+ env->features[FEAT_XSAVE_XSS_HI] = (mask & CPUID_XSTATE_XSS_MASK) >> 32;
|
||
|
|
}
|
||
|
|
|
||
|
|
/***** Steps involved on loading and filtering CPUID data
|
||
|
|
--
|
||
|
|
2.27.0
|
||
|
|
|