migration: Rename RAMStats to MigrationAtomicStats

It is lousely based on MigrationStats, but that name is taken, so this
is the best one that I came with.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Lukas Straub <lukasstraub2@web.de>

---

If you have any good suggestion for the name, I am all ears.
master
Juan Quintela 2023-04-26 19:40:13 +02:00
parent aff3f6606d
commit 96820df24e
2 changed files with 3 additions and 3 deletions

View File

@ -14,4 +14,4 @@
#include "qemu/stats64.h"
#include "migration-stats.h"
RAMStats mig_stats;
MigrationAtomicStats mig_stats;

View File

@ -34,8 +34,8 @@ typedef struct {
Stat64 postcopy_requests;
Stat64 precopy_bytes;
Stat64 transferred;
} RAMStats;
} MigrationAtomicStats;
extern RAMStats mig_stats;
extern MigrationAtomicStats mig_stats;
#endif