diff options
author | Juan Quintela <quintela@redhat.com> | 2019-12-13 13:47:14 +0100 |
---|---|---|
committer | Juan Quintela <quintela@redhat.com> | 2020-02-28 09:25:49 +0100 |
commit | 87dc6f5f665f581923536a1346220c7dcebe5105 (patch) | |
tree | be2941cb3097d078f3ae46e07dd9501c27900ba6 /qapi | |
parent | 6a9ad1542065ca0bd54c6fe756c5eac3e093dfb5 (diff) |
multifd: Add zstd 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 | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/qapi/migration.json b/qapi/migration.json index f2da5cfa0f..d44d99cd78 100644 --- a/qapi/migration.json +++ b/qapi/migration.json @@ -495,12 +495,14 @@ # # @none: no compression. # @zlib: use zlib compression method. +# @zstd: use zstd compression method. # # Since: 5.0 # ## { 'enum': 'MultiFDCompression', - 'data': [ 'none', 'zlib' ] } + 'data': [ 'none', 'zlib', + { 'name': 'zstd', 'if': 'defined(CONFIG_ZSTD)' } ] } ## # @MigrationParameter: |