From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from dpdk.org (dpdk.org [92.243.14.124]) by inbox.dpdk.org (Postfix) with ESMTP id BE027A0471 for ; Fri, 19 Jul 2019 00:44:17 +0200 (CEST) Received: from [92.243.14.124] (localhost [127.0.0.1]) by dpdk.org (Postfix) with ESMTP id 247632BA8; Fri, 19 Jul 2019 00:44:16 +0200 (CEST) Received: from wout4-smtp.messagingengine.com (wout4-smtp.messagingengine.com [64.147.123.20]) by dpdk.org (Postfix) with ESMTP id 8CA8A1DBF for ; Fri, 19 Jul 2019 00:44:14 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id DFD90381; Thu, 18 Jul 2019 18:44:12 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 18 Jul 2019 18:44:13 -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=obvRdUj484mBwKOB8bu9s/iHh+06VXcok+mcLbEoXgc=; b=SX9+Zx15Pulm Eh9PQTNzFfya/IJq0njVEdB5qjhBluIOumrbQciDOrb3LHMI2+fywN9EyuSsZTgF 5D/aOO1gZsGOmSa//zekiurPwqFSHbyBWP2+RjsPrS7w1qw5eXQUhHlNZNeEdXQg a8Xjt1C0osSvKmVXFc2Lk1F2lj0q2CI= 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=fm3; bh=obvRdUj484mBwKOB8bu9s/iHh+06VXcok+mcLbEoX gc=; b=vEMneiIDQLofEh9qf7ecUedca24yDq22ULbKgneGHB5Xz15Ilqzry4GLH OQTBefpbwGQPO8h8HcLBn3p2T5ChQPMBz1HvCmU8JMB/KewF08SoS8GeGAj5Tnvg 2N+vUXg3tlsgODeUbsLItcBB1r/qCdcWEy8D9fawnD9ZKwGQfAGb6c8gEyxNZUSC 1i7UCozyhS+bDSE/RxVMOCQmHKw6x6/oxDyT2Im4IRh1MgiB7f6MGtleET9lGE1T G9yONjHGK0jtzEiRHPKliaQrqO4S//52f33pU1XdNJAq0nBkx4AzWaziWNVHVGf2 vhNootvkszqKwQbNLbNJ5FNk6qHNw== X-ME-Sender: X-ME-Proxy-Cause: gggruggvucftvghtrhhoucdtuddrgeduvddrieeigddugecutefuodetggdotefrodftvf curfhrohhfihhlvgemucfhrghsthforghilhdpqfgfvfdpuffrtefokffrpgfnqfghnecu uegrihhlohhuthemuceftddtnecusecvtfgvtghiphhivghnthhsucdlqddutddtmdenuc fjughrpefhvffufffkjghfggfgtgesthfuredttddtvdenucfhrhhomhepvfhhohhmrghs ucfoohhnjhgrlhhonhcuoehthhhomhgrshesmhhonhhjrghlohhnrdhnvghtqeenucfkph epjeejrddufeegrddvtdefrddukeegnecurfgrrhgrmhepmhgrihhlfhhrohhmpehthhho mhgrshesmhhonhhjrghlohhnrdhnvghtnecuvehluhhsthgvrhfuihiivgeptd 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 757D8380075; Thu, 18 Jul 2019 18:44:11 -0400 (EDT) From: Thomas Monjalon To: Stephen Hemminger Cc: dev@dpdk.org Date: Fri, 19 Jul 2019 00:44:10 +0200 Message-ID: <3559921.vPlWqO2H49@xps> In-Reply-To: <20190718171812.3209-1-stephen@networkplumber.org> References: <20190716172741.21399-1-stephen@networkplumber.org> <20190718171812.3209-1-stephen@networkplumber.org> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v3 0/3] cfgfile: cleanup patches 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: , Errors-To: dev-bounces@dpdk.org Sender: "dev" 18/07/2019 19:18, Stephen Hemminger: > Small cleanups to cfgfile library. > > Stephen Hemminger (3): > cfgfile: remove unnecessary initialization > cfgfile: use RTE_LOG for errors > cfgfile: use calloc > > lib/Makefile | 1 + > lib/librte_cfgfile/rte_cfgfile.c | 55 +++++++++++++++++++++----------- > 2 files changed, 37 insertions(+), 19 deletions(-) > > v3 - cfgfile now depends on rte_log from eal so fix Makefile > v2 - use dynamic logtype instead of introducing new static value Applied with a fix in Makefile, thanks