DPDK patches and discussions
 help / color / mirror / Atom feed
* [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable
@ 2021-09-02  8:17 pbhagavatula
  2021-09-02  8:58 ` Andrew Rybchenko
  2021-09-02 15:56 ` Kinsella, Ray
  0 siblings, 2 replies; 4+ messages in thread
From: pbhagavatula @ 2021-09-02  8:17 UTC (permalink / raw)
  To: jerinj, Thomas Monjalon, Ferruh Yigit, Andrew Rybchenko, Ray Kinsella
  Cc: dev, Pavan Nikhilesh

From: Pavan Nikhilesh <pbhagavatula@marvell.com>

Remove experimental tag from rte_eth_dev_set_ptypes().

Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
---
 lib/ethdev/rte_ethdev.h | 4 ----
 lib/ethdev/version.map  | 2 +-
 2 files changed, 1 insertion(+), 5 deletions(-)

diff --git a/lib/ethdev/rte_ethdev.h b/lib/ethdev/rte_ethdev.h
index d2b27c351f..55d0da60bd 100644
--- a/lib/ethdev/rte_ethdev.h
+++ b/lib/ethdev/rte_ethdev.h
@@ -3123,9 +3123,6 @@ int rte_eth_dev_fw_version_get(uint16_t port_id,
 int rte_eth_dev_get_supported_ptypes(uint16_t port_id, uint32_t ptype_mask,
 				     uint32_t *ptypes, int num);
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
  * Inform Ethernet device about reduced range of packet types to handle.
  *
  * Application can use this function to set only specific ptypes that it's
@@ -3155,7 +3152,6 @@ int rte_eth_dev_get_supported_ptypes(uint16_t port_id, uint32_t ptype_mask,
  *   - (-EINVAL) if *ptype_mask* is invalid (or) set_ptypes is NULL and
  *     num > 0.
  */
-__rte_experimental
 int rte_eth_dev_set_ptypes(uint16_t port_id, uint32_t ptype_mask,
 			   uint32_t *set_ptypes, unsigned int num);
 
diff --git a/lib/ethdev/version.map b/lib/ethdev/version.map
index 3eece75b72..b02d981378 100644
--- a/lib/ethdev/version.map
+++ b/lib/ethdev/version.map
@@ -52,6 +52,7 @@ DPDK_22 {
 	rte_eth_dev_set_link_up;
 	rte_eth_dev_set_mc_addr_list;
 	rte_eth_dev_set_mtu;
+	rte_eth_dev_set_ptypes;
 	rte_eth_dev_set_rx_queue_stats_mapping;
 	rte_eth_dev_set_tx_queue_stats_mapping;
 	rte_eth_dev_set_vlan_ether_type;
@@ -173,7 +174,6 @@ EXPERIMENTAL {
 	rte_flow_dynf_metadata_offs;
 	rte_flow_dynf_metadata_mask;
 	rte_flow_dynf_metadata_register;
-	rte_eth_dev_set_ptypes;
 
 	# added in 20.02
 	rte_flow_dev_dump;
-- 
2.17.1


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable
  2021-09-02  8:17 [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable pbhagavatula
@ 2021-09-02  8:58 ` Andrew Rybchenko
  2021-09-02 15:56 ` Kinsella, Ray
  1 sibling, 0 replies; 4+ messages in thread
From: Andrew Rybchenko @ 2021-09-02  8:58 UTC (permalink / raw)
  To: pbhagavatula, jerinj, Thomas Monjalon, Ferruh Yigit, Ray Kinsella; +Cc: dev

On 9/2/21 11:17 AM, pbhagavatula@marvell.com wrote:
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> 
> Remove experimental tag from rte_eth_dev_set_ptypes().
> 
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>

Acked-by: Andrew Rybchenko <andrew.rybchenko@oktetlabs.ru>


^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable
  2021-09-02  8:17 [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable pbhagavatula
  2021-09-02  8:58 ` Andrew Rybchenko
@ 2021-09-02 15:56 ` Kinsella, Ray
  2021-09-15  8:15   ` Ferruh Yigit
  1 sibling, 1 reply; 4+ messages in thread
From: Kinsella, Ray @ 2021-09-02 15:56 UTC (permalink / raw)
  To: pbhagavatula, jerinj, Thomas Monjalon, Ferruh Yigit, Andrew Rybchenko; +Cc: dev



On 02/09/2021 09:17, pbhagavatula@marvell.com wrote:
> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
> 
> Remove experimental tag from rte_eth_dev_set_ptypes().
> 
> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
Acked-by: Ray Kinsella <mdr@ashroe.eu>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable
  2021-09-02 15:56 ` Kinsella, Ray
@ 2021-09-15  8:15   ` Ferruh Yigit
  0 siblings, 0 replies; 4+ messages in thread
From: Ferruh Yigit @ 2021-09-15  8:15 UTC (permalink / raw)
  To: Kinsella, Ray, pbhagavatula, jerinj, Thomas Monjalon, Andrew Rybchenko
  Cc: dev

On 9/2/2021 4:56 PM, Kinsella, Ray wrote:
> 
> 
> On 02/09/2021 09:17, pbhagavatula@marvell.com wrote:
>> From: Pavan Nikhilesh <pbhagavatula@marvell.com>
>>
>> Remove experimental tag from rte_eth_dev_set_ptypes().
>>
>> Signed-off-by: Pavan Nikhilesh <pbhagavatula@marvell.com>
> Acked-by: Ray Kinsella <mdr@ashroe.eu>
> 

Applied to dpdk-next-net/main, thanks.

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2021-09-15  8:16 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-09-02  8:17 [dpdk-dev] [PATCH] ethdev: promote set ptypes API to stable pbhagavatula
2021-09-02  8:58 ` Andrew Rybchenko
2021-09-02 15:56 ` Kinsella, Ray
2021-09-15  8:15   ` Ferruh Yigit

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).