forked from Minki/linux
[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 <ak@suse.de> Signed-off-by: Andrew Morton <akpm@osdl.org> Signed-off-by: Linus Torvalds <torvalds@osdl.org>
This commit is contained in:
parent
3a848f632f
commit
72e76be2fe
@ -336,7 +336,7 @@ void setup_apic_nmi_watchdog(void)
|
|||||||
{
|
{
|
||||||
switch (boot_cpu_data.x86_vendor) {
|
switch (boot_cpu_data.x86_vendor) {
|
||||||
case X86_VENDOR_AMD:
|
case X86_VENDOR_AMD:
|
||||||
if (boot_cpu_data.x86 < 6)
|
if (boot_cpu_data.x86 != 15)
|
||||||
return;
|
return;
|
||||||
if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
|
if (strstr(boot_cpu_data.x86_model_id, "Screwdriver"))
|
||||||
return;
|
return;
|
||||||
|
Loading…
Reference in New Issue
Block a user