[v3,12/29] timer: remove experimental from rte_timer_next_ticks

Message ID 20231019165559.115742-13-stephen@networkplumber.org (mailing list archive)
State Superseded, archived
Delegated to: Thomas Monjalon
Headers
Series Promote experimental API's to stable. |

Checks

Context Check Description
ci/checkpatch success coding style OK

Commit Message

Stephen Hemminger Oct. 19, 2023, 4:55 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 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;
-};