mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-02 07:13:54 -06:00
configure: add --enable-qpl build option
add --enable-qpl and --disable-qpl options to enable and disable the QPL compression method for multifd migration. The Query Processing Library (QPL) is an open-source library that supports data compression and decompression features. It is based on the deflate compression algorithm and use Intel In-Memory Analytics Accelerator(IAA) hardware for compression and decompression acceleration. For more live migration with IAA, please refer to the document docs/devel/migration/qpl-compression.rst Signed-off-by: Yuan Liu <yuan1.liu@intel.com> Reviewed-by: Nanhai Zou <nanhai.zou@intel.com> Reviewed-by: Fabiano Rosas <farosas@suse.de> Signed-off-by: Fabiano Rosas <farosas@suse.de>
This commit is contained in:
parent
d9d3e4f243
commit
b844a2c7cc
3 changed files with 13 additions and 0 deletions
|
@ -220,6 +220,7 @@ meson_options_help() {
|
|||
printf "%s\n" ' Xen PCI passthrough support'
|
||||
printf "%s\n" ' xkbcommon xkbcommon support'
|
||||
printf "%s\n" ' zstd zstd compression support'
|
||||
printf "%s\n" ' qpl Query Processing Library support'
|
||||
}
|
||||
_meson_option_parse() {
|
||||
case $1 in
|
||||
|
@ -558,6 +559,8 @@ _meson_option_parse() {
|
|||
--disable-xkbcommon) printf "%s" -Dxkbcommon=disabled ;;
|
||||
--enable-zstd) printf "%s" -Dzstd=enabled ;;
|
||||
--disable-zstd) printf "%s" -Dzstd=disabled ;;
|
||||
--enable-qpl) printf "%s" -Dqpl=enabled ;;
|
||||
--disable-qpl) printf "%s" -Dqpl=disabled ;;
|
||||
*) return 1 ;;
|
||||
esac
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue