These were added back in 2020.

Signed-off-by: Stephen Hemminger <step...@networkplumber.org>
---
 lib/eal/include/generic/rte_power_intrinsics.h | 16 ----------------
 lib/eal/version.map                            | 13 ++++---------
 2 files changed, 4 insertions(+), 25 deletions(-)

diff --git a/lib/eal/include/generic/rte_power_intrinsics.h 
b/lib/eal/include/generic/rte_power_intrinsics.h
index f981df7d75a1..922c32c83fdb 100644
--- a/lib/eal/include/generic/rte_power_intrinsics.h
+++ b/lib/eal/include/generic/rte_power_intrinsics.h
@@ -54,9 +54,6 @@ struct rte_power_monitor_cond {
 };
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
  * Monitor specific address for changes. This will cause the CPU to enter an
  * architecture-defined optimized power state until either the specified
  * memory address is written to, a certain TSC timestamp is reached, or other
@@ -84,14 +81,10 @@ struct rte_power_monitor_cond {
  *   -EINVAL on invalid parameters
  *   -ENOTSUP if unsupported
  */
-__rte_experimental
 int rte_power_monitor(const struct rte_power_monitor_cond *pmc,
                const uint64_t tsc_timestamp);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
  * Wake up a specific lcore that is in a power optimized state and is 
monitoring
  * an address.
  *
@@ -104,13 +97,9 @@ int rte_power_monitor(const struct rte_power_monitor_cond 
*pmc,
  * @param lcore_id
  *   Lcore ID of a sleeping thread.
  */
-__rte_experimental
 int rte_power_monitor_wakeup(const unsigned int lcore_id);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
  * Enter an architecture-defined optimized power state until a certain TSC
  * timestamp is reached.
  *
@@ -126,13 +115,9 @@ int rte_power_monitor_wakeup(const unsigned int lcore_id);
  *   -EINVAL on invalid parameters
  *   -ENOTSUP if unsupported
  */
-__rte_experimental
 int rte_power_pause(const uint64_t tsc_timestamp);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice
- *
  * Monitor a set of addresses for changes. This will cause the CPU to enter an
  * architecture-defined optimized power state until either one of the specified
  * memory addresses is written to, a certain TSC timestamp is reached, or other
@@ -160,7 +145,6 @@ int rte_power_pause(const uint64_t tsc_timestamp);
  *   -EINVAL on invalid parameters
  *   -ENOTSUP if unsupported
  */
-__rte_experimental
 int rte_power_monitor_multi(const struct rte_power_monitor_cond pmc[],
                const uint32_t num, const uint64_t tsc_timestamp);
 
diff --git a/lib/eal/version.map b/lib/eal/version.map
index a71147aec83f..3b42d6e0e4c1 100644
--- a/lib/eal/version.map
+++ b/lib/eal/version.map
@@ -250,6 +250,10 @@ DPDK_24 {
        rte_mp_request_sync;
        rte_mp_sendmsg;
        rte_openlog_stream;
+       rte_power_monitor; # WINDOWS_NO_EXPORT
+       rte_power_monitor_wakeup; # WINDOWS_NO_EXPORT
+       rte_power_pause; # WINDOWS_NO_EXPORT
+       rte_power_monitor_multi; # WINDOWS_NO_EXPORT
        rte_rand;
        rte_rand_max;
        rte_realloc;
@@ -401,15 +405,6 @@ EXPERIMENTAL {
        rte_vect_get_max_simd_bitwidth;
        rte_vect_set_max_simd_bitwidth;
 
-       # added in 21.02
-       rte_power_monitor; # WINDOWS_NO_EXPORT
-       rte_power_monitor_wakeup; # WINDOWS_NO_EXPORT
-       rte_power_pause; # WINDOWS_NO_EXPORT
-
-
-       # added in 21.08
-       rte_power_monitor_multi; # WINDOWS_NO_EXPORT
-
        # added in 23.03
        rte_lcore_register_usage_cb;
        rte_thread_create_control;
-- 
2.39.2

Reply via email to