migration: Make downtime_bytes atomic
authorJuan Quintela <quintela@redhat.com>
Tue, 11 Apr 2023 15:38:11 +0000 (17:38 +0200)
committerJuan Quintela <quintela@redhat.com>
Mon, 24 Apr 2023 09:28:58 +0000 (11:28 +0200)
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
migration/migration.c
migration/ram.c
migration/ram.h

index cbd6f6f23520ee67a899431ef825fbdbddafc9cc..4ca2173d852637670f30a7664c875bc570b940d5 100644 (file)
@@ -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()) {
index 0b4693215e429fbf051fca9bd851af5f4df2a7a6..b1722b6071a47f337836ad300bd812edb3a88545 100644 (file)
@@ -467,7 +467,7 @@ void ram_transferred_add(uint64_t bytes)
     } else if (migration_in_postcopy()) {
         stat64_add(&ram_counters.postcopy_bytes, bytes);
     } else {
-        ram_counters.downtime_bytes += bytes;
+        stat64_add(&ram_counters.downtime_bytes, bytes);
     }
     stat64_add(&ram_counters.transferred, bytes);
 }
index a766b895fab93827f99f450d145c99bee04cb1f8..bb52632424f1ffdb4485b47dfe732801b5d524b4 100644 (file)
@@ -44,7 +44,7 @@ typedef struct {
     int64_t dirty_pages_rate;
     int64_t dirty_sync_count;
     Stat64 dirty_sync_missed_zero_copy;
-    uint64_t downtime_bytes;
+    Stat64 downtime_bytes;
     Stat64 duplicate;
     Stat64 multifd_bytes;
     Stat64 normal;