1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef __LIBPERF_INTERNAL_EVSEL_H
3 #define __LIBPERF_INTERNAL_EVSEL_H
5 #include <linux/types.h>
6 #include <linux/perf_event.h>
11 struct perf_thread_map
;
15 * Per fd, to map back from PERF_SAMPLE_ID to evsel, only used when there are
16 * more than one entry in the evlist.
18 struct perf_sample_id
{
19 struct hlist_node node
;
21 struct perf_evsel
*evsel
;
23 * 'idx' will be used for AUX area sampling. A sample will have AUX area
24 * data that will be queued for decoding, where there are separate
25 * queues for each CPU (per-cpu tracing) or task (per-thread tracing).
26 * The sample ID can be used to lookup 'idx' which is effectively the
33 /* Holds total ID period value for PERF_SAMPLE_READ processing. */
38 struct list_head node
;
39 struct perf_event_attr attr
;
40 struct perf_cpu_map
*cpus
;
41 struct perf_cpu_map
*own_cpus
;
42 struct perf_thread_map
*threads
;
44 struct xyarray
*sample_id
;
48 /* parse modifier helper */
53 void perf_evsel__init(struct perf_evsel
*evsel
, struct perf_event_attr
*attr
);
54 int perf_evsel__alloc_fd(struct perf_evsel
*evsel
, int ncpus
, int nthreads
);
55 void perf_evsel__close_fd(struct perf_evsel
*evsel
);
56 void perf_evsel__free_fd(struct perf_evsel
*evsel
);
57 int perf_evsel__read_size(struct perf_evsel
*evsel
);
58 int perf_evsel__apply_filter(struct perf_evsel
*evsel
, const char *filter
);
60 int perf_evsel__alloc_id(struct perf_evsel
*evsel
, int ncpus
, int nthreads
);
61 void perf_evsel__free_id(struct perf_evsel
*evsel
);
63 #endif /* __LIBPERF_INTERNAL_EVSEL_H */