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 47C33A04DB; Wed, 14 Oct 2020 19:19:01 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id BC22F1D9B6; Wed, 14 Oct 2020 19:18:59 +0200 (CEST) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by dpdk.org (Postfix) with ESMTP id 11A0B1BACC for ; Wed, 14 Oct 2020 19:18:57 +0200 (CEST) IronPort-SDR: Nh2lJyMbAUZQ1fehZkQzoy995luHPfVO4Gv4KXYZvYZEojDntRaRQvL79NYyEGwCARe/L6Y/7n Y2eRtToUYrvQ== X-IronPort-AV: E=McAfee;i="6000,8403,9774"; a="145459436" X-IronPort-AV: E=Sophos;i="5.77,375,1596524400"; d="scan'208";a="145459436" X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga004.jf.intel.com ([10.7.209.38]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2020 10:18:47 -0700 IronPort-SDR: OPGiQfo/yszNh0ZleWf3ati0uuPT1KhxQRIJ+QQVNxpSft5iQrwqGixR6BY0Xv4cJ3BdaMncvg hthpaUVHsUmA== X-IronPort-AV: E=Sophos;i="5.77,375,1596524400"; d="scan'208";a="463957691" Received: from fyigit-mobl1.ger.corp.intel.com (HELO [10.213.212.224]) ([10.213.212.224]) by orsmga004-auth.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 14 Oct 2020 10:18:45 -0700 To: Dekel Peled , orika@nvidia.com, thomas@monjalon.net, arybchenko@solarflare.com, konstantin.ananyev@intel.com, olivier.matz@6wind.com, wenzhuo.lu@intel.com, beilei.xing@intel.com, bernard.iremonger@intel.com, matan@nvidia.com, shahafs@nvidia.com, viacheslavo@nvidia.com Cc: dev@dpdk.org References: From: Ferruh Yigit Message-ID: <4a67b13b-a667-fa89-af3d-4863f22bc291@intel.com> Date: Wed, 14 Oct 2020 18:18:41 +0100 MIME-Version: 1.0 In-Reply-To: Content-Type: text/plain; charset=utf-8; format=flowed Content-Language: en-US Content-Transfer-Encoding: 7bit Subject: Re: [dpdk-dev] [PATCH v7 0/5] support match on L3 fragmented packets 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" On 10/14/2020 5:35 PM, Dekel Peled wrote: > This series implements support of matching on packets based on the > fragmentation attribute of the packet, i.e. if packet is a fragment > of a larger packet, or the opposite - packet is not a fragment. > > In ethdev, add API to support IPv6 extension headers, and specifically > the IPv6 fragment extension header item. > Testpmd CLI is updated accordingly. > Documentation is updated accordingly. > > --- > v2: add patch 'net/mlx5: enforce limitation on IPv6 next proto' > v3: update patch 'ethdev: add IPv6 fragment extension header item' to avoid ABI breakage. > v4: update rte_flow documentation to clarify use of IPv6 extension header flags. > v5: update following rebase on recent ICMP changes. > v6: - move MLX5 PMD patches to separate series. > - rename IPv6 extension flags for clarity (e.g. frag_ext_exist renamed to has_frag_ext). > v7: remove the announcement from deprecation file. > --- > > Dekel Peled (5): > ethdev: add extensions attributes to IPv6 item > ethdev: add IPv6 fragment extension header item > app/testpmd: support IPv4 fragments > app/testpmd: support IPv6 fragments > app/testpmd: support IPv6 fragment extension item > Series applied to dpdk-next-net/main, thanks.