diff options
| author | Namhyung Kim <[email protected]> | 2014-05-12 00:56:42 +0000 |
|---|---|---|
| committer | Jiri Olsa <[email protected]> | 2014-05-12 09:09:50 +0000 |
| commit | 13ce34df11833482cd698331fdbb3f8ced06340d (patch) | |
| tree | 9831bc0915afd571535d6649497cb4a5f62f3411 /tools/perf/builtin-inject.c | |
| parent | perf tools: Get rid of on_exit() feature test (diff) | |
| download | kernel-13ce34df11833482cd698331fdbb3f8ced06340d.tar.gz kernel-13ce34df11833482cd698331fdbb3f8ced06340d.zip | |
perf tools: Use tid for finding thread
I believe that passing pid (instead of tid) as the 3rd arg of the
machine__find*_thread() was to find a main thread so that it can
search proper map group for symbols. However with the map sharing
patch applied, it now can do it in any thread.
It fixes a bug when each thread has different name, it only reports a
main thread for samples in other threads.
Cc: Adrian Hunter <[email protected]>
Acked-by: David Ahern <[email protected]>
Acked-by: Stephane Eranian <[email protected]>
Signed-off-by: Namhyung Kim <[email protected]>
Link: http://lkml.kernel.org/r/[email protected]
Signed-off-by: Jiri Olsa <[email protected]>
Diffstat (limited to 'tools/perf/builtin-inject.c')
| -rw-r--r-- | tools/perf/builtin-inject.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/builtin-inject.c b/tools/perf/builtin-inject.c index 3a7387551369..6a3af0013d68 100644 --- a/tools/perf/builtin-inject.c +++ b/tools/perf/builtin-inject.c @@ -209,7 +209,7 @@ static int perf_event__inject_buildid(struct perf_tool *tool, cpumode = event->header.misc & PERF_RECORD_MISC_CPUMODE_MASK; - thread = machine__findnew_thread(machine, sample->pid, sample->pid); + thread = machine__findnew_thread(machine, sample->pid, sample->tid); if (thread == NULL) { pr_err("problem processing %d event, skipping it.\n", event->header.type); |
