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 0BDA5A0547; Wed, 27 Oct 2021 13:59:28 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8C269407FF; Wed, 27 Oct 2021 13:59:27 +0200 (CEST) Received: from mga03.intel.com (mga03.intel.com [134.134.136.65]) by mails.dpdk.org (Postfix) with ESMTP id 959294003F for ; Wed, 27 Oct 2021 13:59:25 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10149"; a="230090297" X-IronPort-AV: E=Sophos;i="5.87,186,1631602800"; d="scan'208";a="230090297" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga103.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 27 Oct 2021 04:59:24 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,186,1631602800"; d="scan'208";a="447185801" Received: from silpixa00400884.ir.intel.com ([10.243.22.82]) by orsmga006.jf.intel.com with ESMTP; 27 Oct 2021 04:59:23 -0700 From: Radu Nicolau To: Cc: dev@dpdk.org, gakhil@marvell.com, declan.doherty@intel.com, hemant.agrawal@oss.nxp.com, Radu Nicolau Date: Wed, 27 Oct 2021 12:45:23 +0100 Message-Id: <20211027114530.2244661-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 v5 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 v5: rebased to RC1 2.25.1