[libvirt] [PATCH 6/7] Introduce qemuDomainMachineIsVirt

Peter Krempa pkrempa at redhat.com
Tue May 3 11:05:09 UTC 2016


On Tue, May 03, 2016 at 12:47:26 +0200, Ján Tomko wrote:
> Use it everywhere except for virQEMUCapsFillDomainFeatureGICCaps.
> ---
>  src/qemu/qemu_capabilities.c   |  3 +--
>  src/qemu/qemu_command.c        |  3 +--
>  src/qemu/qemu_domain.c         | 18 +++++++++++-------
>  src/qemu/qemu_domain.h         |  1 +
>  src/qemu/qemu_domain_address.c |  6 ++----
>  5 files changed, 16 insertions(+), 15 deletions(-)
> 



> @@ -4653,6 +4649,14 @@ qemuDomainMachineIsS390CCW(const virDomainDef *def)
>  }
>  
>  
> +bool
> +qemuDomainMachineIsVirt(const virDomainDef *def)
> +{
> +    return STREQ(def->os.machine, "virt") ||
> +           STRPREFIX(def->os.machine, "virt-");

This could be transcribed as:
strcmp(def->os.machine, "virt") ||
strncmp(def->os.machine, "virt-", strlen("virt-")) so
"STRPREFIX(def->os.machine, "virt")" should be equivalent.

ACK regrardless.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 819 bytes
Desc: Digital signature
URL: <http://listman.redhat.com/archives/libvir-list/attachments/20160503/05dd2c47/attachment-0001.sig>


More information about the libvir-list mailing list