diff options
author | Luiz Capitulino <lcapitulino@redhat.com> | 2011-07-29 15:15:00 -0300 |
---|---|---|
committer | Luiz Capitulino <lcapitulino@redhat.com> | 2011-09-15 16:39:32 -0300 |
commit | 1bcef683bf840a928d633755031ac572d5fdb851 (patch) | |
tree | 44865474731664ce14632dac86a0ccaf003e0ceb | |
parent | 5db9d4d18612bd5852bf663a40cf7bcf1ddc1b03 (diff) | |
download | qemu-1bcef683bf840a928d633755031ac572d5fdb851.tar.gz qemu-1bcef683bf840a928d633755031ac572d5fdb851.tar.bz2 qemu-1bcef683bf840a928d633755031ac572d5fdb851.zip |
Drop the incoming_expected global variable
Test against RSTATE_IN_MIGRATE instead.
Please, note that the RSTATE_IN_MIGRATE state is only set when all the
initial VM setup is done, while 'incoming_expected' was set right in
the beginning when parsing command-line options. Shouldn't be a problem
as far as I could check.
Signed-off-by: Luiz Capitulino <lcapitulino@redhat.com>
-rw-r--r-- | migration.c | 2 | ||||
-rw-r--r-- | monitor.c | 2 | ||||
-rw-r--r-- | vl.c | 2 |
3 files changed, 1 insertions, 5 deletions
diff --git a/migration.c b/migration.c index f2499cfdd4..a63e2a21af 100644 --- a/migration.c +++ b/migration.c @@ -70,8 +70,6 @@ void process_incoming_migration(QEMUFile *f) qemu_announce_self(); DPRINTF("successfully loaded vm state\n"); - incoming_expected = false; - if (autostart) { vm_start(); } else { @@ -1311,7 +1311,7 @@ static int do_cont(Monitor *mon, const QDict *qdict, QObject **ret_data) { struct bdrv_iterate_context context = { mon, 0 }; - if (incoming_expected) { + if (runstate_check(RSTATE_IN_MIGRATE)) { qerror_report(QERR_MIGRATION_EXPECTED); return -1; } @@ -187,7 +187,6 @@ int nb_nics; NICInfo nd_table[MAX_NICS]; int vm_running; int autostart; -int incoming_expected; /* Started with -incoming and waiting for incoming */ static int rtc_utc = 1; static int rtc_date_offset = -1; /* -1 means no change */ QEMUClock *rtc_clock; @@ -3041,7 +3040,6 @@ int main(int argc, char **argv, char **envp) break; case QEMU_OPTION_incoming: incoming = optarg; - incoming_expected = true; break; case QEMU_OPTION_nodefaults: default_serial = 0; |