[libvirt PATCH v2] remote: fix driver name check for libxl driver

Jim Fehlig jfehlig at suse.com
Mon May 4 18:11:06 UTC 2020


On 5/4/20 11:45 AM, Daniel P. Berrangé wrote:
> The virConnectGetType() returns "Xen" for libxl, not "LIBXL".
> 
> This prevents users opening a connection to the libxl driver when using
> the modular daemons.
> 
> Signed-off-by: Daniel P. Berrangé <berrange at redhat.com>

Reviewed-by: Jim Fehlig <jfehlig at suse.com>

Regards,
Jim

> ---
>   src/remote/remote_daemon_dispatch.c | 2 +-
>   1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/remote/remote_daemon_dispatch.c b/src/remote/remote_daemon_dispatch.c
> index 5d1c6971c0..6f67d2fb30 100644
> --- a/src/remote/remote_daemon_dispatch.c
> +++ b/src/remote/remote_daemon_dispatch.c
> @@ -2111,7 +2111,7 @@ remoteDispatchConnectOpen(virNetServerPtr server G_GNUC_UNUSED,
>   
>       VIR_DEBUG("Primary driver type is '%s'", type);
>       if (STREQ(type, "QEMU") ||
> -        STREQ(type, "LIBXL") ||
> +        STREQ(type, "Xen") ||
>           STREQ(type, "LXC") ||
>           STREQ(type, "VBOX") ||
>           STREQ(type, "bhyve") ||
> 





More information about the libvir-list mailing list