Re: [PATCH] Warn of incorrect cpu_khz on AMD systems

From: Ingo Molnar
Date: Thu Nov 06 2008 - 04:01:39 EST



* Prarit Bhargava <prarit@xxxxxxxxxx> wrote:

> If none of the perfctrs are free when calculating cpu_khz we default
> to using ctr 3 (ie, we just choose 3). This may lead to an
> incorrect tsc freq value which can cause the system to be unstable.
>
> To aid in future debugging, WARN the user of a potential problem.

oh, nasty... when can this happen - are you using nmi_watchdog=2?

Cannot we avoid this situation somehow? The calibrate_cpu() function
is quite ugly and does a dangerous thing by ignoring the reservation.

This whole sequence is sloppy:

for (i = 0; i < 4; i++)
if (avail_to_resrv_perfctr_nmi_bit(i))
break;
no_ctr_free = (i == 4);
if (no_ctr_free) {
i = 3;
rdmsrl(MSR_K7_EVNTSEL3, evntsel3);
wrmsrl(MSR_K7_EVNTSEL3, 0);
rdmsrl(MSR_K7_PERFCTR3, pmc3);
} else {
reserve_perfctr_nmi(MSR_K7_PERFCTR0 + i);
reserve_evntsel_nmi(MSR_K7_EVNTSEL0 + i);
}

> no_ctr_free = (i == 4);
> if (no_ctr_free) {
> + printk(KERN_WARN "Warning: AMD perfctrs busy ... "
> + "cpu_khz value may be incorrect.\n");

also, please use a WARN() instead so that kerneloops.org picks it up.

Ingo
--
To unsubscribe from this list: send the line "unsubscribe linux-kernel" in
the body of a message to majordomo@xxxxxxxxxxxxxxx
More majordomo info at http://vger.kernel.org/majordomo-info.html
Please read the FAQ at http://www.tux.org/lkml/