diff options
author | Jiri Olsa <jolsa@kernel.org> | 2019-07-21 07:24:42 -0400 |
---|---|---|
committer | Arnaldo Carvalho de Melo <acme@redhat.com> | 2019-07-29 17:34:45 -0400 |
commit | 03617c22e31f32cbf0e4797e216db898fb898d90 (patch) | |
tree | 2c344d33e287efb2abc1e2dfa2a9cb693fe6a231 /tools/perf/builtin-record.c | |
parent | f72f901d90b00aaf2a6c1335b41311687b3f2dec (diff) |
libperf: Add threads to struct perf_evlist
Move threads from tools/perf's evlist to libperf's perf_evlist struct.
Signed-off-by: Jiri Olsa <jolsa@kernel.org>
Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com>
Cc: Alexey Budankov <alexey.budankov@linux.intel.com>
Cc: Andi Kleen <ak@linux.intel.com>
Cc: Michael Petlan <mpetlan@redhat.com>
Cc: Namhyung Kim <namhyung@kernel.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/20190721112506.12306-56-jolsa@kernel.org
Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
Diffstat (limited to 'tools/perf/builtin-record.c')
-rw-r--r-- | tools/perf/builtin-record.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tools/perf/builtin-record.c b/tools/perf/builtin-record.c index d4f0430c2f49..d31d7a5a1be3 100644 --- a/tools/perf/builtin-record.c +++ b/tools/perf/builtin-record.c | |||
@@ -1275,7 +1275,7 @@ static int record__synthesize(struct record *rec, bool tail) | |||
1275 | if (err) | 1275 | if (err) |
1276 | goto out; | 1276 | goto out; |
1277 | 1277 | ||
1278 | err = perf_event__synthesize_thread_map2(&rec->tool, rec->evlist->threads, | 1278 | err = perf_event__synthesize_thread_map2(&rec->tool, rec->evlist->core.threads, |
1279 | process_synthesized_event, | 1279 | process_synthesized_event, |
1280 | NULL); | 1280 | NULL); |
1281 | if (err < 0) { | 1281 | if (err < 0) { |
@@ -1295,7 +1295,7 @@ static int record__synthesize(struct record *rec, bool tail) | |||
1295 | if (err < 0) | 1295 | if (err < 0) |
1296 | pr_warning("Couldn't synthesize bpf events.\n"); | 1296 | pr_warning("Couldn't synthesize bpf events.\n"); |
1297 | 1297 | ||
1298 | err = __machine__synthesize_threads(machine, tool, &opts->target, rec->evlist->threads, | 1298 | err = __machine__synthesize_threads(machine, tool, &opts->target, rec->evlist->core.threads, |
1299 | process_synthesized_event, opts->sample_address, | 1299 | process_synthesized_event, opts->sample_address, |
1300 | 1); | 1300 | 1); |
1301 | out: | 1301 | out: |