Lines Matching defs:pmu
325 struct pmu { struct
337 * various common per-pmu feature flags argument
346 struct perf_cpu_pmu_context * __percpu *cpu_pmu_context; argument
358 void (*pmu_enable) (struct pmu *pmu); /* optional */ argument
359 void (*pmu_disable) (struct pmu *pmu); /* optional */ argument
377 int (*event_init) (struct perf_event *event);
383 void (*event_mapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
384 void (*event_unmapped) (struct perf_event *event, struct mm_struct *mm); /* optional */
414 int (*add) (struct perf_event *event, int flags);
415 void (*del) (struct perf_event *event, int flags);
468 void (*start_txn) (struct pmu *pmu, unsigned int txn_flags); argument
477 int (*commit_txn) (struct pmu *pmu); argument
484 void (*cancel_txn) (struct pmu *pmu); argument
496 void (*sched_task) (struct perf_event_pmu_context *pmu_ctx, argument
505 * Set up pmu-private data structures for an AUX area argument
512 * Free pmu-private AUX data structures argument
514 void (*free_aux) (void *aux); /* optional */
525 long (*snapshot_aux) (struct perf_event *event,
537 int (*addr_filters_validate) (struct list_head *filters);
568 bool (*filter) (struct pmu *pmu, int cpu); /* optional */ argument
573 int (*check_period) (struct perf_event *event, u64 value); /* optional */
751 struct pmu *pmu; member
907 struct pmu *pmu; member
1500 static inline int is_exclusive_pmu(struct pmu *pmu) in is_exclusive_pmu()