Skip to content
Snippets Groups Projects
Commit ad8ca495 authored by Ingo Molnar's avatar Ingo Molnar
Browse files

x86: add warning to check_tsc_warp()


add warning to check_tsc_warp() - if get_cycles() does not progress.

Signed-off-by: default avatarIngo Molnar <mingo@elte.hu>
Signed-off-by: default avatarThomas Gleixner <tglx@linutronix.de>
parent df43510b
No related merge requests found
......@@ -87,7 +87,11 @@ static __cpuinit void check_tsc_warp(void)
nr_warps++;
__raw_spin_unlock(&sync_lock);
}
}
if (!(now-start)) {
printk("Warning: zero tsc calibration delta: %Ld [max: %Ld]\n",
now-start, end-start);
WARN_ON(1);
}
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment