[libvirt PATCH 09/20] qemu: Introduce virQEMUCapsTypeIsAccelerated

Daniel P. Berrangé berrange at redhat.com
Fri Jan 21 16:58:53 UTC 2022


On Mon, Jan 17, 2022 at 11:52:49AM +0100, Andrea Bolognani wrote:
> From: Roman Bolshakov <r.bolshakov at yadro.com>
> 
> It replaces hardcoded checks for KVM. It'll be cleaner to use
> the function once multiple accelerators are supported in the
> QEMU driver.
> 
> Explicit KVM domain checks should be done only when a feature is
> available only for KVM.
> 
> Signed-off-by: Roman Bolshakov <r.bolshakov at yadro.com>
> Signed-off-by: Andrea Bolognani <abologna at redhat.com>
> Tested-by: Brad Laue <brad at brad-x.com>
> ---
>  src/qemu/qemu_capabilities.c | 19 +++++++++++++------
>  1 file changed, 13 insertions(+), 6 deletions(-)
> 
> diff --git a/src/qemu/qemu_capabilities.c b/src/qemu/qemu_capabilities.c
> index 8d3e8b3afb..85dd36e274 100644
> --- a/src/qemu/qemu_capabilities.c
> +++ b/src/qemu/qemu_capabilities.c
> @@ -803,6 +803,13 @@ virQEMUCapsAccelStr(virDomainVirtType type)
>  }
>  
>  
> +static bool
> +virQEMUCapsTypeIsAccelerated(virDomainVirtType type)
> +{
> +    return type == VIR_DOMAIN_VIRT_KVM;
> +}

 type !=  VIR_DOMAIN_VIRT_QEMU

and then we'll never need to change it again when adding more
hardware virt types.


Regards,
Daniel
-- 
|: https://berrange.com      -o-    https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org         -o-            https://fstop138.berrange.com :|
|: https://entangle-photo.org    -o-    https://www.instagram.com/dberrange :|




More information about the libvir-list mailing list