Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Apr 2012 07:10:18 +0000 (UTC)
From:      Andriy Gapon <avg@FreeBSD.org>
To:        src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-stable@freebsd.org, svn-src-stable-8@freebsd.org
Subject:   svn commit: r234676 - in stable/8/sys/i386: conf i386
Message-ID:  <201204250710.q3P7AIns085114@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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);



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