From: Liang Li Date: Wed, 27 Jan 2016 06:11:05 +0000 (+0800) Subject: migration: remove useless code. X-Git-Url: http://git.maquefel.me/?a=commitdiff_plain;h=b33dc45c3f24961eadc84cd21ef17bab8e894e6f;p=qemu.git migration: remove useless code. Since 's->state' will be set in migrate_init(), there is no need to set it before calling migrate_init(). The code and the related comments can be removed. Signed-off-by: Liang Li Reviewed-by: Fam Zheng Reviewed-by: Dr. David Alan Gilbert Reviewed-by: Amit Shah Message-Id: <1453875065-24326-1-git-send-email-liang.z.li@intel.com> Signed-off-by: Amit Shah --- diff --git a/migration/migration.c b/migration/migration.c index 4971722ce4..82604d240e 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -1007,12 +1007,6 @@ void qmp_migrate(const char *uri, bool has_blk, bool blk, return; } - /* We are starting a new migration, so we want to start in a clean - state. This change is only needed if previous migration - failed/was cancelled. We don't use migrate_set_state() because - we are setting the initial state, not changing it. */ - s->state = MIGRATION_STATUS_NONE; - s = migrate_init(¶ms); if (strstart(uri, "tcp:", &p)) {