projects
/
openwrt
/
staging
/
blogic.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
9cfa1a0
)
x86/asm/tsc, x86/cpu/amd: Use the full 64-bit TSC to detect the 2.6.2 bug
author
Andy Lutomirski
<
[email protected]
>
Thu, 25 Jun 2015 16:44:01 +0000
(18:44 +0200)
committer
Ingo Molnar
<
[email protected]
>
Mon, 6 Jul 2015 13:23:27 +0000
(15:23 +0200)
This code is timing 100k indirect calls, so the added overhead
of counting the number of cycles elapsed as a 64-bit number
should be insignificant. Drop the optimization of using a
32-bit count.
Signed-off-by: Andy Lutomirski <
[email protected]
>
Signed-off-by: Borislav Petkov <
[email protected]
>
Cc: Andy Lutomirski <
[email protected]
>
Cc: Borislav Petkov <
[email protected]
>
Cc: Brian Gerst <
[email protected]
>
Cc: Denys Vlasenko <
[email protected]
>
Cc: H. Peter Anvin <
[email protected]
>
Cc: Huang Rui <
[email protected]
>
Cc: John Stultz <
[email protected]
>
Cc: Len Brown <
[email protected]
>
Cc: Linus Torvalds <
[email protected]
>
Cc: Peter Zijlstra <
[email protected]
>
Cc: Ralf Baechle <
[email protected]
>
Cc: Thomas Gleixner <
[email protected]
>
Cc: kvm ML <
[email protected]
>
Link:
http://lkml.kernel.org/r/d58f339a9c0dd8352b50d2f7a216f67ec2844f20.1434501121.git.luto@kernel.org
Signed-off-by: Ingo Molnar <
[email protected]
>
arch/x86/kernel/cpu/amd.c
patch
|
blob
|
history
diff --git
a/arch/x86/kernel/cpu/amd.c
b/arch/x86/kernel/cpu/amd.c
index dd3a4baffe50cca6595a57755e17c7d284ee999c..a69710db6112f7b01b33459a3693e54778457e5a 100644
(file)
--- a/
arch/x86/kernel/cpu/amd.c
+++ b/
arch/x86/kernel/cpu/amd.c
@@
-114,7
+114,7
@@
static void init_amd_k6(struct cpuinfo_x86 *c)
const int K6_BUG_LOOP = 1000000;
int n;
void (*f_vide)(void);
- u
nsigned long
d, d2;
+ u
64
d, d2;
printk(KERN_INFO "AMD K6 stepping B detected - ");
@@
-125,10
+125,10
@@
static void init_amd_k6(struct cpuinfo_x86 *c)
n = K6_BUG_LOOP;
f_vide = vide;
-
rdtscl(d
);
+
d = native_read_tsc(
);
while (n--)
f_vide();
-
rdtscl(d2
);
+
d2 = native_read_tsc(
);
d = d2-d;
if (d > 20*K6_BUG_LOOP)