summaryrefslogtreecommitdiffstats
path: root/sys
diff options
context:
space:
mode:
authorpeter <peter@FreeBSD.org>2003-11-27 17:20:44 +0000
committerpeter <peter@FreeBSD.org>2003-11-27 17:20:44 +0000
commit31c40746b07ab4d033e73372a4e57186ce321098 (patch)
tree8e6de6fc0c5abfb204babd4312c3d421036e4c33 /sys
parent186e63991f902ed749b518649757349a75ca89b2 (diff)
downloadFreeBSD-src-31c40746b07ab4d033e73372a4e57186ce321098.zip
FreeBSD-src-31c40746b07ab4d033e73372a4e57186ce321098.tar.gz
Fix i386 apic support merge botch. sizeof(long) is 8, not 4. This fixes
the annoying 'sysctl: hw.intrcnt: out of memory' error message in systat. Approved by: re (rwatson)
Diffstat (limited to 'sys')
-rw-r--r--sys/amd64/amd64/support.S2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S
index 2c0ddf1..f30fbcd 100644
--- a/sys/amd64/amd64/support.S
+++ b/sys/amd64/amd64/support.S
@@ -45,7 +45,7 @@
ALIGN_DATA
.globl intrcnt, eintrcnt
intrcnt:
- .space INTRCNT_COUNT * 4
+ .space INTRCNT_COUNT * 8
eintrcnt:
.globl intrnames, eintrnames
OpenPOWER on IntegriCloud