> -----Original Message-----
> From: Singh, Jasvinder <jasvinder.si...@intel.com>
> Sent: Wednesday, September 1, 2021 1:21 PM
> To: dev@dpdk.org
> Cc: Dumitrescu, Cristian <cristian.dumitre...@intel.com>; m...@ashroe.eu
> Subject: [PATCH] net/softnic: remove experimental table from API
>
> This API was introduced in 18.08, therefore removing
> experimental tag to promote it to stable state.
>
> Signed-off-by: Jasvinder Singh <jasvinder.si...@intel.com>
> ---
> drivers/net/softnic/rte_eth_softnic.h | 1 -
> drivers/net/softnic/version.map | 7 +------
> 2 files changed, 1 insertion(+), 7 deletions(-)
>
> diff --git a/drivers/net/softnic/rte_eth_softnic.h
> b/drivers/net/softnic/rte_eth_softnic.h
> index 3f01161777..6c11d89ab6 100644
> --- a/drivers/net/softnic/rte_eth_softnic.h
> +++ b/drivers/net/softnic/rte_eth_softnic.h
> @@ -75,7 +75,6 @@ rte_pmd_softnic_run(uint16_t port_id);
> * @return
> * Zero on success, error code otherwise.
> */
> -__rte_experimental
> int
> rte_pmd_softnic_manage(uint16_t port_id);
>
> diff --git a/drivers/net/softnic/version.map
> b/drivers/net/softnic/version.map
> index 6784318f77..cd5afcf155 100644
> --- a/drivers/net/softnic/version.map
> +++ b/drivers/net/softnic/version.map
> @@ -2,12 +2,7 @@ DPDK_22 {
> global:
>
> rte_pmd_softnic_run;
> + rte_pmd_softnic_manage;
>
> local: *;
> };
> -
> -EXPERIMENTAL {
> - global:
> -
> - rte_pmd_softnic_manage;
> -};
> --
> 2.26.3
Acked-by: Cristian Dumitrescu <cristian.dumitre...@intel.com>