diff options
author | Juan Quintela <quintela@redhat.com> | 2023-04-11 17:38:11 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2023-04-24 11:28:58 +0200 |
commit | 296a4ac2aa63038b6b702f2ee8f0f93ae26727ae (patch) | |
tree | 4b7d2fe425e98261f5862d241ebce49fd9ff6a99 /migration/ram.c | |
parent | b013b5d1f32ef88457e66c7ce576f6475238f97f (diff) |
migration: Make downtime_bytes atomic
Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Peter Xu <peterx@redhat.com>
Diffstat (limited to 'migration/ram.c')
-rw-r--r-- | migration/ram.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/migration/ram.c b/migration/ram.c index 0b4693215e..b1722b6071 100644 --- a/migration/ram.c +++ b/migration/ram.c @@ -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); } |