From owner-cvs-src@FreeBSD.ORG Sat Dec 6 21:25:48 2003 Return-Path: Delivered-To: cvs-src@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AA59116A4CF for ; Sat, 6 Dec 2003 21:25:48 -0800 (PST) Received: from smtp.mho.com (smtp.mho.net [64.58.4.6]) by mx1.FreeBSD.org (Postfix) with SMTP id 6A74043FBF for ; Sat, 6 Dec 2003 21:25:45 -0800 (PST) (envelope-from scottl@freebsd.org) Received: (qmail 56611 invoked by uid 1002); 7 Dec 2003 05:25:45 -0000 Received: from unknown (HELO freebsd.org) (64.58.1.252) by smtp.mho.net with SMTP; 7 Dec 2003 05:25:45 -0000 Message-ID: <3FD2B993.6060808@freebsd.org> Date: Sat, 06 Dec 2003 22:24:35 -0700 From: Scott Long User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.5) Gecko/20031103 X-Accept-Language: en-us, en MIME-Version: 1.0 To: Don Lewis References: <200312070516.hB75Gqg5026429@repoman.freebsd.org> In-Reply-To: <200312070516.hB75Gqg5026429@repoman.freebsd.org> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit cc: cvs-src@FreeBSD.org cc: src-committers@FreeBSD.org cc: cvs-all@FreeBSD.org Subject: Re: cvs commit: src/sys/ufs/ffs ffs_vfsops.c X-BeenThere: cvs-src@freebsd.org X-Mailman-Version: 2.1.1 Precedence: list List-Id: CVS commit messages for the src tree List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 07 Dec 2003 05:25:48 -0000 Don Lewis wrote: > truckman 2003/12/06 21:16:52 PST > > FreeBSD src repository > > Modified files: > sys/ufs/ffs ffs_vfsops.c > Log: > Set fs_ronly to the correct value in ffs_reload() when reloading the file > system super block after fsck has repaired the file system. The value of > fs_ronly was getting overwritten, which caused ffs_update() to attempt to > update inode timestamps even though the file system was still mounted > read-only. > > This fixes the "giving up on N buffers" error that is triggered by running > fsck on the root file system and then rebooting without mounting the file > system read-write. > > Revision Changes Path > 1.226 +2 -0 src/sys/ufs/ffs/ffs_vfsops.c > Excellent job tracking this down, thanks. Scott