x86-64: Mark rdtsc as sync only for netburst, not for core2
commit5871db7738d0e2152c5ed35cef10029f2f26e05f
authorArjan van de Ven <arjan@linux.intel.com>
Sun, 17 Dec 2006 20:49:57 +0000 (17 21:49 +0100)
committerAdrian Bunk <bunk@stusta.de>
Sun, 17 Dec 2006 20:49:57 +0000 (17 21:49 +0100)
treece1cefb827bae9f19661d02c7ae09423ce57a9b4
parent862c29977ccf45acc4dcbad952deef30d4013141
x86-64: Mark rdtsc as sync only for netburst, not for core2

On the Core2 cpus, the rdtsc instruction is not serializing (as defined
in the architecture reference since rdtsc exists) and due to the deep
speculation of these cores, it's possible that you can observe time go
backwards between cores due to this speculation. Since the kernel
already deals with this with the SYNC_RDTSC flag, the solution is
simple, only assume that the instruction is serializing on family 15...

The price one pays for this is a slightly slower gettimeofday (by a
dozen or two cycles), but that increase is quite small to pay for a
really-going-forward tsc counter.

Backport by Chris Wright.

Signed-off-by: Arjan van de Ven <arjan@linux.intel.com>
Signed-off-by: Chris Wright <chrisw@sous-sol.org>
Signed-off-by: Adrian Bunk <bunk@stusta.de>
arch/x86_64/kernel/setup.c