diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-18 16:48:29 -0300 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-19 11:34:19 -0300 |
commit | 0f4e7a24d0303eaf12847b4fdf4f2d31553fdc61 (patch) | |
tree | 11b5f8dfe91cc636f81983ba7bcb91fb29a506c3 /tools/perf/builtin-report.c | |
parent | 00e55218642b91c152917e170c8387c631467460 (diff) |
perf annotate: Add inc_samples method to addr_map_symbol
Since there are three calls that could receive just the struct
addr_map_symbol pointer and call the symbol method.
Acked-by: Namhyung Kim <namhyung@kernel.org>
Cc: Adrian Hunter <adrian.hunter@intel.com>
Cc: David Ahern <dsahern@gmail.com>
Cc: Frederic Weisbecker <fweisbec@gmail.com>
Cc: Jiri Olsa <jolsa@redhat.com>
Cc: Mike Galbraith <efault@gmx.de>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Paul Mackerras <paulus@samba.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Cc: Stephane Eranian <eranian@google.com>
Link: http://lkml.kernel.org/n/tip-d728gz1orgkaknac9ppnzd9e@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-report.c')
-rw-r--r-- | tools/perf/builtin-report.c | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/tools/perf/builtin-report.c b/tools/perf/builtin-report.c index 0615a63ae35..9a20c9efb84 100644 --- a/tools/perf/builtin-report.c +++ b/tools/perf/builtin-report.c @@ -127,8 +127,7 @@ static int perf_report__add_mem_hist_entry(struct perf_tool *tool, goto out; mx = he->mem_info; - err = symbol__inc_addr_samples(mx->daddr.sym, mx->daddr.map, - evsel->idx, mx->daddr.al_addr); + err = addr_map_symbol__inc_samples(&mx->daddr, evsel->idx); if (err) goto out; @@ -190,15 +189,11 @@ static int perf_report__add_branch_hist_entry(struct perf_tool *tool, 1, 1, 0); if (he) { bx = he->branch_info; - err = symbol__inc_addr_samples(bx->from.sym, - bx->from.map, evsel->idx, - bx->from.al_addr); + err = addr_map_symbol__inc_samples(&bx->from, evsel->idx); if (err) goto out; - err = symbol__inc_addr_samples(bx->to.sym, - bx->to.map, evsel->idx, - bx->to.al_addr); + err = addr_map_symbol__inc_samples(&bx->to, evsel->idx); if (err) goto out; |