Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752331Ab0ATOi1 (ORCPT ); Wed, 20 Jan 2010 09:38:27 -0500 Received: (majordomo@vger.kernel.org) by vger.kernel.org id S1752062Ab0ATOiJ (ORCPT ); Wed, 20 Jan 2010 09:38:09 -0500 Received: from bombadil.infradead.org ([18.85.46.34]:54267 "EHLO bombadil.infradead.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751735Ab0ATOiI (ORCPT ); Wed, 20 Jan 2010 09:38:08 -0500 Subject: Re: [PATCH] perf tools: fix write_event() From: Peter Zijlstra To: Arnaldo Carvalho de Melo Cc: Xiao Guangrong , Ingo Molnar , Paul Mackerras , Frederic Weisbecker , LKML In-Reply-To: <20100120142626.GQ14636@ghostprotocols.net> References: <4B570657.5090105@cn.fujitsu.com> <1263994901.4283.1060.camel@laptop> <1263995096.4283.1062.camel@laptop> <20100120140942.GP14636@ghostprotocols.net> <1263996897.4283.1065.camel@laptop> <20100120142626.GQ14636@ghostprotocols.net> Content-Type: text/plain; charset="UTF-8" Date: Wed, 20 Jan 2010 15:37:52 +0100 Message-ID: <1263998272.4283.1075.camel@laptop> Mime-Version: 1.0 X-Mailer: Evolution 2.28.1 Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2447 Lines: 71 On Wed, 2010-01-20 at 12:26 -0200, Arnaldo Carvalho de Melo wrote: > > Can't report/archive/etc.. sort all this out? > > We need to record the buildids at record time, preferrably at > PERF_RECORD_MMAP time, from the kernel, for long running, low frequency > sessions were DSOs may be updated. > > Or for when a developer is updating his binary and doing perf record > runs to then use perf diff: > > perf record ./myapp > vi myapp.c > make > perf record ./myapp > perf diff > Works now because the first 'perf record' saved a copy of myapp so that > 'perf diff', finding the right build-id in ~/.debug/.build-id/ can do > the right thing. > > But till we send the buildid in an extended PERF_RECORD_MMAP event sent > from the kernel, I try to reduce the window by doing this at record > time. > > The current way of intercepting events at write_event() is deemed > broken, so I can do it atexit(), when we go to write the header, but > this will hurt because we'll have to reprocess it all. > > Yes, since we'd still have the window, we could do it on perf archive, > but it would be an extra explicit step and since I think the right place > to do this is at perf record (with the kernel injecting the buildid, if > present in the binary being loaded), I'd prefer to keep it that way. > > Then work on having the buildid stored in some suitable kernel data > structure and injected in the PERF_RECORD_MMAP event. OK, so my typical workflow is something like: perf record -o baseline ./foo # again: vi foo.c make perf record ./foo perf diff -i baseline -i perf.data # if good enough, quit, else goto again I don't find intermediate diff's all that interesting. So we could create a perf snapshot like command that collects everything (and maybe allow something like: perf record --snapshot), and have perf diff compare against that by default, instead of perf.data~ or whatever that was called again. As to buildids from kernel space, I don't think the kernel actually knows or cares enough about executable maps to be able to extract those. The initial ELF loader could (maybe) for the main executable, but all DSOs and esp stuff like dlopen() would become mightly tricky. -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/