Merge tag 'ntb-5.11' of git://github.com/jonmason/ntb
[linux/fpc-iii.git] / tools / perf / arch / x86 / util / pmu.c
blobd48d608517fd273212b0c8c0da310aa8075085a4
1 // SPDX-License-Identifier: GPL-2.0
2 #include <string.h>
4 #include <linux/stddef.h>
5 #include <linux/perf_event.h>
7 #include "../../../util/intel-pt.h"
8 #include "../../../util/intel-bts.h"
9 #include "../../../util/pmu.h"
11 struct perf_event_attr *perf_pmu__get_default_config(struct perf_pmu *pmu __maybe_unused)
13 #ifdef HAVE_AUXTRACE_SUPPORT
14 if (!strcmp(pmu->name, INTEL_PT_PMU_NAME))
15 return intel_pt_pmu_default_config(pmu);
16 if (!strcmp(pmu->name, INTEL_BTS_PMU_NAME))
17 pmu->selectable = true;
18 #endif
19 return NULL;