From owner-freebsd-stable Thu Feb 18 15:51:56 1999 Delivered-To: freebsd-stable@freebsd.org Received: from point.osg.gov.bc.ca (point.osg.gov.bc.ca [142.32.102.44]) by hub.freebsd.org (Postfix) with ESMTP id C548611208 for ; Thu, 18 Feb 1999 15:51:54 -0800 (PST) (envelope-from Cy.Schubert@uumail.gov.bc.ca) Received: (from daemon@localhost) by point.osg.gov.bc.ca (8.9.1/8.8.8) id PAA23487; Thu, 18 Feb 1999 15:50:53 -0800 Received: from passer.osg.gov.bc.ca(142.32.110.29) via SMTP by point.osg.gov.bc.ca, id smtpda23485; Thu Feb 18 15:50:48 1999 Received: (from uucp@localhost) by passer.osg.gov.bc.ca (8.9.3/8.9.1) id PAA15994; Thu, 18 Feb 1999 15:50:47 -0800 (PST) Message-Id: <199902182350.PAA15994@passer.osg.gov.bc.ca> Received: from localhost.osg.gov.bc.ca(127.0.0.1), claiming to be "passer.osg.gov.bc.ca" via SMTP by localhost.osg.gov.bc.ca, id smtpdt15986; Thu Feb 18 15:50:26 1999 X-Mailer: exmh version 2.0.2 2/24/98 Reply-To: Cy Schubert - ITSD Open Systems Group X-OS: FreeBSD 2.2.8-RELEASE+CAM X-Sender: cschuber To: Ted Spradley Cc: Cy Schubert - ITSD Open Systems Group , Bjoern Fischer , Matthew Dillon , freebsd-stable@FreeBSD.ORG Subject: Re: no dirty bufs panics any more... In-reply-to: Your message of "Thu, 18 Feb 1999 16:23:09 CST." <199902182223.QAA11204@set.spradley.tmi.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Date: Thu, 18 Feb 1999 15:50:25 -0800 From: Cy Schubert Sender: owner-freebsd-stable@FreeBSD.ORG Precedence: bulk X-Loop: FreeBSD.ORG A quick and dirty circumvention might be to put the following in rc.shutdown until the root cause of the panics can be found and fixed. I use something similar to this to unmount NFS filesystems to avoid a panic during 2.2 shutdown. # Quick and dirty fix for dirty buffer panic during shutdown for I in `df -tmfs | awk 'NR > 1 {print $6}'`; do for J in `fstat -f $I | awk 'NR > 1 {print $3}'`; do kill $J done done sleep 20 for I in `df -tmfs | awk 'NR > 1 {print $6}'`; do for J in `fstat -f $I | awk 'NR > 1 {print $3}'`; do kill -9 $J done done sleep 10 umount -vatmfs || echo MFS umount failed. Regards, Phone: (250)387-8437 Cy Schubert Fax: (250)387-5766 Open Systems Group Internet: Cy.Schubert@uumail.gov.bc.ca ITSD Cy.Schubert@gems8.gov.bc.ca Province of BC In message <199902182223.QAA11204@set.spradley.tmi.net>, Ted Spradley writes: > > Another comment and a question: > > > > Has anyone tried manually unmounting an MFS filesystem? Does the > > system panic? > > Just tried. Worked fine. And mounted again just fine. No panic. > > > > > To Unsubscribe: send mail to majordomo@FreeBSD.org > with "unsubscribe freebsd-stable" in the body of the message To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-stable" in the body of the message