mirror of https://gitee.com/openkylin/libvirt.git
Validate required CPU features even for host-passthrough
Commit adff345
allowed enabling features with -cpu host
without ajdusting the validity checks on domain startup
and migration.
This commit is contained in:
parent
5729746543
commit
76fd798191
|
@ -2322,7 +2322,7 @@ qemuMigrationIsAllowed(virQEMUDriverPtr driver,
|
|||
if (!qemuMigrationIsAllowedHostdev(vm->def))
|
||||
return false;
|
||||
|
||||
if (vm->def->cpu && vm->def->cpu->mode != VIR_CPU_MODE_HOST_PASSTHROUGH) {
|
||||
if (vm->def->cpu) {
|
||||
for (i = 0; i < vm->def->cpu->nfeatures; i++) {
|
||||
virCPUFeatureDefPtr feature = &vm->def->cpu->features[i];
|
||||
|
||||
|
|
|
@ -3819,7 +3819,7 @@ qemuProcessVerifyGuestCPU(virQEMUDriverPtr driver,
|
|||
}
|
||||
}
|
||||
|
||||
if (def->cpu && def->cpu->mode != VIR_CPU_MODE_HOST_PASSTHROUGH) {
|
||||
if (def->cpu) {
|
||||
for (i = 0; i < def->cpu->nfeatures; i++) {
|
||||
virCPUFeatureDefPtr feature = &def->cpu->features[i];
|
||||
|
||||
|
|
Loading…
Reference in New Issue