From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from out3-smtp.messagingengine.com (out3-smtp.messagingengine.com [66.111.4.27]) by dpdk.org (Postfix) with ESMTP id B13222BF3 for ; Sat, 27 Oct 2018 01:24:43 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 33D0721F01; Fri, 26 Oct 2018 19:24:43 -0400 (EDT) Received: from mailfrontend1 ([10.202.2.162]) by compute1.internal (MEProxy); Fri, 26 Oct 2018 19:24:43 -0400 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=bJrV1OwAIV+OoahnyOe62qZ0jYUn4kZ69gV6x3MQNyU=; b=TjHnukxZMz34 vqhIDMKi3Tx44uBYpwAgDgGRPA8NvIvgO0YawJ0L0ZD4xrjOz+cyt+AuAQyrmybw 6xraDhU+/LS7EasPxpHLeIOYfLK16J4GURuxV9EfhkFKLkuBj8v2+kPL0ZjB0Afv k9xpQTi+LOZnzEe9tu1WPlSdoWEUetg= 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=bJrV1OwAIV+OoahnyOe62qZ0jYUn4kZ69gV6x3MQN yU=; b=BLhmKxWz36FDeK5tZBvqRW6AFDRYvEE5HMPUSk3ssrKMx2b4b0d6vpINO 5TCGqhIaQfLY6JsCFDR+hVR+jgwpbANQ/EfwJEseSgxsVMUIgAQlTxH/Yckw6AZn B26thdFpMlH51xHa2RYQWx8SgxALSIYgzLr1QoOzi2NUjeRoYPRb1b6bORov4Z1l fiTac69O/fRWIbwVZfNRVh1W7n08fMMW5UdVnVT60lAIZd3gTkHnrdVVOxLJk4TQ 6W4pvmHfW8qjiBmHWPIg8Ry31yEiZpk+H2Oz3RXktS8XSYQhzqdCgk5KNUqMfS0F 48uN5jm8lVqIOnEVTVsCoHzelSuug== 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 E9ED7E44D4; Fri, 26 Oct 2018 19:24:41 -0400 (EDT) From: Thomas Monjalon To: dev@dpdk.org Cc: Ferruh Yigit , David Hunt , liang.j.ma@intel.com, lei.a.yao@intel.com Date: Sat, 27 Oct 2018 01:24:47 +0200 Message-ID: <5711580.YPxherES5Z@xps> In-Reply-To: References: <20181026220045.28739-1-thomas@monjalon.net> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] examples/l3fwd-power: fix build with icc 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: Fri, 26 Oct 2018 23:24:43 -0000 27/10/2018 00:13, Ferruh Yigit: > On 10/26/2018 11:00 PM, Thomas Monjalon wrote: > > main.c(376): error #592: variable "lcore_id" is used before its value is set > > RTE_SET_USED(lcore_id); > > ^ > > > > The variables were voided with RTE_SET_USED without an obvious reason. > > Removing these voidings should avoid the icc error. > > > > Fixes: a137d012 ("examples/l3fwd-power: support traffic pattern aware control") > > > > Signed-off-by: Thomas Monjalon > > Tested-by: Ferruh Yigit Applied