From mboxrd@z Thu Jan 1 00:00:00 1970 From: kbuild test robot Subject: [PATCH xen-tip] xen/PMU: __pcpu_scope_xenpmu_shared can be static Date: Tue, 11 Aug 2015 20:04:01 +0800 Message-ID: <20150811120401.GA118513@ivytown2> References: <201508112049.AzXZeiMM%fengguang.wu@intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Return-path: Received: from mail6.bemta3.messagelabs.com ([195.245.230.39]) by lists.xen.org with esmtp (Exim 4.72) (envelope-from ) id 1ZP8Hl-00054W-Qm for xen-devel@lists.xenproject.org; Tue, 11 Aug 2015 12:04:05 +0000 Content-Disposition: inline In-Reply-To: <201508112049.AzXZeiMM%fengguang.wu@intel.com> List-Unsubscribe: , List-Post: List-Help: List-Subscribe: , Sender: xen-devel-bounces@lists.xen.org Errors-To: xen-devel-bounces@lists.xen.org To: Boris Ostrovsky Cc: x86@kernel.org, linux-kernel@vger.kernel.org, Ingo Molnar , kbuild-all@01.org, "H. Peter Anvin" , xen-devel@lists.xenproject.org, Thomas Gleixner , David Vrabel List-Id: xen-devel@lists.xenproject.org Signed-off-by: Fengguang Wu --- pmu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/xen/pmu.c b/arch/x86/xen/pmu.c index 7218cea..1d1ae1b 100644 --- a/arch/x86/xen/pmu.c +++ b/arch/x86/xen/pmu.c @@ -15,7 +15,7 @@ /* Shared page between hypervisor and domain */ -DEFINE_PER_CPU(struct xen_pmu_data *, xenpmu_shared); +static DEFINE_PER_CPU(struct xen_pmu_data *, xenpmu_shared); #define get_xenpmu_data() per_cpu(xenpmu_shared, smp_processor_id()) /* perf callbacks */