* [PATCH] x86: Fix call to set_cyc2ns_scale() from time_cpufreq_notifier()
@ 2008-04-07 10:14 Karsten Wiese
2008-04-07 10:26 ` Ingo Molnar
2008-04-07 12:33 ` Andi Kleen
0 siblings, 2 replies; 3+ messages in thread
From: Karsten Wiese @ 2008-04-07 10:14 UTC (permalink / raw)
To: linux-kernel; +Cc: Ingo Molnar, Thomas Gleixner
In time_cpufreq_notifier() the cpu id to act upon is held in freq->cpu. Use it
instead of smp_processor_id() in the call to set_cyc2ns_scale().
This makes the preempt_*able() unnecessary and lets set_cyc2ns_scale() update
the intended cpu's cyc2ns.
Signed-off-by: Karsten Wiese <fzu@wemgehoertderstaat.de>
---
Hi,
the codepath changed by patch is untested as my smp's cpu has
X86_FEATURE_CONSTANT_TSC set.
A printk() inserted at the beginning of time_cpufreq_notifier() showed regular
cases of "smp_processor_id() != freq->cpu".
Related mail/thread: http://lkml.org/lkml/2007/12/7/130.
Thanks,
Karsten
arch/x86/kernel/tsc_32.c | 4 +---
arch/x86/kernel/tsc_64.c | 4 +---
2 files changed, 2 insertions(+), 6 deletions(-)
diff --git a/arch/x86/kernel/tsc_32.c b/arch/x86/kernel/tsc_32.c
index d7498b3..2f5f9a4 100644
--- a/arch/x86/kernel/tsc_32.c
+++ b/arch/x86/kernel/tsc_32.c
@@ -256,9 +256,7 @@ time_cpufreq_notifier(struct notifier_block *nb, unsigned long val, void *data)
ref_freq, freq->new);
if (!(freq->flags & CPUFREQ_CONST_LOOPS)) {
tsc_khz = cpu_khz;
- preempt_disable();
- set_cyc2ns_scale(cpu_khz, smp_processor_id());
- preempt_enable();
+ set_cyc2ns_scale(cpu_khz, freq->cpu);
/*
* TSC based sched_clock turns
* to junk w/ cpufreq
diff --git a/arch/x86/kernel/tsc_64.c b/arch/x86/kernel/tsc_64.c
index 01fc9f0..bd2e2c3 100644
--- a/arch/x86/kernel/tsc_64.c
+++ b/arch/x86/kernel/tsc_64.c
@@ -149,9 +149,7 @@ static int time_cpufreq_notifier(struct notifier_block *nb, unsigned long val,
mark_tsc_unstable("cpufreq changes");
}
- preempt_disable();
- set_cyc2ns_scale(tsc_khz_ref, smp_processor_id());
- preempt_enable();
+ set_cyc2ns_scale(tsc_khz_ref, freq->cpu);
return 0;
}
--
1.5.3.3
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] x86: Fix call to set_cyc2ns_scale() from time_cpufreq_notifier()
2008-04-07 10:14 [PATCH] x86: Fix call to set_cyc2ns_scale() from time_cpufreq_notifier() Karsten Wiese
@ 2008-04-07 10:26 ` Ingo Molnar
2008-04-07 12:33 ` Andi Kleen
1 sibling, 0 replies; 3+ messages in thread
From: Ingo Molnar @ 2008-04-07 10:26 UTC (permalink / raw)
To: Karsten Wiese; +Cc: linux-kernel, Thomas Gleixner
* Karsten Wiese <fzu@wemgehoertderstaat.de> wrote:
> In time_cpufreq_notifier() the cpu id to act upon is held in
> freq->cpu. Use it instead of smp_processor_id() in the call to
> set_cyc2ns_scale(). This makes the preempt_*able() unnecessary and
> lets set_cyc2ns_scale() update the intended cpu's cyc2ns.
thanks Karsten, applied.
Ingo
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] x86: Fix call to set_cyc2ns_scale() from time_cpufreq_notifier()
2008-04-07 10:14 [PATCH] x86: Fix call to set_cyc2ns_scale() from time_cpufreq_notifier() Karsten Wiese
2008-04-07 10:26 ` Ingo Molnar
@ 2008-04-07 12:33 ` Andi Kleen
1 sibling, 0 replies; 3+ messages in thread
From: Andi Kleen @ 2008-04-07 12:33 UTC (permalink / raw)
To: Karsten Wiese; +Cc: linux-kernel, Ingo Molnar, Thomas Gleixner
Karsten Wiese <fzu@wemgehoertderstaat.de> writes:
> In time_cpufreq_notifier() the cpu id to act upon is held in freq->cpu. Use it
> instead of smp_processor_id() in the call to set_cyc2ns_scale().
> This makes the preempt_*able() unnecessary and lets set_cyc2ns_scale() update
> the intended cpu's cyc2ns.
It is still wrong because set_cyc2ns_scale() needs to execute on the target CPU
because it does rdtsc on that CPU. If you're on another CPU you'll
get the wrong values if the TSCs are not synchronized.
Still wrong as just disabling preemption around the call is not correct,
it would need to cover the complete notifier event and also the cpufreq
code would need to guarantee it is always already running on the correct
CPU (not sure that is the case currently)
The whole thing needs to be either preempt disabled or the RDTSC update code
needs to be moved into a smp_call_function_simple() [my old
"redesigned sched_clock code" did that]
Using smp_call_function_simple() would be probably the right fix,
perhaps conditional on a check for unsync TSC.
-Andi
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2008-04-07 12:34 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2008-04-07 10:14 [PATCH] x86: Fix call to set_cyc2ns_scale() from time_cpufreq_notifier() Karsten Wiese
2008-04-07 10:26 ` Ingo Molnar
2008-04-07 12:33 ` Andi Kleen
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox