diff options
author | Pankaj Gupta | 2017-01-23 14:42:56 +0100 |
---|---|---|
committer | Dr. David Alan Gilbert | 2017-01-24 19:00:31 +0100 |
commit | 009fad7f4ccbbf3ea115e9196edde88c0a17c1c2 (patch) | |
tree | ef13dfd744066b044993ea0e37a69e33b54c5c7b | |
parent | migration: re-active images while migration been canceled after inactive them (diff) | |
download | qemu-009fad7f4ccbbf3ea115e9196edde88c0a17c1c2.tar.gz qemu-009fad7f4ccbbf3ea115e9196edde88c0a17c1c2.tar.xz qemu-009fad7f4ccbbf3ea115e9196edde88c0a17c1c2.zip |
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>
-rw-r--r-- | migration/migration.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/migration.c b/migration/migration.c index f8a4500cd1..2766d2f586 100644 --- a/migration/migration.c +++ b/migration/migration.c @@ -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; } |