x86/tsc: Fix broken CONFIG_X86_TSC=n build
authorThomas Gleixner <tglx@linutronix.de>
Tue, 29 Nov 2016 19:28:31 +0000 (20:28 +0100)
committerThomas Gleixner <tglx@linutronix.de>
Wed, 30 Nov 2016 08:44:52 +0000 (09:44 +0100)
Add the missing return statement to the inline stub
tsc_store_and_check_tsc_adjust() and add the other stubs to make a
SMP=y,TSC=n build happy.

While at it, remove the unused variable from the UP variant of
tsc_store_and_check_tsc_adjust().

Fixes: commit ba75fb646931 ("x86/tsc: Sync test only for the first cpu in a package")
Reported-by: kbuild test robot <fengguang.wu@intel.com>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/include/asm/tsc.h
arch/x86/kernel/tsc_sync.c

index 04721d54d8d9ea1a7f34d61afdf0bfc00815ae14..c054eaa7dc94109681eaa60589c97c35848fefef 100644 (file)
@@ -45,15 +45,16 @@ extern int tsc_clocksource_reliable;
  * Boot-time check whether the TSCs are synchronized across
  * all CPUs/cores:
  */
-extern void check_tsc_sync_source(int cpu);
-extern void check_tsc_sync_target(void);
-
 #ifdef CONFIG_X86_TSC
 extern bool tsc_store_and_check_tsc_adjust(void);
 extern void tsc_verify_tsc_adjust(void);
+extern void check_tsc_sync_source(int cpu);
+extern void check_tsc_sync_target(void);
 #else
-static inline bool tsc_store_and_check_tsc_adjust(void) { }
+static inline bool tsc_store_and_check_tsc_adjust(void) { return false; }
 static inline void tsc_verify_tsc_adjust(void) { }
+static inline void check_tsc_sync_source(int cpu) { }
+static inline void check_tsc_sync_target(void) { }
 #endif
 
 extern int notsc_setup(char *);
index d7f48a640ff5136ccacf17df6f6760cebc6ca773..8fde44f8cfec2b8e45485dda98f1527d4ece0784 100644 (file)
@@ -61,7 +61,7 @@ void tsc_verify_tsc_adjust(void)
 #ifndef CONFIG_SMP
 bool __init tsc_store_and_check_tsc_adjust(void)
 {
-       struct tsc_adjust *ref, *cur = this_cpu_ptr(&tsc_adjust);
+       struct tsc_adjust *cur = this_cpu_ptr(&tsc_adjust);
        s64 bootval;
 
        if (!boot_cpu_has(X86_FEATURE_TSC_ADJUST))