From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mx1.redhat.com (mx1.redhat.com [209.132.183.28]) by dpdk.org (Postfix) with ESMTP id 390141BC07 for ; Fri, 11 Jan 2019 15:11:49 +0100 (CET) Received: from smtp.corp.redhat.com (int-mx06.intmail.prod.int.phx2.redhat.com [10.5.11.16]) (using TLSv1.2 with cipher AECDH-AES256-SHA (256/256 bits)) (No client certificate requested) by mx1.redhat.com (Postfix) with ESMTPS id 22750356F8; Fri, 11 Jan 2019 14:11:48 +0000 (UTC) Received: from dmarchan.remote.csb (ovpn-117-97.ams2.redhat.com [10.36.117.97]) by smtp.corp.redhat.com (Postfix) with ESMTP id 34D155FC0A; Fri, 11 Jan 2019 14:11:46 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@intel.com, arybchenko@solarflare.com, konstantin.ananyev@intel.com Date: Fri, 11 Jan 2019 15:11:37 +0100 Message-Id: <1547215897-22272-1-git-send-email-david.marchand@redhat.com> In-Reply-To: <1547212498-14999-1-git-send-email-david.marchand@redhat.com> References: <1547212498-14999-1-git-send-email-david.marchand@redhat.com> X-Scanned-By: MIMEDefang 2.79 on 10.5.11.16 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-4.5.16 (mx1.redhat.com [10.5.110.30]); Fri, 11 Jan 2019 14:11:48 +0000 (UTC) Subject: [dpdk-dev] [PATCH v2] ethdev: declare Tx prepare API as not experimental X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 11 Jan 2019 14:11:49 -0000 The Tx prepare API was introduced at a time when the experimental API tag mechanism did not exist yet and is missing the tag. However, this API has been there since 17.02 and did not suffer any change since its introduction. Let's just remove the warning from the documentation. Signed-off-by: David Marchand Acked-by: Ferruh Yigit Acked-by: Andrew Rybchenko Acked-by: Konstantin Ananyev --- lib/librte_ethdev/rte_ethdev.h | 3 --- 1 file changed, 3 deletions(-) diff --git a/lib/librte_ethdev/rte_ethdev.h b/lib/librte_ethdev/rte_ethdev.h index 1960f3a..76266ad 100644 --- a/lib/librte_ethdev/rte_ethdev.h +++ b/lib/librte_ethdev/rte_ethdev.h @@ -4159,9 +4159,6 @@ static inline int rte_eth_tx_descriptor_status(uint16_t port_id, } /** - * @warning - * @b EXPERIMENTAL: this API may change without prior notice - * * Process a burst of output packets on a transmit queue of an Ethernet device. * * The rte_eth_tx_prepare() function is invoked to prepare output packets to be -- 1.8.3.1