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 494D0A0032; Fri, 1 Oct 2021 12:03:06 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id D446841172; Fri, 1 Oct 2021 12:02:46 +0200 (CEST) Received: from mga11.intel.com (mga11.intel.com [192.55.52.93]) by mails.dpdk.org (Postfix) with ESMTP id CC1934114A for ; Fri, 1 Oct 2021 12:02:45 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10123"; a="222187152" X-IronPort-AV: E=Sophos;i="5.85,337,1624345200"; d="scan'208";a="222187152" Received: from fmsmga006.fm.intel.com ([10.253.24.20]) by fmsmga102.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Oct 2021 03:02:08 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,337,1624345200"; d="scan'208";a="708489087" Received: from silpixa00400884.ir.intel.com ([10.243.22.82]) by fmsmga006.fm.intel.com with ESMTP; 01 Oct 2021 03:02:06 -0700 From: Radu Nicolau To: Cc: dev@dpdk.org, gakhil@marvell.com, declan.doherty@intel.com, hemant.agrawal@oss.nxp.com, Radu Nicolau Date: Fri, 1 Oct 2021 10:51:54 +0100 Message-Id: <20211001095202.3343782-1-radu.nicolau@intel.com> X-Mailer: git-send-email 2.25.1 In-Reply-To: <20210903112257.303961-1-radu.nicolau@intel.com> References: <20210903112257.303961-1-radu.nicolau@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Subject: [dpdk-dev] [PATCH v3 0/8] IPsec Sec GW new features 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" Update the IPsec sample app with new features and updates: - egress TSO support - telemetry support - add reset callback - stats screen configurable as a command line parameter - UDP encapsulation support for inline crypto - ESN with configurable start value Depends on series 18837 ('new features for ipsec and security libraries') Radu Nicolau (8): examples/ipsec-secgw: add stats interval argument examples/ipsec-secgw: update create inline session examples/ipsec-secgw: add support for inline crypto UDP encapsulation examples/ipsec-secgw: add support for TSO examples/ipsec-secgw: add support for telemetry examples/ipsec-secgw: add support for defining initial sequence number value examples/ipsec-secgw: add ethdev reset callback examples/ipsec-secgw: add support for additional algorithms doc/guides/sample_app_ug/ipsec_secgw.rst | 36 ++ examples/ipsec-secgw/ipsec-secgw.c | 404 +++++++++++++++++++++-- examples/ipsec-secgw/ipsec-secgw.h | 48 ++- examples/ipsec-secgw/ipsec.c | 93 +++++- examples/ipsec-secgw/ipsec.h | 14 +- examples/ipsec-secgw/ipsec_process.c | 2 + examples/ipsec-secgw/meson.build | 2 +- examples/ipsec-secgw/sa.c | 179 +++++++++- 8 files changed, 710 insertions(+), 68 deletions(-) -- v2: reworked the patchset to improve quality and address feedback v3: reworked the patchset to accomodate changes in the ipsec libray 2.25.1