diff options
| author | Juan Quintela | 2019-12-13 13:47:14 +0100 |
|---|---|---|
| committer | Juan Quintela | 2020-02-28 09:25:49 +0100 |
| commit | 87dc6f5f665f581923536a1346220c7dcebe5105 (patch) | |
| tree | be2941cb3097d078f3ae46e07dd9501c27900ba6 /qapi | |
| parent | multifd: Add multifd-zstd-level parameter (diff) | |
| download | qemu-87dc6f5f665f581923536a1346220c7dcebe5105.tar.gz qemu-87dc6f5f665f581923536a1346220c7dcebe5105.tar.xz qemu-87dc6f5f665f581923536a1346220c7dcebe5105.zip | |
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: |
