aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui/stdio/hist.c
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2016-01-18 04:24:23 -0500
committerArnaldo Carvalho de Melo <acme@redhat.com>2016-02-03 10:24:19 -0500
commitf0786af536bb0ba54cb516eee493af03cefdbaa3 (patch)
treebf6fd743f830dcfbbf88c0995500cbce8e90fd08 /tools/perf/ui/stdio/hist.c
parent5b65855e20348a9e2772a1cb7c1e6ab477859ba6 (diff)
perf hists: Introduce hists__for_each_format macro
With the hist object having the perf_hpp_list we can now iterate output format entries based in the hists object. Adding hists__for_each_format macro to do that. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: David Ahern <dsahern@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lkml.kernel.org/r/1453109064-1026-26-git-send-email-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui/stdio/hist.c')
-rw-r--r--tools/perf/ui/stdio/hist.c8
1 files changed, 4 insertions, 4 deletions
diff --git a/tools/perf/ui/stdio/hist.c b/tools/perf/ui/stdio/hist.c
index 83e0bf2ab986..1a6e8f7f38c4 100644
--- a/tools/perf/ui/stdio/hist.c
+++ b/tools/perf/ui/stdio/hist.c
@@ -384,7 +384,7 @@ static int hist_entry__snprintf(struct hist_entry *he, struct perf_hpp *hpp)
384 if (symbol_conf.exclude_other && !he->parent) 384 if (symbol_conf.exclude_other && !he->parent)
385 return 0; 385 return 0;
386 386
387 perf_hpp_list__for_each_format(&perf_hpp_list, fmt) { 387 hists__for_each_format(he->hists, fmt) {
388 if (perf_hpp__should_skip(fmt, he->hists)) 388 if (perf_hpp__should_skip(fmt, he->hists))
389 continue; 389 continue;
390 390
@@ -453,7 +453,7 @@ size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
453 453
454 init_rem_hits(); 454 init_rem_hits();
455 455
456 perf_hpp_list__for_each_format(&perf_hpp_list, fmt) 456 hists__for_each_format(hists, fmt)
457 perf_hpp__reset_width(fmt, hists); 457 perf_hpp__reset_width(fmt, hists);
458 458
459 if (symbol_conf.col_width_list_str) 459 if (symbol_conf.col_width_list_str)
@@ -464,7 +464,7 @@ size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
464 464
465 fprintf(fp, "# "); 465 fprintf(fp, "# ");
466 466
467 perf_hpp_list__for_each_format(&perf_hpp_list, fmt) { 467 hists__for_each_format(hists, fmt) {
468 if (perf_hpp__should_skip(fmt, hists)) 468 if (perf_hpp__should_skip(fmt, hists))
469 continue; 469 continue;
470 470
@@ -488,7 +488,7 @@ size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
488 488
489 fprintf(fp, "# "); 489 fprintf(fp, "# ");
490 490
491 perf_hpp_list__for_each_format(&perf_hpp_list, fmt) { 491 hists__for_each_format(hists, fmt) {
492 unsigned int i; 492 unsigned int i;
493 493
494 if (perf_hpp__should_skip(fmt, hists)) 494 if (perf_hpp__should_skip(fmt, hists))