cbcbce6c | 01-Feb-2023 |
Michael Baum <michaelba@nvidia.com> |
compressdev: remove useless end of algo enums
The both "RTE_COMP_ALGO_LIST_END" and "RTE_COMP_HASH_ALGO_LIST_END" are useless. This patch removes them from the library.
Signed-off-by: Michael Baum
compressdev: remove useless end of algo enums
The both "RTE_COMP_ALGO_LIST_END" and "RTE_COMP_HASH_ALGO_LIST_END" are useless. This patch removes them from the library.
Signed-off-by: Michael Baum <michaelba@nvidia.com> Acked-by: Akhil Goyal <gakhil@marvell.com>
show more ...
|
dfb90fbe | 11-Mar-2022 |
Bruce Richardson <bruce.richardson@intel.com> |
compressdev: fix missing space in log macro
Building with clang on FreeBSD with chkincs enabled, we get the following error about a missing space:
lib/compressdev/rte_compressdev_internal.h:25:58:
compressdev: fix missing space in log macro
Building with clang on FreeBSD with chkincs enabled, we get the following error about a missing space:
lib/compressdev/rte_compressdev_internal.h:25:58: error: invalid suffix on literal; C++11 requires a space between literal and identifier [-Wreserved-user-defined-literal] rte_log(RTE_LOG_ ## level, compressdev_logtype, "%s(): "fmt "\n", \
Adding in a space between the '"' and 'fmt' removes the error.
Fixes: ed7dd94f7f66 ("compressdev: add basic device management") Cc: stable@dpdk.org
Signed-off-by: Bruce Richardson <bruce.richardson@intel.com>
show more ...
|