Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 12 Apr 2011 05:43:36 GMT
From:      John Baldwin <jhb@FreeBSD.org>
To:        Perforce Change Reviews <perforce@freebsd.org>
Subject:   PERFORCE change 191358 for review
Message-ID:  <201104120543.p3C5haBL094160@skunkworks.freebsd.org>

next in thread | raw e-mail | index | archive | help
http://p4web.freebsd.org/@@191358?ac=10

Change 191358 by jhb@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) 



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201104120543.p3C5haBL094160>