svn commit: r234676 - in stable/8/sys/i386: conf i386
Andriy Gapon
avg at FreeBSD.org
Wed Apr 25 07:10:18 UTC 2012
Author: avg
Date: Wed Apr 25 07:10:17 2012
New Revision: 234676
URL: http://svn.freebsd.org/changeset/base/234676
Log:
MFC r234208: add actual interrupt counters to back ipi_invlcache_counts
Note: i386 only as r209248 has never been MFCed.
Modified:
stable/8/sys/i386/i386/mp_machdep.c
Directory Properties:
stable/8/sys/ (props changed)
stable/8/sys/amd64/include/xen/ (props changed)
stable/8/sys/boot/ (props changed)
stable/8/sys/cddl/contrib/opensolaris/ (props changed)
stable/8/sys/contrib/dev/acpica/ (props changed)
stable/8/sys/contrib/pf/ (props changed)
stable/8/sys/dev/e1000/ (props changed)
stable/8/sys/i386/conf/XENHVM (props changed)
Modified: stable/8/sys/i386/i386/mp_machdep.c
==============================================================================
--- stable/8/sys/i386/i386/mp_machdep.c Wed Apr 25 07:09:02 2012 (r234675)
+++ stable/8/sys/i386/i386/mp_machdep.c Wed Apr 25 07:10:17 2012 (r234676)
@@ -1678,6 +1678,8 @@ mp_ipi_intrcnt(void *dummy)
intrcnt_add(buf, &ipi_invlrng_counts[i]);
snprintf(buf, sizeof(buf), "cpu%d: invlpg", i);
intrcnt_add(buf, &ipi_invlpg_counts[i]);
+ snprintf(buf, sizeof(buf), "cpu%d: invlcache", i);
+ intrcnt_add(buf, &ipi_invlcache_counts[i]);
snprintf(buf, sizeof(buf), "cpu%d: preempt", i);
intrcnt_add(buf, &ipi_preempt_counts[i]);
snprintf(buf, sizeof(buf), "cpu%d: ast", i);
More information about the svn-src-stable-8
mailing list