]> www.infradead.org Git - users/jedix/linux-maple.git/commitdiff
x86/tsc_msr: Remove irqoff around MSR-based TSC enumeration
authorLen Brown <len.brown@intel.com>
Fri, 17 Jun 2016 05:22:50 +0000 (01:22 -0400)
committerChuck Anderson <chuck.anderson@oracle.com>
Sun, 28 May 2017 02:43:50 +0000 (19:43 -0700)
Remove the irqoff/irqon around MSR-based TSC enumeration,
as it is not necessary.

Also rename: try_msr_calibrate_tsc() to cpu_khz_from_msr(),
as that better describes what the routine does.

Signed-off-by: Len Brown <len.brown@intel.com>
Reviewed-by: Thomas Gleixner <tglx@linutronix.de>
Cc: Linus Torvalds <torvalds@linux-foundation.org>
Cc: Peter Zijlstra <peterz@infradead.org>
Link: http://lkml.kernel.org/r/a6b5c3ecd3b068175d2309599ab28163fc34215e.1466138954.git.len.brown@intel.com
Signed-off-by: Ingo Molnar <mingo@kernel.org>
(cherry picked from commit 02c0cd2dcf7fdc47d054b855b148ea8b82dbb7eb)

Orabug: 25948913

Signed-off-by: Ethan Zhao <ethan.zhao@oracle.com>
Reviewed-by: Shan Hai <shan.hai@oracle.com>
arch/x86/include/asm/tsc.h
arch/x86/kernel/tsc.c
arch/x86/kernel/tsc_msr.c

index 94605c0e9ceebc0058b18b995a5ac4f73a0d2aa6..ba397f77754ef03928000ad0af3182ea12df6ed8 100644 (file)
@@ -65,7 +65,6 @@ extern int notsc_setup(char *);
 extern void tsc_save_sched_clock_state(void);
 extern void tsc_restore_sched_clock_state(void);
 
-/* MSR based TSC calibration for Intel Atom SoC platforms */
-unsigned long try_msr_calibrate_tsc(void);
+unsigned long cpu_khz_from_msr(void);
 
 #endif /* _ASM_X86_TSC_H */
index 49eb83b44d0cb038ce109e5b49726ebc7ad71811..37f262f1bb0d1867d96b18f6e52aa8e8f5771e8d 100644 (file)
@@ -660,10 +660,7 @@ unsigned long native_calibrate_tsc(void)
        unsigned long flags, latch, ms, fast_calibrate;
        int hpet = is_hpet_enabled(), i, loopmin;
 
-       /* Calibrate TSC using MSR for Intel Atom SoCs */
-       local_irq_save(flags);
-       fast_calibrate = try_msr_calibrate_tsc();
-       local_irq_restore(flags);
+       fast_calibrate = cpu_khz_from_msr();
        if (fast_calibrate)
                return fast_calibrate;
 
index 6aa0f4d9eea6816bbf0c78514e0b76d8f4dc7def..5daa0a39c3117ee2bf379a9b1eb45df7db9d60c3 100644 (file)
@@ -80,7 +80,7 @@ static int match_cpu(u8 family, u8 model)
  *
  * Returns the calibration value or 0 if MSR calibration failed.
  */
-unsigned long try_msr_calibrate_tsc(void)
+unsigned long cpu_khz_from_msr(void)
 {
        u32 lo, hi, ratio, freq_id, freq;
        unsigned long res;