diff options
Diffstat (limited to 'tools/perf/util/build-id.c')
-rw-r--r-- | tools/perf/util/build-id.c | 26 |
1 files changed, 15 insertions, 11 deletions
diff --git a/tools/perf/util/build-id.c b/tools/perf/util/build-id.c index a91cd99f26e..dff9c7a725f 100644 --- a/tools/perf/util/build-id.c +++ b/tools/perf/util/build-id.c | |||
@@ -13,15 +13,18 @@ | |||
13 | #include "symbol.h" | 13 | #include "symbol.h" |
14 | #include <linux/kernel.h> | 14 | #include <linux/kernel.h> |
15 | #include "debug.h" | 15 | #include "debug.h" |
16 | #include "session.h" | ||
17 | #include "tool.h" | ||
16 | 18 | ||
17 | static int build_id__mark_dso_hit(union perf_event *event, | 19 | static int build_id__mark_dso_hit(struct perf_tool *tool __used, |
20 | union perf_event *event, | ||
18 | struct perf_sample *sample __used, | 21 | struct perf_sample *sample __used, |
19 | struct perf_evsel *evsel __used, | 22 | struct perf_evsel *evsel __used, |
20 | struct perf_session *session) | 23 | struct machine *machine) |
21 | { | 24 | { |
22 | struct addr_location al; | 25 | struct addr_location al; |
23 | u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; | 26 | u8 cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; |
24 | struct thread *thread = perf_session__findnew(session, event->ip.pid); | 27 | struct thread *thread = machine__findnew_thread(machine, event->ip.pid); |
25 | 28 | ||
26 | if (thread == NULL) { | 29 | if (thread == NULL) { |
27 | pr_err("problem processing %d event, skipping it.\n", | 30 | pr_err("problem processing %d event, skipping it.\n", |
@@ -29,8 +32,8 @@ static int build_id__mark_dso_hit(union perf_event *event, | |||
29 | return -1; | 32 | return -1; |
30 | } | 33 | } |
31 | 34 | ||
32 | thread__find_addr_map(thread, session, cpumode, MAP__FUNCTION, | 35 | thread__find_addr_map(thread, machine, cpumode, MAP__FUNCTION, |
33 | event->ip.pid, event->ip.ip, &al); | 36 | event->ip.ip, &al); |
34 | 37 | ||
35 | if (al.map != NULL) | 38 | if (al.map != NULL) |
36 | al.map->dso->hit = 1; | 39 | al.map->dso->hit = 1; |
@@ -38,25 +41,26 @@ static int build_id__mark_dso_hit(union perf_event *event, | |||
38 | return 0; | 41 | return 0; |
39 | } | 42 | } |
40 | 43 | ||
41 | static int perf_event__exit_del_thread(union perf_event *event, | 44 | static int perf_event__exit_del_thread(struct perf_tool *tool __used, |
45 | union perf_event *event, | ||
42 | struct perf_sample *sample __used, | 46 | struct perf_sample *sample __used, |
43 | struct perf_session *session) | 47 | struct machine *machine) |
44 | { | 48 | { |
45 | struct thread *thread = perf_session__findnew(session, event->fork.tid); | 49 | struct thread *thread = machine__findnew_thread(machine, event->fork.tid); |
46 | 50 | ||
47 | dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid, | 51 | dump_printf("(%d:%d):(%d:%d)\n", event->fork.pid, event->fork.tid, |
48 | event->fork.ppid, event->fork.ptid); | 52 | event->fork.ppid, event->fork.ptid); |
49 | 53 | ||
50 | if (thread) { | 54 | if (thread) { |
51 | rb_erase(&thread->rb_node, &session->threads); | 55 | rb_erase(&thread->rb_node, &machine->threads); |
52 | session->last_match = NULL; | 56 | machine->last_match = NULL; |
53 | thread__delete(thread); | 57 | thread__delete(thread); |
54 | } | 58 | } |
55 | 59 | ||
56 | return 0; | 60 | return 0; |
57 | } | 61 | } |
58 | 62 | ||
59 | struct perf_event_ops build_id__mark_dso_hit_ops = { | 63 | struct perf_tool build_id__mark_dso_hit_ops = { |
60 | .sample = build_id__mark_dso_hit, | 64 | .sample = build_id__mark_dso_hit, |
61 | .mmap = perf_event__process_mmap, | 65 | .mmap = perf_event__process_mmap, |
62 | .fork = perf_event__process_task, | 66 | .fork = perf_event__process_task, |