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 4CFB4A0C43; Mon, 18 Oct 2021 12:41:36 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 3022640683; Mon, 18 Oct 2021 12:41:36 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 9DD544003C for ; Mon, 18 Oct 2021 12:41:34 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10140"; a="289073886" X-IronPort-AV: E=Sophos;i="5.85,381,1624345200"; d="scan'208";a="289073886" Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 18 Oct 2021 03:41:33 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.85,381,1624345200"; d="scan'208";a="462283111" Received: from silpixa00400884.ir.intel.com ([10.243.22.82]) by orsmga002.jf.intel.com with ESMTP; 18 Oct 2021 03:41:32 -0700 From: Radu Nicolau To: Cc: dev@dpdk.org, gakhil@marvell.com, declan.doherty@intel.com, hemant.agrawal@oss.nxp.com, Radu Nicolau Date: Mon, 18 Oct 2021 11:28:53 +0100 Message-Id: <20211018102900.959952-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 v4 0/7] 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: - telemetry support - add reset callback - stats screen configurable as a command line parameter - UDP encapsulation support for inline crypto - ESN with configurable start value Radu Nicolau (7): 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: support telemetry examples/ipsec-secgw: define initial ESN value examples/ipsec-secgw: add ethdev reset callback examples/ipsec-secgw: add support for additional algorithms doc/guides/rel_notes/release_21_11.rst | 6 + doc/guides/sample_app_ug/ipsec_secgw.rst | 32 +- examples/ipsec-secgw/ipsec-secgw.c | 400 +++++++++++++++++++++-- examples/ipsec-secgw/ipsec-secgw.h | 48 ++- examples/ipsec-secgw/ipsec.c | 93 +++++- examples/ipsec-secgw/ipsec.h | 13 +- examples/ipsec-secgw/meson.build | 2 +- examples/ipsec-secgw/sa.c | 156 ++++++++- 8 files changed, 680 insertions(+), 70 deletions(-) -- v2: reworked the patchset to improve quality and address feedback v3: reworked the patchset to accomodate changes in the ipsec libray v4: removed TSO patch and reworked the patchset after feedback 2.25.1