diff options
Diffstat (limited to 'hmp.c')
-rw-r--r-- | hmp.c | 15 |
1 files changed, 0 insertions, 15 deletions
@@ -264,21 +264,6 @@ void hmp_info_migrate(Monitor *mon, const QDict *qdict) info->cpu_throttle_percentage); } - if (info->has_postcopy_blocktime) { - monitor_printf(mon, "postcopy blocktime: %" PRId64 "\n", - info->postcopy_blocktime); - } - - if (info->has_postcopy_vcpu_blocktime) { - Visitor *v; - char *str; - v = string_output_visitor_new(false, &str); - visit_type_int64List(v, NULL, &info->postcopy_vcpu_blocktime, NULL); - visit_complete(v, &str); - monitor_printf(mon, "postcopy vcpu blocktime: %s\n", str); - g_free(str); - visit_free(v); - } qapi_free_MigrationInfo(info); qapi_free_MigrationCapabilityStatusList(caps); } |