From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S932323Ab0EKJcW (ORCPT ); Tue, 11 May 2010 05:32:22 -0400 Received: from mx2.mail.elte.hu ([157.181.151.9]:45050 "EHLO mx2.mail.elte.hu" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753454Ab0EKJcT (ORCPT ); Tue, 11 May 2010 05:32:19 -0400 Date: Tue, 11 May 2010 11:31:51 +0200 From: Ingo Molnar To: Peter Zijlstra Cc: Lin Ming , Corey Ashford , Frederic Weisbecker , "eranian@gmail.com" , "Gary.Mohr@Bull.com" , "arjan@linux.intel.com" , "Zhang, Yanmin" , Paul Mackerras , "David S. Miller" , Russell King , Paul Mundt , lkml , Arnaldo Carvalho de Melo , Will Deacon , Maynard Johnson , Carl Love Subject: Re: [RFC][PATCH 3/9] perf: export registerred pmus via sysfs Message-ID: <20100511093151.GA24284@elte.hu> References: <20100510115344.GA11238@elte.hu> <4BE8931C.9070106@linux.vnet.ibm.com> <1273560419.5605.3426.camel@twins> <20100511072127.GB10421@elte.hu> <1273566031.30322.31.camel@minggr.sh.intel.com> <1273567815.5605.3491.camel@twins> <1273568620.30322.42.camel@minggr.sh.intel.com> <1273569154.5605.3499.camel@twins> <20100511091833.GB18869@elte.hu> <1273569877.5605.3509.camel@twins> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1273569877.5605.3509.camel@twins> User-Agent: Mutt/1.5.20 (2009-08-17) X-ELTE-SpamScore: -2.0 X-ELTE-SpamLevel: X-ELTE-SpamCheck: no X-ELTE-SpamVersion: ELTE 2.0 X-ELTE-SpamCheck-Details: score=-2.0 required=5.9 tests=BAYES_00 autolearn=no SpamAssassin version=3.2.5 -2.0 BAYES_00 BODY: Bayesian spam probability is 0 to 1% [score: 0.0000] Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org * Peter Zijlstra wrote: > On Tue, 2010-05-11 at 11:18 +0200, Ingo Molnar wrote: > > * Peter Zijlstra wrote: > > > > > The new PMUs will use a dynamic range that starts at PERF_TYPE_MAX. > > > > I dont think we should use a dynamic range of event sources - it's a > > completely useless indirection that has no meaning to humans. > > > > As far as machine interfaces go a much cleaner approach would be to allow an > > open fd to a sysfs file to be passed to sys_perf_event_open() - this would > > identify the event source. This needs a small extension of the ABI but we > > could thus get rid of the 'type' enumeration altogether and express _all_ > > event sources via fds to sysfs files. > > Whatever, that's almost identical. [...] It's not identical: as we dont expose our mapping structure externally and dont have to have some dynamic type ID allocation layer/mechanism. Also, using fds is an elegant, Linuxish way of expressing some object's identity and passing it along. ( It also removes the possibility to intentionally or accidentally have type IDs that are not reachable via the sysfs and vica verse. ) > [...] What we can do is reserve perf_event_attr::type with bit 31 set for > fd's and use the fd->file lookup instead of the type->pmu lookup. Yeah, that sounds good. Ingo