From mboxrd@z Thu Jan  1 00:00:00 1970
Return-Path: <dev-bounces@dpdk.org>
Received: from dpdk.org (dpdk.org [92.243.14.124])
	by inbox.dpdk.org (Postfix) with ESMTP id 1E08DA04B5;
	Fri, 11 Sep 2020 07:46:25 +0200 (CEST)
Received: from [92.243.14.124] (localhost [127.0.0.1])
	by dpdk.org (Postfix) with ESMTP id 0A95D1C10F;
	Fri, 11 Sep 2020 07:46:09 +0200 (CEST)
Received: from foss.arm.com (foss.arm.com [217.140.110.172])
 by dpdk.org (Postfix) with ESMTP id 0543C1C115
 for <dev@dpdk.org>; Fri, 11 Sep 2020 07:46:07 +0200 (CEST)
Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14])
 by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 84EDC106F;
 Thu, 10 Sep 2020 22:46:06 -0700 (PDT)
Received: from net-arm-thunderx2-03.shanghai.arm.com
 (net-arm-thunderx2-03.shanghai.arm.com [10.169.210.123])
 by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPA id 53EF63F68F;
 Thu, 10 Sep 2020 22:46:04 -0700 (PDT)
From: Joyce Kong <joyce.kong@arm.com>
To: thomas@monjalon.net, honnappa.nagarahalli@arm.com, phil.yang@arm.com,
 ruifeng.wang@arm.com
Cc: dev@dpdk.org,
	nd@arm.com
Date: Fri, 11 Sep 2020 13:45:34 +0800
Message-Id: <20200911054534.55378-5-joyce.kong@arm.com>
X-Mailer: git-send-email 2.28.0
In-Reply-To: <20200911054534.55378-1-joyce.kong@arm.com>
References: <20200911054534.55378-1-joyce.kong@arm.com>
MIME-Version: 1.0
Content-Transfer-Encoding: 8bit
Subject: [dpdk-dev] [PATCH 4/4] eal/pause: remove experimental tag from wait
	until equal
X-BeenThere: dev@dpdk.org
X-Mailman-Version: 2.1.15
Precedence: list
List-Id: DPDK patches and discussions <dev.dpdk.org>
List-Unsubscribe: <https://mails.dpdk.org/options/dev>,
 <mailto:dev-request@dpdk.org?subject=unsubscribe>
List-Archive: <http://mails.dpdk.org/archives/dev/>
List-Post: <mailto:dev@dpdk.org>
List-Help: <mailto:dev-request@dpdk.org?subject=help>
List-Subscribe: <https://mails.dpdk.org/listinfo/dev>,
 <mailto:dev-request@dpdk.org?subject=subscribe>
Errors-To: dev-bounces@dpdk.org
Sender: "dev" <dev-bounces@dpdk.org>

rte_wait_until_equal_xx APIs were introduced in 19.11 release
and there were no changes in the public APIs since then, it
should be mature enough to remove the experimental tag.

Signed-off-by: Joyce Kong <joyce.kong@arm.com>
Reviewed-by: Phil Yang <phil.yang@arm.com>
Reviewed-by: Ruifeng Wang <ruifeng.wang@arm.com>
---
 lib/librte_eal/include/generic/rte_pause.h | 12 ------------
 1 file changed, 12 deletions(-)

diff --git a/lib/librte_eal/include/generic/rte_pause.h b/lib/librte_eal/include/generic/rte_pause.h
index 7422785f1..668ee4a18 100644
--- a/lib/librte_eal/include/generic/rte_pause.h
+++ b/lib/librte_eal/include/generic/rte_pause.h
@@ -28,9 +28,6 @@
 static inline void rte_pause(void);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
- *
  * Wait for *addr to be updated with a 16-bit expected value, with a relaxed
  * memory ordering model meaning the loads around this API can be reordered.
  *
@@ -44,15 +41,11 @@ static inline void rte_pause(void);
  *  C++11 memory orders with the same names, see the C++11 standard or
  *  the GCC wiki on atomic synchronization for detailed definition.
  */
-__rte_experimental
 static __rte_always_inline void
 rte_wait_until_equal_16(volatile uint16_t *addr, uint16_t expected,
 		int memorder);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
- *
  * Wait for *addr to be updated with a 32-bit expected value, with a relaxed
  * memory ordering model meaning the loads around this API can be reordered.
  *
@@ -66,15 +59,11 @@ rte_wait_until_equal_16(volatile uint16_t *addr, uint16_t expected,
  *  C++11 memory orders with the same names, see the C++11 standard or
  *  the GCC wiki on atomic synchronization for detailed definition.
  */
-__rte_experimental
 static __rte_always_inline void
 rte_wait_until_equal_32(volatile uint32_t *addr, uint32_t expected,
 		int memorder);
 
 /**
- * @warning
- * @b EXPERIMENTAL: this API may change, or be removed, without prior notice
- *
  * Wait for *addr to be updated with a 64-bit expected value, with a relaxed
  * memory ordering model meaning the loads around this API can be reordered.
  *
@@ -88,7 +77,6 @@ rte_wait_until_equal_32(volatile uint32_t *addr, uint32_t expected,
  *  C++11 memory orders with the same names, see the C++11 standard or
  *  the GCC wiki on atomic synchronization for detailed definition.
  */
-__rte_experimental
 static __rte_always_inline void
 rte_wait_until_equal_64(volatile uint64_t *addr, uint64_t expected,
 		int memorder);
-- 
2.28.0