Skip to content

Commit

Permalink
x86: Add Centaur and Transmeta CPUs to PAT whitelist
Browse files Browse the repository at this point in the history
Unconditionally enable PAT support on Centaur and Transmeta CPUs.
All known models that advertise PAT have no known errata.

Signed-off-by: Dave Jones <davej@redhat.com>
Signed-off-by: H. Peter Anvin <hpa@zytor.com>
  • Loading branch information
Dave Jones authored and H. Peter Anvin committed May 22, 2008
1 parent a8ac1ae commit 873b274
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions arch/x86/kernel/cpu/addon_cpuid_features.c
Original file line number Diff line number Diff line change
Expand Up @@ -62,6 +62,9 @@ void __cpuinit validate_pat_support(struct cpuinfo_x86 *c)
if (c->x86 == 0xF || (c->x86 == 6 && c->x86_model >= 15))
return;
break;
case X86_VENDOR_CENTAUR:
case X86_VENDOR_TRANSMETA:
return;
}

pat_disable(cpu_has_pat ?
Expand Down

0 comments on commit 873b274

Please sign in to comment.