mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-03 07:43:54 -06:00
migration/multifd: add uadk compression framework
Adds the skeleton to support uadk compression method. Complete functionality will be added in subsequent patches. Acked-by: Markus Armbruster <armbru@redhat.com> Reviewed-by: Fabiano Rosas <farosas@suse.de> Signed-off-by: Shameer Kolothum <shameerali.kolothum.thodi@huawei.com> Reviewed-by: Zhangfei Gao <zhangfei.gao@linaro.org> Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
cfc589a89b
commit
f3d8bb759d
5 changed files with 29 additions and 4 deletions
|
@ -559,12 +559,15 @@
|
|||
# In-Memory Analytics Accelerator(IAA) accelerated compression
|
||||
# and decompression. (Since 9.1)
|
||||
#
|
||||
# @uadk: use UADK library compression method. (Since 9.1)
|
||||
#
|
||||
# Since: 5.0
|
||||
##
|
||||
{ 'enum': 'MultiFDCompression',
|
||||
'data': [ 'none', 'zlib',
|
||||
{ 'name': 'zstd', 'if': 'CONFIG_ZSTD' },
|
||||
{ 'name': 'qpl', 'if': 'CONFIG_QPL' } ] }
|
||||
{ 'name': 'qpl', 'if': 'CONFIG_QPL' },
|
||||
{ 'name': 'uadk', 'if': 'CONFIG_UADK' } ] }
|
||||
|
||||
##
|
||||
# @MigMode:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue