On 16.11.12 13:00:30, Jacob Shin wrote: > > > static int setup_event_constraints(void) > > > { > > > - if (boot_cpu_data.x86 >= 0x15) > > > + if (boot_cpu_data.x86 == 0x15) > > > x86_pmu.get_event_constraints = amd_get_event_constraints_f15h; > > > > Since this does not cover family 16h anymore, you also need to extend > > amd_get_event_ constraints() to setup nb counters with __amd_get_nb_ > > event_constraints() if cpu_has_perfctr_nb is set. > > Yes family 16h will be covered by a separate patch at a later date.
This is fine, if functionality is added later. But If you run the patch as it is on family 16h, you need to make sure nb counters are not enabled at all. This is not the case since you have several checks for cpu_has_perfctr_nb. This code must also run on family 16h as it is, thus you need strictly disable nb counters in this case, or enable it. -Robert -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majord...@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/