tree c2bbb2a8714257aab5ed9d1a142c06e305f30e61
parent 5236394def4d1cc8564136597204fcf267a3fd15
author Andi Kleen <[EMAIL PROTECTED]> Tue Apr 12 08:25:38 2005
committer Linus Torvalds <[EMAIL PROTECTED]> Tue Apr 12 08:25:38 2005
[PATCH] x86_64: Don't assume future AMD CPUs have K8 compatible performance
counters
The NMI watchdog code did this incorrectly
Signed-off-by: Andi Kleen <[EMAIL PROTECTED]>
Signed-off-by: Andrew Morton <[EMAIL PROTECTED]>
Signed-off-by: Linus Torvalds <[EMAIL PROTECTED]>
nmi.c | 2 +-
1 files changed, 1 insertion(+), 1 deletion(-)
Index: arch/x86_64/kernel/nmi.c
===================================================================
--- 4bff2c4c28559c288c620b5a1acd1efa5e692d14/arch/x86_64/kernel/nmi.c
(mode:100644 sha1:9f7ee3a139497c38918d91ec16922c25ab9855c9)
+++ c2bbb2a8714257aab5ed9d1a142c06e305f30e61/arch/x86_64/kernel/nmi.c
(mode:100644 sha1:3a54c39c3b7a26f9634732550bdcc47322d8354a)
@@ -336,7 +336,7 @@
{
switch (boot_cpu_data.x86_vendor) {
case X86_VENDOR_AMD:
- if (boot_cpu_data.x86 < 6)
+ if (boot_cpu_data.x86 != 15)
return;
if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
return;
-
To unsubscribe from this list: send the line "unsubscribe bk-commits-head" in
the body of a message to [EMAIL PROTECTED]
More majordomo info at http://vger.kernel.org/majordomo-info.html