1 #include "pmu.h" 2 3 struct pmu_caps pmu; 4 5 void pmu_init(void) 6 { 7 if (this_cpu_has(X86_FEATURE_PDCM)) 8 pmu.perf_cap = rdmsr(MSR_IA32_PERF_CAPABILITIES); 9 } 10