[PATCH v7 11/25] timer: remove experimental from rte_timer_next_ticks

Stephen Hemminger stephen at networkplumber.org
Tue Oct 24 04:54:08 CEST 2023


Function was added in 20.11, remove experimental flag.

Signed-off-by: Stephen Hemminger <stephen at networkplumber.org>
Acked-by: Bruce Richardson <bruce.richardson at intel.com>
---
 lib/timer/rte_timer.h | 4 ----
 lib/timer/version.map | 7 +------
 2 files changed, 1 insertion(+), 10 deletions(-)

diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h
index d3927d5b6bac..153d1993573f 100644
--- a/lib/timer/rte_timer.h
+++ b/lib/timer/rte_timer.h
@@ -331,9 +331,6 @@ void rte_timer_stop_sync(struct rte_timer *tim);
 int rte_timer_pending(struct rte_timer *tim);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
  * Time until the next timer on the current lcore
  * This function gives the ticks until the next timer will be active.
  *
@@ -343,7 +340,6 @@ int rte_timer_pending(struct rte_timer *tim);
  *   - 0: a timer is pending and will run at next rte_timer_manage()
  *   - >0: ticks until the next timer is ready
  */
-__rte_experimental
 int64_t rte_timer_next_ticks(void);
 
 /**
diff --git a/lib/timer/version.map b/lib/timer/version.map
index e3d5a043034c..b180708e2488 100644
--- a/lib/timer/version.map
+++ b/lib/timer/version.map
@@ -10,6 +10,7 @@ DPDK_24 {
 	rte_timer_dump_stats;
 	rte_timer_init;
 	rte_timer_manage;
+	rte_timer_next_ticks;
 	rte_timer_pending;
 	rte_timer_reset;
 	rte_timer_reset_sync;
@@ -21,9 +22,3 @@ DPDK_24 {
 
 	local: *;
 };
-
-EXPERIMENTAL {
-	global:
-
-	rte_timer_next_ticks;
-};
-- 
2.39.2



More information about the dev mailing list