Skip to content

Commit

Permalink
migration: move migration thread init code to migrate_fd_put_ready
Browse files Browse the repository at this point in the history
This way everything related with migration is run on the migration
thread and no locking is needed.

Signed-off-by: Juan Quintela <quintela@redhat.com>
  • Loading branch information
Juan Quintela committed Dec 20, 2012
1 parent edfa1af commit 766bd17
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 12 deletions.
1 change: 1 addition & 0 deletions include/migration/migration.h
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ struct MigrationState
bool enabled_capabilities[MIGRATION_CAPABILITY_MAX];
int64_t xbzrle_cache_size;
bool complete;
bool first_time;
};

void process_incoming_migration(QEMUFile *f);
Expand Down
29 changes: 17 additions & 12 deletions migration.c
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@
#include "block/block.h"
#include "qemu/sockets.h"
#include "migration/block.h"
#include "qemu/thread.h"
#include "qmp-commands.h"

//#define DEBUG_MIGRATION
Expand Down Expand Up @@ -339,6 +340,16 @@ void migrate_fd_put_ready(MigrationState *s)
DPRINTF("put_ready returning because of non-active state\n");
return;
}
if (s->first_time) {
s->first_time = false;
DPRINTF("beginning savevm\n");
ret = qemu_savevm_state_begin(s->file, &s->params);
if (ret < 0) {
DPRINTF("failed, %d\n", ret);
migrate_fd_error(s);
return;
}
}

DPRINTF("iterate\n");
ret = qemu_savevm_state_iterate(s->file);
Expand All @@ -351,7 +362,11 @@ void migrate_fd_put_ready(MigrationState *s)
DPRINTF("done iterating\n");
start_time = qemu_get_clock_ms(rt_clock);
qemu_system_wakeup_request(QEMU_WAKEUP_REASON_OTHER);
vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
if (old_vm_running) {
vm_stop(RUN_STATE_FINISH_MIGRATE);
} else {
vm_stop_force_state(RUN_STATE_FINISH_MIGRATE);
}

if (qemu_savevm_state_complete(s->file) < 0) {
migrate_fd_error(s);
Expand Down Expand Up @@ -445,19 +460,9 @@ bool migration_has_failed(MigrationState *s)

void migrate_fd_connect(MigrationState *s)
{
int ret;

s->state = MIG_STATE_ACTIVE;
s->first_time = true;
qemu_fopen_ops_buffered(s);

DPRINTF("beginning savevm\n");
ret = qemu_savevm_state_begin(s->file, &s->params);
if (ret < 0) {
DPRINTF("failed, %d\n", ret);
migrate_fd_error(s);
return;
}
migrate_fd_put_ready(s);
}

static MigrationState *migrate_init(const MigrationParams *params)
Expand Down

0 comments on commit 766bd17

Please sign in to comment.