From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1756563Ab0EJKgc (ORCPT ); Mon, 10 May 2010 06:36:32 -0400 Received: from 124x34x33x190.ap124.ftth.ucom.ne.jp ([124.34.33.190]:34723 "EHLO master.linux-sh.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755665Ab0EJKgb (ORCPT ); Mon, 10 May 2010 06:36:31 -0400 Date: Mon, 10 May 2010 19:35:47 +0900 From: Paul Mundt To: Lin Ming Cc: Peter Zijlstra , Ingo Molnar , Frederic Weisbecker , "eranian@gmail.com" , "Gary.Mohr@Bull.com" , Corey Ashford , "arjan@linux.intel.com" , "Zhang, Yanmin" , Paul Mackerras , "David S. Miller" , Russell King , lkml Subject: Re: [RFC][PATCH 3/9] perf: export registerred pmus via sysfs Message-ID: <20100510103546.GB14278@linux-sh.org> References: <1273483623.15998.57.camel@minggr.sh.intel.com> <1273484401.5605.3333.camel@twins> <1273486313.15998.76.camel@minggr.sh.intel.com> <1273486708.5605.3342.camel@twins> <1273487195.15998.85.camel@minggr.sh.intel.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1273487195.15998.85.camel@minggr.sh.intel.com> User-Agent: Mutt/1.5.13 (2006-08-11) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Mon, May 10, 2010 at 06:26:35PM +0800, Lin Ming wrote: > On Mon, 2010-05-10 at 18:18 +0800, Peter Zijlstra wrote: > > On Mon, 2010-05-10 at 18:11 +0800, Lin Ming wrote: > > > On Mon, 2010-05-10 at 17:40 +0800, Peter Zijlstra wrote: > > > > On Mon, 2010-05-10 at 17:27 +0800, Lin Ming wrote: > > > > > Export pmus via sysfs /sys/devices/system/cpu/pmus/0...N > > > > > The file name is the pmu id, ie, /sys/devices/system/cpu/pmus/N > > > > > represents pmu id N. > > > > > So perf tool can use it to initialize perf_event_attr. > > > > > > > > Why create a whole new directory, why not: > > > > > > > > /sys/devices/system/cpu/cpuN/pmu_id ? > > > > > > > > > Do you mean /sys/devices/system/cpu/cpuN/pmu_id contain all ids? > > > > > > For example, each cpu has 4 pmus and the file pmu_id shows something > > > like, > > > > > > #cat /sys/devices/system/cpu/cpu0/pmu_id > > > 0 1 2 3 > > > > No, I'm assuming there is only 1 PMU per CPU. Corey is the expert on > > crazy hardware though, but I think the sanest way is to extend the CPU > > topology if there's more structure to it. > > But our goal is to support multiple pmus, don't we need to assume there > are more than 1 PMU per CPU? > The multiple PMU case still suggests 1 per CPU in most (all?) cases. If you're thinking of PMUs in the northbridge case this would sit under its own topology given that most CPUs will have a shared view of it. Do you have some cases with performance counters in per-CPU memory controllers or something similar? > How about > /sys/devices/system/cpu/cpuN/pmu_0 > /sys/devices/system/cpu/cpuN/pmu_1 > /sys/devices/system/cpu/cpuN/pmu_2 > /sys/devices/system/cpu/cpuN/pmu_3 > ....? > If you're following driver model naming conventions, then these should all be pmu.0, pmu.1, etc, etc.