ethdev: sort experimental symbols per release

Message ID 1564576036-4524-1-git-send-email-david.marchand@redhat.com (mailing list archive)
State Accepted, archived
Delegated to: Thomas Monjalon
Headers
Series ethdev: sort experimental symbols per release |

Checks

Context Check Description
ci/checkpatch success coding style OK
ci/iol-Compile-Testing success Compile Testing PASS
ci/Intel-compilation success Compilation OK
ci/mellanox-Performance-Testing success Performance Testing PASS

Commit Message

David Marchand July 31, 2019, 12:27 p.m. UTC
  Sort the experimental symbols per release to make it easier/quicker to
check for how long we have them.

Signed-off-by: David Marchand <david.marchand@redhat.com>
---
 lib/librte_ethdev/rte_ethdev_version.map | 51 ++++++++++++++++++++------------
 1 file changed, 32 insertions(+), 19 deletions(-)
  

Comments

Ferruh Yigit July 31, 2019, 1:45 p.m. UTC | #1
On 7/31/2019 1:27 PM, David Marchand wrote:
> Sort the experimental symbols per release to make it easier/quicker to
> check for how long we have them.
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>

Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>
  
Stephen Hemminger July 31, 2019, 1:50 p.m. UTC | #2
On Wed, 31 Jul 2019 14:27:16 +0200
David Marchand <david.marchand@redhat.com> wrote:

> Sort the experimental symbols per release to make it easier/quicker to
> check for how long we have them.
> 
> Signed-off-by: David Marchand <david.marchand@redhat.com>

Acked-by: Stephen Hemminger <stephen@networkplumber.org>
  
Thomas Monjalon Aug. 5, 2019, 10:21 a.m. UTC | #3
31/07/2019 15:45, Ferruh Yigit:
> On 7/31/2019 1:27 PM, David Marchand wrote:
> > Sort the experimental symbols per release to make it easier/quicker to
> > check for how long we have them.
> > 
> > Signed-off-by: David Marchand <david.marchand@redhat.com>
> 
> Acked-by: Ferruh Yigit <ferruh.yigit@intel.com>

Applied, thanks
  

Patch

diff --git a/lib/librte_ethdev/rte_ethdev_version.map b/lib/librte_ethdev/rte_ethdev_version.map
index df91418..6df42a4 100644
--- a/lib/librte_ethdev/rte_ethdev_version.map
+++ b/lib/librte_ethdev/rte_ethdev_version.map
@@ -239,25 +239,7 @@  DPDK_19.05 {
 EXPERIMENTAL {
 	global:
 
-	rte_eth_devargs_parse;
-	rte_eth_dev_create;
-	rte_eth_dev_destroy;
-	rte_eth_dev_get_module_eeprom;
-	rte_eth_dev_get_module_info;
-	rte_eth_dev_is_removed;
-	rte_eth_dev_owner_delete;
-	rte_eth_dev_owner_get;
-	rte_eth_dev_owner_new;
-	rte_eth_dev_owner_set;
-	rte_eth_dev_owner_unset;
-	rte_eth_dev_rx_intr_ctl_q_get_fd;
-	rte_eth_find_next_of;
-	rte_eth_find_next_sibling;
-	rte_eth_read_clock;
-	rte_eth_switch_domain_alloc;
-	rte_eth_switch_domain_free;
-	rte_flow_conv;
-	rte_flow_expand_rss;
+	# added in 17.11
 	rte_mtr_capabilities_get;
 	rte_mtr_create;
 	rte_mtr_destroy;
@@ -270,4 +252,35 @@  EXPERIMENTAL {
 	rte_mtr_policer_actions_update;
 	rte_mtr_stats_read;
 	rte_mtr_stats_update;
+
+	# added in 18.02
+	rte_eth_dev_is_removed;
+	rte_eth_dev_owner_delete;
+	rte_eth_dev_owner_get;
+	rte_eth_dev_owner_new;
+	rte_eth_dev_owner_set;
+	rte_eth_dev_owner_unset;
+
+	# added in 18.05
+	rte_eth_dev_create;
+	rte_eth_dev_destroy;
+	rte_eth_dev_get_module_eeprom;
+	rte_eth_dev_get_module_info;
+	rte_eth_devargs_parse;
+	rte_eth_switch_domain_alloc;
+	rte_eth_switch_domain_free;
+
+	# added in 18.08
+	rte_flow_expand_rss;
+
+	# added in 18.11
+	rte_eth_dev_rx_intr_ctl_q_get_fd;
+	rte_flow_conv;
+
+	# added in 19.05
+	rte_eth_find_next_of;
+	rte_eth_find_next_sibling;
+
+	# added in 19.08
+	rte_eth_read_clock;
 };