aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMathieu Poirier <mathieu.poirier@linaro.org>2016-10-17 13:28:22 -0600
committerMathieu Poirier <mathieu.poirier@linaro.org>2016-10-17 13:45:18 -0600
commit133201b91f4db1c3c2f3917e447b7fe237a5801b (patch)
tree98e0d8de40cdb33bcdf6c2910b047441dc16ac67
parent15929c1723e36d799a79d9db6e6c6a9e4d12ce2c (diff)
cs-etm: fixing map__load() parametertag-perf-opencsd-4.9-rc1
Since "0890e97c2033 perf machine: Remove machine->symbol_filter and friends" it is no longer required to pass a symbol_filter_to to function map__load(). This patch should be merged with the main core patch when upstreaming. Signed-off-by: Mathieu Poirier <mathieu.poirier@linaro.org>
-rw-r--r--tools/perf/util/cs-etm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/util/cs-etm.c b/tools/perf/util/cs-etm.c
index 8b70ce865732..6b56c951f301 100644
--- a/tools/perf/util/cs-etm.c
+++ b/tools/perf/util/cs-etm.c
@@ -1002,7 +1002,7 @@ static uint32_t cs_etm__mem_access(struct cs_etm_queue *etmq, uint64_t address,
offset = al.map->map_ip(al.map,address);
- map__load(al.map, machine->symbol_filter);
+ map__load(al.map);
len = dso__data_read_offset(al.map->dso, machine,
offset, buffer, size);