From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id BE0B5A0547; Thu, 28 Oct 2021 14:36:52 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8E61241100; Thu, 28 Oct 2021 14:36:52 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 3760040DF4 for ; Thu, 28 Oct 2021 14:36:51 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10150"; a="230342436" X-IronPort-AV: E=Sophos;i="5.87,189,1631602800"; d="scan'208";a="230342436" Received: from orsmga007.jf.intel.com ([10.7.209.58]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 28 Oct 2021 05:36:50 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,189,1631602800"; d="scan'208";a="487112864" Received: from silpixa00400884.ir.intel.com ([10.243.22.82]) by orsmga007.jf.intel.com with ESMTP; 28 Oct 2021 05:36:48 -0700 From: Radu Nicolau To: Cc: dev@dpdk.org, gakhil@marvell.com, anoobj@marvell.com, konstantin.ananyev@intel.com, Radu Nicolau Date: Thu, 28 Oct 2021 13:22:44 +0100 Message-Id: <20211028122246.2689255-1-radu.nicolau@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v5 0/2] ipsec: add transmit segmentation offload support X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.29 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" Add transmit segmentation offload support to the IPsec library and IPsec Security GW sample app. These patches were split from previously sent patchsets with feedback addressed https://patchwork.dpdk.org/project/dpdk/patch/20211013121331.300245-7-radu.nicolau@intel.com/ https://patchwork.dpdk.org/project/dpdk/patch/20211001095202.3343782-5-radu.nicolau@intel.com/ Radu Nicolau (2): ipsec: add TSO support examples/ipsec-secgw: add support for TCP TSO doc/guides/prog_guide/ipsec_lib.rst | 2 + doc/guides/rel_notes/release_21_11.rst | 5 + doc/guides/sample_app_ug/ipsec_secgw.rst | 11 ++ examples/ipsec-secgw/ipsec-secgw.c | 4 + examples/ipsec-secgw/ipsec.h | 1 + examples/ipsec-secgw/ipsec_process.c | 23 ++++ examples/ipsec-secgw/sa.c | 25 +++- lib/ipsec/esp_outb.c | 141 ++++++++++++++++++----- 8 files changed, 177 insertions(+), 35 deletions(-) -- v2: addressed feedback and rebased to RC1 v3: added check for offload caps and removed duplicate code v4: updated check for offload caps and reworked the sample app patch for TCP only v5: reworked ptype check 2.25.1