From owner-cvs-sys Sat Jan 24 22:24:45 1998 Return-Path: Received: (from daemon@localhost) by hub.freebsd.org (8.8.8/8.8.8) id WAA17519 for cvs-sys-outgoing; Sat, 24 Jan 1998 22:24:45 -0800 (PST) (envelope-from owner-cvs-sys) Received: from freefall.freebsd.org (freefall.FreeBSD.ORG [204.216.27.21]) by hub.freebsd.org (8.8.8/8.8.8) with ESMTP id WAA17487; Sat, 24 Jan 1998 22:24:38 -0800 (PST) (envelope-from dyson@FreeBSD.org) From: John Dyson Received: (from dyson@localhost) by freefall.freebsd.org (8.8.8/8.8.5) id WAA24124; Sat, 24 Jan 1998 22:24:10 -0800 (PST) Date: Sat, 24 Jan 1998 22:24:10 -0800 (PST) Message-Id: <199801250624.WAA24124@freefall.freebsd.org> To: cvs-committers@FreeBSD.ORG, cvs-all@FreeBSD.ORG, cvs-sys@FreeBSD.ORG Subject: cvs commit: src/sys/kern vfs_bio.c src/sys/nfs nfs_bio.c Sender: owner-cvs-sys@FreeBSD.ORG X-Loop: FreeBSD.org Precedence: bulk dyson 1998/01/24 22:24:10 PST Modified files: sys/kern vfs_bio.c sys/nfs nfs_bio.c Log: Various NFS fixes: Make vfs_bio buffer mgmt work better. Buffers were being used after brelse. Make nfs_getpages work independently of other NFS interfaces. This eliminates some difficult recursion problems and decreases pagefault overhead. Remove an erroneous vfs_unbusy_pages. Fix a reentrancy problem, with nfs_vinvalbuf when vnode is already being rundown. Reassignbuf wasn't being called when needed under certain circumstances. (Thanks to Bill Paul for help.) Revision Changes Path 1.146 +5 -1 src/sys/kern/vfs_bio.c 1.47 +78 -87 src/sys/nfs/nfs_bio.c