aboutsummaryrefslogtreecommitdiffstats
path: root/tools/perf/ui/stdio/hist.c
diff options
context:
space:
mode:
authorArnaldo Carvalho de Melo <acme@redhat.com>2018-04-25 12:52:45 -0300
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-04-26 13:47:13 -0300
commitb0867f0c624ca48886ae5bbe0574dbc3eef8c694 (patch)
tree5484ea186ebadddb9f135765fc1a8ec1ee807ac7 /tools/perf/ui/stdio/hist.c
parentperf map: Shorten map_groups__find() signature (diff)
downloadlinux-dev-b0867f0c624ca48886ae5bbe0574dbc3eef8c694.tar.xz
linux-dev-b0867f0c624ca48886ae5bbe0574dbc3eef8c694.zip
perf ui stdio: Use map_groups__fprintf()
Instead of the variant that allows asking for just a specific map_type, because that map_type split will go away. Cc: Adrian Hunter <adrian.hunter@intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Jiri Olsa <jolsa@kernel.org> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Wang Nan <wangnan0@huawei.com> Link: https://lkml.kernel.org/n/tip-eya0jvmu26qvro0nxxd49xia@git.kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to '')
-rw-r--r--tools/perf/ui/stdio/hist.c3
1 files changed, 1 insertions, 2 deletions
diff --git a/tools/perf/ui/stdio/hist.c b/tools/perf/ui/stdio/hist.c
index 6832fcb2e6ff..c1eb476da91b 100644
--- a/tools/perf/ui/stdio/hist.c
+++ b/tools/perf/ui/stdio/hist.c
@@ -819,8 +819,7 @@ size_t hists__fprintf(struct hists *hists, bool show_header, int max_rows,
}
if (h->ms.map == NULL && verbose > 1) {
- __map_groups__fprintf_maps(h->thread->mg,
- MAP__FUNCTION, fp);
+ map_groups__fprintf(h->thread->mg, fp);
fprintf(fp, "%.10s end\n", graph_dotted_line);
}
}