[libvirt] [PATCH 01/12] qemu_process: check for correct return value while starting domain

Jiri Denemark jdenemar at redhat.com
Tue Mar 22 08:21:14 UTC 2016


On Tue, Mar 15, 2016 at 14:15:57 +0100, Pavel Hrdina wrote:
> Function qemuProcessLaunch returns '-2' in case there was an error and
> we need to cleanup labels.
> 
> Signed-off-by: Pavel Hrdina <phrdina at redhat.com>
> ---
>  src/qemu/qemu_process.c | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/src/qemu/qemu_process.c b/src/qemu/qemu_process.c
> index 14e4629..3c496cb 100644
> --- a/src/qemu/qemu_process.c
> +++ b/src/qemu/qemu_process.c
> @@ -5405,7 +5405,7 @@ qemuProcessStart(virConnectPtr conn,
>  
>      if ((rv = qemuProcessLaunch(conn, driver, vm, asyncJob, incoming,
>                                  snapshot, vmop, flags)) < 0) {
> -        if (rv == -1)
> +        if (rv == -2)
>              relabel = true;
>          goto stop;
>      }

Oops. ACK.

Jirka




More information about the libvir-list mailing list