migration: Make postcopy_requests atomic
authorJuan Quintela <quintela@redhat.com>
Tue, 11 Apr 2023 16:04:59 +0000 (18:04 +0200)
committerJuan Quintela <quintela@redhat.com>
Mon, 24 Apr 2023 09:28:59 +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 97c227aa85da37029d6552eb9ad6add54d0b4612..09b37a6603a988ad3dee4c1e4400d3dd5d58de56 100644 (file)
@@ -1152,7 +1152,8 @@ static void populate_ram_info(MigrationInfo *info, MigrationState *s)
         stat64_get(&ram_counters.dirty_sync_count);
     info->ram->dirty_sync_missed_zero_copy =
         stat64_get(&ram_counters.dirty_sync_missed_zero_copy);
-    info->ram->postcopy_requests = ram_counters.postcopy_requests;
+    info->ram->postcopy_requests =
+        stat64_get(&ram_counters.postcopy_requests);
     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;
index 3c1313655935786f55729f5de6cc8c4a40f61138..fe69ecaef4e8488ea6e4d621703160a26fb735c1 100644 (file)
@@ -2169,7 +2169,7 @@ int ram_save_queue_pages(const char *rbname, ram_addr_t start, ram_addr_t len)
     RAMBlock *ramblock;
     RAMState *rs = ram_state;
 
-    ram_counters.postcopy_requests++;
+    stat64_add(&ram_counters.postcopy_requests, 1);
     RCU_READ_LOCK_GUARD();
 
     if (!rbname) {
index 8c0d07c43acc692853fafb3934a9b6e964e22f14..afa68521d7834aa425145081e953cc2aea036078 100644 (file)
@@ -49,7 +49,7 @@ typedef struct {
     Stat64 multifd_bytes;
     Stat64 normal;
     Stat64 postcopy_bytes;
-    int64_t postcopy_requests;
+    Stat64 postcopy_requests;
     Stat64 precopy_bytes;
     int64_t remaining;
     Stat64 transferred;