diff options
author | David Edmondson | 2021-12-21 10:34:41 +0100 |
---|---|---|
committer | Juan Quintela | 2022-01-28 15:38:23 +0100 |
commit | ae6806688016711bb9ec7541266d76ab511c5e3b (patch) | |
tree | 5464c40cf9a9d65e72120a71e13f42e37acc0b28 /monitor | |
parent | migration: Introduce ram_transferred_add() (diff) | |
download | qemu-ae6806688016711bb9ec7541266d76ab511c5e3b.tar.gz qemu-ae6806688016711bb9ec7541266d76ab511c5e3b.tar.xz qemu-ae6806688016711bb9ec7541266d76ab511c5e3b.zip |
migration: Tally pre-copy, downtime and post-copy bytes independently
Provide information on the number of bytes copied in the pre-copy,
downtime and post-copy phases of migration.
Signed-off-by: David Edmondson <david.edmondson@oracle.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@redhat.com>
Reviewed-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'monitor')
-rw-r--r-- | monitor/hmp-cmds.c | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/monitor/hmp-cmds.c b/monitor/hmp-cmds.c index 2669156b28..8c384dc1b2 100644 --- a/monitor/hmp-cmds.c +++ b/monitor/hmp-cmds.c @@ -293,6 +293,18 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict) monitor_printf(mon, "postcopy request count: %" PRIu64 "\n", info->ram->postcopy_requests); } + if (info->ram->precopy_bytes) { + monitor_printf(mon, "precopy ram: %" PRIu64 " kbytes\n", + info->ram->precopy_bytes >> 10); + } + if (info->ram->downtime_bytes) { + monitor_printf(mon, "downtime ram: %" PRIu64 " kbytes\n", + info->ram->downtime_bytes >> 10); + } + if (info->ram->postcopy_bytes) { + monitor_printf(mon, "postcopy ram: %" PRIu64 " kbytes\n", + info->ram->postcopy_bytes >> 10); + } } if (info->has_disk) { |