From bb31d1f6dfdf60990144e6c0d90be5bd221cea69 Mon Sep 17 00:00:00 2001 From: kib Date: Fri, 27 Nov 2015 01:03:43 +0000 Subject: MFC r291266: Correct the number of DTLB entries reported for the CPUID Leaf 2 descriptor 0x6c. --- sys/x86/x86/identcpu.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'sys/x86') diff --git a/sys/x86/x86/identcpu.c b/sys/x86/x86/identcpu.c index a576a48..62a39f2 100644 --- a/sys/x86/x86/identcpu.c +++ b/sys/x86/x86/identcpu.c @@ -1894,7 +1894,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"); -- cgit v1.1