mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-11 09:17:52 +03:00
a6f88cbd2d
In case a hypervisor doesn't support the exact CPU model requested by a domain XML, we automatically fallback to a closest CPU model the hypervisor supports (and make sure we add/remove any additional features if needed). This patch adds 'fallback' attribute to model element, which can be used to disable this automatic fallback.
12 lines
387 B
XML
12 lines
387 B
XML
<cpu match='exact'>
|
|
<arch>x86_64</arch>
|
|
<model fallback='allow'>Penryn</model>
|
|
<feature policy='require' name='svm'/>
|
|
<feature policy='require' name='3dnowext'/>
|
|
<feature policy='require' name='dca'/>
|
|
<feature policy='require' name='xtpr'/>
|
|
<feature policy='require' name='monitor'/>
|
|
<feature policy='require' name='pbe'/>
|
|
<feature policy='disable' name='sse'/>
|
|
</cpu>
|