From owner-cvs-sys Sat May 24 19:49:40 1997 Return-Path: Received: (from root@localhost) by hub.freebsd.org (8.8.5/8.8.5) id TAA03798 for cvs-sys-outgoing; Sat, 24 May 1997 19:49:40 -0700 (PDT) Received: from freefall.freebsd.org (freefall.cdrom.com [204.216.27.21]) by hub.freebsd.org (8.8.5/8.8.5) with ESMTP id TAA03772; Sat, 24 May 1997 19:49:23 -0700 (PDT) From: Steve Passe Received: (from fsmp@localhost) by freefall.freebsd.org (8.8.5/8.8.5) id TAA10243; Sat, 24 May 1997 19:49:04 -0700 (PDT) Date: Sat, 24 May 1997 19:49:04 -0700 (PDT) Message-Id: <199705250249.TAA10243@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/i386/i386 mp_machdep.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk fsmp 1997/05/24 19:49:04 PDT Modified files: sys/i386/i386 mp_machdep.c Log: Broke up parse_mp_table() into 2 passes: - The 1st (preparse_mp_table()) counts the number of cpus, busses, etc. and records the LOCAL and IO APIC addresses. - The 2nd pass (parse_mp_table()) does the actual parsing of info and recording into the incore MP table. This will allow us to defer the 2nd pass untill malloc() & private pages are available (but thats for another day!). Revision Changes Path 1.12 +224 -156 src/sys/i386/i386/mp_machdep.c