mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-05 00:33:55 -06:00
migration: Make downtime_bytes atomic
Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Peter Xu <peterx@redhat.com>
This commit is contained in:
parent
b013b5d1f3
commit
296a4ac2aa
3 changed files with 3 additions and 3 deletions
|
@ -1156,7 +1156,7 @@ static void populate_ram_info(MigrationInfo *info, MigrationState *s)
|
|||
info->ram->multifd_bytes = stat64_get(&ram_counters.multifd_bytes);
|
||||
info->ram->pages_per_second = s->pages_per_second;
|
||||
info->ram->precopy_bytes = stat64_get(&ram_counters.precopy_bytes);
|
||||
info->ram->downtime_bytes = ram_counters.downtime_bytes;
|
||||
info->ram->downtime_bytes = stat64_get(&ram_counters.downtime_bytes);
|
||||
info->ram->postcopy_bytes = stat64_get(&ram_counters.postcopy_bytes);
|
||||
|
||||
if (migrate_use_xbzrle()) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue