diff options
author | Ingo Molnar <mingo@kernel.org> | 2014-05-12 17:57:48 +0200 |
---|---|---|
committer | Ingo Molnar <mingo@kernel.org> | 2014-05-12 17:57:48 +0200 |
commit | 26f273802b6ed28e059f4359bc7711dffceda022 (patch) | |
tree | 2041502c5a2cdaa90457becdf8f444d0b5378410 /tools/perf/tests/code-reading.c | |
parent | 3a497f48637e2aac17eabb84a17f8ac5216028fc (diff) | |
parent | 13ce34df11833482cd698331fdbb3f8ced06340d (diff) |
Merge tag 'perf-core-for-mingo' of git://git.kernel.org/pub/scm/linux/kernel/git/jolsa/perf into perf/core
Pull perf/core improvements and fixes from Jiri Olsa:
* Propagate exit status of a command line workload for
record command (Namhyung Kim)
* Use tid for finding thread (Namhyung Kim)
* Clarify the output of perf sched map plus small sched
command fixies (Dongsheng Yang)
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Signed-off-by: Ingo Molnar <mingo@kernel.org>
Diffstat (limited to 'tools/perf/tests/code-reading.c')
-rw-r--r-- | tools/perf/tests/code-reading.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/perf/tests/code-reading.c b/tools/perf/tests/code-reading.c index adf3de3e38d6a..67f2d63235587 100644 --- a/tools/perf/tests/code-reading.c +++ b/tools/perf/tests/code-reading.c @@ -256,7 +256,7 @@ static int process_sample_event(struct machine *machine, return -1; } - thread = machine__findnew_thread(machine, sample.pid, sample.pid); + thread = machine__findnew_thread(machine, sample.pid, sample.tid); if (!thread) { pr_debug("machine__findnew_thread failed\n"); return -1; |