[EXTERNAL] [PATCH v5 1/2] compress/uadk: use async mode to replace sync mode
Akhil Goyal
gakhil at marvell.com
Wed Jul 9 09:19:25 CEST 2025
> To get better performance, using async mode to replace sync mode
>
> Signed-off-by: Zhangfei Gao <zhangfei.gao at linaro.org>
> ---
> doc/guides/compressdevs/uadk.rst | 15 +++
> drivers/compress/uadk/meson.build | 4 +-
> drivers/compress/uadk/uadk_compress_pmd.c | 94 ++++++++++++++-----
> .../compress/uadk/uadk_compress_pmd_private.h | 2 +-
> 4 files changed, 86 insertions(+), 29 deletions(-)
>
> diff --git a/doc/guides/compressdevs/uadk.rst
> b/doc/guides/compressdevs/uadk.rst
> index a29043e0c0..8812fd180a 100644
> --- a/doc/guides/compressdevs/uadk.rst
> +++ b/doc/guides/compressdevs/uadk.rst
> @@ -96,3 +96,18 @@ Test steps
> sudo dpdk-test --vdev=compress_uadk
> RTE>>compressdev_autotest
> RTE>>quit
> +
> +
> +As a reference, the following table shows a mapping between the past DPDK
> versions
> +and the UADK library version supported by them:
> +
> +.. _table_uadk_compress_pmd_versions:
> +
> +.. table:: DPDK and external UADK library version compatibility
> +
> + ============== ============================
> + DPDK version UADK library version
> + ============== ============================
> + 24.07 - 25.03 2.4 - 2.8
> + 25.07+ 2.9.1
> + ============== ============================
> diff --git a/drivers/compress/uadk/meson.build
> b/drivers/compress/uadk/meson.build
> index 34113cd08c..32cadd02ea 100644
> --- a/drivers/compress/uadk/meson.build
> +++ b/drivers/compress/uadk/meson.build
> @@ -13,7 +13,7 @@ sources = files(
> )
>
> deps += 'bus_vdev'
> -dep = dependency('libwd_comp', required: false, method: 'pkg-config')
> +dep = dependency('libwd_comp', version: '>=2.9.1', required: false, method:
> 'pkg-config')
> if not dep.found()
> build = false
> reason = 'missing dependency, "libwd_comp"'
> @@ -21,7 +21,7 @@ else
> ext_deps += dep
> endif
>
> -dep = dependency('libwd', required: false, method: 'pkg-config')
> +dep = dependency('libwd', version: '>=2.9.1', required: false, method: 'pkg-
> config')
> if not dep.found()
> build = false
> reason = 'missing dependency, "libwd"'
I am seeing this now
Dependency libwd_comp found: NO. Found 2.9 but need: '>=2.9.1'
More information about the dev
mailing list