cpu: Check blockers in virCPUCompareUnusable only if they exist

virCPUCompareUnusable can be called with blockers == NULL in case the
CPU model itself is usable (i.e., QEMU reports an empty list of
blockers), but the CPU definition contains some additional features
which have to be checked.

Fixes: v10.8.0-129-g5f8abbb7d0
Reported-by: Han Han <hhan@redhat.com>
Signed-off-by: Jiri Denemark <jdenemar@redhat.com>
Tested-by: Han Han <hhan@redhat.com>
Reviewed-by: Peter Krempa <pkrempa@redhat.com>
This commit is contained in:
Jiri Denemark 2024-11-27 08:34:52 +01:00
parent 444f45135a
commit c0b6774d50

View File

@ -201,11 +201,13 @@ virCPUCompareUnusable(virArch arch,
char **blocker; char **blocker;
size_t i; size_t i;
for (blocker = blockers; *blocker; blocker++) { if (blockers) {
if (!(feat = virCPUDefFindFeature(cpu, *blocker)) || for (blocker = blockers; *blocker; blocker++) {
feat->policy != VIR_CPU_FEATURE_DISABLE) { if (!(feat = virCPUDefFindFeature(cpu, *blocker)) ||
virBufferAddStr(&features, *blocker); feat->policy != VIR_CPU_FEATURE_DISABLE) {
virBufferAddLit(&features, ", "); virBufferAddStr(&features, *blocker);
virBufferAddLit(&features, ", ");
}
} }
} }