mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-12-24 00:18:36 -07:00
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>
This commit is contained in:
parent
5c7a4b6035
commit
38c482b477
4 changed files with 10 additions and 10 deletions
|
|
@ -1039,7 +1039,7 @@ static void fill_source_migration_info(MigrationInfo *info)
|
|||
populate_time_info(info, s);
|
||||
populate_ram_info(info, s);
|
||||
populate_disk_info(info);
|
||||
populate_vfio_info(info);
|
||||
migration_populate_vfio_info(info);
|
||||
break;
|
||||
case MIGRATION_STATUS_COLO:
|
||||
info->has_status = true;
|
||||
|
|
@ -1048,7 +1048,7 @@ static void fill_source_migration_info(MigrationInfo *info)
|
|||
case MIGRATION_STATUS_COMPLETED:
|
||||
populate_time_info(info, s);
|
||||
populate_ram_info(info, s);
|
||||
populate_vfio_info(info);
|
||||
migration_populate_vfio_info(info);
|
||||
break;
|
||||
case MIGRATION_STATUS_FAILED:
|
||||
info->has_status = true;
|
||||
|
|
@ -1641,7 +1641,7 @@ static bool migrate_prepare(MigrationState *s, bool blk, bool blk_inc,
|
|||
*/
|
||||
memset(&mig_stats, 0, sizeof(mig_stats));
|
||||
memset(&compression_counters, 0, sizeof(compression_counters));
|
||||
reset_vfio_bytes_transferred();
|
||||
migration_reset_vfio_bytes_transferred();
|
||||
|
||||
return true;
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue