summary refs log tree commit diff stats
path: root/migration/migration.h
diff options
context:
space:
mode:
authorAvihai Horon <avihaih@nvidia.com>2023-09-06 18:08:48 +0300
committerCédric Le Goater <clg@redhat.com>2023-09-11 08:34:06 +0200
commit38c482b4778595ee337761f73ec0730d6c47b404 (patch)
treea702f57ae607901f6e2b5cbdd4828278ef438a95 /migration/migration.h
parent5c7a4b60350e509109bea4b86cdcf1d034cd4d5c (diff)
downloadfocaccia-qemu-38c482b4778595ee337761f73ec0730d6c47b404.tar.gz
focaccia-qemu-38c482b4778595ee337761f73ec0730d6c47b404.zip
migration: Add migration prefix to functions in target.c
The functions in target.c are not static, yet they don't have a proper
migration prefix. Add such prefix.

Signed-off-by: Avihai Horon <avihaih@nvidia.com>
Reviewed-by: Cédric Le Goater <clg@redhat.com>
Signed-off-by: Cédric Le Goater <clg@redhat.com>
Diffstat (limited to 'migration/migration.h')
-rw-r--r--migration/migration.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/migration/migration.h b/migration/migration.h
index 6eea18db36..c5695de214 100644
--- a/migration/migration.h
+++ b/migration/migration.h
@@ -512,8 +512,8 @@ void migration_consume_urgent_request(void);
 bool migration_rate_limit(void);
 void migration_cancel(const Error *error);
 
-void populate_vfio_info(MigrationInfo *info);
-void reset_vfio_bytes_transferred(void);
+void migration_populate_vfio_info(MigrationInfo *info);
+void migration_reset_vfio_bytes_transferred(void);
 void postcopy_temp_page_reset(PostcopyTmpPage *tmp_page);
 
 #endif