From owner-freebsd-current@FreeBSD.ORG Tue Sep 16 11:54:36 2003 Return-Path: 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 0D7D516A4BF for ; Tue, 16 Sep 2003 11:54:36 -0700 (PDT) Received: from rootlabs.com (root.org [67.118.192.226]) by mx1.FreeBSD.org (Postfix) with SMTP id 990A043FBF for ; Tue, 16 Sep 2003 11:54:35 -0700 (PDT) (envelope-from nate@rootlabs.com) Received: (qmail 9709 invoked by uid 1000); 16 Sep 2003 18:54:36 -0000 Date: Tue, 16 Sep 2003 11:54:36 -0700 (PDT) From: Nate Lawson To: Andrew Thompson Message-ID: <20030916115255.A9706@root.org> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII cc: current@freebsd.org Subject: Re: ACPI and a Toshiba Tecra 8000 X-BeenThere: freebsd-current@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: Discussions about the use of FreeBSD-current List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 16 Sep 2003 18:54:36 -0000 Please compile your kernel with debug symbols (config -g KERNEL) and load it into gdb to get the actual line of code that is getting that NULL deref: gdb kernel.debug l *scsuspend+0x17 That should show the offending code segment. -Nate