mirror of
https://gitlab.com/libvirt/libvirt.git
synced 2025-01-17 06:03: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.
6 lines
157 B
XML
6 lines
157 B
XML
<cpu match='exact'>
|
|
<model fallback='allow'>Opteron_G2</model>
|
|
<feature policy='disable' name='svm'/>
|
|
<feature policy='disable' name='rdtscp'/>
|
|
</cpu>
|