aboutsummaryrefslogtreecommitdiff
path: root/migration/migration-stats.c
diff options
context:
space:
mode:
authorJuan Quintela <quintela@redhat.com>2023-04-26 19:04:06 +0200
committerJuan Quintela <quintela@redhat.com>2023-05-03 11:24:19 +0200
commit947701cc1a591191684aaae37a9f81674a14b7ce (patch)
treead217f1500345ea8acb3621d5fa08a3f80e3654b /migration/migration-stats.c
parente232199aad7f744e696e6b8c57aecbacfb988554 (diff)
downloadqemu-947701cc1a591191684aaae37a9f81674a14b7ce.zip
qemu-947701cc1a591191684aaae37a9f81674a14b7ce.tar.gz
qemu-947701cc1a591191684aaae37a9f81674a14b7ce.tar.bz2
migration: Move ram_stats to its own file migration-stats.[ch]
There is already include/qemu/stats.h, so stats.h was a bad idea. We want this file to not depend on anything else, we will move all the migration counters/stats to this struct. Signed-off-by: Juan Quintela <quintela@redhat.com> Reviewed-by: Lukas Straub <lukasstraub2@web.de>
Diffstat (limited to 'migration/migration-stats.c')
-rw-r--r--migration/migration-stats.c17
1 files changed, 17 insertions, 0 deletions
diff --git a/migration/migration-stats.c b/migration/migration-stats.c
new file mode 100644
index 0000000..b0eb5ae
--- /dev/null
+++ b/migration/migration-stats.c
@@ -0,0 +1,17 @@
+/*
+ * Migration stats
+ *
+ * Copyright (c) 2012-2023 Red Hat Inc
+ *
+ * Authors:
+ * Juan Quintela <quintela@redhat.com>
+ *
+ * This work is licensed under the terms of the GNU GPL, version 2 or later.
+ * See the COPYING file in the top-level directory.
+ */
+
+#include "qemu/osdep.h"
+#include "qemu/stats64.h"
+#include "migration-stats.h"
+
+RAMStats ram_counters;