svn commit: r279833 - head/lib/libpmc

Ryan Stone rstone at FreeBSD.org
Tue Mar 10 01:23:57 UTC 2015


Author: rstone
Date: Tue Mar 10 01:23:55 2015
New Revision: 279833
URL: https://svnweb.freebsd.org/changeset/base/279833

Log:
  Use the correct event table for Haswell Xeon events
  
  Differential Revision:	https://reviews.freebsd.org/D1588
  MFC after:	1 month
  Sponsored by:	Sandvine Inc.

Modified:
  head/lib/libpmc/libpmc.c

Modified: head/lib/libpmc/libpmc.c
==============================================================================
--- head/lib/libpmc/libpmc.c	Tue Mar 10 01:23:47 2015	(r279832)
+++ head/lib/libpmc/libpmc.c	Tue Mar 10 01:23:55 2015	(r279833)
@@ -325,7 +325,7 @@ PMC_CLASS_TABLE_DESC(core2, IAP, core2, 
 PMC_CLASS_TABLE_DESC(corei7, IAP, corei7, iap);
 PMC_CLASS_TABLE_DESC(nehalem_ex, IAP, nehalem_ex, iap);
 PMC_CLASS_TABLE_DESC(haswell, IAP, haswell, iap);
-PMC_CLASS_TABLE_DESC(haswell_xeon, IAP, haswell, iap);
+PMC_CLASS_TABLE_DESC(haswell_xeon, IAP, haswell_xeon, iap);
 PMC_CLASS_TABLE_DESC(ivybridge, IAP, ivybridge, iap);
 PMC_CLASS_TABLE_DESC(ivybridge_xeon, IAP, ivybridge_xeon, iap);
 PMC_CLASS_TABLE_DESC(sandybridge, IAP, sandybridge, iap);


More information about the svn-src-all mailing list