libvirt/src/cpu_map/x86_pentiumpro.xml
Jiri Denemark f4914045c2 cpu_map: Add <decode> element to x86 CPU model definitions
The element specifies whether a particular CPU model can be used when
creating a CPU definition from raw CPUID/MSR data. The @host attribute
determines whether the CPU model can be used (host='on') for creating
CPU definition for host capabilities. Usability of the model for domain
capabilities and host-model CPU definitions is controlled by the @guest
attribute.

Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Reviewed-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
Tested-by: Christian Ehrhardt <christian.ehrhardt@canonical.com>
2020-03-25 22:27:39 +01:00

23 lines
534 B
XML

<cpus>
<model name='pentiumpro'>
<decode host='on' guest='on'/>
<feature name='apic'/>
<feature name='cmov'/>
<feature name='cx8'/>
<feature name='de'/>
<feature name='fpu'/>
<feature name='fxsr'/>
<feature name='mce'/>
<feature name='mmx'/>
<feature name='msr'/>
<feature name='pae'/>
<feature name='pat'/>
<feature name='pge'/>
<feature name='pse'/>
<feature name='sep'/>
<feature name='sse'/>
<feature name='sse2'/>
<feature name='tsc'/>
</model>
</cpus>