[12/20] timer: remove experimental from rte_timer_next_ticks

Message ID 20230808173527.186042-13-stephen@networkplumber.org (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series remove experimental flag from some API's |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Stephen Hemminger Aug. 8, 2023, 5:35 p.m. UTC
  Function was added in 20.11, remove experimental flag.

Signed-off-by: Stephen Hemminger <stephen@networkplumber.org>
---
 lib/timer/rte_timer.h | 4 ----
 lib/timer/version.map | 7 +------
 2 files changed, 1 insertion(+), 10 deletions(-)
  

Patch

diff --git a/lib/timer/rte_timer.h b/lib/timer/rte_timer.h
index c8710c4dc9b1..df791cfbd626 100644
--- a/lib/timer/rte_timer.h
+++ b/lib/timer/rte_timer.h
@@ -332,9 +332,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.
  *
@@ -344,7 +341,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;
-};