mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2024-11-03 20:01:16 +00:00
ef00a05e51
Recently (or not so recently) QEMU added the kvm32 and kvm64 architectures, representing a least common denominator of all hosts that can run KVM. Add them to the machine map. Also, some features that TCG supports were added to qemu64. Add them to the cpu_map.xml whenever KVM is guaranteed to support those. We still have to leave some out, because they would not be available to guests running on older hosts. Signed-off-by: Paolo Bonzini <pbonzini@redhat.com>
14 lines
492 B
XML
14 lines
492 B
XML
<cpu mode='custom' match='exact'>
|
|
<arch>x86_64</arch>
|
|
<model fallback='allow'>qemu64</model>
|
|
<feature policy='require' name='lahf_lm'/>
|
|
<feature policy='require' name='3dnowext'/>
|
|
<feature policy='require' name='sse4.1'/>
|
|
<feature policy='require' name='dca'/>
|
|
<feature policy='require' name='xtpr'/>
|
|
<feature policy='require' name='ssse3'/>
|
|
<feature policy='require' name='monitor'/>
|
|
<feature policy='require' name='pbe'/>
|
|
<feature policy='disable' name='sse'/>
|
|
</cpu>
|