From owner-freebsd-current Fri May 10 20:37:06 1996 Return-Path: owner-current Received: (from root@localhost) by freefall.freebsd.org (8.7.3/8.7.3) id UAA13268 for current-outgoing; Fri, 10 May 1996 20:37:06 -0700 (PDT) Received: from mail.barrnet.net (mail.barrnet.net [131.119.246.7]) by freefall.freebsd.org (8.7.3/8.7.3) with ESMTP id UAA13262 for ; Fri, 10 May 1996 20:37:01 -0700 (PDT) Received: from godzilla.zeta.org.au (godzilla.zeta.org.au [203.2.228.19]) by mail.barrnet.net (8.7.5/MAIL-RELAY-LEN) with SMTP id UAA03120 for ; Fri, 10 May 1996 20:36:49 -0700 (PDT) Received: (from bde@localhost) by godzilla.zeta.org.au (8.6.12/8.6.9) id NAA09211; Sat, 11 May 1996 13:32:31 +1000 Date: Sat, 11 May 1996 13:32:31 +1000 From: Bruce Evans Message-Id: <199605110332.NAA09211@godzilla.zeta.org.au> To: asami@cs.berkeley.edu, current@FreeBSD.ORG, nisha@cs.berkeley.edu Subject: Re: some more on fast bcopy Sender: owner-current@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk >I got a panic from -current during a make world last night. Here it is: >=== >>> gdb -k kernel.1 vmcore.1 >GDB is free software and you are welcome to distribute copies of it > under certain conditions; type "show copying" to see the conditions. >There is absolutely no warranty for GDB; type "show warranty" for details. >GDB 4.13 (i386-unknown-freebsd), >Copyright 1994 Free Software Foundation, Inc...(no debugging symbols found)... >IdlePTD 202000 >current pcb at 1edcbc >panic: FPU device not available <<<<<=======!!! I think this is caused by the FPU probe failing. It only happens when npxdna() returns 0, and npxdna() only returns 1 if the probe failed. bcopy() is sure to be called at boot time before the npx0 probe, and this might foul the probe. There must be another bug for the crash to be so long delayed. Bruce