[v4,10/28] mbuf: remove experimental from create_extbuf

Message ID 20231019191016.156430-11-stephen@networkplumber.org (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series Promote many experimental API's to stable |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Stephen Hemminger Oct. 19, 2023, 7:09 p.m. UTC
  This API was added in 2020 and should no longer be experimental.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
Acked-by: Bruce Richardson <bruce.richardson@intel.com>
---
 lib/mbuf/rte_mbuf.h  | 1 -
 lib/mbuf/version.map | 8 +-------
 2 files changed, 1 insertion(+), 8 deletions(-)
  

Patch

diff --git a/lib/mbuf/rte_mbuf.h b/lib/mbuf/rte_mbuf.h
index 913c459b1cc6..30fa3df85f53 100644
--- a/lib/mbuf/rte_mbuf.h
+++ b/lib/mbuf/rte_mbuf.h
@@ -800,7 +800,6 @@  struct rte_pktmbuf_extmem {
  *    - EEXIST - a memzone with the same name already exists
  *    - ENOMEM - no appropriate memory area found in which to create memzone
  */
-__rte_experimental
 struct rte_mempool *
 rte_pktmbuf_pool_create_extbuf(const char *name, unsigned int n,
 	unsigned int cache_size, uint16_t priv_size,
diff --git a/lib/mbuf/version.map b/lib/mbuf/version.map
index f010d4692e3e..daa65e2bbdb2 100644
--- a/lib/mbuf/version.map
+++ b/lib/mbuf/version.map
@@ -38,14 +38,8 @@  DPDK_24 {
 	rte_pktmbuf_init;
 	rte_pktmbuf_pool_create;
 	rte_pktmbuf_pool_create_by_ops;
+	rte_pktmbuf_pool_create_extbuf;
 	rte_pktmbuf_pool_init;
 
 	local: *;
 };
-
-EXPERIMENTAL {
-	global:
-
-	rte_pktmbuf_pool_create_extbuf;
-
-};