Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753182Ab2KLN40 (ORCPT ); Mon, 12 Nov 2012 08:56:26 -0500 Received: from mx1.redhat.com ([209.132.183.28]:37841 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751545Ab2KLN4Y (ORCPT ); Mon, 12 Nov 2012 08:56:24 -0500 Date: Mon, 12 Nov 2012 14:55:46 +0100 From: Jiri Olsa To: Namhyung Kim Cc: Arnaldo Carvalho de Melo , Ingo Molnar , linux-kernel@vger.kernel.org, Andi Kleen , Corey Ashford , David Ahern , Frederic Weisbecker , Irina Tirdea , Mike Galbraith , Paul Mackerras , Peter Zijlstra , stable@vger.kernel.org, Stephane Eranian , Steven Rostedt , Vinson Lee , Zheng Liu , acme@ghostprotocols.net, Arnaldo Carvalho de Melo Subject: Re: [GIT PULL 00/21] perf/core improvements and fixes Message-ID: <20121112135545.GA4595@krava.brq.redhat.com> References: <1352497390-17716-1-git-send-email-acme@infradead.org> <87390fo9jn.fsf@sejong.aot.lge.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <87390fo9jn.fsf@sejong.aot.lge.com> User-Agent: Mutt/1.5.21 (2010-09-15) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 2604 Lines: 69 On Mon, Nov 12, 2012 at 11:10:52AM +0900, Namhyung Kim wrote: > Hi Arnaldo, > > On Fri, 9 Nov 2012 18:42:49 -0300, Arnaldo Carvalho de Melo wrote: > > Hi Ingo, > > > > Please consider pulling. > > > > - Arnaldo > > > > The following changes since commit 8dfec403e39b7c37fd6e8813bacc01da1e1210ab: > > > > perf tests: Removing 'optional' field (2012-11-05 14:03:59 -0300) > > > > are available in the git repository at: > > > > git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux tags/perf-core-for-mingo > > > > for you to fetch changes up to 27f94d52394003d444a383eaf8d4824daf32432e: > > > > tools lib traceevent: Use 'const' in variables pointing to const strings (2012-11-09 17:42:47 -0300) > > > > ---------------------------------------------------------------- > > perf/core improvements and fixes: > > > > . Add a 'link' method for hists, so that we can have the leader with > > buckets for all the entries in all the hists. This new method > > is now used in the default 'diff' output, making the sum of the 'baseline' > > column be 100%, eliminating blind spots. Now we need to use this > > for 'diff' with > 2 perf.data files and for multi event 'report' and > > 'annotate'. > > I'm not sure it can be used for group report at least in its current > form. IIUC it connects multiple hist entries using a list head and > create a dummy entry in the leader if need be. But it didn't handle > non-leader entries so it's hard to tell which is which if less entries > are present only. For example consider following case: > > leader member1 member2 > A A A > B > C > D > > where leader, member1 and member2 are evsel/hists and A, B, C and D are > hist entries. After 'linking' the entries the leader will have > following linkage: > > leader > A -> A -> A > B > C (dummy) -> C > D (dummy) -> D > > In this case, for entry A the leader can determine which entry came from > which hists by looking its order in the list. For entry B the leader > can use zero value for them since the list is empty. However for > entries C and D, it cannot know which one is the right hists unless it > records a hist index or creates dummy entry and insert it in a correct > order (looks far from an optimal solution). Am I missing something? there's hists pointer in hist_entry if that's what you look for jirka -- 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/