Skip site navigation (1)Skip section navigation (2)
Date:      Wed, 25 Apr 2012 06:48:57 +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: r234672 - in stable/8/sys: amd64/include i386/conf i386/include
Message-ID:  <201204250648.q3P6mv8j084228@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
Author: avg
Date: Wed Apr 25 06:48:57 2012
New Revision: 234672
URL: http://svn.freebsd.org/changeset/base/234672

Log:
  MFC r234207: bump INTRCNT_COUNT values to reflect actual numbers of IPI counters

Modified:
  stable/8/sys/amd64/include/intr_machdep.h
  stable/8/sys/i386/include/intr_machdep.h
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/amd64/include/intr_machdep.h
==============================================================================
--- stable/8/sys/amd64/include/intr_machdep.h	Wed Apr 25 06:43:40 2012	(r234671)
+++ stable/8/sys/amd64/include/intr_machdep.h	Wed Apr 25 06:48:57 2012	(r234672)
@@ -60,10 +60,10 @@
  * - 1 ??? dummy counter.
  * - 2 counters for each I/O interrupt.
  * - 1 counter for each CPU for lapic timer.
- * - 7 counters for each CPU for IPI counters for SMP.
+ * - 8 counters for each CPU for IPI counters for SMP.
  */
 #ifdef SMP
-#define	INTRCNT_COUNT	(1 + NUM_IO_INTS * 2 + (1 + 7) * MAXCPU)
+#define	INTRCNT_COUNT	(1 + NUM_IO_INTS * 2 + (1 + 8) * MAXCPU)
 #else
 #define	INTRCNT_COUNT	(1 + NUM_IO_INTS * 2 + 1)
 #endif

Modified: stable/8/sys/i386/include/intr_machdep.h
==============================================================================
--- stable/8/sys/i386/include/intr_machdep.h	Wed Apr 25 06:43:40 2012	(r234671)
+++ stable/8/sys/i386/include/intr_machdep.h	Wed Apr 25 06:48:57 2012	(r234672)
@@ -60,10 +60,10 @@
  * - 1 ??? dummy counter.
  * - 2 counters for each I/O interrupt.
  * - 1 counter for each CPU for lapic timer.
- * - 7 counters for each CPU for IPI counters for SMP.
+ * - 9 counters for each CPU for IPI counters for SMP.
  */
 #ifdef SMP
-#define	INTRCNT_COUNT	(1 + NUM_IO_INTS * 2 + (1 + 7) * MAXCPU)
+#define	INTRCNT_COUNT	(1 + NUM_IO_INTS * 2 + (1 + 9) * MAXCPU)
 #else
 #define	INTRCNT_COUNT	(1 + NUM_IO_INTS * 2 + 1)
 #endif



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