From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id C6A57A0526; Thu, 9 Jul 2020 08:12:39 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id A87891DAEB; Thu, 9 Jul 2020 08:12:35 +0200 (CEST) Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by dpdk.org (Postfix) with ESMTP id D293E1DAF6 for ; Thu, 9 Jul 2020 08:12:34 +0200 (CEST) Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 44DFB1FB; Wed, 8 Jul 2020 23:12:34 -0700 (PDT) Received: from net-arm-n1sdp.shanghai.arm.com (net-arm-n1sdp.shanghai.arm.com [10.169.208.213]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id A95733F71E; Wed, 8 Jul 2020 23:12:31 -0700 (PDT) From: Feifei Wang To: Honnappa Nagarahalli , Konstantin Ananyev , Ray Kinsella , Neil Horman Cc: dev@dpdk.org, nd@arm.com, Ruifeng.wang@arm.com, Feifei Wang Date: Thu, 9 Jul 2020 01:12:10 -0500 Message-Id: <20200709061212.15931-2-feifei.wang2@arm.com> X-Mailer: git-send-email 2.17.1 In-Reply-To: <20200709061212.15931-1-feifei.wang2@arm.com> References: <20200703102651.8918-1> <20200709061212.15931-1-feifei.wang2@arm.com> Subject: [dpdk-dev] [PATCH v2 1/3] ring: remove experimental tag for ring reset API X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: dev-bounces@dpdk.org Sender: "dev" Remove the experimental tag for rte_ring_reset API that have been around for 4 releases. Signed-off-by: Feifei Wang Reviewed-by: Honnappa Nagarahalli Reviewed-by: Ruifeng Wang --- v2: 1. add the changed API into DPDK_21 ABI in the map file. (Ray) lib/librte_ring/rte_ring.h | 3 --- lib/librte_ring/rte_ring_version.map | 7 +++++-- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/lib/librte_ring/rte_ring.h b/lib/librte_ring/rte_ring.h index f67141482..7181c33b4 100644 --- a/lib/librte_ring/rte_ring.h +++ b/lib/librte_ring/rte_ring.h @@ -663,15 +663,12 @@ rte_ring_dequeue(struct rte_ring *r, void **obj_p) * * This function flush all the elements in a ring * - * @b EXPERIMENTAL: this API may change without prior notice - * * @warning * Make sure the ring is not in use while calling this function. * * @param r * A pointer to the ring structure. */ -__rte_experimental void rte_ring_reset(struct rte_ring *r); diff --git a/lib/librte_ring/rte_ring_version.map b/lib/librte_ring/rte_ring_version.map index e88c143cf..9a6ce4d32 100644 --- a/lib/librte_ring/rte_ring_version.map +++ b/lib/librte_ring/rte_ring_version.map @@ -12,11 +12,14 @@ DPDK_20.0 { local: *; }; -EXPERIMENTAL { +DPDK_21 { global: - # added in 19.08 rte_ring_reset; +} DPDK_20.0; + +EXPERIMENTAL { + global: # added in 20.02 rte_ring_create_elem; -- 2.17.1