On Wed, May 15, 2019 at 02:15:41PM +0200, Juan Quintela wrote: >diff --git a/qapi/migration.json b/qapi/migration.json >index 9cfbaf8c6c..8ec1944b7a 100644 >--- a/qapi/migration.json >+++ b/qapi/migration.json >@@ -482,6 +482,19 @@ > ## > { 'command': 'query-migrate-capabilities', 'returns': > ['MigrationCapabilityStatus']} > >+## >+# @MultifdCompress: >+# >+# An enumeration of multifd compression. >+# >+# @none: no compression. >+# >+# Since: 4.1 >+# >+## >+{ 'enum': 'MultifdCompress', >+ 'data': [ 'none' ] } >+ > ## > # @MigrationParameter: > # >@@ -580,6 +593,9 @@ > # @max-cpu-throttle: maximum cpu throttle percentage. > # Defaults to 99. (Since 3.1) > # >+# @multifd-compress: Which compression method to use. >+# Defaults to none. (Since 4.1) >+# > # Since: 2.4 > ## > { 'enum': 'MigrationParameter', >@@ -592,7 +608,7 @@ > 'downtime-limit', 'x-checkpoint-delay', 'block-incremental', > 'multifd-channels', > 'xbzrle-cache-size', 'max-postcopy-bandwidth', >- 'max-cpu-throttle' ] } >+ 'max-cpu-throttle', 'multifd-compress' ] } > > ## > # @MigrateSetParameters: >@@ -682,6 +698,9 @@ > # @max-cpu-throttle: maximum cpu throttle percentage. > # The default value is 99. (Since 3.1) > # >+# @multifd-compress: Which compression method to use. >+# Defaults to none. (Since 4.1) >+# > # Since: 2.4 > ## > # TODO either fuse back into MigrationParameters, or make >@@ -707,7 +726,8 @@ > '*multifd-channels': 'int', > '*xbzrle-cache-size': 'size', > '*max-postcopy-bandwidth': 'size', >- '*max-cpu-throttle': 'int' } } >+ '*max-cpu-throttle': 'int',
A tab at the beginning, it would be better to fix this :-) >+ '*multifd-compress': 'MultifdCompress' } } > > ## > # @migrate-set-parameters: >@@ -817,6 +837,9 @@ > # Defaults to 99. > # (Since 3.1) > # >+# @multifd-compress: Which compression method to use. >+# Defaults to none. (Since 4.1) >+# > # Since: 2.4 > ## > { 'struct': 'MigrationParameters', >@@ -840,7 +863,8 @@ > '*multifd-channels': 'uint8', > '*xbzrle-cache-size': 'size', > '*max-postcopy-bandwidth': 'size', >- '*max-cpu-throttle':'uint8'} } >+ '*max-cpu-throttle': 'uint8', >+ '*multifd-compress': 'MultifdCompress' } } > > ## > # @query-migrate-parameters: -- Wei Yang Help you, Help me