From 4c7452eb270e812093dbb8ba895ffe922844fd71 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Thu, 27 Nov 2003 17:20:44 +0000 Subject: [PATCH] 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) --- sys/amd64/amd64/support.S | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/sys/amd64/amd64/support.S b/sys/amd64/amd64/support.S index 2c0ddf12a17..f30fbcd7a48 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