From owner-cvs-all Tue Apr 2 16:17:43 2002 Delivered-To: cvs-all@freebsd.org Received: from freefall.freebsd.org (freefall.FreeBSD.org [216.136.204.21]) by hub.freebsd.org (Postfix) with ESMTP id 27A3C37B41A; Tue, 2 Apr 2002 16:17:37 -0800 (PST) Received: (from dillon@localhost) by freefall.freebsd.org (8.11.6/8.11.6) id g330HbP65000; Tue, 2 Apr 2002 16:17:37 -0800 (PST) (envelope-from dillon) Message-Id: <200204030017.g330HbP65000@freefall.freebsd.org> From: Matt Dillon Date: Tue, 2 Apr 2002 16:17:37 -0800 (PST) To: cvs-committers@FreeBSD.org, cvs-all@FreeBSD.org Subject: cvs commit: src/sys/kern vfs_bio.c X-FreeBSD-CVS-Branch: HEAD Sender: owner-cvs-all@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.ORG dillon 2002/04/02 16:17:37 PST Modified files: sys/kern vfs_bio.c Log: brelse() was improperly clearing B_DELWRI in the B_DELWRI|B_INVAL case without removing the buffer from the vnode's dirty buffer list, which can result in a panic in NFS. Replaced the code with a call to bundirty() which deals with it properly. PR: kern/36108, kern/36174 Submitted by: various people Special mention: to Danny Schales for providing a core dump that helped me track this down. MFC after: 1 day Revision Changes Path 1.308 +2 -5 src/sys/kern/vfs_bio.c To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe cvs-all" in the body of the message