From owner-freebsd-current Fri Sep 13 10:24:16 2002 Delivered-To: freebsd-current@freebsd.org Received: from mx1.FreeBSD.org (mx1.FreeBSD.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1CAEA37B400; Fri, 13 Sep 2002 10:24:14 -0700 (PDT) Received: from mail.imp.ch (mail.imp.ch [157.161.1.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1719D43E6A; Fri, 13 Sep 2002 10:24:13 -0700 (PDT) (envelope-from mb@imp.ch) Received: from nbs.imp.ch (nbs.imp.ch [157.161.4.7]) by mail.imp.ch (8.12.3/8.12.3) with ESMTP id g8DHOC2O071851; Fri, 13 Sep 2002 19:24:12 +0200 (CEST) (envelope-from Martin.Blapp@imp.ch) Received: from levais.imp.ch (levais.imp.ch [157.161.4.66]) by nbs.imp.ch (8.12.3/8.12.3) with ESMTP id g8DHOB75649885; Fri, 13 Sep 2002 19:24:11 +0200 (MES) Date: Fri, 13 Sep 2002 19:24:10 +0200 (CEST) From: Martin Blapp To: John Baldwin Cc: , Subject: RE: kernel trap 12, pagefault (KSE problems ?) In-Reply-To: Message-ID: <20020913192330.U3162-100000@levais.imp.ch> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG Hi, > So we dereferenced a pointer at 0x2000018. However, we did it at 0xc0337a39 > which isn't in the backtrace (I think gdb eats a frame, backtraces in ddb are > better). Can you do 'l *0xc0337a39' to get the line of the actual panic? (kgdb) l *0xc0337a39 0xc0337a39 is in inodedep_lookup (/usr/src/sys/ufs/ffs/ffs_softdep.c:1015). 1010 #endif 1011 firsttry = 1; 1012 inodedephd = INODEDEP_HASH(fs, inum); 1013 top: 1014 LIST_FOREACH(inodedep, inodedephd, id_hash) 1015 if (inum == inodedep->id_ino && fs == inodedep->id_fs) 1016 break; 1017 if (inodedep) { 1018 *inodedeppp = inodedep; 1019 return (1); To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message