svn commit: r291378 - stable/10/sys/x86/x86

Konstantin Belousov kib at FreeBSD.org
Fri Nov 27 01:03:44 UTC 2015


Author: kib
Date: Fri Nov 27 01:03:43 2015
New Revision: 291378
URL: https://svnweb.freebsd.org/changeset/base/291378

Log:
  MFC r291266:
  Correct the number of DTLB entries reported for the CPUID Leaf 2
  descriptor 0x6c.

Modified:
  stable/10/sys/x86/x86/identcpu.c
Directory Properties:
  stable/10/   (props changed)

Modified: stable/10/sys/x86/x86/identcpu.c
==============================================================================
--- stable/10/sys/x86/x86/identcpu.c	Fri Nov 27 00:04:39 2015	(r291377)
+++ stable/10/sys/x86/x86/identcpu.c	Fri Nov 27 01:03:43 2015	(r291378)
@@ -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");


More information about the svn-src-all mailing list