aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/tools/perf/ui
diff options
context:
space:
mode:
authorJiri Olsa <jolsa@kernel.org>2018-08-04 15:05:16 +0200
committerArnaldo Carvalho de Melo <acme@redhat.com>2018-08-08 15:55:51 -0300
commitd4265b1a1b9b58df9c3bc0a3a7aa5b72c079c77a (patch)
tree21b5b57ca450858684e60e3f61ef3c47e366788c /tools/perf/ui
parentperf annotate: Pass 'struct annotation_options' to map_symbol__annotation_dump() (diff)
downloadwireguard-linux-d4265b1a1b9b58df9c3bc0a3a7aa5b72c079c77a.tar.xz
wireguard-linux-d4265b1a1b9b58df9c3bc0a3a7aa5b72c079c77a.zip
perf annotate: Pass browser percent_type in annotate_browser__calc_percent()
Pass browser percent_type in annotate_browser__calc_percent(). Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: David Ahern <dsahern@gmail.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <peterz@infradead.org> Cc: Stephane Eranian <eranian@google.com> Link: http://lkml.kernel.org/r/20180804130521.11408-16-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/ui')
-rw-r--r--tools/perf/ui/browsers/annotate.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/ui/browsers/annotate.c b/tools/perf/ui/browsers/annotate.c
index cfe611c28987..2a3a34d450d5 100644
--- a/tools/perf/ui/browsers/annotate.c
+++ b/tools/perf/ui/browsers/annotate.c
@@ -318,7 +318,7 @@ static void annotate_browser__calc_percent(struct annotate_browser *browser,
double percent;
percent = annotation_data__percent(&pos->al.data[i],
- PERCENT_HITS_LOCAL);
+ browser->opts->percent_type);
if (max_percent < percent)
max_percent = percent;