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 EFF8D1B84C for ; Wed, 31 Jan 2018 23:18:58 +0100 (CET) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 8CE1620CB8; Wed, 31 Jan 2018 17:18:58 -0500 (EST) Received: from frontend1 ([10.202.2.160]) by compute1.internal (MEProxy); Wed, 31 Jan 2018 17:18:58 -0500 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=/dH1VaBAQbYo33GU3lAJ0YGJLT Ggig4h+tGYuXf3imc=; b=alPsngWw37ZN5a9UKn/0hnOyPVXNyIpRmTC8CB6O9a oj8E1QeHbt+V0f33Sp9eXEb8WzEX9NYKCuYQbsFB/5KLijZ5dDBlrYKktzk2SWx5 Ge9aAI1CYL6sQ99OoB6il4PZayFMe+3UG+CTidO67Bfopb7p25k8mkWZTAZvlzyC 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=fm1; bh=/dH1Va BAQbYo33GU3lAJ0YGJLTGgig4h+tGYuXf3imc=; b=SXjNMnCqZr5k3BFemqf+QB XxBXaBF9ZgOxs44bHuWggfNx9NDfLUqI4y8QvNa+3ziKl8oNg+rPtvNqgnnkGowR RATp0IW7hs2Ly+3cDf/9foySJZXTfCEDbY5g+XI0Je8+mfD2s1WheOd+SJwNBEzR x7DRn6ucM0nd9xELiroRJCSPXoIFBxRDt4LtqmBqwOCrqOnqhV71t6/1q7cXkj+L eZDMmrvZcHQ2KpAJB6q85E8sFiWh14+9ww3rW1jAc84Wq/en9WGCSvszyunEopDP QD3k4nk3FELt7A1OjYP5WdWjoJ0lk22Ft7rnvB043lUxFratsQA8Wn1pqaOC+aHA == 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 40A0D7E6A5; Wed, 31 Jan 2018 17:18:58 -0500 (EST) From: Thomas Monjalon To: "Georgios P. Katsikas" Cc: dev@dpdk.org, wenzhuo.lu@intel.com, jingjing.wu@intel.com Date: Wed, 31 Jan 2018 23:18:12 +0100 Message-ID: <2028380.HX49o3bvx2@xps> In-Reply-To: <1516794816-12588-1-git-send-email-katsikas.gp@gmail.com> References: <1516794816-12588-1-git-send-email-katsikas.gp@gmail.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH] app/testpmd: move variables definition in source 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: Wed, 31 Jan 2018 22:18:59 -0000 24/01/2018 12:53, Georgios P. Katsikas: > From: Georgios Katsikas > > This patch moves the definition of 3 variables in testpmd.h > into the respective .c file. The idea behind this move is > to allow external applications to compile against testpmd > without throwing compilation errors related to multiple > definition of variables. > > Also, an extern dcb_q_mapping in testpmd.h is removed > since it appears that this variable is not defined > elsewhere in the tree. > > Signed-off-by: Georgios Katsikas Applied, thanks