From ab828ab8bdf117ceee8001ac8f47c4df748734aa Mon Sep 17 00:00:00 2001 From: David Greenman Date: Sun, 19 Mar 1995 11:16:58 +0000 Subject: [PATCH] Moved call to vnode_pager_uncache in rename() to before the VOP_RENAME. It was previously after the VOP_RENAME and the reference and lock on the vnode had already been lost, allowing interesting internel inconsistencies. This is one of the two reasons why freefall was crashing every hour or two (the other being nullfs bugs). Don't call vnode_pager_uncache in revoke(). revoke() is only allowed on VCHR and VBLK vnodes. --- sys/kern/vfs_extattr.c | 10 ++++------ sys/kern/vfs_syscalls.c | 10 ++++------ 2 files changed, 8 insertions(+), 12 deletions(-) diff --git a/sys/kern/vfs_extattr.c b/sys/kern/vfs_extattr.c index 059636260c8a..60aef32c5d94 100644 --- a/sys/kern/vfs_extattr.c +++ b/sys/kern/vfs_extattr.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 - * $Id: vfs_syscalls.c,v 1.18 1995/02/28 02:52:48 davidg Exp $ + * $Id: vfs_syscalls.c,v 1.19 1995/03/16 18:12:50 bde Exp $ */ #include @@ -1850,12 +1850,12 @@ out: LEASE_CHECK(tdvp, p, p->p_ucred, LEASE_WRITE); if (fromnd.ni_dvp != tdvp) LEASE_CHECK(fromnd.ni_dvp, p, p->p_ucred, LEASE_WRITE); - if (tvp) + if (tvp) { LEASE_CHECK(tvp, p, p->p_ucred, LEASE_WRITE); + (void) vnode_pager_uncache(tvp); + } error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd, tond.ni_dvp, tond.ni_vp, &tond.ni_cnd); - if (tvp && !error) - (void) vnode_pager_uncache(tvp); } else { VOP_ABORTOP(tond.ni_dvp, &tond.ni_cnd); if (tdvp == tvp) @@ -2222,8 +2222,6 @@ revoke(p, uap, retval) if (p->p_ucred->cr_uid != vattr.va_uid && (error = suser(p->p_ucred, &p->p_acflag))) goto out; - if( vp->v_vmdata) - vnode_pager_uncache( vp); if (vp->v_usecount > 1 || (vp->v_flag & VALIASED)) vgoneall(vp); out: diff --git a/sys/kern/vfs_syscalls.c b/sys/kern/vfs_syscalls.c index 059636260c8a..60aef32c5d94 100644 --- a/sys/kern/vfs_syscalls.c +++ b/sys/kern/vfs_syscalls.c @@ -36,7 +36,7 @@ * SUCH DAMAGE. * * @(#)vfs_syscalls.c 8.13 (Berkeley) 4/15/94 - * $Id: vfs_syscalls.c,v 1.18 1995/02/28 02:52:48 davidg Exp $ + * $Id: vfs_syscalls.c,v 1.19 1995/03/16 18:12:50 bde Exp $ */ #include @@ -1850,12 +1850,12 @@ out: LEASE_CHECK(tdvp, p, p->p_ucred, LEASE_WRITE); if (fromnd.ni_dvp != tdvp) LEASE_CHECK(fromnd.ni_dvp, p, p->p_ucred, LEASE_WRITE); - if (tvp) + if (tvp) { LEASE_CHECK(tvp, p, p->p_ucred, LEASE_WRITE); + (void) vnode_pager_uncache(tvp); + } error = VOP_RENAME(fromnd.ni_dvp, fromnd.ni_vp, &fromnd.ni_cnd, tond.ni_dvp, tond.ni_vp, &tond.ni_cnd); - if (tvp && !error) - (void) vnode_pager_uncache(tvp); } else { VOP_ABORTOP(tond.ni_dvp, &tond.ni_cnd); if (tdvp == tvp) @@ -2222,8 +2222,6 @@ revoke(p, uap, retval) if (p->p_ucred->cr_uid != vattr.va_uid && (error = suser(p->p_ucred, &p->p_acflag))) goto out; - if( vp->v_vmdata) - vnode_pager_uncache( vp); if (vp->v_usecount > 1 || (vp->v_flag & VALIASED)) vgoneall(vp); out: