[PATCH] migration: correct multifd receive thread name

Prasad Pandit posted 1 patch 4 weeks, 1 day ago
migration/migration.h | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
[PATCH] migration: correct multifd receive thread name
Posted by Prasad Pandit 4 weeks, 1 day ago
From: Prasad Pandit <pjp@fedoraproject.org>

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>
---
 migration/migration.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/migration/migration.h b/migration/migration.h
index 0956e9274b..3857905c0e 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"
-- 
2.47.0
Re: [PATCH] migration: correct multifd receive thread name
Posted by Peter Xu 4 weeks, 1 day ago
On Wed, Nov 27, 2024 at 04:45:28PM +0530, Prasad Pandit wrote:
> From: Prasad Pandit <pjp@fedoraproject.org>
> 
> 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>
> ---
>  migration/migration.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 
> diff --git a/migration/migration.h b/migration/migration.h
> index 0956e9274b..3857905c0e 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"
> -- 
> 2.47.0
> 

queued for 9.2, thanks.

-- 
Peter Xu
Re: [PATCH] migration: correct multifd receive thread name
Posted by Fabiano Rosas 4 weeks, 1 day ago
Prasad Pandit <ppandit@redhat.com> writes:

> From: Prasad Pandit <pjp@fedoraproject.org>
>
> 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>
> ---
>  migration/migration.h | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
>
> diff --git a/migration/migration.h b/migration/migration.h
> index 0956e9274b..3857905c0e 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"

Reviewed-by: Fabiano Rosas <farosas@suse.de>