diff options
author | Namhyung Kim <namhyung@kernel.org> | 2014-08-20 04:07:56 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2014-08-20 11:14:14 -0400 |
commit | 2bfa152839e5adea66aa6309c94bf3a50a5d5d47 (patch) | |
tree | d976413591102e0158404c2309be30d98b9e4c83 | |
parent | 36e15dd4027a9b088264758fea292b6e876b5cdd (diff) |
perf hists browser: Fix children overhead dump
When perf report runs on TUI, 'P' key dumps current screen to a file but
it incorrectly displayed children overhead (as same of self overhead).
This was because it fetched the value from self stats.
Signed-off-by: Namhyung Kim <namhyung@kernel.org>
Cc: Andi Kleen <andi@firstfloor.org>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Ingo Molnar <mingo@kernel.org>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Namhyung Kim <namhyung.kim@lge.com>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <a.p.zijlstra@chello.nl>
Link: http://lkml.kernel.org/r/1408522080-26556-2-git-send-email-namhyung@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
-rw-r--r-- | tools/perf/ui/hist.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/ui/hist.c b/tools/perf/ui/hist.c index b5fa7019d2e2..75eb6ac821f8 100644 --- a/tools/perf/ui/hist.c +++ b/tools/perf/ui/hist.c | |||
@@ -304,7 +304,7 @@ static int hpp__color_##_type(struct perf_hpp_fmt *fmt, \ | |||
304 | static int hpp__entry_##_type(struct perf_hpp_fmt *fmt, \ | 304 | static int hpp__entry_##_type(struct perf_hpp_fmt *fmt, \ |
305 | struct perf_hpp *hpp, struct hist_entry *he) \ | 305 | struct perf_hpp *hpp, struct hist_entry *he) \ |
306 | { \ | 306 | { \ |
307 | return hpp__fmt_acc(fmt, hpp, he, he_get_##_field, " %*.2f%%", \ | 307 | return hpp__fmt_acc(fmt, hpp, he, he_get_acc_##_field, " %*.2f%%", \ |
308 | hpp_entry_scnprintf, true); \ | 308 | hpp_entry_scnprintf, true); \ |
309 | } | 309 | } |
310 | 310 | ||