aboutsummaryrefslogtreecommitdiff
path: root/sys
diff options
context:
space:
mode:
authorKonstantin Belousov <kib@FreeBSD.org>2015-11-24 19:55:11 +0000
committerKonstantin Belousov <kib@FreeBSD.org>2015-11-24 19:55:11 +0000
commit2a8a46b161fce0704fd8c6139e1b4c7131b989d9 (patch)
tree4edda89b02ce753dc72d1584f43cca39e9ff788f /sys
parente2929f5f912fa571457c9d9618c9228bf281acb1 (diff)
downloadsrc-2a8a46b161fce0704fd8c6139e1b4c7131b989d9.tar.gz
src-2a8a46b161fce0704fd8c6139e1b4c7131b989d9.zip
Correct the number of DTLB entries reported for the CPUID Leaf 2
descriptor 0x6c. Confirmed by: Intel MFC after: 3 days
Notes
Notes: svn path=/head/; revision=291266
Diffstat (limited to 'sys')
-rw-r--r--sys/x86/x86/identcpu.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/x86/x86/identcpu.c b/sys/x86/x86/identcpu.c
index 2f6cfbcdfb6d..ae72121bacca 100644
--- a/sys/x86/x86/identcpu.c
+++ b/sys/x86/x86/identcpu.c
@@ -1890,7 +1890,7 @@ print_INTEL_TLB(u_int data)
printf("DTLB: 4KByte pages, 8-way set associative, 256 entries\n");
break;
case 0x6c:
- printf("DTLB: 2M/4M pages, 8-way set associative, 126 entries\n");
+ printf("DTLB: 2M/4M pages, 8-way set associative, 128 entries\n");
break;
case 0x6d:
printf("DTLB: 1 GByte pages, fully associative, 16 entries\n");