]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
migration: Make precopy_bytes atomic
authorJuan Quintela <quintela@redhat.com>
Tue, 11 Apr 2023 15:36:48 +0000 (17:36 +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 66e5197b776fef7537ed5ebea9c964a1449059a3..cbd6f6f23520ee67a899431ef825fbdbddafc9cc 100644 (file)
@@ -1155,7 +1155,7 @@ static void populate_ram_info(MigrationInfo *info, MigrationState *s)
     info->ram->page_size = page_size;
     info->ram->multifd_bytes = stat64_get(&ram_counters.multifd_bytes);
     info->ram->pages_per_second = s->pages_per_second;
-    info->ram->precopy_bytes = ram_counters.precopy_bytes;
+    info->ram->precopy_bytes = stat64_get(&ram_counters.precopy_bytes);
     info->ram->downtime_bytes = ram_counters.downtime_bytes;
     info->ram->postcopy_bytes = stat64_get(&ram_counters.postcopy_bytes);
 
index 93e0a48af4b26c74300cf67fead5e060d0f40fd0..0b4693215e429fbf051fca9bd851af5f4df2a7a6 100644 (file)
@@ -463,7 +463,7 @@ RAMStats ram_counters;
 void ram_transferred_add(uint64_t bytes)
 {
     if (runstate_is_running()) {
-        ram_counters.precopy_bytes += bytes;
+        stat64_add(&ram_counters.precopy_bytes, bytes);
     } else if (migration_in_postcopy()) {
         stat64_add(&ram_counters.postcopy_bytes, bytes);
     } else {
index 2170c55e67bb0fe81ce7b812172b1c4cc4dd717e..a766b895fab93827f99f450d145c99bee04cb1f8 100644 (file)
@@ -50,7 +50,7 @@ typedef struct {
     Stat64 normal;
     Stat64 postcopy_bytes;
     int64_t postcopy_requests;
-    uint64_t precopy_bytes;
+    Stat64 precopy_bytes;
     int64_t remaining;
     Stat64 transferred;
 } RAMStats;