PERFORCE change 191358 for review

John Baldwin jhb at FreeBSD.org
Tue Apr 12 05:43:37 UTC 2011


http://p4web.freebsd.org/@@191358?ac=10

Change 191358 by jhb at jhb_jhbbsd on 2011/04/12 05:43:32

	Treat i5 CPUs the same as Nehalem/Westmere.

Affected files ...

.. //depot/projects/mcelog/intel.c#4 edit

Differences ...

==== //depot/projects/mcelog/intel.c#4 (text) ====

@@ -38,7 +38,8 @@
 			return CPU_CORE2;
 		else if (model == 0x1d)
 			return CPU_DUNNINGTON;
-		else if (model == 0x1a || model == 0x2c) /* Nehalem/Westmere */
+		else if (model == 0x1a || model == 0x2a || model == 0x2c)
+			/* Nehalem/i5/Westmere */
 			return CPU_NEHALEM;
 
 		if (model >= 0x1a) 


More information about the p4-projects mailing list