mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-12-23 06:05:27 +00:00
69e4eb047f
The CPU contains the updated microcode for CVE-2017-5715. The *-guest.xml and *-json.xml CPU definitions use Skylake-Client CPU model rather than Broadwell. This is similar to Xeon-E5-2650-v4 and it is caused by our CPU model selection code when no model matches the CPU signature (family + model). We'd need to maintain a complete list of CPU signatures for our CPU models to fix this. Signed-off-by: Jiri Denemark <jdenemar@redhat.com> Reviewed-by: Pavel Hrdina <phrdina@redhat.com>
13 lines
474 B
XML
13 lines
474 B
XML
<cpu mode='custom' match='exact'>
|
|
<model fallback='forbid'>Skylake-Client</model>
|
|
<vendor>Intel</vendor>
|
|
<feature policy='require' name='ss'/>
|
|
<feature policy='require' name='hypervisor'/>
|
|
<feature policy='require' name='tsc_adjust'/>
|
|
<feature policy='require' name='spec-ctrl'/>
|
|
<feature policy='require' name='pdpe1gb'/>
|
|
<feature policy='disable' name='mpx'/>
|
|
<feature policy='disable' name='xsavec'/>
|
|
<feature policy='disable' name='xgetbv1'/>
|
|
</cpu>
|