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 452EBA0547; Wed, 27 Oct 2021 02:36:48 +0200 (CEST) Received: from [217.70.189.124] (localhost [127.0.0.1]) by mails.dpdk.org (Postfix) with ESMTP id 31BE6410F2; Wed, 27 Oct 2021 02:36:48 +0200 (CEST) Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by mails.dpdk.org (Postfix) with ESMTP id 6B592410F1 for ; Wed, 27 Oct 2021 02:36:46 +0200 (CEST) X-IronPort-AV: E=McAfee;i="6200,9189,10149"; a="290883081" X-IronPort-AV: E=Sophos;i="5.87,184,1631602800"; d="scan'208";a="290883081" Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga104.jf.intel.com with ESMTP/TLS/ECDHE-RSA-AES256-GCM-SHA384; 26 Oct 2021 17:36:45 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.87,184,1631602800"; d="scan'208";a="446991501" Received: from irsmsx602.ger.corp.intel.com ([163.33.146.8]) by orsmga006.jf.intel.com with ESMTP; 26 Oct 2021 17:36:45 -0700 Received: from shsmsx601.ccr.corp.intel.com (10.109.6.141) by irsmsx602.ger.corp.intel.com (163.33.146.8) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2242.12; Wed, 27 Oct 2021 01:36:42 +0100 Received: from shsmsx601.ccr.corp.intel.com ([10.109.6.141]) by SHSMSX601.ccr.corp.intel.com ([10.109.6.141]) with mapi id 15.01.2242.012; Wed, 27 Oct 2021 08:36:40 +0800 From: "Zhang, Qi Z" To: "Nicolau, Radu" CC: "dev@dpdk.org" , "Doherty, Declan" , "Sinha, Abhijit" , "Wu, Jingjing" , "Xing, Beilei" , "Richardson, Bruce" , "Ananyev, Konstantin" Thread-Topic: [PATCH v12 0/7] iavf: add iAVF IPsec inline crypto support Thread-Index: AQHXynNHGDka2JtGUUS+jZbPRZ2CVKvmAGZg Date: Wed, 27 Oct 2021 00:36:40 +0000 Message-ID: References: <20210909142428.750634-1-radu.nicolau@intel.com> <20211026135657.2034763-1-radu.nicolau@intel.com> In-Reply-To: <20211026135657.2034763-1-radu.nicolau@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: dlp-reaction: no-action dlp-version: 11.6.200.16 dlp-product: dlpe-windows x-originating-ip: [10.239.127.36] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v12 0/7] iavf: add iAVF IPsec inline crypto support 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" > -----Original Message----- > From: Nicolau, Radu > Sent: Tuesday, October 26, 2021 9:57 PM > Cc: dev@dpdk.org; Doherty, Declan ; Sinha, > Abhijit ; Wu, Jingjing ; = Zhang, > Qi Z ; Xing, Beilei ; Richar= dson, > Bruce ; Ananyev, Konstantin > ; Nicolau, Radu > Subject: [PATCH v12 0/7] iavf: add iAVF IPsec inline crypto support >=20 > Add support for inline crypto for IPsec, for ESP transport and tunnel ove= r IPv4 > and IPv6, as well as supporting the offload for ESP over UDP, and inconju= nction > with TSO for UDP and TCP flows. >=20 > Radu Nicolau (7): > common/iavf: add iAVF IPsec inline crypto support > net/iavf: rework tx path > net/iavf: add support for asynchronous virt channel messages > net/iavf: add iAVF IPsec inline crypto support > net/iavf: add xstats support for inline IPsec crypto > net/iavf: add watchdog for VFLR > net/iavf: update doc with inline crypto support >=20 > doc/guides/nics/features/iavf.ini | 2 + > doc/guides/nics/intel_vf.rst | 10 + > doc/guides/rel_notes/release_21_11.rst | 1 + > drivers/common/iavf/iavf_type.h | 1 + > drivers/common/iavf/virtchnl.h | 17 +- > drivers/common/iavf/virtchnl_inline_ipsec.h | 553 +++++ > drivers/net/iavf/iavf.h | 52 +- > drivers/net/iavf/iavf_ethdev.c | 219 +- > drivers/net/iavf/iavf_generic_flow.c | 15 + > drivers/net/iavf/iavf_generic_flow.h | 2 + > drivers/net/iavf/iavf_ipsec_crypto.c | 1894 +++++++++++++++++ > drivers/net/iavf/iavf_ipsec_crypto.h | 160 ++ > .../net/iavf/iavf_ipsec_crypto_capabilities.h | 383 ++++ > drivers/net/iavf/iavf_rxtx.c | 710 ++++-- > drivers/net/iavf/iavf_rxtx.h | 212 +- > drivers/net/iavf/iavf_rxtx_vec_sse.c | 10 +- > drivers/net/iavf/iavf_vchnl.c | 167 +- > drivers/net/iavf/meson.build | 3 +- > drivers/net/iavf/rte_pmd_iavf.h | 1 + > drivers/net/iavf/version.map | 3 + > 20 files changed, 4098 insertions(+), 317 deletions(-) create mode 1006= 44 > drivers/common/iavf/virtchnl_inline_ipsec.h > create mode 100644 drivers/net/iavf/iavf_ipsec_crypto.c > create mode 100644 drivers/net/iavf/iavf_ipsec_crypto.h > create mode 100644 drivers/net/iavf/iavf_ipsec_crypto_capabilities.h >=20 > -- > v2: small updates and fixes in the flow related section > v3: split the huge patch and address feedback > v4: small changes due to dependencies changes > v5: updated the watchdow patch > v6: rebased and updated the common section > v7: fixed TSO issue and disabled watchdog by default > v8: rebased to next-net-intel and added doc updates > v9: fixed IV len for AEAD and GMAC > v10: removed blank lines at EOF > v11: rebased patchset > v12: rebased patchset to RC1 >=20 > 2.25.1 Applied to dpdk-next-net-intel. Thanks Qi