From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753484AbdC1Nsp (ORCPT ); Tue, 28 Mar 2017 09:48:45 -0400 Received: from mail.kernel.org ([198.145.29.136]:34530 "EHLO mail.kernel.org" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752478AbdC1Nsl (ORCPT ); Tue, 28 Mar 2017 09:48:41 -0400 Date: Tue, 28 Mar 2017 10:48:24 -0300 From: Arnaldo Carvalho de Melo To: Taeung Song Cc: linux-kernel@vger.kernel.org, Jiri Olsa , Namhyung Kim , Ingo Molnar , Peter Zijlstra , Wang Nan , Masami Hiramatsu , Jiri Olsa , Martin Liska Subject: Re: [PATCH v4] perf annotate: Fix missing number of samples for source_line_samples Message-ID: <20170328134824.GA17135@kernel.org> References: <1490703125-13643-1-git-send-email-treeze.taeung@gmail.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <1490703125-13643-1-git-send-email-treeze.taeung@gmail.com> X-Url: http://acmel.wordpress.com User-Agent: Mutt/1.8.0 (2017-02-23) Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Em Tue, Mar 28, 2017 at 09:12:05PM +0900, Taeung Song escreveu: > The option 'show-total-period' works fine without a option '-l'. > But if running 'perf annotate --stdio -l --show-total-period', > you can see a problem showing only zero '0' for number of samples. If you do that at that point, don't you have to change the TUI not to do it again? - Arnaldo > Before: > $ perf annotate --stdio -l --show-total-period > ... > 0 : 400816: push %rbp > 0 : 400817: mov %rsp,%rbp > 0 : 40081a: mov %edi,-0x24(%rbp) > 0 : 40081d: mov %rsi,-0x30(%rbp) > 0 : 400821: mov -0x24(%rbp),%eax > 0 : 400824: mov -0x30(%rbp),%rdx > 0 : 400828: mov (%rdx),%esi > 0 : 40082a: mov $0x0,%edx > ... > > The reason is it was missed to set number of samples > of source_line_samples, so set it ordinarily. > > After: > $ perf annotate --stdio -l --show-total-period > ... > 3 : 400816: push %rbp > 4 : 400817: mov %rsp,%rbp > 0 : 40081a: mov %edi,-0x24(%rbp) > 0 : 40081d: mov %rsi,-0x30(%rbp) > 1 : 400821: mov -0x24(%rbp),%eax > 2 : 400824: mov -0x30(%rbp),%rdx > 0 : 400828: mov (%rdx),%esi > 1 : 40082a: mov $0x0,%edx > ... > > Cc: Namhyung Kim > Cc: Jiri Olsa > Cc: Martin Liska > Fixes: 0c4a5bcea460 ("perf annotate: Display total number of samples with --show-total-period") > Signed-off-by: Taeung Song > --- > tools/perf/util/annotate.c | 6 ++++-- > tools/perf/util/annotate.h | 2 +- > 2 files changed, 5 insertions(+), 3 deletions(-) > > diff --git a/tools/perf/util/annotate.c b/tools/perf/util/annotate.c > index 11af5f0..a37032b 100644 > --- a/tools/perf/util/annotate.c > +++ b/tools/perf/util/annotate.c > @@ -1665,7 +1665,7 @@ static int symbol__get_source_line(struct symbol *sym, struct map *map, > start = map__rip_2objdump(map, sym->start); > > for (i = 0; i < len; i++) { > - u64 offset; > + u64 offset, nr_samples; > double percent_max = 0.0; > > src_line->nr_pcnt = nr_pcnt; > @@ -1674,12 +1674,14 @@ static int symbol__get_source_line(struct symbol *sym, struct map *map, > double percent = 0.0; > > h = annotation__histogram(notes, evidx + k); > + nr_samples = h->addr[i]; > if (h->sum) > - percent = 100.0 * h->addr[i] / h->sum; > + percent = 100.0 * nr_samples / h->sum; > > if (percent > percent_max) > percent_max = percent; > src_line->samples[k].percent = percent; > + src_line->samples[k].nr = nr_samples; > } > > if (percent_max <= 0.5) > diff --git a/tools/perf/util/annotate.h b/tools/perf/util/annotate.h > index 09776b5..948aa8e 100644 > --- a/tools/perf/util/annotate.h > +++ b/tools/perf/util/annotate.h > @@ -98,7 +98,7 @@ struct cyc_hist { > struct source_line_samples { > double percent; > double percent_sum; > - double nr; > + u64 nr; > }; > > struct source_line { > -- > 2.7.4