qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH 1/3] migration/multifd: Rename threadinfo.c functions


From: Philippe Mathieu-Daudé
Subject: Re: [PATCH 1/3] migration/multifd: Rename threadinfo.c functions
Date: Wed, 7 Jun 2023 09:56:20 +0200
User-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:102.0) Gecko/20100101 Thunderbird/102.11.2

On 6/6/23 16:45, Fabiano Rosas wrote:
The code in threadinfo.c is only used for the QMP command
query-migrationthreads. Make it explicit that this is something
related to QMP.

The current names are also too generic for a piece of code that
doesn't affect the migration directly in any way.

Signed-off-by: Fabiano Rosas <farosas@suse.de>
---
  migration/migration.c  | 4 ++--
  migration/multifd.c    | 4 ++--
  migration/threadinfo.c | 4 ++--
  migration/threadinfo.h | 5 ++---
  4 files changed, 8 insertions(+), 9 deletions(-)


-MigrationThread *MigrationThreadAdd(const char *name, int thread_id);
-
-void MigrationThreadDel(MigrationThread *info);
+MigrationThread *qmp_migration_threads_add(const char *name, int thread_id);
+void qmp_migration_threads_remove(MigrationThread *info);

Dropping 'qmp_' prefix:
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>




reply via email to

[Prev in Thread] Current Thread [Next in Thread]