From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 535AEA0351; Thu, 6 Aug 2020 12:47:35 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 8E0B91C10A; Thu, 6 Aug 2020 12:47:34 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id BC9661C0D0 for ; Thu, 6 Aug 2020 12:47:33 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@mellanox.com) with SMTP; 6 Aug 2020 13:47:31 +0300 Received: from mtl-vdi-280.wap.labs.mlnx. (mtl-vdi-280.wap.labs.mlnx [10.228.134.250]) by labmailer.mlnx (8.13.8/8.13.8) with ESMTP id 076AlV9N012310; Thu, 6 Aug 2020 13:47:31 +0300 From: Dekel Peled To: dev@dpdk.org Cc: jerinjacobk@gmail.com, stephen@networkplumber.org, arybchenko@solarflare.com, ajit.khaparde@broadcom.com, maxime.coquelin@redhat.com, olivier.matz@6wind.com, david.marchand@redhat.com, ferruh.yigit@intel.com, asafp@mellanox.com Date: Thu, 6 Aug 2020 13:45:07 +0300 Message-Id: X-Mailer: git-send-email 1.7.1 In-Reply-To: <50e5d2139368c54b414379b18a59ed46c12893f5.1596556981.git.dekelp@mellanox.com> References: <50e5d2139368c54b414379b18a59ed46c12893f5.1596556981.git.dekelp@mellanox.com> Subject: [dpdk-dev] [PATCH v2] doc: announce change in ETH and VLAN item structs 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" Structs rte_flow_item_eth and rte_flow_item_vlan will be modified, to include an additional value, indicating existence or absence of VLAN headers following the current header, as proposed in RFC https://mails.dpdk.org/archives/dev/2020-August/177536.html. Because of ABI break this change is proposed for 20.11. Signed-off-by: Dekel Peled --- doc/guides/rel_notes/deprecation.rst | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/doc/guides/rel_notes/deprecation.rst b/doc/guides/rel_notes/deprecation.rst index 5201142..2899f56 100644 --- a/doc/guides/rel_notes/deprecation.rst +++ b/doc/guides/rel_notes/deprecation.rst @@ -115,6 +115,11 @@ Deprecation Notices following the IPv6 header, as proposed in RFC https://mails.dpdk.org/archives/dev/2020-August/177257.html. +* ethdev: The ``struct rte_flow_item_eth`` and ``struct rte_flow_item_vlan`` + structs will be modified, to include an additional value, indicating existence + or absence of a VLAN header following the current header, as proposed in RFC + https://mails.dpdk.org/archives/dev/2020-August/177536.html. + * traffic manager: All traffic manager API's in ``rte_tm.h`` were mistakenly made ABI stable in the v19.11 release. The TM maintainer and other contributors have agreed to keep the TM APIs as experimental in expectation of additional spec -- 1.8.3.1