Lines Matching defs:pmu
254 struct pmu { struct
265 * various common per-pmu feature flags argument
269 int __percpu *pmu_disable_count; argument
270 struct perf_cpu_context __percpu *pmu_cpu_context; argument
282 void (*pmu_enable) (struct pmu *pmu); /* optional */ argument
283 void (*pmu_disable) (struct pmu *pmu); /* optional */ argument
301 int (*event_init) (struct perf_event *event);
307 void (*event_mapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
308 void (*event_unmapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
336 int (*add) (struct perf_event *event, int flags);
337 void (*del) (struct perf_event *event, int flags);
378 void (*start_txn) (struct pmu *pmu, unsigned int txn_flags); argument
387 int (*commit_txn) (struct pmu *pmu); argument
394 void (*cancel_txn) (struct pmu *pmu); argument
414 * Set up pmu-private data structures for an AUX area argument
421 * Free pmu-private AUX data structures argument
423 void (*free_aux) (void *aux); /* optional */
433 int (*addr_filters_validate) (struct list_head *filters);
447 void (*addr_filters_sync) (struct perf_event *event);
457 int (*aux_output_match) (struct perf_event *event);
463 int (*filter_match) (struct perf_event *event); /* optional */
468 int (*check_period) (struct perf_event *event, u64 value); /* optional */
611 struct pmu *pmu; member
740 struct pmu *pmu; member
1072 static inline int is_exclusive_pmu(struct pmu *pmu) in is_exclusive_pmu()