]> xenbits.xensource.com Git - qemu-xen.git/commitdiff
migration: Create multifd_bytes ram_counter
authorJuan Quintela <quintela@redhat.com>
Tue, 26 Jun 2018 13:20:11 +0000 (15:20 +0200)
committerJuan Quintela <quintela@redhat.com>
Wed, 27 Jun 2018 11:28:11 +0000 (13:28 +0200)
This will include how many bytes they are sent through multifd.

Signed-off-by: Juan Quintela <quintela@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
hmp.c
migration/migration.c
qapi/migration.json

diff --git a/hmp.c b/hmp.c
index f601099f90772b29405d34959a895f9f3ba6d701..0da0b0ac33ee49b33ef7fe7a00c08606d0f78992 100644 (file)
--- a/hmp.c
+++ b/hmp.c
@@ -234,6 +234,8 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict)
                        info->ram->dirty_sync_count);
         monitor_printf(mon, "page size: %" PRIu64 " kbytes\n",
                        info->ram->page_size >> 10);
+        monitor_printf(mon, "multifd bytes: %" PRIu64 " kbytes\n",
+                       info->ram->multifd_bytes >> 10);
 
         if (info->ram->dirty_pages_rate) {
             monitor_printf(mon, "dirty pages rate: %" PRIu64 " pages\n",
index 264f3ce84e541f272f782dbafdade4f454dc1f12..2680ba2d47a8af1a73226f5d9905fdf8ddad7764 100644 (file)
@@ -708,6 +708,7 @@ static void populate_ram_info(MigrationInfo *info, MigrationState *s)
     info->ram->dirty_sync_count = ram_counters.dirty_sync_count;
     info->ram->postcopy_requests = ram_counters.postcopy_requests;
     info->ram->page_size = qemu_target_page_size();
+    info->ram->multifd_bytes = ram_counters.multifd_bytes;
 
     if (migrate_use_xbzrle()) {
         info->has_xbzrle_cache = true;
index 1b4c1db670ccecdb61c1974ee943d9b25eff28b1..186e8a730334ce59264399944eb64094c27d5d72 100644 (file)
@@ -39,6 +39,8 @@
 # @page-size: The number of bytes per page for the various page-based
 #        statistics (since 2.10)
 #
+# @multifd-bytes: The number of bytes sent through multifd (since 3.0)
+#
 # Since: 0.14.0
 ##
 { 'struct': 'MigrationStats',
@@ -46,7 +48,8 @@
            'duplicate': 'int', 'skipped': 'int', 'normal': 'int',
            'normal-bytes': 'int', 'dirty-pages-rate' : 'int',
            'mbps' : 'number', 'dirty-sync-count' : 'int',
-           'postcopy-requests' : 'int', 'page-size' : 'int' } }
+           'postcopy-requests' : 'int', 'page-size' : 'int',
+           'multifd-bytes' : 'uint64' } }
 
 ##
 # @XBZRLECacheStats: