diff options
author | peter <peter@FreeBSD.org> | 1998-05-31 01:03:07 +0000 |
---|---|---|
committer | peter <peter@FreeBSD.org> | 1998-05-31 01:03:07 +0000 |
commit | c8c505e6c085ef10f4a357b2c99e9b9496cd3a63 (patch) | |
tree | f0da4b365cda829184bff2d6f2596b49cb731741 /sys/nfsclient | |
parent | f31b4aebd75731bc784781a25ac5cd478a58e20c (diff) | |
download | FreeBSD-src-c8c505e6c085ef10f4a357b2c99e9b9496cd3a63.zip FreeBSD-src-c8c505e6c085ef10f4a357b2c99e9b9496cd3a63.tar.gz |
VOP_ABORTUP() appears to be called with the wrong vnode. The other callers
that I checked (eg: ufs_link()) do the ABORTOP on the directory rather than
the file itself. After Michael Hancock's patches, the abortop doesn't seem
all that critial now since something else will free the pathname buffer.
Diffstat (limited to 'sys/nfsclient')
-rw-r--r-- | sys/nfsclient/nfs_vnops.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfsclient/nfs_vnops.c b/sys/nfsclient/nfs_vnops.c index dc8629d..853fd1b 100644 --- a/sys/nfsclient/nfs_vnops.c +++ b/sys/nfsclient/nfs_vnops.c @@ -34,7 +34,7 @@ * SUCH DAMAGE. * * @(#)nfs_vnops.c 8.16 (Berkeley) 5/27/95 - * $Id: nfs_vnops.c,v 1.89 1998/05/19 07:11:26 peter Exp $ + * $Id: nfs_vnops.c,v 1.90 1998/05/30 16:33:57 peter Exp $ */ @@ -1670,7 +1670,7 @@ nfs_link(ap) int v3 = NFS_ISV3(vp); if (vp->v_mount != tdvp->v_mount) { - VOP_ABORTOP(vp, cnp); + VOP_ABORTOP(tdvp, cnp); return (EXDEV); } |