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 98ACDA0C57; Mon, 1 Nov 2021 14:21:03 +0100 (CET) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 8725F410FB; Mon, 1 Nov 2021 14:21:03 +0100 (CET) Received: from mga12.intel.com (mga12.intel.com [192.55.52.136]) by mails.dpdk.org (Postfix) with ESMTP id 307DE40DF6 for ; Mon, 1 Nov 2021 14:21:00 +0100 (CET) X-IronPort-AV: E=McAfee;i="6200,9189,10154"; a="211063726" X-IronPort-AV: E=Sophos;i="5.87,199,1631602800"; d="scan'208";a="211063726" Received: from orsmga008.jf.intel.com ([10.7.209.65]) by fmsmga106.fm.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 01 Nov 2021 06:12:53 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,199,1631602800"; d="scan'208";a="500034316" Received: from silpixa00400884.ir.intel.com ([10.243.22.82]) by orsmga008.jf.intel.com with ESMTP; 01 Nov 2021 06:12:52 -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, 1 Nov 2021 12:58:08 +0000 Message-Id: <20211101125815.3219304-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 v6 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 v6: addressed feeedback 2.25.1