From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from wout1-smtp.messagingengine.com (wout1-smtp.messagingengine.com [64.147.123.24]) by dpdk.org (Postfix) with ESMTP id 18C814F94 for ; Fri, 26 Oct 2018 01:22:48 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.west.internal (Postfix) with ESMTP id A8CF6C1B; Thu, 25 Oct 2018 19:22:46 -0400 (EDT) Received: from mailfrontend2 ([10.202.2.163]) by compute1.internal (MEProxy); Thu, 25 Oct 2018 19:22:47 -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=FVePerVjUO55sxFkiMum9P8rwnr5RZ5XR2KR4uhdXM0=; b=VKEir6cEgqxJ tf5uafbyzxTp9svn8Qa0aQMK16SFSI5X6asz1aJFF8UX+seQaNIy4qq0QNgIk+8H O8P2Nf5rbuQFwgvXCae08dZLt9tYTS6K+x8HRxKFmKd53gJHo8snpf7uE43e2OlI A1po9lHB1bMEwPA4e2xyvKLQT/LzP2s= 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=FVePerVjUO55sxFkiMum9P8rwnr5RZ5XR2KR4uhdX M0=; b=PTgMq8yOFYVVJFYb2FW7HsrlyDmMEVrAdsMbjAODAx973S+8QV0voW6c+ N7CYD0Hq9MwDCEU4BqQyIY9ePEs7JnOVfQw5JQhkvP2infGDyK7cm8cG8BUmdaqN Fw0T5DUaAKaMx8sMISyiKnf1AL+Ul0NtqfYypzRq3HcbKn+r1I6SYtyPP5csNf13 CnKkY2Z2GT///GEy5/H7V4ODDjwUGWgpT4DinbawMcn+UJkbhadPVfEVqCdL/nrw y8wYyx8NbRuWusixmmEGsa8HAVWdZAjuCIJMt2F+Oi4cKL94MQA9IwvBtpK13TwC tkAx5bonxKJiNNIGlPrmVkPjp+ouA== 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 999DE102EB; Thu, 25 Oct 2018 19:22:44 -0400 (EDT) From: Thomas Monjalon To: Liang Ma Cc: dev@dpdk.org, david.hunt@intel.com, lei.a.yao@intel.com, ktraynor@redhat.com, marko.kovacevic@intel.com Date: Fri, 26 Oct 2018 01:22:48 +0200 Message-ID: <2963009.GYir0F1WiB@xps> In-Reply-To: <1539947242-16729-1-git-send-email-liang.j.ma@intel.com> References: <1539944630-21625-1-git-send-email-liang.j.ma@intel.com> <1539947242-16729-1-git-send-email-liang.j.ma@intel.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v12 1/5] lib/librte_power: traffic pattern aware power control 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: Thu, 25 Oct 2018 23:22:48 -0000 Hi, It fails to compile (tried with meson build-gcc-static): lib/librte_power/rte_power_empty_poll.h:20:10: fatal error: rte_timer.h: No such file or directory It looks to be fixed with this one-line change: --- a/lib/librte_power/meson.build +++ b/lib/librte_power/meson.build @@ -8,3 +8,4 @@ sources = files('rte_power.c', 'power_acpi_cpufreq.c', 'power_kvm_vm.c', 'guest_channel.c', 'rte_power_empty_poll.c') headers = files('rte_power.h','rte_power_empty_poll.h') +deps += ['timer']