aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorPrasad Pandit <pjp@fedoraproject.org>2024-11-27 16:45:28 +0530
committerPeter Xu <peterx@redhat.com>2024-12-02 14:20:44 -0500
commit3b83e663611c628bb04ae84a4f7ee49bdb68138b (patch)
tree20b90df0b9e9badebb09324f3111068a7c7ffa3d
parenteb22a064455aeebc105cc89bf77f48aa18b52938 (diff)
downloadqemu-3b83e663611c628bb04ae84a4f7ee49bdb68138b.zip
qemu-3b83e663611c628bb04ae84a4f7ee49bdb68138b.tar.gz
qemu-3b83e663611c628bb04ae84a4f7ee49bdb68138b.tar.bz2
migration: correct multifd receive thread name
Multifd receive threads run on the destination side. Correct the thread name marco to indicate the same. Fixes: e620b1e4770b ("migration: Put thread names together with macros") Signed-off-by: Prasad Pandit <pjp@fedoraproject.org> Reviewed-by: Fabiano Rosas <farosas@suse.de> Link: https://lore.kernel.org/r/20241127111528.167330-1-ppandit@redhat.com Signed-off-by: Peter Xu <peterx@redhat.com>
-rw-r--r--migration/migration.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/migration.h b/migration/migration.h
index 0956e92..3857905 100644
--- a/migration/migration.h
+++ b/migration/migration.h
@@ -37,7 +37,7 @@
#define MIGRATION_THREAD_SRC_TLS "mig/src/tls"
#define MIGRATION_THREAD_DST_COLO "mig/dst/colo"
-#define MIGRATION_THREAD_DST_MULTIFD "mig/src/recv_%d"
+#define MIGRATION_THREAD_DST_MULTIFD "mig/dst/recv_%d"
#define MIGRATION_THREAD_DST_FAULT "mig/dst/fault"
#define MIGRATION_THREAD_DST_LISTEN "mig/dst/listen"
#define MIGRATION_THREAD_DST_PREEMPT "mig/dst/preempt"