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:
Cole Robinson 2011-03-24 14:53:45 -04:00
parent 6c070cea3b
commit 671df1651a
1 changed files with 2 additions and 1 deletions

View File

@ -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