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
@ -95,7 +95,7 @@ int test__event_update(struct test *test __maybe_unused, int subtest __maybe_unu
|
||||
evsel = perf_evlist__first(evlist);
|
||||
|
||||
TEST_ASSERT_VAL("failed to allocate ids",
|
||||
!perf_evsel__alloc_id(evsel, 1, 1));
|
||||
!perf_evsel__alloc_id(&evsel->core, 1, 1));
|
||||
|
||||
perf_evlist__id_add(evlist, evsel, 0, 0, 123);
|
||||
|
||||
|
Reference in New Issue
Block a user