From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from mga09.intel.com (mga09.intel.com [134.134.136.24]) by dpdk.org (Postfix) with ESMTP id 2841F2BAD for ; Thu, 29 Sep 2016 03:24:01 +0200 (CEST) Received: from orsmga005.jf.intel.com ([10.7.209.41]) by orsmga102.jf.intel.com with ESMTP; 28 Sep 2016 18:24:00 -0700 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.30,412,1470726000"; d="scan'208";a="14437757" Received: from irsmsx102.ger.corp.intel.com ([163.33.3.155]) by orsmga005.jf.intel.com with ESMTP; 28 Sep 2016 18:23:58 -0700 Received: from irsmsx108.ger.corp.intel.com ([169.254.11.164]) by IRSMSX102.ger.corp.intel.com ([169.254.2.198]) with mapi id 14.03.0248.002; Thu, 29 Sep 2016 02:23:58 +0100 From: "De Lara Guarch, Pablo" To: "Yigit, Ferruh" , "dev@dpdk.org" CC: "Doherty, Declan" Thread-Topic: [dpdk-dev] [PATCH] crypto: fix build with icc Thread-Index: AQHSGR+DcAT0xC5500eHdLb9uVUJraCO/1IAgACufHA= Date: Thu, 29 Sep 2016 01:23:58 +0000 Message-ID: References: <1475022687-215148-1-git-send-email-pablo.de.lara.guarch@intel.com> <1eb6ff6f-f59c-e347-8f6f-8594fda6a59a@intel.com> In-Reply-To: <1eb6ff6f-f59c-e347-8f6f-8594fda6a59a@intel.com> Accept-Language: en-US Content-Language: en-US X-MS-Has-Attach: X-MS-TNEF-Correlator: x-titus-metadata-40: eyJDYXRlZ29yeUxhYmVscyI6IiIsIk1ldGFkYXRhIjp7Im5zIjoiaHR0cDpcL1wvd3d3LnRpdHVzLmNvbVwvbnNcL0ludGVsMyIsImlkIjoiNjU1ODUzNDItZTQxZC00ZjMzLWE0OTQtNzM0OGZjMjRhZjYwIiwicHJvcHMiOlt7Im4iOiJDVFBDbGFzc2lmaWNhdGlvbiIsInZhbHMiOlt7InZhbHVlIjoiQ1RQX0lDIn1dfV19LCJTdWJqZWN0TGFiZWxzIjpbXSwiVE1DVmVyc2lvbiI6IjE1LjkuNi42IiwiVHJ1c3RlZExhYmVsSGFzaCI6Im9PZHJ0a05KRU82cFRlSTNiWE9zTTJ1NVRlcU4xdkhxK0hKYWkrVjZNS2s9In0= 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] crypto: fix build with icc 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: Thu, 29 Sep 2016 01:24:01 -0000 > -----Original Message----- > From: Yigit, Ferruh > Sent: Wednesday, September 28, 2016 8:59 AM > To: De Lara Guarch, Pablo; dev@dpdk.org > Cc: Doherty, Declan > Subject: Re: [dpdk-dev] [PATCH] crypto: fix build with icc >=20 > On 9/28/2016 1:31 AM, Pablo de Lara wrote: > > This commit fixes a compilation error on icc, > > due to unallowed conversion from int to enum: > > > > drivers/crypto/snow3g/rte_snow3g_pmd.c(155): > > error #188: enumerated type mixed with another type > > sess->op =3D mode; > > ^ > > drivers/crypto/kasumi/rte_kasumi_pmd.c(155): > > error #188: enumerated type mixed with another type > > sess->op =3D mode; > > ^ > > > > Fixes: 3aafc423cf4d ("snow3g: add driver for SNOW 3G library") > > Fixes: 2773c86d061a ("crypto/kasumi: add driver for KASUMI library") > > > > Signed-off-by: Pablo de Lara >=20 > Acked-by: Ferruh Yigit Applied to dpdk-next-crypto. Pablo