All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] migration: correct multifd receive thread name
@ 2024-11-27 11:15 Prasad Pandit
  2024-11-27 12:08 ` Fabiano Rosas
  2024-11-27 14:31 ` Peter Xu
  0 siblings, 2 replies; 3+ messages in thread
From: Prasad Pandit @ 2024-11-27 11:15 UTC (permalink / raw)
  To: qemu-devel; +Cc: Peter Xu, Fabiano Rosas, yong.huang, chen.zhang, Prasad Pandit

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



^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] migration: correct multifd receive thread name
  2024-11-27 11:15 [PATCH] migration: correct multifd receive thread name Prasad Pandit
@ 2024-11-27 12:08 ` Fabiano Rosas
  2024-11-27 14:31 ` Peter Xu
  1 sibling, 0 replies; 3+ messages in thread
From: Fabiano Rosas @ 2024-11-27 12:08 UTC (permalink / raw)
  To: Prasad Pandit, qemu-devel; +Cc: Peter Xu, yong.huang, chen.zhang, Prasad Pandit

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>


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] migration: correct multifd receive thread name
  2024-11-27 11:15 [PATCH] migration: correct multifd receive thread name Prasad Pandit
  2024-11-27 12:08 ` Fabiano Rosas
@ 2024-11-27 14:31 ` Peter Xu
  1 sibling, 0 replies; 3+ messages in thread
From: Peter Xu @ 2024-11-27 14:31 UTC (permalink / raw)
  To: Prasad Pandit
  Cc: qemu-devel, Fabiano Rosas, yong.huang, chen.zhang, Prasad Pandit

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



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2024-11-27 14:32 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-11-27 11:15 [PATCH] migration: correct multifd receive thread name Prasad Pandit
2024-11-27 12:08 ` Fabiano Rosas
2024-11-27 14:31 ` Peter Xu

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.