diff options
author | Juan Quintela <quintela@redhat.com> | 2012-05-21 22:01:07 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2012-06-29 13:27:28 +0200 |
commit | d5f8a5701d3690b5ec0c34b6a5c0b5a24d274540 (patch) | |
tree | 77fe57f9c1998f798515868028554a70ba5dc57b /hmp.c | |
parent | 8e21cd32005f6be7475349eaeadde8d4ec8cf2e4 (diff) | |
download | qemu-d5f8a5701d3690b5ec0c34b6a5c0b5a24d274540.zip qemu-d5f8a5701d3690b5ec0c34b6a5c0b5a24d274540.tar.gz qemu-d5f8a5701d3690b5ec0c34b6a5c0b5a24d274540.tar.bz2 |
Add spent time for migration
We add time spent for migration to the output of "info migrate"
command. 'total_time' means time since the start fo migration if
migration is 'active', and total time of migration if migration is
completed. As we are also interested in transferred ram when
migration completes, adding all ram statistics
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 2 |
1 files changed, 2 insertions, 0 deletions
@@ -145,6 +145,8 @@ void hmp_info_migrate(Monitor *mon) info->ram->remaining >> 10); monitor_printf(mon, "total ram: %" PRIu64 " kbytes\n", info->ram->total >> 10); + monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n", + info->ram->total_time); } if (info->has_disk) { |