aboutsummaryrefslogtreecommitdiff
path: root/sys/amd64/amd64/support.S
diff options
context:
space:
mode:
authorPeter Wemm <peter@FreeBSD.org>2003-11-27 17:20:44 +0000
committerPeter Wemm <peter@FreeBSD.org>2003-11-27 17:20:44 +0000
commit4c7452eb270e812093dbb8ba895ffe922844fd71 (patch)
tree8e6de6fc0c5abfb204babd4312c3d421036e4c33 /sys/amd64/amd64/support.S
parentcd1f3db9bad9b4b6eddd4734939230f3f8a0a8a3 (diff)
downloadsrc-4c7452eb270e812093dbb8ba895ffe922844fd71.tar.gz
src-4c7452eb270e812093dbb8ba895ffe922844fd71.zip
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)
Notes
Notes: svn path=/head/; revision=123010
Diffstat (limited to 'sys/amd64/amd64/support.S')
-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 2c0ddf12a173..f30fbcd7a485 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