]> Git Repo - qemu.git/commitdiff
colo: claim in find_and_check_chardev
authorMarc-André Lureau <[email protected]>
Sat, 22 Oct 2016 09:52:54 +0000 (12:52 +0300)
committerPaolo Bonzini <[email protected]>
Mon, 24 Oct 2016 13:27:20 +0000 (15:27 +0200)
This factors out claiming of chardev, and changes the call to
non-fatal to return an error like the rest of the chardev checks.

Signed-off-by: Marc-André Lureau <[email protected]>
Message-Id: <20161022095318[email protected]>
Signed-off-by: Paolo Bonzini <[email protected]>
net/colo-compare.c

index efcd15e9aebd68895e67881b6dd5a377a8942ccf..b11546520b505fc1e88b9766b55ea228f2ddacdf 100644 (file)
@@ -589,6 +589,13 @@ static int find_and_check_chardev(CharDriverState **chr,
                    chr_name);
         return 1;
     }
+
+    if (qemu_chr_fe_claim(*chr) < 0) {
+        error_setg(errp, "chardev \"%s\" cannot be claimed",
+                   chr_name);
+        return 1;
+    }
+
     return 0;
 }
 
@@ -646,12 +653,6 @@ static void colo_compare_complete(UserCreatable *uc, Error **errp)
         return;
     }
 
-    qemu_chr_fe_claim_no_fail(s->chr_pri_in.chr);
-
-    qemu_chr_fe_claim_no_fail(s->chr_sec_in.chr);
-
-    qemu_chr_fe_claim_no_fail(s->chr_out.chr);
-
     net_socket_rs_init(&s->pri_rs, compare_pri_rs_finalize);
     net_socket_rs_init(&s->sec_rs, compare_sec_rs_finalize);
 
This page took 0.024846 seconds and 4 git commands to generate.