diff options
author | Ingo Molnar <mingo@kernel.org> | 2012-10-26 16:52:45 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2012-10-26 16:52:45 +0200 |
commit | 9db55064940db1447976945d07402a923e818962 (patch) | |
tree | 365f7e0630b149593d81f56edc5b3f34cf2a3081 /tools/perf/util/build-id.c | |
parent | 8f7c1d07ade50dcdea7ec779b277e891f5c8292a (diff) | |
parent | 1f16c5754d3a4008c29f3bf67b4f1271313ba385 (diff) | |
download | talos-op-linux-9db55064940db1447976945d07402a923e818962.tar.gz talos-op-linux-9db55064940db1447976945d07402a923e818962.zip |
Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/acme/linux into perf/core
Pull perf/core improvements from Arnaldo Carvalho de Melo:
* perf inject changes to allow showing where a task sleeps, from Andrew Vagin.
* Makefile improvements from Namhyung Kim.
* Add --pre and --post command hooks in 'stat', from Peter Zijlstra.
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/util/build-id.c')
-rw-r--r-- | tools/perf/util/build-id.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/tools/perf/util/build-id.c b/tools/perf/util/build-id.c index 6a6399955ef2..94ca117b8d6e 100644 --- a/tools/perf/util/build-id.c +++ b/tools/perf/util/build-id.c @@ -16,11 +16,11 @@ #include "session.h" #include "tool.h" -static int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused, - union perf_event *event, - struct perf_sample *sample __maybe_unused, - struct perf_evsel *evsel __maybe_unused, - struct machine *machine) +int build_id__mark_dso_hit(struct perf_tool *tool __maybe_unused, + union perf_event *event, + struct perf_sample *sample __maybe_unused, + struct perf_evsel *evsel __maybe_unused, + struct machine *machine) { struct addr_location al; u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; |