]> git.proxmox.com Git - mirror_qemu.git/commitdiff
migration: Trace event and migration event are different things
authorJuan Quintela <quintela@redhat.com>
Wed, 8 Jul 2015 11:58:27 +0000 (13:58 +0200)
committerJuan Quintela <quintela@redhat.com>
Wed, 15 Jul 2015 07:07:54 +0000 (09:07 +0200)
We can want the trace event even without migration events enabled.

Reported-by: Wen Congyang <ghostwcy@gmail.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
migration/migration.c

index ede432eae622c319387ef5a6eaea8e6176a4222b..ba82ff6bd1f382f8dd0a3307ee6ad6cd656f70c1 100644 (file)
@@ -216,7 +216,6 @@ static void migrate_generate_event(int new_state)
 {
     if (migrate_use_events()) {
         qapi_event_send_migration(new_state, &error_abort);
-        trace_migrate_set_state(new_state);
     }
 }
 
@@ -528,6 +527,7 @@ void qmp_migrate_set_parameters(bool has_compress_level,
 static void migrate_set_state(MigrationState *s, int old_state, int new_state)
 {
     if (atomic_cmpxchg(&s->state, old_state, new_state) == old_state) {
+        trace_migrate_set_state(new_state);
         migrate_generate_event(new_state);
     }
 }