From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id 4A3AB425C2; Sun, 17 Sep 2023 15:05:28 +0200 (CEST) Received: from mails.dpdk.org (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D1A1140260; Sun, 17 Sep 2023 15:05:27 +0200 (CEST) Received: from forward101c.mail.yandex.net (forward101c.mail.yandex.net [178.154.239.212]) by mails.dpdk.org (Postfix) with ESMTP id 03B1C40223 for ; Sun, 17 Sep 2023 15:05:26 +0200 (CEST) Received: from mail-nwsmtp-smtp-production-main-10.sas.yp-c.yandex.net (mail-nwsmtp-smtp-production-main-10.sas.yp-c.yandex.net [IPv6:2a02:6b8:c14:2481:0:640:e0:0]) by forward101c.mail.yandex.net (Yandex) with ESMTP id 6FCD060035; Sun, 17 Sep 2023 16:05:25 +0300 (MSK) Received: by mail-nwsmtp-smtp-production-main-10.sas.yp-c.yandex.net (smtp/Yandex) with ESMTPSA id M5j2S0sDSmI0-N4cVPJRS; Sun, 17 Sep 2023 16:05:24 +0300 X-Yandex-Fwd: 1 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=yandex.ru; s=mail; t=1694955924; bh=SKPAPHM7eOsm4u9OG+H8AkvIunDXy7W9HG1rMO1g628=; h=From:Subject:In-Reply-To:Cc:Date:References:To:Message-ID; b=F3NtbOt0tP9VXojYADe38ZMoUesIaJ/u2mqvmVTQ5qOS02V6mISqt5NIiYYnVhKy8 t2+JV8zlKESHiA9OUEdcXzxJvh/sXA/tdJIFYrSLy8VAI0VKAIKL+E35N8UsjHYpVf lFmzCaRDLcDo+k9kcygpaNE4uBgYUVl5+n5JNYKY= Authentication-Results: mail-nwsmtp-smtp-production-main-10.sas.yp-c.yandex.net; dkim=pass header.i=@yandex.ru Message-ID: Date: Sun, 17 Sep 2023 14:05:22 +0100 MIME-Version: 1.0 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.15.0 To: stephen@networkplumber.org Cc: dev@dpdk.org, konstantin.v.ananyev@yandex.ru, vladimir.medvedkin@intel.com References: <20230809001017.293037-24-stephen@networkplumber.org> Subject: Re: [PATCH v2 23/29] ipsec: remove experimental from SA API Content-Language: en-US From: Konstantin Ananyev In-Reply-To: <20230809001017.293037-24-stephen@networkplumber.org> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org > These API's were added in 21.11, remove experimental flag. > > Signed-off-by: Stephen Hemminger > --- > lib/ipsec/rte_ipsec.h | 2 -- > lib/ipsec/version.map | 9 +-------- > 2 files changed, 1 insertion(+), 10 deletions(-) > > diff --git a/lib/ipsec/rte_ipsec.h b/lib/ipsec/rte_ipsec.h > index 04129926b69f..81624f909192 100644 > --- a/lib/ipsec/rte_ipsec.h > +++ b/lib/ipsec/rte_ipsec.h > @@ -168,7 +168,6 @@ rte_ipsec_pkt_process(const struct rte_ipsec_session *ss, struct rte_mbuf *mb[], > * @return > * 0 on success, negative value otherwise. > */ > -__rte_experimental > int > rte_ipsec_telemetry_sa_add(const struct rte_ipsec_sa *sa); > > @@ -178,7 +177,6 @@ rte_ipsec_telemetry_sa_add(const struct rte_ipsec_sa *sa); > * @param sa > * Pointer to the *rte_ipsec_sa* object that will have telemetry disabled. > */ > -__rte_experimental > void > rte_ipsec_telemetry_sa_del(const struct rte_ipsec_sa *sa); > > diff --git a/lib/ipsec/version.map b/lib/ipsec/version.map > index f0063af354f0..9d01ebeadc4c 100644 > --- a/lib/ipsec/version.map > +++ b/lib/ipsec/version.map > @@ -16,15 +16,8 @@ DPDK_24 { > rte_ipsec_sad_lookup; > rte_ipsec_ses_from_crypto; > rte_ipsec_session_prepare; > - > - local: *; > -}; > - > -EXPERIMENTAL { > - global: > - > - # added in 21.11 > rte_ipsec_telemetry_sa_add; > rte_ipsec_telemetry_sa_del; > > + local: *; > }; > -- Acked-by: Konstantin Ananyev > 2.39.2