qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Qemu-devel] [PATCH 2/3] hmp: add compress-type parameter to migration p


From: Denis Plotnikov
Subject: [Qemu-devel] [PATCH 2/3] hmp: add compress-type parameter to migration parameters
Date: Tue, 26 Feb 2019 16:15:34 +0300

Signed-off-by: Denis Plotnikov <address@hidden>
---
 hmp.c | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/hmp.c b/hmp.c
index b2a2b1f84e..5f105b816f 100644
--- a/hmp.c
+++ b/hmp.c
@@ -334,6 +334,10 @@ void hmp_info_migrate_parameters(Monitor *mon, const QDict 
*qdict)
     params = qmp_query_migrate_parameters(NULL);
 
     if (params) {
+        assert(params->has_compress_type);
+        monitor_printf(mon, "%s: %u\n",
+            MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_TYPE),
+            params->compress_type);
         assert(params->has_compress_level);
         monitor_printf(mon, "%s: %u\n",
             MigrationParameter_str(MIGRATION_PARAMETER_COMPRESS_LEVEL),
@@ -1757,6 +1761,10 @@ void hmp_migrate_set_parameter(Monitor *mon, const QDict 
*qdict)
         p->has_max_postcopy_bandwidth = true;
         visit_type_size(v, param, &p->max_postcopy_bandwidth, &err);
         break;
+    case MIGRATION_PARAMETER_COMPRESS_TYPE:
+        p->has_compress_type = true;
+        visit_type_int(v, param, &p->compress_type, &err);
+        break;
     default:
         assert(0);
     }
-- 
2.17.0




reply via email to

[Prev in Thread] Current Thread [Next in Thread]