diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-20 13:57:40 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2009-06-20 13:57:40 -0400 |
commit | 1eb51c33b21ffa3fceb634d1d6bcd6488c79bc26 (patch) | |
tree | 5360e0b439b35a97313ea8250209e7dacff8b9a6 /arch | |
parent | b0b7065b64fe517b4a50915a1555e8ee98890d64 (diff) | |
parent | 3104bf03a923c72043a9c5009d9cd56724304916 (diff) |
Merge branch 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip
* 'sched-fixes-for-linus' of git://git.kernel.org/pub/scm/linux/kernel/git/tip/linux-2.6-tip:
sched: Fix out of scope variable access in sched_slice()
sched: Hide runqueues from direct refer at source code level
sched: Remove unneeded __ref tag
sched, x86: Fix cpufreq + sched_clock() TSC scaling
Diffstat (limited to 'arch')
-rw-r--r-- | arch/x86/include/asm/timer.h | 6 | ||||
-rw-r--r-- | arch/x86/kernel/tsc.c | 8 |
2 files changed, 11 insertions, 3 deletions
diff --git a/arch/x86/include/asm/timer.h b/arch/x86/include/asm/timer.h index bd37ed444a21..20ca9c4d4686 100644 --- a/arch/x86/include/asm/timer.h +++ b/arch/x86/include/asm/timer.h | |||
@@ -45,12 +45,16 @@ extern int no_timer_check; | |||
45 | */ | 45 | */ |
46 | 46 | ||
47 | DECLARE_PER_CPU(unsigned long, cyc2ns); | 47 | DECLARE_PER_CPU(unsigned long, cyc2ns); |
48 | DECLARE_PER_CPU(unsigned long long, cyc2ns_offset); | ||
48 | 49 | ||
49 | #define CYC2NS_SCALE_FACTOR 10 /* 2^10, carefully chosen */ | 50 | #define CYC2NS_SCALE_FACTOR 10 /* 2^10, carefully chosen */ |
50 | 51 | ||
51 | static inline unsigned long long __cycles_2_ns(unsigned long long cyc) | 52 | static inline unsigned long long __cycles_2_ns(unsigned long long cyc) |
52 | { | 53 | { |
53 | return cyc * per_cpu(cyc2ns, smp_processor_id()) >> CYC2NS_SCALE_FACTOR; | 54 | int cpu = smp_processor_id(); |
55 | unsigned long long ns = per_cpu(cyc2ns_offset, cpu); | ||
56 | ns += cyc * per_cpu(cyc2ns, cpu) >> CYC2NS_SCALE_FACTOR; | ||
57 | return ns; | ||
54 | } | 58 | } |
55 | 59 | ||
56 | static inline unsigned long long cycles_2_ns(unsigned long long cyc) | 60 | static inline unsigned long long cycles_2_ns(unsigned long long cyc) |
diff --git a/arch/x86/kernel/tsc.c b/arch/x86/kernel/tsc.c index b0597ad02c93..6e1a368d21d4 100644 --- a/arch/x86/kernel/tsc.c +++ b/arch/x86/kernel/tsc.c | |||
@@ -590,22 +590,26 @@ EXPORT_SYMBOL(recalibrate_cpu_khz); | |||
590 | */ | 590 | */ |
591 | 591 | ||
592 | DEFINE_PER_CPU(unsigned long, cyc2ns); | 592 | DEFINE_PER_CPU(unsigned long, cyc2ns); |
593 | DEFINE_PER_CPU(unsigned long long, cyc2ns_offset); | ||
593 | 594 | ||
594 | static void set_cyc2ns_scale(unsigned long cpu_khz, int cpu) | 595 | static void set_cyc2ns_scale(unsigned long cpu_khz, int cpu) |
595 | { | 596 | { |
596 | unsigned long long tsc_now, ns_now; | 597 | unsigned long long tsc_now, ns_now, *offset; |
597 | unsigned long flags, *scale; | 598 | unsigned long flags, *scale; |
598 | 599 | ||
599 | local_irq_save(flags); | 600 | local_irq_save(flags); |
600 | sched_clock_idle_sleep_event(); | 601 | sched_clock_idle_sleep_event(); |
601 | 602 | ||
602 | scale = &per_cpu(cyc2ns, cpu); | 603 | scale = &per_cpu(cyc2ns, cpu); |
604 | offset = &per_cpu(cyc2ns_offset, cpu); | ||
603 | 605 | ||
604 | rdtscll(tsc_now); | 606 | rdtscll(tsc_now); |
605 | ns_now = __cycles_2_ns(tsc_now); | 607 | ns_now = __cycles_2_ns(tsc_now); |
606 | 608 | ||
607 | if (cpu_khz) | 609 | if (cpu_khz) { |
608 | *scale = (NSEC_PER_MSEC << CYC2NS_SCALE_FACTOR)/cpu_khz; | 610 | *scale = (NSEC_PER_MSEC << CYC2NS_SCALE_FACTOR)/cpu_khz; |
611 | *offset = ns_now - (tsc_now * *scale >> CYC2NS_SCALE_FACTOR); | ||
612 | } | ||
609 | 613 | ||
610 | sched_clock_idle_wakeup_event(0); | 614 | sched_clock_idle_wakeup_event(0); |
611 | local_irq_restore(flags); | 615 | local_irq_restore(flags); |