qemu-devel
[Top][All Lists]
Advanced

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

[Qemu-devel] [PATCH 08/22] migration: Check that migration is active bef


From: Juan Quintela
Subject: [Qemu-devel] [PATCH 08/22] migration: Check that migration is active before cancel it
Date: Wed, 23 Feb 2011 01:44:22 +0100

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

diff --git a/migration.c b/migration.c
index 397a0b9..55f58c8 100644
--- a/migration.c
+++ b/migration.c
@@ -138,7 +138,7 @@ 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.4




reply via email to

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