From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out2-smtp.messagingengine.com (out2-smtp.messagingengine.com [66.111.4.26]) by dpdk.org (Postfix) with ESMTP id BEDF01CE7B; Sun, 13 May 2018 23:04:45 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 1FDE525CF2; Sun, 13 May 2018 17:04:45 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Sun, 13 May 2018 17:04:45 -0400 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=monjalon.net; h= cc:content-transfer-encoding:content-type:date:from:in-reply-to :message-id:mime-version:references:subject:to:x-me-sender :x-me-sender:x-sasl-enc; s=mesmtp; bh=OHzY7xlz/j5Q8oV8OMEpQEMQbf bVqzFseGMd4fz/Kpw=; b=O0QYViHVbxCfax/qktCmrMYyGeC0lbntLsBKlu9BZj CZh/3sulqKfEHKjnpvBwXFhid/HXCv/PdjGyvMbVeAP9+7OKMWg4JtmdyS5XaWdh JuC+eXXalKc0RSWlLMg8rvLlvh4FVTet0hrs7bhNhkWFOWVaIsAIe+5CJeVoaBZo s= 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-sender:x-me-sender:x-sasl-enc; s=fm2; bh=OHzY7x lz/j5Q8oV8OMEpQEMQbfbVqzFseGMd4fz/Kpw=; b=ciYKhpnomQLOVqW/1L3TaB FhrpbaskDuOpzoSoOW6sGAO2251FYdN3/KNDTxaR/S6O9jxcnLG2ZmvdZGFUdTZW r328TFxq8MKSR8iKtNScr9djIY1Ln/0IKVQJgEtU2SynaNWb8lSkziNKjlNcrU6u PKXH6gGi0Kbd5LnB+zmYigGpUFRv880uDZcmRSg5soFJy7incZzBoc3rpqvshPzF SxvZV9T0db1jK774WvUO1LezjFRMsWKdZEgA2YjN/nCqT8KOUIJb2M1qMfXSa1tZ aZ7N5iI4xIp890G9w8dRcIGOxdD+JSX0qpAthdPN+mYWMImq1ygi4WBlKs+u+O6A == X-ME-Sender: Received: from xps.localnet (184.203.134.77.rev.sfr.net [77.134.203.184]) by mail.messagingengine.com (Postfix) with ESMTPA id 50172E4076; Sun, 13 May 2018 17:04:44 -0400 (EDT) From: Thomas Monjalon To: "Hunt, David" Cc: dev@dpdk.org, "De Lara Guarch, Pablo" , "Richardson, Bruce" , "stable@dpdk.org" Date: Sun, 13 May 2018 23:04:43 +0200 Message-ID: <4186845.r6jCUrgl0W@xps> In-Reply-To: References: <20180510012538.176757-1-david.hunt@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] test: fix incorrect cast in distributor unit test 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: Sun, 13 May 2018 21:04:48 -0000 > > New warning with gcc 8.1: > > When casting the function pointer passed to > > rte_eal_remote_launch() as an lcore_function_t *, it expects the cast function > > to return an int, but instead it was returning void. Fixed to return an int. > > > > Fixes: c3eabff124e6 ("distributor: add unit tests") > > > > Signed-off-by: David Hunt > > Cc: stable@dpdk.org > > Acked-by: Pablo de Lara Applied, thanks