From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753979AbbCaNdA (ORCPT ); Tue, 31 Mar 2015 09:33:00 -0400 Received: from mga09.intel.com ([134.134.136.24]:39105 "EHLO mga09.intel.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751817AbbCaNc5 (ORCPT ); Tue, 31 Mar 2015 09:32:57 -0400 X-ExtLoop1: 1 X-IronPort-AV: E=Sophos;i="5.11,501,1422950400"; d="scan'208";a="706718219" Date: Tue, 31 Mar 2015 21:32:13 +0800 From: kbuild test robot To: Maria Dimakopoulou Cc: kbuild-all@01.org, Peter Zijlstra , Paul Mackerras , Ingo Molnar , Arnaldo Carvalho de Melo , Thomas Gleixner , "H. Peter Anvin" , x86@kernel.org, linux-kernel@vger.kernel.org Subject: [PATCH peterz-queue] perf/x86: allocate_excl_cntrs() can be static Message-ID: <20150331133213.GA49917@snb> References: <201503312102.HyyNbQ5j%fengguang.wu@intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <201503312102.HyyNbQ5j%fengguang.wu@intel.com> User-Agent: Mutt/1.5.23 (2014-03-12) X-SA-Exim-Connect-IP: X-SA-Exim-Mail-From: fengguang.wu@intel.com X-SA-Exim-Scanned: No (on bee); SAEximRunCond expanded to false Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Signed-off-by: Fengguang Wu --- perf_event_intel.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/arch/x86/kernel/cpu/perf_event_intel.c b/arch/x86/kernel/cpu/perf_event_intel.c index d7b6eee..8e18f44 100644 --- a/arch/x86/kernel/cpu/perf_event_intel.c +++ b/arch/x86/kernel/cpu/perf_event_intel.c @@ -2201,7 +2201,7 @@ struct intel_shared_regs *allocate_shared_regs(int cpu) return regs; } -struct intel_excl_cntrs *allocate_excl_cntrs(int cpu) +static struct intel_excl_cntrs *allocate_excl_cntrs(int cpu) { struct intel_excl_cntrs *c; int i;