Lines Matching defs:pmu
278 struct pmu { struct
289 * various common per-pmu feature flags argument
293 int __percpu *pmu_disable_count; argument
294 struct perf_cpu_context __percpu *pmu_cpu_context; argument
306 void (*pmu_enable) (struct pmu *pmu); /* optional */ argument
307 void (*pmu_disable) (struct pmu *pmu); /* optional */ argument
325 int (*event_init) (struct perf_event *event);
331 void (*event_mapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
332 void (*event_unmapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
360 int (*add) (struct perf_event *event, int flags);
361 void (*del) (struct perf_event *event, int flags);
402 void (*start_txn) (struct pmu *pmu, unsigned int txn_flags); argument
411 int (*commit_txn) (struct pmu *pmu); argument
418 void (*cancel_txn) (struct pmu *pmu); argument
424 int (*event_idx) (struct perf_event *event); /*optional */
448 * Set up pmu-private data structures for an AUX area argument
455 * Free pmu-private AUX data structures argument
457 void (*free_aux) (void *aux); /* optional */
468 long (*snapshot_aux) (struct perf_event *event,
480 int (*addr_filters_validate) (struct list_head *filters);
494 void (*addr_filters_sync) (struct perf_event *event);
504 int (*aux_output_match) (struct perf_event *event);
510 int (*filter_match) (struct perf_event *event); /* optional */
515 int (*check_period) (struct perf_event *event, u64 value); /* optional */
662 struct pmu *pmu; member
794 struct pmu *pmu; member
1128 static inline int is_exclusive_pmu(struct pmu *pmu) in is_exclusive_pmu()