rte_stats_bitrate_free() has been in DPDK since 20.11. Its signature is very basic as it just frees an opaque data struct allocated in rte_stats_bitrate_create() and returns void.
It's unlikely that such a basic signature would need to change so might as well promote it to stable for the next major ABI. Cc: Hemant Agrawal <hemant.agra...@nxp.com> Signed-off-by: Kevin Traynor <ktray...@redhat.com> --- lib/bitratestats/rte_bitrate.h | 3 --- lib/bitratestats/version.map | 4 ++-- 2 files changed, 2 insertions(+), 5 deletions(-) diff --git a/lib/bitratestats/rte_bitrate.h b/lib/bitratestats/rte_bitrate.h index fcd1564ddc..e494389b95 100644 --- a/lib/bitratestats/rte_bitrate.h +++ b/lib/bitratestats/rte_bitrate.h @@ -8,6 +8,4 @@ #include <stdint.h> -#include <rte_compat.h> - #ifdef __cplusplus extern "C" { @@ -36,5 +34,4 @@ struct rte_stats_bitrates *rte_stats_bitrate_create(void); * Pointer allocated by rte_stats_bitrate_create() */ -__rte_experimental void rte_stats_bitrate_free(struct rte_stats_bitrates *bitrate_data); diff --git a/lib/bitratestats/version.map b/lib/bitratestats/version.map index 152730bb4e..a14d21ebba 100644 --- a/lib/bitratestats/version.map +++ b/lib/bitratestats/version.map @@ -9,7 +9,7 @@ DPDK_21 { }; -EXPERIMENTAL { +DPDK_22 { global: rte_stats_bitrate_free; -}; +} DPDK_21; -- 2.31.1