Added in 21.11 release.
Signed-off-by: Stephen Hemminger <[email protected]>
---
lib/eal/include/rte_pflock.h | 20 --------------------
1 file changed, 20 deletions(-)
diff --git a/lib/eal/include/rte_pflock.h b/lib/eal/include/rte_pflock.h
index 553504bb6dd9..9aaf56f715cc 100644
--- a/lib/eal/include/rte_pflock.h
+++ b/lib/eal/include/rte_pflock.h
@@ -80,15 +80,11 @@ typedef struct rte_pflock rte_pflock_t;
#define RTE_PFLOCK_INITIALIZER { }
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
* Initialize the pflock to an unlocked state.
*
* @param pf
* A pointer to the pflock.
*/
-__rte_experimental
static inline void
rte_pflock_init(struct rte_pflock *pf)
{
@@ -99,15 +95,11 @@ rte_pflock_init(struct rte_pflock *pf)
}
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
* Take a pflock for read.
*
* @param pf
* A pointer to a pflock structure.
*/
-__rte_experimental
static inline void
rte_pflock_read_lock(rte_pflock_t *pf)
{
@@ -127,15 +119,11 @@ rte_pflock_read_lock(rte_pflock_t *pf)
}
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
* Release a pflock locked for reading.
*
* @param pf
* A pointer to the pflock structure.
*/
-__rte_experimental
static inline void
rte_pflock_read_unlock(rte_pflock_t *pf)
{
@@ -143,15 +131,11 @@ rte_pflock_read_unlock(rte_pflock_t *pf)
}
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
* Take the pflock for write.
*
* @param pf
* A pointer to the pflock structure.
*/
-__rte_experimental
static inline void
rte_pflock_write_lock(rte_pflock_t *pf)
{
@@ -181,15 +165,11 @@ rte_pflock_write_lock(rte_pflock_t *pf)
}
/**
- * @warning
- * @b EXPERIMENTAL: this API may change without prior notice.
- *
* Release a pflock held for writing.
*
* @param pf
* A pointer to a pflock structure.
*/
-__rte_experimental
static inline void
rte_pflock_write_unlock(rte_pflock_t *pf)
{
--
2.39.2