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 A3ABF1BB2F for ; Fri, 11 Jan 2019 14:15:35 +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 4CAC87EBAE; Fri, 11 Jan 2019 13:15:34 +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 831AE17106; Fri, 11 Jan 2019 13:15:32 +0000 (UTC) From: David Marchand To: dev@dpdk.org Cc: thomas@monjalon.net, ferruh.yigit@intel.com, arybchenko@solarflare.com Date: Fri, 11 Jan 2019 14:14:58 +0100 Message-Id: <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.27]); Fri, 11 Jan 2019 13:15:34 +0000 (UTC) Subject: [dpdk-dev] [PATCH] 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 13:15:35 -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 --- This has been caught while reviewing the tso support in ovs. There seems to be a lot of other incorrectly documentated apis like this... I will see if I can find an easy way to identify them. --- 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