* [patch] P4 clock mod: recalibrate_cpu_khz on ia32 only
@ 2009-03-30 16:41 Frederik Deweerdt
2009-03-30 16:55 ` Dave Jones
0 siblings, 1 reply; 2+ messages in thread
From: Frederik Deweerdt @ 2009-03-30 16:41 UTC (permalink / raw)
To: davej; +Cc: linux-kernel
Hello Dave,
I just triggered the following compile error with an old .config on
x86_64, (latest git):
CHK include/linux/version.h
CHK include/linux/utsrelease.h
SYMLINK include/asm -> include/asm-x86
CALL scripts/checksyscalls.sh
CHK include/linux/compile.h
CC [M] arch/x86/kernel/cpu/cpufreq/p4-clockmod.o
arch/x86/kernel/cpu/cpufreq/p4-clockmod.c: In function ‘cpufreq_p4_cpu_init’:
arch/x86/kernel/cpu/cpufreq/p4-clockmod.c:232: error: implicit declaration of function ‘recalibrate_cpu_khz’
make[3]: *** [arch/x86/kernel/cpu/cpufreq/p4-clockmod.o] Error 1
make[2]: *** [arch/x86/kernel/cpu/cpufreq] Error 2
make[1]: *** [arch/x86/kernel/cpu] Error 2
make: *** [arch/x86/kernel] Error 2
The attached patch calls recalibrate_cpu_khz on ia32 only
Regards,
Frederik
Signed-off-by: Frederik Deweerdt <frederik.deweerdt@gmail.com>
diff --git a/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c b/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c
index 41ed949..88be236 100644
--- a/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c
+++ b/arch/x86/kernel/cpu/cpufreq/p4-clockmod.c
@@ -229,7 +229,9 @@ static int cpufreq_p4_cpu_init(struct cpufreq_policy *policy)
c->x86_model < 2) {
/* switch to maximum frequency and measure result */
cpufreq_p4_setdc(policy->cpu, DC_DISABLE);
+#ifdef CONFIG_X86_32
recalibrate_cpu_khz();
+#endif
}
/* get max frequency */
stock_freq = cpufreq_p4_get_frequency(c);
^ permalink raw reply related [flat|nested] 2+ messages in thread* Re: [patch] P4 clock mod: recalibrate_cpu_khz on ia32 only
2009-03-30 16:41 [patch] P4 clock mod: recalibrate_cpu_khz on ia32 only Frederik Deweerdt
@ 2009-03-30 16:55 ` Dave Jones
0 siblings, 0 replies; 2+ messages in thread
From: Dave Jones @ 2009-03-30 16:55 UTC (permalink / raw)
To: Frederik Deweerdt; +Cc: linux-kernel
On Mon, Mar 30, 2009 at 04:41:53PM +0000, Frederik Deweerdt wrote:
> Hello Dave,
>
> I just triggered the following compile error with an old .config on
> x86_64, (latest git):
>
> CHK include/linux/version.h
> CHK include/linux/utsrelease.h
> SYMLINK include/asm -> include/asm-x86
> CALL scripts/checksyscalls.sh
> CHK include/linux/compile.h
> CC [M] arch/x86/kernel/cpu/cpufreq/p4-clockmod.o
> arch/x86/kernel/cpu/cpufreq/p4-clockmod.c: In function ‘cpufreq_p4_cpu_init’:
> arch/x86/kernel/cpu/cpufreq/p4-clockmod.c:232: error: implicit declaration of function ‘recalibrate_cpu_khz’
> make[3]: *** [arch/x86/kernel/cpu/cpufreq/p4-clockmod.o] Error 1
> make[2]: *** [arch/x86/kernel/cpu/cpufreq] Error 2
> make[1]: *** [arch/x86/kernel/cpu] Error 2
> make: *** [arch/x86/kernel] Error 2
>
> The attached patch calls recalibrate_cpu_khz on ia32 only
Wrong fix. It needs to be called on 64 bit too.
The real fix is to reinstate this diff which the recent x86 merge reverted..
diff --git a/arch/x86/include/asm/timer.h b/arch/x86/include/asm/timer.h
index 2bb6a83..4f5c247 100644
--- a/arch/x86/include/asm/timer.h
+++ b/arch/x86/include/asm/timer.h
@@ -11,8 +11,8 @@ unsigned long native_calibrate_tsc(void);
#ifdef CONFIG_X86_32
extern int timer_ack;
+#endif
extern int recalibrate_cpu_khz(void);
-#endif /* CONFIG_X86_32 */
extern int no_timer_check;
^ permalink raw reply related [flat|nested] 2+ messages in thread
end of thread, other threads:[~2009-03-30 16:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2009-03-30 16:41 [patch] P4 clock mod: recalibrate_cpu_khz on ia32 only Frederik Deweerdt
2009-03-30 16:55 ` Dave Jones
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox