DPDK patches and discussions
 help / color / mirror / Atom feed
From: Nipun Gupta <nipun.gupta@nxp.com>
To: thomas@monjalon.net
Cc: dev@dpdk.org, hemant.agrawal@nxp.com, sachin.saxena@oss.nxp.com,
	david.marchand@redhat.com, Nipun Gupta <nipun.gupta@nxp.com>
Subject: [dpdk-dev] [PATCH 4/4] net/dpaa2: remove experimental tag from API
Date: Fri,  3 Sep 2021 12:47:14 +0530	[thread overview]
Message-ID: <20210903071714.16798-4-nipun.gupta@nxp.com> (raw)
In-Reply-To: <20210903071714.16798-1-nipun.gupta@nxp.com>

These APIs were introduced in 19.02, therefore removing
experimental tag to promote them to stable state.

Signed-off-by: Nipun Gupta <nipun.gupta@nxp.com>
---
 drivers/net/dpaa2/rte_pmd_dpaa2.h | 12 ------------
 drivers/net/dpaa2/version.map     |  8 +++++++-
 2 files changed, 7 insertions(+), 13 deletions(-)

diff --git a/drivers/net/dpaa2/rte_pmd_dpaa2.h b/drivers/net/dpaa2/rte_pmd_dpaa2.h
index 84ac9d38d1..a68244c974 100644
--- a/drivers/net/dpaa2/rte_pmd_dpaa2.h
+++ b/drivers/net/dpaa2/rte_pmd_dpaa2.h
@@ -9,18 +9,11 @@
  * @file rte_pmd_dpaa2.h
  *
  * NXP dpaa2 PMD specific functions.
- *
- * @warning
- * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
- *
  */
 
 #include <rte_flow.h>
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
- *
  * Create a flow rule to demultiplex ethernet traffic to separate network
  * interfaces.
  *
@@ -34,7 +27,6 @@
  * @return
  *    A valid handle in case of success, NULL otherwise.
  */
-__rte_experimental
 struct rte_flow *
 rte_pmd_dpaa2_mux_flow_create(uint32_t dpdmux_id,
 			      struct rte_flow_item *pattern[],
@@ -57,9 +49,6 @@ int
 rte_pmd_dpaa2_mux_rx_frame_len(uint32_t dpdmux_id, uint16_t max_rx_frame_len);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
- *
  * Create a custom hash key on basis of offset of start of packet and size.
  * for e.g. if we need GRE packets (non-vlan and without any extra headers)
  * to be hashed on basis of inner IP header, we will provide offset as:
@@ -78,7 +67,6 @@ rte_pmd_dpaa2_mux_rx_frame_len(uint32_t dpdmux_id, uint16_t max_rx_frame_len);
  *   - 0 if successful.
  *   - Negative in case of failure.
  */
-__rte_experimental
 int
 rte_pmd_dpaa2_set_custom_hash(uint16_t port_id,
 			      uint16_t offset,
diff --git a/drivers/net/dpaa2/version.map b/drivers/net/dpaa2/version.map
index 49f69dacd2..3ab96344c4 100644
--- a/drivers/net/dpaa2/version.map
+++ b/drivers/net/dpaa2/version.map
@@ -1,9 +1,15 @@
-EXPERIMENTAL {
+DPDK_22 {
 	global:
 
 	rte_pmd_dpaa2_mux_flow_create;
 	rte_pmd_dpaa2_set_custom_hash;
 
+	local: *;
+};
+
+EXPERIMENTAL {
+	global:
+
 	# added in 21.05
 	rte_pmd_dpaa2_mux_rx_frame_len;
 	# added in 21.08
-- 
2.17.1


  parent reply	other threads:[~2021-09-03  7:17 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2021-09-03  7:17 [dpdk-dev] [PATCH 1/4] bus/dpaa: remove experimental tag and move to internal Nipun Gupta
2021-09-03  7:17 ` [dpdk-dev] [PATCH 2/4] bus/fslmc: remove experimental tag from API Nipun Gupta
2021-09-09  7:11   ` Hemant Agrawal
2021-09-09  7:50   ` David Marchand
2021-09-09  7:54     ` Nipun Gupta
2021-09-09  8:01       ` David Marchand
2021-09-24 16:57         ` Thomas Monjalon
2021-09-03  7:17 ` [dpdk-dev] [PATCH 3/4] bus/fslmc: remove experimental and move to internal Nipun Gupta
2021-09-09  7:11   ` Hemant Agrawal
2021-09-03  7:17 ` Nipun Gupta [this message]
2021-09-09  7:12   ` [dpdk-dev] [PATCH 4/4] net/dpaa2: remove experimental tag from API Hemant Agrawal
2021-09-09  7:10 ` [dpdk-dev] [PATCH 1/4] bus/dpaa: remove experimental tag and move to internal Hemant Agrawal

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20210903071714.16798-4-nipun.gupta@nxp.com \
    --to=nipun.gupta@nxp.com \
    --cc=david.marchand@redhat.com \
    --cc=dev@dpdk.org \
    --cc=hemant.agrawal@nxp.com \
    --cc=sachin.saxena@oss.nxp.com \
    --cc=thomas@monjalon.net \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).