From 31c40746b07ab4d033e73372a4e57186ce321098 Mon Sep 17 00:00:00 2001 From: peter 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 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