summaryrefslogtreecommitdiffstats
path: root/include/migration
diff options
context:
space:
mode:
authorZhang Chen2019-04-26 11:07:28 +0200
committerDr. David Alan Gilbert2019-05-14 18:33:35 +0200
commitc0913d1dfd0456a54f412a63c60659b72eb7093b (patch)
tree8525cb8f881f92a69aa0baea00ab0b43b9d44aff /include/migration
parentmigration: savevm: fix error code with migration blockers (diff)
downloadqemu-c0913d1dfd0456a54f412a63c60659b72eb7093b.tar.gz
qemu-c0913d1dfd0456a54f412a63c60659b72eb7093b.tar.xz
qemu-c0913d1dfd0456a54f412a63c60659b72eb7093b.zip
migration/colo.c: Remove redundant input parameter
The colo_do_failover no need the input parameter. Signed-off-by: Zhang Chen <chen.zhang@intel.com> Message-Id: <20190426090730.2691-2-chen.zhang@intel.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'include/migration')
-rw-r--r--include/migration/colo.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/include/migration/colo.h b/include/migration/colo.h
index 99ce17aca7..ddebe0ad27 100644
--- a/include/migration/colo.h
+++ b/include/migration/colo.h
@@ -37,7 +37,7 @@ bool migration_incoming_in_colo_state(void);
COLOMode get_colo_mode(void);
/* failover */
-void colo_do_failover(MigrationState *s);
+void colo_do_failover(void);
void colo_checkpoint_notify(void *opaque);
#endif