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 4CAA7FAFB for ; Mon, 27 Mar 2017 15:58:29 +0200 (CEST) Received: from orsmga002.jf.intel.com ([10.7.209.21]) by orsmga104.jf.intel.com with ESMTP; 27 Mar 2017 06:58:28 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.36,231,1486454400"; d="scan'208";a="65517838" Received: from irsmsx103.ger.corp.intel.com ([163.33.3.157]) by orsmga002.jf.intel.com with ESMTP; 27 Mar 2017 06:58:27 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.239]) by IRSMSX103.ger.corp.intel.com ([169.254.3.241]) with mapi id 14.03.0319.002; Mon, 27 Mar 2017 14:58:26 +0100 From: "De Lara Guarch, Pablo" To: "akhil.goyal@nxp.com" CC: "dev@dpdk.org" Thread-Topic: [PATCH v6 04/13] crypto/dpaa2_sec: add basic crypto operations Thread-Index: AQHSpOnUtDc4DmZt70Gw0/CJtSfVMKGoudtA Date: Mon, 27 Mar 2017 13:58:26 +0000 Message-ID: References: <20170303194935.30831-1-akhil.goyal@nxp.com> <20170324215754.21751-1-akhil.goyal@nxp.com> <20170324215754.21751-5-akhil.goyal@nxp.com> In-Reply-To: <20170324215754.21751-5-akhil.goyal@nxp.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMWM5ODhmNjItMTY2ZC00MTlhLWEwMTgtNzgyNjEwZWU5YjY2IiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Ik9GVDY3Z1ZtMWZTWXNXR05XMU9XcXMxek9vSXp4K2JLUFBRb3pwUUpwVGM9In0= x-ctpclassification: CTP_IC x-originating-ip: [163.33.239.181] Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: quoted-printable MIME-Version: 1.0 Subject: Re: [dpdk-dev] [PATCH v6 04/13] crypto/dpaa2_sec: add basic crypto operations 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: Mon, 27 Mar 2017 13:58:29 -0000 > -----Original Message----- > From: akhil.goyal@nxp.com [mailto:akhil.goyal@nxp.com] > Sent: Friday, March 24, 2017 9:58 PM > To: dev@dpdk.org > Cc: thomas.monjalon@6wind.com; Doherty, Declan; De Lara Guarch, Pablo; > Mcnamara, John; nhorman@tuxdriver.com; hemant.agrawal@nxp.com; > Akhil Goyal > Subject: [PATCH v6 04/13] crypto/dpaa2_sec: add basic crypto operations >=20 > From: Akhil Goyal >=20 > Signed-off-by: Hemant Agrawal > Signed-off-by: Akhil Goyal > --- > drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c | 181 > ++++++++++++++++++++++++++++ > 1 file changed, 181 insertions(+) >=20 > diff --git a/drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c > b/drivers/crypto/dpaa2_sec/dpaa2_sec_dpseci.c > index 378df4a..aa08922 100644 ... > + > +static int > +dpaa2_sec_dev_configure(struct rte_cryptodev *dev __rte_unused) > +{ > + PMD_INIT_FUNC_TRACE(); > + > + return -ENOTSUP; > +} > + There have been an API change here, so this configure function has another = parameter, "struct rte_cryptodev_config". If you need to send another version, make the change (rebase against latest= subtree). If not, I will make the change for you. Thanks, Pablo