From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752149AbaHMKw3 (ORCPT ); Wed, 13 Aug 2014 06:52:29 -0400 Received: from mail-we0-f170.google.com ([74.125.82.170]:44400 "EHLO mail-we0-f170.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751765AbaHMKw1 (ORCPT ); Wed, 13 Aug 2014 06:52:27 -0400 Date: Wed, 13 Aug 2014 12:52:22 +0200 From: Ingo Molnar To: Borislav Petkov Cc: hpa@zytor.com, paulus@samba.org, eranian@google.com, linux-kernel@vger.kernel.org, peterz@infradead.org, acme@kernel.org, zheng.z.yan@intel.com, ak@linux.intel.com, tglx@linutronix.de, bp@suse.de, linux-tip-commits@vger.kernel.org Subject: Re: [tip:perf/core] perf/x86/uncore: move NHM-EX/ WSM-EX specific code to seperate file Message-ID: <20140813105222.GA17669@gmail.com> References: <1406704935-27708-4-git-send-email-zheng.z.yan@intel.com> <20140813104153.GB20522@pd.tnic> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20140813104153.GB20522@pd.tnic> User-Agent: Mutt/1.5.23 (2014-03-12) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Borislav Petkov wrote: > On Wed, Aug 13, 2014 at 01:23:12AM -0700, tip-bot for Yan, Zheng wrote: > > Commit-ID: c1e46580c3b7bf25053519cf39f01a2f9ea4d865 > > Gitweb: http://git.kernel.org/tip/c1e46580c3b7bf25053519cf39f01a2f9ea4d865 > > Author: Yan, Zheng > > AuthorDate: Wed, 30 Jul 2014 15:22:15 +0800 > > Committer: Ingo Molnar > > CommitDate: Wed, 13 Aug 2014 07:51:08 +0200 > > > > perf/x86/uncore: move NHM-EX/WSM-EX specific code to seperate file > > > > Signed-off-by: Yan, Zheng > > Signed-off-by: Peter Zijlstra > > Cc: Andi Kleen > > Cc: Arnaldo Carvalho de Melo > > Cc: Borislav Petkov > > Cc: Paul Mackerras > > Cc: Stephane Eranian > > Link: http://lkml.kernel.org/r/1406704935-27708-4-git-send-email-zheng.z.yan@intel.com > > Signed-off-by: Ingo Molnar > > --- > > arch/x86/kernel/cpu/Makefile | 2 +- > > arch/x86/kernel/cpu/perf_event_intel_uncore.c | 1038 +------------- > > arch/x86/kernel/cpu/perf_event_intel_uncore.h | 185 +-- > > ...el_uncore.c => perf_event_intel_uncore_nhmex.c} | 1483 +++----------------- > > 4 files changed, 196 insertions(+), 2512 deletions(-) > > > > diff --git a/arch/x86/kernel/cpu/Makefile b/arch/x86/kernel/cpu/Makefile > > index 7dee866..7e1fd4e 100644 > > --- a/arch/x86/kernel/cpu/Makefile > > +++ b/arch/x86/kernel/cpu/Makefile > > @@ -37,7 +37,7 @@ endif > > obj-$(CONFIG_CPU_SUP_INTEL) += perf_event_p6.o perf_event_knc.o perf_event_p4.o > > obj-$(CONFIG_CPU_SUP_INTEL) += perf_event_intel_lbr.o perf_event_intel_ds.o perf_event_intel.o > > obj-$(CONFIG_CPU_SUP_INTEL) += perf_event_intel_uncore.o perf_event_intel_uncore_snb.o > > -obj-$(CONFIG_CPU_SUP_INTEL) += perf_event_intel_uncore_snbep.o > > +obj-$(CONFIG_CPU_SUP_INTEL) += perf_event_intel_uncore_snbep.o perf_event_intel_uncore_nhmex.o > > obj-$(CONFIG_CPU_SUP_INTEL) += perf_event_intel_rapl.o > > These filenames are begging to go to a separate dir. arch/x86/perf/ > would be a good one, peterz says. arch/x86/perf/ would be fine with me. Thanks, Ingo