mirror of
https://github.com/qemu/qemu.git
synced 2024-11-28 06:13:46 +08:00
migration: Change name of live migration thread
Change the name of live migration thread from 'migration' to 'live_migration' to identify it clearly. 'migration' is a generic word and kernel also has tasks for process migration with the name 'migration/cpu#'. Signed-off-by: Pankaj Gupta <pagupta@redhat.com> Message-Id: <1485178976-15225-1-git-send-email-pagupta@redhat.com> Reviewed-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com> Reviewed-by: Amit Shah <amit.shah@redhat.com> Signed-off-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
This commit is contained in:
parent
1d2acc3162
commit
009fad7f4c
@ -2024,7 +2024,7 @@ void migrate_fd_connect(MigrationState *s)
|
||||
}
|
||||
|
||||
migrate_compress_threads_create();
|
||||
qemu_thread_create(&s->thread, "migration", migration_thread, s,
|
||||
qemu_thread_create(&s->thread, "live_migration", migration_thread, s,
|
||||
QEMU_THREAD_JOINABLE);
|
||||
s->migration_thread_running = true;
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user