diff options
author | Juan Quintela <quintela@redhat.com> | 2012-08-13 09:53:12 +0200 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2012-10-17 18:34:58 +0200 |
commit | 2c52ddf1cb3057bc2c6ae256857077627f6da43a (patch) | |
tree | 21abb5231954799f23ec4c88f2cec9fd5277745e /hmp.c | |
parent | 859bc7569a2d244ee6183a99b71186462049ca86 (diff) |
migration: print expected downtime in info migrate
Signed-off-by: Juan Quintela <quintela@redhat.com>
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -152,6 +152,10 @@ void hmp_info_migrate(Monitor *mon) monitor_printf(mon, "Migration status: %s\n", info->status); monitor_printf(mon, "total time: %" PRIu64 " milliseconds\n", info->total_time); + if (info->has_expected_downtime) { + monitor_printf(mon, "expected downtime: %" PRIu64 " milliseconds\n", + info->expected_downtime); + } if (info->has_downtime) { monitor_printf(mon, "downtime: %" PRIu64 " milliseconds\n", info->downtime); |