summaryrefslogtreecommitdiffstats
path: root/sys/amd64/include
diff options
context:
space:
mode:
authoravg <avg@FreeBSD.org>2012-04-13 07:15:40 +0000
committeravg <avg@FreeBSD.org>2012-04-13 07:15:40 +0000
commit3e4fba4c321faeac172654f57e0c6b03a3de1a12 (patch)
treeee23338748bb0b708f20223730ea93d6d86cc197 /sys/amd64/include
parentf4af41a2977f9a0913c4bb54bd24c07e38d9c1e7 (diff)
downloadFreeBSD-src-3e4fba4c321faeac172654f57e0c6b03a3de1a12.zip
FreeBSD-src-3e4fba4c321faeac172654f57e0c6b03a3de1a12.tar.gz
bump INTRCNT_COUNT values to reflect actual numbers of IPI counters
Maybe the numbers should be conditionalized on COUNT_IPIS Reviewed by: jhb MFC after: 1 week
Diffstat (limited to 'sys/amd64/include')
-rw-r--r--sys/amd64/include/intr_machdep.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/amd64/include/intr_machdep.h b/sys/amd64/include/intr_machdep.h
index 6cd4eee..700e35f 100644
--- a/sys/amd64/include/intr_machdep.h
+++ b/sys/amd64/include/intr_machdep.h
@@ -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
OpenPOWER on IntegriCloud