qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 02/23] migration: Catch multiple start commands


From: Jan Kiszka
Subject: [Qemu-devel] [PATCH 02/23] migration: Catch multiple start commands
Date: Mon, 30 Nov 2009 18:21:19 +0100
User-agent: StGIT/0.14.3

Signed-off-by: Jan Kiszka <address@hidden>
---

 migration.c |    8 +++++++-
 1 files changed, 7 insertions(+), 1 deletions(-)

diff --git a/migration.c b/migration.c
index dcde7c3..d7fb756 100644
--- a/migration.c
+++ b/migration.c
@@ -58,7 +58,13 @@ void do_migrate(Monitor *mon, const QDict *qdict, QObject 
**ret_data)
     const char *p;
     int detach = qdict_get_int(qdict, "detach");
     const char *uri = qdict_get_str(qdict, "uri");
-    
+
+    if (current_migration &&
+        current_migration->get_status(current_migration) == MIG_STATE_ACTIVE) {
+        monitor_printf(mon, "migration already in progress\n");
+        return;
+    }
+
     if (strstart(uri, "tcp:", &p))
         s = tcp_start_outgoing_migration(p, max_throttle, detach, 
                                          (int)qdict_get_int(qdict, "blk"), 





reply via email to

[Prev in Thread] Current Thread [Next in Thread]