diff options
author | peter <peter@FreeBSD.org> | 2003-11-27 17:20:44 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 2003-11-27 17:20:44 +0000 |
commit | 31c40746b07ab4d033e73372a4e57186ce321098 (patch) | |
tree | 8e6de6fc0c5abfb204babd4312c3d421036e4c33 /sys | |
parent | 186e63991f902ed749b518649757349a75ca89b2 (diff) | |
download | FreeBSD-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.S | 2 |
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 |