From patchwork Wed Jan 15 15:53:34 2020 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: "Iremonger, Bernard" X-Patchwork-Id: 64713 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id 37BE9A0513; Wed, 15 Jan 2020 16:53:55 +0100 (CET) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 0CF911C1B9; Wed, 15 Jan 2020 16:53:55 +0100 (CET) Received: from mga02.intel.com (mga02.intel.com [134.134.136.20]) by dpdk.org (Postfix) with ESMTP id E61551C0D4 for ; Wed, 15 Jan 2020 16:53:52 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga001.fm.intel.com ([10.253.24.23]) by orsmga101.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 15 Jan 2020 07:53:51 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.70,323,1574150400"; d="scan'208";a="254009587" Received: from sivswdev08.ir.intel.com (HELO localhost.localdomain) ([10.237.217.47]) by fmsmga001.fm.intel.com with ESMTP; 15 Jan 2020 07:53:49 -0800 From: Bernard Iremonger To: dev@dpdk.org, beilei.xing@intel.com, qi.z.zhang@intel.com, declan.doherty@intel.com Cc: konstantin.ananyev@intel.com, stephen1.byrne@intel.com, helin.zhang@intel.com, Bernard Iremonger Date: Wed, 15 Jan 2020 15:53:34 +0000 Message-Id: <1579103627-31985-1-git-send-email-bernard.iremonger@intel.com> X-Mailer: git-send-email 1.7.0.7 In-Reply-To: <1579010128-15794-2-git-send-email-bernard.iremonger@intel.com> References: <1579010128-15794-2-git-send-email-bernard.iremonger@intel.com> Subject: [dpdk-dev] [PATCH v6 00/13] net/i40e: ESP support 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" Changes in V6: ------------- Rebase to latest master branch Fixed patch 0001-app-testpmd-parse-flow-command-line-for-ESP.patch Dropped the following v5 patch due to ABI breakage: 0012-librte_ethdev-add-ESP-and-AH-flow-types-to-RSS.patch Changes in V5: ------------- Rebase to latest master branch Update 0012-librte_ethdev-add-ESP-and-AH-flow-types-to-RSS.patch Changes in V4: ------------- Add extra patch for testpmd Add extra patch for config Split v3 patch "net/i40e: process ESP flows" into 4 patches Changes in V3: ------------- Added i40e_flow_set_filter_spi() function in i40e_flow.c Set UDP destination port to 4500 for ESP in i40e_ethdev.h Split flow structures into 4 instead of 2 in i40e_ethdev.h Dropped extra printf from commandline_flow.c Changes in V2: -------------- Moved change in app/test-pmd/config.c to a seperate patch. Added extra parameter to fill_ip6_head() in i40e_fdir.c set is_udp to false in i40e_flow_fdir_get_pctype_value() in i40e_flow.c Bernard Iremonger (13): app/testpmd: parse flow command line for ESP app/testpmd: improve debug app/testpmd: dump Rx and Tx mbuf net/i40e: improve RSS debug net/i40e: handle ESP tunnel net/i40e: support ipsec-ah profile net/i40e: support ESP in customized code net/i40e: support ESP flows net/i40e: support ESP in Flow Director config: add debug to I40E Flow Director net/i40e: display Flow Director packet doc: release note for ESP doc: update i40e user guide app/test-pmd/cmdline_flow.c | 34 +++++++- app/test-pmd/config.c | 2 +- app/test-pmd/util.c | 1 + config/common_base | 1 + doc/guides/nics/i40e.rst | 4 +- doc/guides/rel_notes/release_20_02.rst | 9 +++ drivers/net/i40e/i40e_ethdev.c | 52 ++++++++++++- drivers/net/i40e/i40e_ethdev.h | 38 +++++++++ drivers/net/i40e/i40e_fdir.c | 138 ++++++++++++++++++++++++++++++--- drivers/net/i40e/i40e_flow.c | 135 +++++++++++++++++++++++++++++++- drivers/net/i40e/rte_pmd_i40e.c | 3 +- 11 files changed, 395 insertions(+), 22 deletions(-)