From patchwork Mon Feb 13 10:56:59 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Thomas Monjalon X-Patchwork-Id: 20389 Return-Path: X-Original-To: patchwork@dpdk.org Delivered-To: patchwork@dpdk.org Received: from [92.243.14.124] (localhost [IPv6:::1]) by dpdk.org (Postfix) with ESMTP id 1E2B72E41; Mon, 13 Feb 2017 11:57:09 +0100 (CET) Received: from mail-wm0-f41.google.com (mail-wm0-f41.google.com [74.125.82.41]) by dpdk.org (Postfix) with ESMTP id EABDE2A5E for ; Mon, 13 Feb 2017 11:57:07 +0100 (CET) Received: by mail-wm0-f41.google.com with SMTP id t18so5654514wmt.0 for ; Mon, 13 Feb 2017 02:57:07 -0800 (PST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=6wind-com.20150623.gappssmtp.com; s=20150623; h=from:to:cc:subject:date:message-id; bh=yBoZY1zK1xwS8juWcysdFp3pfYUBckvY2ktmsAVlz+w=; b=BCx2h2r5GJlZDOZ71xT+Ltf7kKUNwnGqab3h8Bzm4zhAFzWQfLIuX8w+xwvI2Y5W/m z3PMu0x7HlhAyd4Z7G3K/dYo77U/GRgLtftDqZDwNKWb3c2hKbwbi1IKlRQ/eIhE/9nG UK0liHze+CRRwCYbVuDLO9kxbUyGD/2mYyi9WhKvsjGF8pNLExPIcdn1cuK+4o30WM4T cTwmJuKgbL2YsS2AxvXv4FmcqkoQY9xiTYPgIQWSSYVEkLtwRkemflx2OaEgLXMPZpqu TkHnCHfF2xXAIxpFNCfj9vA8wNtCWA0XOuH1C8MtXOX9EJSB74K6BxOAetHfTZpT3X7S wD/Q== X-Google-DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=1e100.net; s=20161025; h=x-gm-message-state:from:to:cc:subject:date:message-id; bh=yBoZY1zK1xwS8juWcysdFp3pfYUBckvY2ktmsAVlz+w=; b=dkyTPNmHk38LQr0EdJYlj87NibpfofUlYuqZN7dAhzdLIB7ztjrYTlJmgIEVX6Ew7I CnTeH8wzxcnCB2U93V0o0+9erPvOV2CHKlPHjAhwzuSB4Ud039ExjN0WZxXgyrYEvj3v TK0lltv+xOc4DChj2ZTq2ztSFMiD+NGikuLyqsZegnnmsF75oRoP6jSTQKuT3lJgcdDJ YYiEEu92u+rIAQqDKmv9Gbn3bqys5c6ryRqxVXlfTjWj0Z+KLgOlBsl9bgO4iHlhYI4m P6Ur8Ma9emTS/U3dh0uNxxF3Bn8EkJEprAXnl8Ywe3hmx0REre6/aALQyP7oiylIpOpK TIsA== X-Gm-Message-State: AMke39kBLm/ZFrlIgYmXPv9AsjdVVufLnS+TyssoPemW97S8bpCDlPw2OgBTmHm5qF+uJWgz X-Received: by 10.28.103.69 with SMTP id b66mr17644767wmc.73.1486983427691; Mon, 13 Feb 2017 02:57:07 -0800 (PST) Received: from XPS13.localdomain (184.203.134.77.rev.sfr.net. [77.134.203.184]) by smtp.gmail.com with ESMTPSA id g71sm4872497wmc.9.2017.02.13.02.57.06 (version=TLS1_2 cipher=ECDHE-RSA-AES128-SHA bits=128/128); Mon, 13 Feb 2017 02:57:07 -0800 (PST) From: Thomas Monjalon To: Tomasz Kulasek Cc: dev@dpdk.org Date: Mon, 13 Feb 2017 11:56:59 +0100 Message-Id: <1486983419-23029-1-git-send-email-thomas.monjalon@6wind.com> X-Mailer: git-send-email 2.7.0 Subject: [dpdk-dev] [PATCH] doc: remove announce of Tx preparation 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" The feature is part of 17.02, so the ABI changes notice can be removed. Fixes: 4fb7e803eb1a ("ethdev: add Tx preparation") Signed-off-by: Thomas Monjalon --- doc/guides/rel_notes/deprecation.rst | 7 ------- 1 file changed, 7 deletions(-) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index b49e0a0..326fde4 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -23,13 +23,6 @@ Deprecation Notices provide a way to handle device initialization currently being done in ``eth_driver``. -* In 17.02 ABI changes are planned: the ``rte_eth_dev`` structure will be - extended with new function pointer ``tx_pkt_prepare`` allowing verification - and processing of packet burst to meet HW specific requirements before - transmit. Also new fields will be added to the ``rte_eth_desc_lim`` structure: - ``nb_seg_max`` and ``nb_mtu_seg_max`` providing information about number of - segments limit to be transmitted by device for TSO/non-TSO packets. - * ethdev: an API change is planned for 17.02 for the function ``_rte_eth_dev_callback_process``. In 17.02 the function will return an ``int`` instead of ``void`` and a fourth parameter ``void *ret_param`` will be added.