From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out5-smtp.messagingengine.com (out5-smtp.messagingengine.com [66.111.4.29]) by dpdk.org (Postfix) with ESMTP id B6B584F90 for ; Mon, 5 Nov 2018 21:06:46 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 474DF22541; Mon, 5 Nov 2018 15:06:46 -0500 (EST) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Mon, 05 Nov 2018 15:06:46 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= from:to:cc:subject:date:message-id:in-reply-to:references :mime-version:content-transfer-encoding:content-type; s=mesmtp; bh=skYWSzifIFs9Qp6KzxWm/6mPstx2VNl+r0wbdymCcgI=; b=qGUtV5WAfPdh /zCPj5aAV3zZzYAMdDAwE7fo09ntPuvLVQg3JsYLnRe5d8MG3tenn+sMU1wyDLlj idaLnHze+1EHKO+Ah0AXw6xTehtIC4xtHH0sunO70ZVPTufFluqRhFfCyR8ipgi+ RE30pWhzRB2Cw6B2DAbQgU3rZD8eXy4= DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d= messagingengine.com; h=cc:content-transfer-encoding:content-type :date:from:in-reply-to:message-id:mime-version:references :subject:to:x-me-proxy:x-me-proxy:x-me-sender:x-me-sender :x-sasl-enc; s=fm1; bh=skYWSzifIFs9Qp6KzxWm/6mPstx2VNl+r0wbdymCc gI=; b=lDyy7/VwxO3yAlc7fLwveph6T32SULLcfoe+mQ1bLkgGDhF3/47Fr96UD zDc6WuxaQnnp0PLE6xE5NQebmwrlr1iUfWEsvBIHZfRWWsJxPWke6zWU15LmQbh+ qvFTFLij2IgdjGd33B1RgUtulVctMm/Dp1ZsJqPrkMscTXFSBJ1Xw7Vrt9bizHVi LvMShcrB9dxHy95MCR8/yoCQbOTgyumc9De3RzhePurwG4YyxIWNJCyBIFbUsUCB 3IiAMGvNd1jV+4qqoe3twho5ifTOjvGPl+aJg8Y5ADHwPYalls/C3l1rR9HiBpa2 hkAHALFqORPP/BLUbfVa+4EzF+ETg== X-ME-Sender: X-ME-Proxy: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 375AAE49C9; Mon, 5 Nov 2018 15:06:45 -0500 (EST) From: Thomas Monjalon To: marko.kovacevic@intel.com Cc: dev@dpdk.org, Ferruh Yigit Date: Mon, 05 Nov 2018 21:06:43 +0100 Message-ID: <1689536.7AusjRm6Vt@xps> In-Reply-To: <8442ca09-3363-d637-76be-3e896a275a2d@intel.com> References: <20181105174527.15671-1-thomas@monjalon.net> <8442ca09-3363-d637-76be-3e896a275a2d@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Content-Type: text/plain; charset="UTF-8" Subject: Re: [dpdk-dev] [PATCH] examples/fips_validation: fix build 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, 05 Nov 2018 20:06:46 -0000 05/11/2018 18:51, Ferruh Yigit: > On 11/5/2018 5:45 PM, Thomas Monjalon wrote: > > The example was not added to the Makefile and there are some > > compilation errors: > >=20 > > examples/fips_validation/main.c: In function =E2=80=98prepare_aead_op= =E2=80=99: > > error: control reaches end of non-void function > > examples/fips_validation/main.c: In function =E2=80=98prepare_auth_op= =E2=80=99: > > error: control reaches end of non-void function > >=20 > > Fixes: f64adb6714e0 ("examples/fips_validation: support HMAC parsing") > > Fixes: 4aaad2995e13 ("examples/fips_validation: support GCM parsing") > > Cc: marko.kovacevic@intel.com > >=20 > > Signed-off-by: Thomas Monjalon >=20 > Reviewed-by: Ferruh Yigit > Tested-by: Ferruh Yigit Applied