Date: Sun, 17 May 1998 01:13:35 -0600 (MDT) From: "Justin T. Gibbs" <gibbs@narnia.plutotech.com> To: The Hermit Hacker <scrappy@hub.org> Cc: current@FreeBSD.ORG Subject: Re: Bad shutdown... Message-ID: <199805170713.BAA01671@narnia.plutotech.com> In-Reply-To: <Pine.BSF.3.96.980516183227.580B-100000@thelab.hub.org>
next in thread | previous in thread | raw e-mail | index | archive | help
In article <Pine.BSF.3.96.980516183227.580B-100000@thelab.hub.org> 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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199805170713.BAA01671>