svn commit: r234672 - in stable/8/sys: amd64/include i386/conf
i386/include
Andriy Gapon
avg at FreeBSD.org
Wed Apr 25 06:48:58 UTC 2012
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
More information about the svn-src-stable-8
mailing list