mirror of https://gitee.com/openkylin/libvirt.git
cputest: Disable TSX on broken models
Commit v3.1.0-26-gd60012b4e started filtering hle and rtm features from broken Intel Haswell CPUs. QEMU implemented similar functionality and thus it doesn't report rtm and hle features as enabled for Core i5-4670T CPU anymore. Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
This commit is contained in:
parent
9b6c01845b
commit
cc033b100c
|
@ -2,5 +2,6 @@
|
|||
<cpudata arch='x86'>
|
||||
<cpuid eax_in='0x00000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x0800c1dc' edx='0xb0600000'/>
|
||||
<cpuid eax_in='0x00000006' ecx_in='0x00' eax='0x00000004' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
||||
<cpuid eax_in='0x00000007' ecx_in='0x00' eax='0x00000000' ebx='0x00000810' ecx='0x00000000' edx='0x00000000'/>
|
||||
<cpuid eax_in='0x80000007' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000000' edx='0x00000100'/>
|
||||
</cpudata>
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
<!-- Features enabled by QEMU -->
|
||||
<cpudata arch='x86'>
|
||||
<cpuid eax_in='0x00000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0xf7fa3223' edx='0x0f8bfbff'/>
|
||||
<cpuid eax_in='0x00000007' ecx_in='0x00' eax='0x00000000' ebx='0x00000fbb' ecx='0x00000000' edx='0x00000000'/>
|
||||
<cpuid eax_in='0x00000007' ecx_in='0x00' eax='0x00000000' ebx='0x000007ab' ecx='0x00000000' edx='0x00000000'/>
|
||||
<cpuid eax_in='0x0000000d' ecx_in='0x01' eax='0x00000001' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
||||
<cpuid eax_in='0x40000001' ecx_in='0x00' eax='0x010000fa' ebx='0x00000000' ecx='0x00000000' edx='0x00000000'/>
|
||||
<cpuid eax_in='0x80000001' ecx_in='0x00' eax='0x00000000' ebx='0x00000000' ecx='0x00000021' edx='0x2c100800'/>
|
||||
|
|
|
@ -5,7 +5,7 @@
|
|||
"props": {
|
||||
"pfthreshold": false,
|
||||
"pku": false,
|
||||
"rtm": true,
|
||||
"rtm": false,
|
||||
"tsc_adjust": true,
|
||||
"tsc-deadline": true,
|
||||
"xstore-en": false,
|
||||
|
@ -69,7 +69,7 @@
|
|||
"avx512-4vnniw": false,
|
||||
"xsave": true,
|
||||
"erms": true,
|
||||
"hle": true,
|
||||
"hle": false,
|
||||
"nodeid_msr": false,
|
||||
"est": false,
|
||||
"svm_lock": false,
|
||||
|
|
Loading…
Reference in New Issue