* [BUG] cpu_khz isn't reliable at boot time
@ 2006-07-11 5:17 Shaohua Li
0 siblings, 0 replies; only message in thread
From: Shaohua Li @ 2006-07-11 5:17 UTC (permalink / raw)
To: cpufreq, lkml
In mobile system, BIOS usually sets CPU to low speed. In modern CPU, TSC
is constant speed regardless of CPU speed. Linux uses TSC to calculate
cpu_khz, which is the full speed frequence of CPU instead of low speed
in some systems. This might invoke some potential issues. One is NMI
watchdog, which runs less frequently in cpu low speed mode.
Below workaround from Len addressed the NMI issue, any idea?
diff --git a/arch/i386/kernel/nmi.c b/arch/i386/kernel/nmi.c
index d43b498..b157186 100644
--- a/arch/i386/kernel/nmi.c
+++ b/arch/i386/kernel/nmi.c
@@ -150,7 +150,12 @@ #ifdef CONFIG_SMP
if (!cpu_isset(cpu, cpu_callin_map))
continue;
#endif
- if (nmi_count(cpu) - prev_nmi_count[cpu] <= 5) {
+ /*
+ * Fail if there were NO watchdog interrupts recorded.
+ * We don't know the exact number to expect because
+ * cpu_khz is variable.
+ */
+ if ((nmi_count(cpu) - prev_nmi_count[cpu]) == 0) {
endflag = 1;
printk("CPU#%d: NMI appears to be stuck (%d->%d)!\n",
cpu,
@@ -357,6 +362,11 @@ static void clear_msr_range(unsigned int
wrmsr(base+i, 0, 0);
}
+/*
+ * n.b.
+ * cpu_khz may not reflect the current or future khz of the processor
+ * depending on what speed the system booted at and if cpufreq is running
+ */
static void write_watchdog_counter(const char *descr)
{
u64 count = (u64)cpu_khz * 1000;
^ permalink raw reply [flat|nested] only message in thread
only message in thread, other threads:[~2006-07-11 5:20 UTC | newest]
Thread overview: (only message) (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2006-07-11 5:17 [BUG] cpu_khz isn't reliable at boot time Shaohua Li
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox
all inboxes | Powered by JetHome®