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 CACAF1B351 for ; Fri, 13 Oct 2017 00:20:30 +0200 (CEST) Received: from compute1.internal (compute1.nyi.internal [10.202.2.41]) by mailout.nyi.internal (Postfix) with ESMTP id 4C89C21199; Thu, 12 Oct 2017 18:20:30 -0400 (EDT) Received: from frontend2 ([10.202.2.161]) by compute1.internal (MEProxy); Thu, 12 Oct 2017 18:20:30 -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=hlDB7MKgxtICVrVHmwcNXoUo7h i/KZXFWyV3Ie0rCHM=; b=WIoMsSd+rKlfaxo48UNhIlKeCTmsGERkmF5IUOfxvk ekYDz96mD+hlH2DgIDr8Z56VcxxBua7xtvxU3zRmVN4QyI0Uejwdb+rLppqdyxJC Wiwp/WOc3fgshtTZ7djdvRV/q8I67ai2WPZjhWfl+F8b8Q4mHzLvL1ZTJEVltVGD k= 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=hlDB7M KgxtICVrVHmwcNXoUo7hi/KZXFWyV3Ie0rCHM=; b=VC55N41cTD3MC6DayCOj5Z 33rk+U5mpNLIkSv+mIVHMlak+SSnGLFQ3PT8gz9krOL1MqtGbAQwc5mw0t1fOKxk eNXzjlnp2rRj97gDtfXblBBkvwOVTcrWS5wm7rpO2x9uA63P/p51S2hqrQOxS7MT jnNcSmDz0LTcCmlKs2ZoIyGsWekoF35DkEiD0KjD/7TjEIN1jkuohTlln1/Xx8m3 6EP/0A5UyrbK+r6lmoUumVknw5rvcd6FkiF4oN/lpaLsVC3AfeT2xGTVAJOEMdML QCDVCo16P5BneiCujat5BPWZXWmk4dVc+de/b85k18bTnfeIZdePE/RtZUD5e3rg == 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 DFDA8247F0; Thu, 12 Oct 2017 18:20:29 -0400 (EDT) From: Thomas Monjalon To: Gowrishankar , Jerin Jacob Cc: dev@dpdk.org, Chao Zhu , Bruce Richardson , Konstantin Ananyev , viktorin@rehivetech.com, jianbo.liu@linaro.org Date: Fri, 13 Oct 2017 00:20:28 +0200 Message-ID: <4924362.BUPg9l2v4A@xps> In-Reply-To: <60996b50e628207157f1b7b6dab704b8224f3cae.1506058385.git.gowrishankar.m@linux.vnet.ibm.com> References: <60996b50e628207157f1b7b6dab704b8224f3cae.1506058385.git.gowrishankar.m@linux.vnet.ibm.com> MIME-Version: 1.0 Content-Transfer-Encoding: 7Bit Content-Type: text/plain; charset="us-ascii" Subject: Re: [dpdk-dev] [PATCH v2 2/5] eal/ppc64: define architecture specific rdtsc hz 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, 12 Oct 2017 22:20:31 -0000 22/09/2017 10:25, Gowrishankar: > From: Jerin Jacob > > In ppc_64, rte_rdtsc() returns timebase register value which increments > at independent timebase frequency and hence not related to lcore cpu > frequency to derive TSC hz. Hence, we stick with master lcore frequency. > > CC: Chao Zhu > Signed-off-by: Jerin Jacob > Signed-off-by: Gowrishankar Muthukrishnan [...] > --- a/lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h > +++ b/lib/librte_eal/common/include/arch/ppc_64/rte_cycles.h > @@ -38,9 +38,13 @@ > #endif > > #include "generic/rte_cycles.h" > +#include "../../lib/librte_eal/common/eal_filesystem.h" rte_cycles.h is an installed header. eal_filesystem.h is not exported. It cannot work.