linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCHSET 0/9] perf tools: Update on filtered entries' percentage output (v7)
@ 2014-03-10  7:43 Namhyung Kim
  2014-03-10  7:43 ` [PATCH 1/9] perf tools: Pass evsel to hpp->header/width functions explicitly Namhyung Kim
                   ` (10 more replies)
  0 siblings, 11 replies; 26+ messages in thread
From: Namhyung Kim @ 2014-03-10  7:43 UTC (permalink / raw)
  To: Arnaldo Carvalho de Melo
  Cc: Peter Zijlstra, Ingo Molnar, Paul Mackerras, Namhyung Kim,
	Namhyung Kim, LKML, Jiri Olsa, David Ahern, Andi Kleen

Hello,

I added --percentage option to perf report to control display of
percentage of filtered entries.

 usage: perf report [<options>]

        --percentage <relative|absolute>
                          how to display percentage of filtered entries

"relative" means it's relative to filtered entries only so that the
sum of shown entries will be always 100%.  "absolute" means it retains
original value before and after the filter applied.  In patch 9/9, I
made the "absolute" as default since it makes more sense IMHO.
    
      $ perf report -s comm
      # Overhead       Command
      # ........  ............
      #
          74.19%           cc1
           7.61%           gcc
           6.11%            as
           4.35%            sh
           4.14%          make
           1.13%        fixdep
      ...
    
      $ perf report -s comm -c cc1,gcc --percentage absolute
      # Overhead       Command
      # ........  ............
      #
          74.19%           cc1
           7.61%           gcc
    
      $ perf report -s comm -c cc1,gcc --percentage relative
      # Overhead       Command
      # ........  ............
      #
          90.69%           cc1
           9.31%           gcc
    
Note that it has zero effect if no filter was applied.

 * changes in v7:
  - rename ->nr_filtered_* to ->nr_non_filtered_* (Arnaldo)
  - remove an unneeded alignment change (Arnaldo)

 * changes in v6:
  - fix a bug in --stdio group report
  - reuse __hpp__fmt() function in TUI/GTK
  - add Acked-by from Jiri

 * changes in v5:
  - fix 0 samples in relative percent output (Jiri)
  - factor hists__total_period function (Jiri)
  - share config parsing code with option parser (Jiri)

 * changes in v4:
  - support perf top and perf diff also  (Jiri)
  - add HIST_FILTER__HOST/GUEST  (Jiri)
  - retain both of filtered and total stats  (Arnaldo)
  - add 'F' hotkey on TUI  (Jiri)
  - rename config variable to have "hist." prefix


You can get this on the 'perf/percentage-v7' branch in my tree

  git://git.kernel.org/pub/scm/linux/kernel/git/namhyung/linux-perf.git

Any comments are welcome, thanks
Namhyung


Namhyung Kim (9):
  perf tools: Pass evsel to hpp->header/width functions explicitly
  perf tools: Count periods of filtered entries separately
  perf hists: Add support for showing relative percentage
  perf report: Add --percentage option
  perf top: Add --percentage option
  perf diff: Add --percentage option
  perf tools: Add hist.percentage config option
  perf ui/tui: Add 'F' hotkey to toggle percentage output
  perf tools: Show absolute percentage by default

 tools/perf/Documentation/perf-diff.txt   | 21 ++++++++--
 tools/perf/Documentation/perf-report.txt | 24 ++++++++---
 tools/perf/Documentation/perf-top.txt    | 18 +++++++--
 tools/perf/builtin-diff.c                | 39 ++++++++++++------
 tools/perf/builtin-report.c              | 24 +++++++++--
 tools/perf/builtin-top.c                 |  2 +
 tools/perf/ui/browsers/hists.c           | 39 ++++++++++++++----
 tools/perf/ui/gtk/hists.c                | 14 +++----
 tools/perf/ui/hist.c                     | 32 +++++++--------
 tools/perf/ui/stdio/hist.c               |  5 +--
 tools/perf/util/config.c                 |  4 ++
 tools/perf/util/event.c                  | 22 +++++------
 tools/perf/util/hist.c                   | 68 ++++++++++++++++++++++----------
 tools/perf/util/hist.h                   | 25 +++++++++++-
 tools/perf/util/symbol.h                 |  5 ++-
 15 files changed, 242 insertions(+), 100 deletions(-)

-- 
1.7.11.7


^ permalink raw reply	[flat|nested] 26+ messages in thread

end of thread, other threads:[~2014-03-19 20:25 UTC | newest]

Thread overview: 26+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-03-10  7:43 [PATCHSET 0/9] perf tools: Update on filtered entries' percentage output (v7) Namhyung Kim
2014-03-10  7:43 ` [PATCH 1/9] perf tools: Pass evsel to hpp->header/width functions explicitly Namhyung Kim
2014-03-18  8:30   ` [tip:perf/core] perf ui hists: Pass evsel to hpp->header/ width " tip-bot for Namhyung Kim
2014-03-10  7:43 ` [PATCH 2/9] perf tools: Count periods of filtered entries separately Namhyung Kim
2014-03-17 20:08   ` Arnaldo Carvalho de Melo
2014-03-18  4:19     ` Namhyung Kim
2014-03-18  4:25       ` Namhyung Kim
2014-03-18 13:15       ` Arnaldo Carvalho de Melo
2014-03-18 13:18         ` Arnaldo Carvalho de Melo
2014-03-18 14:11           ` Namhyung Kim
2014-03-10  7:43 ` [PATCH 3/9] perf hists: Add support for showing relative percentage Namhyung Kim
2014-03-18 20:08   ` Arnaldo Carvalho de Melo
2014-03-19  0:18     ` Namhyung Kim
2014-03-19 20:25       ` Arnaldo Carvalho de Melo
2014-03-10  7:43 ` [PATCH 4/9] perf report: Add --percentage option Namhyung Kim
2014-03-10  7:43 ` [PATCH 5/9] perf top: " Namhyung Kim
2014-03-10  7:43 ` [PATCH 6/9] perf diff: " Namhyung Kim
2014-03-10  7:43 ` [PATCH 7/9] perf tools: Add hist.percentage config option Namhyung Kim
2014-03-10  7:43 ` [PATCH 8/9] perf ui/tui: Add 'F' hotkey to toggle percentage output Namhyung Kim
2014-03-10  7:44 ` [PATCH 9/9] perf tools: Show absolute percentage by default Namhyung Kim
2014-03-10 22:08 ` [PATCHSET 0/9] perf tools: Update on filtered entries' percentage output (v7) Andi Kleen
2014-03-11  2:58   ` Davidlohr Bueso
2014-03-11  2:59     ` Davidlohr Bueso
2014-03-11  7:57     ` Namhyung Kim
2014-03-11  7:45   ` Namhyung Kim
2014-03-17  8:05 ` Namhyung Kim

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).