libperf: Add perf_evsel__alloc_id/perf_evsel__free_id functions
Add perf_evsel__alloc_id()/perf_evsel__free_id() functions to libperf as internal functions. Move 'struct perf_sample_id' to internal/evsel.h header and change 'struct perf_sample_id::evsel' to 'struct perf_evsel' and the related code that touches it. Signed-off-by: Jiri Olsa <jolsa@kernel.org> Cc: Alexander Shishkin <alexander.shishkin@linux.intel.com> Cc: Michael Petlan <mpetlan@redhat.com> Cc: Namhyung Kim <namhyung@kernel.org> Cc: Peter Zijlstra <a.p.zijlstra@chello.nl> Link: http://lore.kernel.org/lkml/20190913132355.21634-28-jolsa@kernel.org Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com>
This commit is contained in:

committed by
Arnaldo Carvalho de Melo

parent
1d5af02d7a
commit
70c20369ee
@@ -3609,7 +3609,7 @@ int perf_session__read_header(struct perf_session *session)
|
||||
* for allocating the perf_sample_id table we fake 1 cpu and
|
||||
* hattr->ids threads.
|
||||
*/
|
||||
if (perf_evsel__alloc_id(evsel, 1, nr_ids))
|
||||
if (perf_evsel__alloc_id(&evsel->core, 1, nr_ids))
|
||||
goto out_delete_evlist;
|
||||
|
||||
lseek(fd, f_attr.ids.offset, SEEK_SET);
|
||||
@@ -3750,7 +3750,7 @@ int perf_event__process_attr(struct perf_tool *tool __maybe_unused,
|
||||
* for allocating the perf_sample_id table we fake 1 cpu and
|
||||
* hattr->ids threads.
|
||||
*/
|
||||
if (perf_evsel__alloc_id(evsel, 1, n_ids))
|
||||
if (perf_evsel__alloc_id(&evsel->core, 1, n_ids))
|
||||
return -ENOMEM;
|
||||
|
||||
for (i = 0; i < n_ids; i++) {
|
||||
|
Reference in New Issue
Block a user