From patchwork Wed Oct 27 13:03:43 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Radu Nicolau X-Patchwork-Id: 103048 Return-Path: X-Original-To: patchwork@inbox.dpdk.org Delivered-To: patchwork@inbox.dpdk.org Received: from mails.dpdk.org (mails.dpdk.org [217.70.189.124]) by inbox.dpdk.org (Postfix) with ESMTP id DCE6EA0C47; Wed, 27 Oct 2021 15:18:07 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id E9FE941145; Wed, 27 Oct 2021 15:18:03 +0200 (CEST) Received: from mga18.intel.com (mga18.intel.com [134.134.136.126]) by mails.dpdk.org (Postfix) with ESMTP id 236B44068C for ; Wed, 27 Oct 2021 15:18:00 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10149"; a="217066659" X-IronPort-AV: E=Sophos;i="5.87,186,1631602800"; d="scan'208";a="217066659" Received: from fmsmga008.fm.intel.com ([10.253.24.58]) by orsmga106.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2021 06:17:59 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,186,1631602800"; d="scan'208";a="537557015" Received: from silpixa00400884.ir.intel.com ([10.243.22.82]) by fmsmga008.fm.intel.com with ESMTP; 27 Oct 2021 06:17:51 -0700 From: Radu Nicolau To: Cc: dev@dpdk.org, gakhil@marvell.com, anoobj@marvell.com, konstantin.ananyev@intel.com, Radu Nicolau Date: Wed, 27 Oct 2021 14:03:43 +0100 Message-Id: <20211027130345.2249987-1-radu.nicolau@intel.com> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Subject: [dpdk-dev] [PATCH v4 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 | 22 ++++ examples/ipsec-secgw/sa.c | 25 +++- lib/ipsec/esp_outb.c | 141 ++++++++++++++++++----- 8 files changed, 176 insertions(+), 35 deletions(-)