diff options
author | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-18 15:08:07 -0500 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2013-12-19 09:34:23 -0500 |
commit | 618afb294e288db086fce59de4419644215265e5 (patch) | |
tree | 7792aae8a6465de3a18dd5eb0a1800604e52d414 /tools/perf/builtin-top.c | |
parent | 0f4e7a24d0303eaf12847b4fdf4f2d31553fdc61 (diff) |
perf top: Use hist_entry__inc_addr_sample
Since it has a hist_entry, no need to skip the hist layer and use the
underlying symbol one.
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-txsgu9umb0i86ijk888r1a0o@git.kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-top.c')
-rw-r--r-- | tools/perf/builtin-top.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-top.c b/tools/perf/builtin-top.c index 73df9c05bad9..2c6cb66f5358 100644 --- a/tools/perf/builtin-top.c +++ b/tools/perf/builtin-top.c | |||
@@ -190,7 +190,7 @@ static void perf_top__record_precise_ip(struct perf_top *top, | |||
190 | return; | 190 | return; |
191 | 191 | ||
192 | ip = he->ms.map->map_ip(he->ms.map, ip); | 192 | ip = he->ms.map->map_ip(he->ms.map, ip); |
193 | err = symbol__inc_addr_samples(sym, he->ms.map, counter, ip); | 193 | err = hist_entry__inc_addr_samples(he, counter, ip); |
194 | 194 | ||
195 | pthread_mutex_unlock(¬es->lock); | 195 | pthread_mutex_unlock(¬es->lock); |
196 | 196 | ||