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 D18E31B313 for ; Fri, 19 Jan 2018 21:46:00 +0100 (CET) X-Amp-Result: SKIPPED(no attachment in message) X-Amp-File-Uploaded: False Received: from orsmga006.jf.intel.com ([10.7.209.51]) by orsmga105.jf.intel.com with ESMTP/TLS/DHE-RSA-AES256-GCM-SHA384; 19 Jan 2018 12:45:59 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.46,382,1511856000"; d="scan'208";a="11968878" Received: from irsmsx151.ger.corp.intel.com ([163.33.192.59]) by orsmga006.jf.intel.com with ESMTP; 19 Jan 2018 12:45:57 -0800 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.167]) by IRSMSX151.ger.corp.intel.com ([169.254.4.108]) with mapi id 14.03.0319.002; Fri, 19 Jan 2018 20:45:44 +0000 From: "De Lara Guarch, Pablo" To: Akhil Goyal , "dev@dpdk.org" CC: "hemant.agrawal@nxp.com" , "alok.makhariya@nxp.com" Thread-Topic: [PATCH 1/2] crypto/dpaa2_sec: support for scatter gather Thread-Index: AQHTkRxjHDzsHDxrr0uWStSS28vZ26N7qZeA Date: Fri, 19 Jan 2018 20:45:44 +0000 Message-ID: References: <20180119115102.2247-1-akhil.goyal@nxp.com> In-Reply-To: <20180119115102.2247-1-akhil.goyal@nxp.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNjYxMTliYzktMzAxNS00YmRlLWEwZjgtZjFlZDhlNDE1N2M3IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX05UIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE2LjUuOS4zIiwiVHJ1c3RlZExhYmVsSGFzaCI6InpDaENrN0gxVGUyUDJWcmZjTGxIM0JNbjUyY2xpVmU1NG5BOTQrMEZWK3c9In0= 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 1/2] crypto/dpaa2_sec: support for scatter gather 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, 19 Jan 2018 20:46:01 -0000 Hi Akhil, > -----Original Message----- > From: Akhil Goyal [mailto:akhil.goyal@nxp.com] > Sent: Friday, January 19, 2018 11:51 AM > To: dev@dpdk.org > Cc: De Lara Guarch, Pablo ; > hemant.agrawal@nxp.com; alok.makhariya@nxp.com; Akhil Goyal > > Subject: [PATCH 1/2] crypto/dpaa2_sec: support for scatter gather >=20 > Signed-off-by: Alok Makhariya > Signed-off-by: Akhil Goyal > --- > doc/guides/cryptodevs/features/default.ini | 1 + > doc/guides/cryptodevs/features/dpaa2_sec.ini | 1 + > drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 588 > +++++++++++++++++++++++++-- > test/test/test_cryptodev.c | 10 + > test/test/test_cryptodev_aes_test_vectors.h | 22 +- > test/test/test_cryptodev_hash_test_vectors.h | 14 + > 6 files changed, 596 insertions(+), 40 deletions(-) >=20 > diff --git a/doc/guides/cryptodevs/features/default.ini > b/doc/guides/cryptodevs/features/default.ini > index 18d66cb..728ce3b 100644 > --- a/doc/guides/cryptodevs/features/default.ini > +++ b/doc/guides/cryptodevs/features/default.ini > @@ -18,6 +18,7 @@ CPU AVX512 =3D > CPU AESNI =3D > CPU NEON =3D > CPU ARM CE =3D > +Mbuf scatter gather =3D I think we should separate this addition (Mbuf scatter gather) to the defau= lt.ini file in another patch, and then check the PMDs that support this feature and set it in their .ini = files (with other patches). Hopefully it should be straight forward, as there is a feature flag equival= ent to this one. Thanks, Pablo