From owner-freebsd-bugs@FreeBSD.ORG Mon May 19 17:40:03 2008 Return-Path: Delivered-To: freebsd-bugs@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D7265106567F for ; Mon, 19 May 2008 17:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id BE0478FC3A for ; Mon, 19 May 2008 17:40:03 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.2/8.14.2) with ESMTP id m4JHe3fx050289 for ; Mon, 19 May 2008 17:40:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.2/8.14.1/Submit) id m4JHe3Yx050284; Mon, 19 May 2008 17:40:03 GMT (envelope-from gnats) Date: Mon, 19 May 2008 17:40:03 GMT Message-Id: <200805191740.m4JHe3Yx050284@freefall.freebsd.org> To: freebsd-bugs@FreeBSD.org From: "Tobias Hoellrich" Cc: Subject: Re: kern/123735: [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed!" on AMD Athlon 64 X2 Dual Core Processor 4200+ X-BeenThere: freebsd-bugs@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Tobias Hoellrich List-Id: Bug reports List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 19 May 2008 17:40:03 -0000 The following reply was made to PR kern/123735; it has been noted by GNATS. From: "Tobias Hoellrich" To: Cc: Subject: Re: kern/123735: [panic] 7.0-STABLE kernel panic "AP #1 (PHY# 1) failed!" on AMD Athlon 64 X2 Dual Core Processor 4200+ Date: Mon, 19 May 2008 10:39:35 -0700 I did a bit more investigation in this area.=20 The only place where the "AP #1 (PHY# 1) failed!" appears, is in=20 /usr/src/sys/i386/i386/mp_machdep.c:774 if (!start_ap(apic_id)) { printf("AP #%d (PHY# %d) failed!\n", cpu, apic_id); CHECK_PRINT("trace"); /* show checkpoints */ /* better panic as the AP may be running loose */ printf("panic y/n? [y] "); if (cngetc() !=3D 'n') panic("bye-bye"); } And the panic-code is only triggered, if start_ap returns 0, which appears towards the end of start_ap: /* Wait up to 5 seconds for it to start. */ for (ms =3D 0; ms < 5000; ms++) { if (mp_naps > cpus) return 1; /* return SUCCESS */ DELAY(1000); } return 0; /* return FAILURE */ Unfortunately I have no idea on how to tackle this issue ... Tobias