x86: tsc: Prevent delayed init if initial tsc calibration failed

commit a8760ec (x86: Check tsc available/disabled in the delayed init
function) missed to prevent the setup of the delayed init function in
case the initial tsc calibration failed. This results in the same
divide by zero bug as we have seen without the tsc disabled check.

Skip the delayed work setup when tsc_khz (the initial calibration
value) is 0.

Bisected-and-tested-by: Kirill A. Shutemov <kas@openvz.org>
Cc: John Stultz <john.stultz@linaro.org>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>

+1 -1
+1 -1
arch/x86/kernel/tsc.c
··· 965 965 966 966 static int __init init_tsc_clocksource(void) 967 967 { 968 - if (!cpu_has_tsc || tsc_disabled > 0) 968 + if (!cpu_has_tsc || tsc_disabled > 0 || !tsc_khz) 969 969 return 0; 970 970 971 971 if (tsc_clocksource_reliable)