From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga04.intel.com (mga04.intel.com [192.55.52.120]) by dpdk.org (Postfix) with ESMTP id 378F658C3 for ; Mon, 22 Feb 2016 12:17:38 +0100 (CET) Received: from fmsmga004.fm.intel.com ([10.253.24.48]) by fmsmga104.fm.intel.com with ESMTP; 22 Feb 2016 03:17:35 -0800 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.22,484,1449561600"; d="scan'208";a="52387430" Received: from irsmsx154.ger.corp.intel.com ([163.33.192.96]) by fmsmga004.fm.intel.com with ESMTP; 22 Feb 2016 03:17:36 -0800 Received: from irsmsx101.ger.corp.intel.com ([169.254.1.113]) by IRSMSX154.ger.corp.intel.com ([169.254.12.208]) with mapi id 14.03.0248.002; Mon, 22 Feb 2016 11:17:34 +0000 From: "Trahe, Fiona" To: "Doherty, Declan" , "dev@dpdk.org" Thread-Topic: [dpdk-dev] [PATCH v2 2/2] cryptodev: change burst API to be crypto op oriented Thread-Index: AQHRawVpIpCpTkLZR0OC4mP5hHX+ZZ837oBA Date: Mon, 22 Feb 2016 11:17:33 +0000 Message-ID: <348A99DA5F5B7549AA880327E580B43588F70858@IRSMSX101.ger.corp.intel.com> References: <1454159235-5175-1-git-send-email-declan.doherty@intel.com> <1455879670-31446-1-git-send-email-declan.doherty@intel.com> <1455879670-31446-3-git-send-email-declan.doherty@intel.com> In-Reply-To: <1455879670-31446-3-git-send-email-declan.doherty@intel.com> Accept-Language: en-IE, en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiMzIxNzkwNzAtMWIyMC00ZTdiLTgxMGQtNTZjNmEzMGU3YmVhIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6IkV6b2o2NXBjVzJTS0VQRGt3RHFobFh5QTRVYkFwK3B0anBoSVBrSWZzSnc9In0= x-ctpclassification: CTP_IC 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 v2 2/2] cryptodev: change burst API to be crypto op oriented X-BeenThere: dev@dpdk.org X-Mailman-Version: 2.1.15 Precedence: list List-Id: patches and discussions about DPDK List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 22 Feb 2016 11:17:38 -0000 Hi Declan, Build fails after make clean. Fix is following change to include path. And one unused include file can be removed. diff --git a/lib/librte_cryptodev/rte_crypto.h b/lib/librte_cryptodev/rte_c= rypto.h index 489314b..5bded98 100644 --- a/lib/librte_cryptodev/rte_crypto.h +++ b/lib/librte_cryptodev/rte_crypto.h @@ -49,7 +49,7 @@ extern "C" { #include #include -#include +#include "rte_crypto_sym.h" /** Crypto operation types */ enum rte_crypto_op_type { diff --git a/lib/librte_cryptodev/rte_cryptodev.h b/lib/librte_cryptodev/rt= e_cryptodev.h index 5aaa00c..2e6cd9d 100644 --- a/lib/librte_cryptodev/rte_cryptodev.h +++ b/lib/librte_cryptodev/rte_cryptodev.h @@ -48,7 +48,6 @@ extern "C" { #endif -#include "stddef.h" #include "rte_crypto.h" #include "rte_dev.h" > -----Original Message----- > From: dev [mailto:dev-bounces@dpdk.org] On Behalf Of Declan Doherty > Sent: Friday, February 19, 2016 11:01 AM > To: dev@dpdk.org > Subject: [dpdk-dev] [PATCH v2 2/2] cryptodev: change burst API to be cryp= to op oriented