diff options
author | Juan Quintela <quintela@redhat.com> | 2019-01-04 15:30:06 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2020-02-28 09:24:43 +0100 |
commit | 7ec2c2b3c1bc0c713b349b102413468b07336aab (patch) | |
tree | 278cde948c2dcf602a7be67c3ed560c4f61e5303 /qapi | |
parent | 9004db48c080632aef2329c1ac154c448d7da276 (diff) |
multifd: Add zlib compression multifd support
Signed-off-by: Juan Quintela <quintela@redhat.com>
Acked-by: Markus Armbruster <armbru@redhat.com>
Reviewed-by: Dr. David Alan Gilbert <dgilbert@redhat.com>
Diffstat (limited to 'qapi')
-rw-r--r-- | qapi/migration.json | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/qapi/migration.json b/qapi/migration.json index 468a9d92a4..3fb9e59bce 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -494,12 +494,13 @@ # An enumeration of multifd compression methods. # # @none: no compression. +# @zlib: use zlib compression method. # # Since: 5.0 # ## { 'enum': 'MultiFDCompression', - 'data': [ 'none' ] } + 'data': [ 'none', 'zlib' ] } ## # @MigrationParameter: |