diff options
| author | Juan Quintela | 2018-06-26 15:20:11 +0200 |
|---|---|---|
| committer | Juan Quintela | 2018-06-27 13:28:11 +0200 |
| commit | a61c45bd227951cd792f22b00d4e502c01ae8d9b (patch) | |
| tree | 64db186e848b08bf5c8e1d38cee588c46334cebb /hmp.c | |
| parent | migration: Synchronize multifd threads with main thread (diff) | |
| download | qemu-a61c45bd227951cd792f22b00d4e502c01ae8d9b.tar.gz qemu-a61c45bd227951cd792f22b00d4e502c01ae8d9b.tar.xz qemu-a61c45bd227951cd792f22b00d4e502c01ae8d9b.zip | |
migration: Create multifd_bytes ram_counter
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>
Diffstat (limited to 'hmp.c')
| -rw-r--r-- | hmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -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", |
