Message ID | 20230901074052.640296-2-xiong.y.zhang@intel.com (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | vPMU v5 test case | expand |
diff --git a/lib/x86/pmu.c b/lib/x86/pmu.c index 0f2afd6..d06e945 100644 --- a/lib/x86/pmu.c +++ b/lib/x86/pmu.c @@ -16,11 +16,6 @@ void pmu_init(void) pmu.fixed_counter_width = (cpuid_10.d >> 5) & 0xff; } - if (pmu.version > 1) { - pmu.nr_fixed_counters = cpuid_10.d & 0x1f; - pmu.fixed_counter_width = (cpuid_10.d >> 5) & 0xff; - } - pmu.nr_gp_counters = (cpuid_10.a >> 8) & 0xff; pmu.gp_counter_width = (cpuid_10.a >> 16) & 0xff; pmu.gp_counter_mask_length = (cpuid_10.a >> 24) & 0xff;
Signed-off-by: Xiong Zhang <xiong.y.zhang@intel.com> --- lib/x86/pmu.c | 5 ----- 1 file changed, 5 deletions(-)