From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga06.intel.com (mga06.intel.com [134.134.136.31]) by dpdk.org (Postfix) with ESMTP id 438401B1B7 for ; Tue, 9 Jan 2018 17:06:04 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from fmsmga005.fm.intel.com ([10.253.24.32]) by orsmga104.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 09 Jan 2018 08:05:52 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,336,1511856000"; d="scan'208";a="193459927" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by fmsmga005.fm.intel.com with ESMTP; 09 Jan 2018 08:05:50 -0800 Received: from irsmsx111.ger.corp.intel.com (10.108.20.4) by IRSMSX102.ger.corp.intel.com (163.33.3.155) with Microsoft SMTP Server (TLS) id 14.3.319.2; Tue, 9 Jan 2018 16:05:50 +0000 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.167]) by irsmsx111.ger.corp.intel.com ([169.254.2.30]) with mapi id 14.03.0319.002; Tue, 9 Jan 2018 16:05:50 +0000 From: "De Lara Guarch, Pablo" To: Anoob Joseph , Akhil Goyal , "Doherty, Declan" , "Nicolau, Radu" , "Gonzalez Monroy, Sergio" CC: Jerin Jacob , Narayana Prasad , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v6 0/2] add inline protocol support Thread-Index: AQHTd9AHuWkGPpxIK0qcXieCCEZsq6Nr17fA Date: Tue, 9 Jan 2018 16:05:49 +0000 Message-ID: References: <1513327396-22178-1-git-send-email-anoob.joseph@caviumnetworks.com> <1513581305-26202-1-git-send-email-anoob.joseph@caviumnetworks.com> In-Reply-To: <1513581305-26202-1-git-send-email-anoob.joseph@caviumnetworks.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiYmZhYWQ0MDUtYjFmNy00NTNlLTk2ZTQtYTJkNmE5NGJkZWM2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6ImVVYVwvcHFzdmVnYlgxeDdlenlKVEtYWjkxT2tvclZGdmUrdHVLK0UxQU4wPSJ9 x-ctpclassification: CTP_NT dlp-product: dlpe-windows dlp-version: 11.0.0.116 dlp-reaction: no-action x-originating-ip: [163.33.239.182] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v6 0/2] add inline protocol support 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: Tue, 09 Jan 2018 16:06:04 -0000 > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Anoob Joseph > Sent: Monday, December 18, 2017 7:15 AM > To: Akhil Goyal ; Doherty, Declan > ; Nicolau, Radu ; > Gonzalez Monroy, Sergio > Cc: Anoob Joseph ; Jerin Jacob > ; Narayana Prasad > ; dev@dpdk.org > Subject: [dpdk-dev] [PATCH v6 0/2] add inline protocol support >=20 > The series adds inline protocol support in DPDK. >=20 > First patch introduces changes in lib to enable applications to save a (v= oid > *) pointer as "userdata" in security session. For inline processed packet= s, > applications would use the metadata field in the mbuf > (rte_mbuf.udata64) to retrieve the userdata registered for the security > session which processed the packet. The metadata would be device specific= . >=20 > This is primarily required for inline protocol processed ingress packets.= For > such packets, the packet may not have enough information to identify the > security parameters with which the packet was processed. > Application can register what it needs to identify the required parameter= . > The userdata will be set while creating the security session. >=20 > Second patch adds support for inline protocol in ipsec-secgw application >=20 > Anoob Joseph (2): > lib/security: add support for get userdata > examples/ipsec-secgw: add support for inline protocol >=20 > doc/guides/prog_guide/rte_security.rst | 22 ++++- > examples/ipsec-secgw/esp.c | 6 +- > examples/ipsec-secgw/ipsec-secgw.c | 42 +++++++++- > examples/ipsec-secgw/ipsec.c | 121 +++++++++++++++++++++= +- > ---- > lib/librte_security/rte_security.c | 12 +++ > lib/librte_security/rte_security.h | 20 +++++ > lib/librte_security/rte_security_driver.h | 18 ++++ > lib/librte_security/rte_security_version.map | 1 + > 8 files changed, 219 insertions(+), 23 deletions(-) >=20 > -- > 2.7.4 Applied to dpdk-next-crypto. Thanks, Pablo