ring: remove experimental flag from reset API
authorFeifei Wang <feifei.wang2@arm.com>
Thu, 9 Jul 2020 06:12:10 +0000 (01:12 -0500)
committerDavid Marchand <david.marchand@redhat.com>
Thu, 9 Jul 2020 15:21:54 +0000 (17:21 +0200)
Remove the experimental tag for rte_ring_reset API that have been around
for 4 releases.

Signed-off-by: Feifei Wang <feifei.wang2@arm.com>
Reviewed-by: Honnappa Nagarahalli <honnappa.nagarahalli@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
lib/librte_ring/rte_ring.h
lib/librte_ring/rte_ring_version.map

index f671414..7181c33 100644 (file)
@@ -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);
 
index e88c143..9a6ce4d 100644 (file)
@@ -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;