From owner-freebsd-amd64@FreeBSD.ORG Tue Feb 3 18:50:04 2009 Return-Path: Delivered-To: freebsd-amd64@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1CDD91065670 for ; Tue, 3 Feb 2009 18:50:04 +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 0B9C58FC19 for ; Tue, 3 Feb 2009 18:50:04 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n13Io3ZI091522 for ; Tue, 3 Feb 2009 18:50:03 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n13Io3mn091521; Tue, 3 Feb 2009 18:50:03 GMT (envelope-from gnats) Date: Tue, 3 Feb 2009 18:50:03 GMT Message-Id: <200902031850.n13Io3mn091521@freefall.freebsd.org> To: freebsd-amd64@FreeBSD.org From: John Baldwin Cc: Subject: Re: amd64/131209: 7.1-STABLE amd64 crash X-BeenThere: freebsd-amd64@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: John Baldwin List-Id: Porting FreeBSD to the AMD64 platform List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 03 Feb 2009 18:50:04 -0000 The following reply was made to PR amd64/131209; it has been noted by GNATS. From: John Baldwin To: Roar Pettersen Cc: freebsd-amd64@freebsd.org, freebsd-gnats-submit@freebsd.org Subject: Re: amd64/131209: 7.1-STABLE amd64 crash Date: Tue, 3 Feb 2009 13:40:08 -0500 On Tuesday 03 February 2009 1:02:04 pm Roar Pettersen wrote: > Hello ! > > > Hmm, it shouldn't be faulting here. :( Can you do 'p m0' 'p sw_rx_cons_idx' > > and 'p sc->rx_mbuf_ptr[sw_rx_cons_idx]'? Also, 'x/i 0xffffffff8021d746'. > > > (kgdb) p m0 > No symbol "m0" in current context. > (kgdb) p sw_rx_cons_idx > No symbol "sw_rx_cons_idx" in current context. > (kgdb) p sc->rx_mbuf_ptr[sw_rx_cons_idx] > No symbol "sc" in current context. You have to be at 'frame 8' for these to work. > (kgdb) x/i 0xffffffff8021d746 > 0xffffffff8021d746 : mov 0x10(%r14),%r10 Ok, so %r14 is presumably NULL. Looking at the disassembly, I think m0 is NULL. This is a bug in bce(4) of some sort. You can try e-mailing davidch@. -- John Baldwin