[libvirt] [PATCH 4/4] qemu: Use stricter checks in virQEMUCapsFillDomainDeviceDiskCaps()

Laine Stump laine at laine.org
Thu Jun 23 18:17:56 UTC 2016


On 06/23/2016 04:40 AM, Andrea Bolognani wrote:
> Unfortunately, we can't just call qemuDomainMachineIsPSeries()
> here, because we don't have a virDomainDef instance; that said,
> the open-coded check should match said function as closely as
> possible.

Maybe you could make a separate function called something like 
"qemuMachineIsPSeries() that took the arch and machinetype args 
separately, then call that new function from 
qemuDomainMachineIsPSeries() and from the place you've patched below. 
That way there would be a single location for the logic, and no need to 
worry about whether or not it matched in the future.

Either way is fine with me though, since I doubt this will change. ACK.
> ---
>   src/qemu/qemu_capabilities.c | 6 ++++--
>   1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c
> index 5fcd744..01466fc 100644
> --- a/src/qemu/qemu_capabilities.c
> +++ b/src/qemu/qemu_capabilities.c
> @@ -4139,7 +4139,8 @@ virQEMUCapsFillDomainDeviceDiskCaps(virQEMUCapsPtr qemuCaps,
>                                VIR_DOMAIN_DISK_DEVICE_LUN);
>   
>       /* PowerPC pseries based VMs do not support floppy device */
> -    if (!(ARCH_IS_PPC64(qemuCaps->arch) && STRPREFIX(machine, "pseries")))
> +    if (!ARCH_IS_PPC64(qemuCaps->arch) ||
> +        (STRNEQ(machine, "pseries") && !STRPREFIX(machine, "pseries-")))
>           VIR_DOMAIN_CAPS_ENUM_SET(disk->diskDevice, VIR_DOMAIN_DISK_DEVICE_FLOPPY);
>   
>       VIR_DOMAIN_CAPS_ENUM_SET(disk->bus,
> @@ -4149,7 +4150,8 @@ virQEMUCapsFillDomainDeviceDiskCaps(virQEMUCapsPtr qemuCaps,
>                                /* VIR_DOMAIN_DISK_BUS_SD */);
>   
>       /* PowerPC pseries based VMs do not support floppy device */
> -    if (!(ARCH_IS_PPC64(qemuCaps->arch) && STRPREFIX(machine, "pseries")))
> +    if (!ARCH_IS_PPC64(qemuCaps->arch) ||
> +        (STRNEQ(machine, "pseries") && !STRPREFIX(machine, "pseries-")))
>           VIR_DOMAIN_CAPS_ENUM_SET(disk->bus, VIR_DOMAIN_DISK_BUS_FDC);
>   
>       if (virQEMUCapsGet(qemuCaps, QEMU_CAPS_DEVICE_USB_STORAGE))





More information about the libvir-list mailing list