Skip to content

Commit a6f7129

Browse files
committed
test: Skip MSR 0xE1 in test_cpu_config_dump_vs_actual
The MSR is R/W and guest OS modifies it after boot to control UMWAIT feature. Signed-off-by: Takahiro Itazuri <[email protected]>
1 parent 90103f5 commit a6f7129

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

tests/integration_tests/functional/test_cpu_template_helper.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -188,6 +188,9 @@ def build_cpu_config_dict(cpu_config_path):
188188
0x48,
189189
# MSR_IA32_SMBASE is not accessible outside of System Management Mode.
190190
0x9E,
191+
# MSR_IA32_UMWAIT_CONTROL is R/W MSR that guest OS modifies after boot to
192+
# control UMWAIT feature.
193+
0xE1,
191194
# MSR_IA32_TSX_CTRL is R/W MSR to disable Intel TSX feature as a mitigation
192195
# against TAA vulnerability.
193196
0x122,

0 commit comments

Comments
 (0)