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

Pavel Hrdina phrdina at redhat.com
Tue Mar 15 13:15:57 UTC 2016


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;
     }
-- 
2.7.2




More information about the libvir-list mailing list