|
@@ -194,6 +194,12 @@ void hmp_info_migrate_capabilities(Monitor *mon)
|
|
|
qapi_free_MigrationCapabilityStatusList(caps);
|
|
|
}
|
|
|
|
|
|
+void hmp_info_migrate_cache_size(Monitor *mon)
|
|
|
+{
|
|
|
+ monitor_printf(mon, "xbzrel cache size: %" PRId64 " kbytes\n",
|
|
|
+ qmp_query_migrate_cache_size(NULL) >> 10);
|
|
|
+}
|
|
|
+
|
|
|
void hmp_info_cpus(Monitor *mon)
|
|
|
{
|
|
|
CpuInfoList *cpu_list, *cpu;
|
|
@@ -764,6 +770,19 @@ void hmp_migrate_set_downtime(Monitor *mon, const QDict *qdict)
|
|
|
qmp_migrate_set_downtime(value, NULL);
|
|
|
}
|
|
|
|
|
|
+void hmp_migrate_set_cache_size(Monitor *mon, const QDict *qdict)
|
|
|
+{
|
|
|
+ int64_t value = qdict_get_int(qdict, "value");
|
|
|
+ Error *err = NULL;
|
|
|
+
|
|
|
+ qmp_migrate_set_cache_size(value, &err);
|
|
|
+ if (err) {
|
|
|
+ monitor_printf(mon, "%s\n", error_get_pretty(err));
|
|
|
+ error_free(err);
|
|
|
+ return;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
void hmp_migrate_set_speed(Monitor *mon, const QDict *qdict)
|
|
|
{
|
|
|
int64_t value = qdict_get_int(qdict, "value");
|