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 C69EFA04DB; Thu, 15 Oct 2020 16:07:20 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 4F6B71C21E; Thu, 15 Oct 2020 16:06:54 +0200 (CEST) Received: from mellanox.co.il (mail-il-dmz.mellanox.com [193.47.165.129]) by dpdk.org (Postfix) with ESMTP id A3E761E968 for ; Thu, 15 Oct 2020 16:06:50 +0200 (CEST) Received: from Internal Mail-Server by MTLPINE1 (envelope-from dekelp@nvidia.com) with SMTP; 15 Oct 2020 17:06:47 +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 09FE6lEV007456; Thu, 15 Oct 2020 17:06:47 +0300 From: Dekel Peled To: matan@nvidia.com, shahafs@nvidia.com, viacheslavo@nvidia.com Cc: dev@dpdk.org Date: Thu, 15 Oct 2020 17:05:52 +0300 Message-Id: X-Mailer: git-send-email 1.7.1 In-Reply-To: References: Subject: [dpdk-dev] [PATCH v2 0/5] net/mlx5: 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" Patch series [1] adds to ethdev and testpmd the support of matching on fragmented/non-fragmented packets. Following [1], this patch series adds to MLX5 PMD the support of matching on IPv4 fragmented packets, IPv6 fragmented packets, and IPv6 fragment extension header item. [1] https://mails.dpdk.org/archives/dev/2020-October/186177.html --- v2: rebase on top of latest commits. --- Dekel Peled (5): net/mlx5: remove handling of ICMP fragmented packets net/mlx5: support match on IPv4 fragment packets net/mlx5: support match on IPv6 fragment packets net/mlx5: support match on IPv6 fragment ext. item net/mlx5: enforce limitation on IPv6 next proto doc/guides/nics/mlx5.rst | 7 + doc/guides/rel_notes/release_20_11.rst | 5 + drivers/net/mlx5/mlx5_flow.c | 62 ++++-- drivers/net/mlx5/mlx5_flow.h | 14 ++ drivers/net/mlx5/mlx5_flow_dv.c | 382 +++++++++++++++++++++++++++++---- drivers/net/mlx5/mlx5_flow_verbs.c | 9 +- 6 files changed, 420 insertions(+), 59 deletions(-) -- 1.8.3.1