From owner-freebsd-current Sun May 17 00:17:48 1998 Return-Path: Received: (from majordom@localhost) by hub.freebsd.org (8.8.8/8.8.8) id AAA16590 for freebsd-current-outgoing; Sun, 17 May 1998 00:17:48 -0700 (PDT) (envelope-from owner-freebsd-current@FreeBSD.ORG) Received: from narnia.plutotech.com (narnia.plutotech.com [206.168.67.130]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id AAA16585 for ; Sun, 17 May 1998 00:17:46 -0700 (PDT) (envelope-from gibbs@narnia.plutotech.com) Received: (from gibbs@localhost) by narnia.plutotech.com (8.8.8/8.7.3) id BAA01671; Sun, 17 May 1998 01:13:35 -0600 (MDT) Date: Sun, 17 May 1998 01:13:35 -0600 (MDT) From: "Justin T. Gibbs" Message-Id: <199805170713.BAA01671@narnia.plutotech.com> To: The Hermit Hacker cc: current@FreeBSD.ORG Subject: Re: Bad shutdown... Newsgroups: pluto.freebsd.current In-Reply-To: User-Agent: tin/pre-1.4-971204 (UNIX) (FreeBSD/3.0-CURRENT (i386)) Sender: owner-freebsd-current@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG In article you wrote: > > This is based on a 0515 kernel, with the CAM snapshot applied to it... > > hub# halt > > syncing disks... 3 3 done > panic: lockmgr: pid 318, not exclusive lock holder 1 unlocking > > dumping to dev 20401, offset 262144 > dump Aborting dump due to I/O error. status == 0x200, scsi status == 0x0 > i/o error > Automatic reboot in 15 seconds - press a key on the console to abort I don't know about the SMP problem, but here is a patch for dump not working: -- Justin ==== //depot/cam/sys/cam/cam_xpt.c#104 - //depot/cam/sys/cam/cam_xpt.c#105 ==== *************** *** 1467,1473 **** (*(sim->sim_poll))(sim); swi_camnet(); swi_cambio(); ! if (start_ccb->ccb_h.status != CAM_REQ_INPROG) break; DELAY(1000); } --- 1467,1474 ---- (*(sim->sim_poll))(sim); swi_camnet(); swi_cambio(); ! if ((start_ccb->ccb_h.status & CAM_STATUS_MASK) ! != CAM_REQ_INPROG) break; DELAY(1000); } To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-current" in the body of the message