qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 3/7] migration: Check that migration is active befor


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 3/7] migration: Check that migration is active before cancel it
Date: Tue, 20 Sep 2011 15:24:42 +0200

Signed-off-by: Juan Quintela <address@hidden>
---
 migration.c |    4 ++--
 1 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/migration.c b/migration.c
index 15d001e..c56d29c 100644
--- a/migration.c
+++ b/migration.c
@@ -132,9 +132,9 @@ int do_migrate_cancel(Monitor *mon, const QDict *qdict, 
QObject **ret_data)
 {
     MigrationState *s = current_migration;

-    if (s)
+    if (s && s->get_status(s) == MIG_STATE_ACTIVE) {
         s->cancel(s);
-
+    }
     return 0;
 }

-- 
1.7.6.2




reply via email to

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