domain: Don't change CPU vendor if model didn't change
Since we don't expose vendor in the UI and the cpu_map.xml file isn't exhaustive with specifying vendor
This commit is contained in:
parent
6c070cea3b
commit
671df1651a
|
@ -317,10 +317,11 @@ class vmmDomainBase(vmmLibvirtObject):
|
|||
def change(guest):
|
||||
if from_host:
|
||||
guest.cpu.copy_host_cpu()
|
||||
else:
|
||||
elif guest.cpu.model != model:
|
||||
# Since we don't expose this in the UI, have host value trump
|
||||
# caps value
|
||||
guest.cpu.vendor = vendor
|
||||
|
||||
guest.cpu.model = model or None
|
||||
|
||||
# Sync feature lists
|
||||
|
|
Loading…
Reference in New Issue