From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga07.intel.com (mga07.intel.com [134.134.136.100]) by dpdk.org (Postfix) with ESMTP id 26FA97D06 for ; Fri, 25 Aug 2017 17:01:14 +0200 (CEST) Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga105.jf.intel.com with ESMTP; 25 Aug 2017 08:01:13 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.41,426,1498546800"; d="scan'208";a="143898735" Received: from silpixa00383879.ir.intel.com (HELO silpixa00383879.ger.corp.intel.com) ([10.237.223.127]) by fmsmga005.fm.intel.com with ESMTP; 25 Aug 2017 08:01:11 -0700 From: Radu Nicolau To: dev@dpdk.org Cc: Radu Nicolau Date: Fri, 25 Aug 2017 15:57:21 +0100 Message-Id: <1503673046-30651-1-git-send-email-radu.nicolau@intel.com> X-Mailer: git-send-email 2.7.5 Subject: [dpdk-dev] [RFC PATCH 0/5] Enable IPSec Inline for IXGBE PMD X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: DPDK patches and discussions List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 25 Aug 2017 15:01:15 -0000 This RFC is an update for the existing RFC IPSec Inline and look aside crypto offload http://dpdk.org/ml/archives/dev/2017-August/072900.html It provides a few updates on the general rte_security APIs, adds security ops struct pointer to the net devices, implements the support on the IXGBE PMD and support in the IPsec sample application. Radu Nicolau (5): mbuff: added security offload flags ethdev: added security ops struct pointer rte_security: updates and enabled security operations for ethdev ixgbe: enable inline ipsec examples/ipsec-secgw: enabled inline ipsec config/common_base | 1 + drivers/net/ixgbe/Makefile | 4 +- drivers/net/ixgbe/ixgbe_ethdev.c | 3 + drivers/net/ixgbe/ixgbe_ethdev.h | 10 +- drivers/net/ixgbe/ixgbe_ipsec.c | 617 +++++++++++++++++++++++++ drivers/net/ixgbe/ixgbe_ipsec.h | 142 ++++++ drivers/net/ixgbe/ixgbe_rxtx.c | 33 +- drivers/net/ixgbe/ixgbe_rxtx_vec_sse.c | 44 ++ examples/ipsec-secgw/esp.c | 26 +- examples/ipsec-secgw/ipsec.c | 61 ++- examples/ipsec-secgw/ipsec.h | 2 + examples/ipsec-secgw/sa.c | 65 ++- lib/Makefile | 1 + lib/librte_cryptodev/rte_cryptodev_pmd.h | 4 +- lib/librte_cryptodev/rte_cryptodev_version.map | 10 + lib/librte_cryptodev/rte_security.c | 34 +- lib/librte_cryptodev/rte_security.h | 12 +- lib/librte_ether/rte_ethdev.h | 1 + lib/librte_mbuf/rte_mbuf.h | 19 +- 19 files changed, 1036 insertions(+), 53 deletions(-) create mode 100644 drivers/net/ixgbe/ixgbe_ipsec.c create mode 100644 drivers/net/ixgbe/ixgbe_ipsec.h -- 2.7.5