diff options
author | dd <dd@FreeBSD.org> | 2001-09-03 16:56:21 +0000 |
---|---|---|
committer | dd <dd@FreeBSD.org> | 2001-09-03 16:56:21 +0000 |
commit | b167c371fa57df907b3dec123b22cfca79581176 (patch) | |
tree | caa23f467727b9f87c0d77fab45a7d3b02e8876a | |
parent | fe1d4b72538252975c68a7af224a8612393b772f (diff) | |
download | FreeBSD-src-b167c371fa57df907b3dec123b22cfca79581176.zip FreeBSD-src-b167c371fa57df907b3dec123b22cfca79581176.tar.gz |
VFS_ABORTOP hasn't existed since 1999/12/15.
-rw-r--r-- | share/man/man9/VOP_LINK.9 | 4 | ||||
-rw-r--r-- | share/man/man9/VOP_LOOKUP.9 | 1 | ||||
-rw-r--r-- | share/man/man9/VOP_RENAME.9 | 3 |
3 files changed, 0 insertions, 8 deletions
diff --git a/share/man/man9/VOP_LINK.9 b/share/man/man9/VOP_LINK.9 index 183df56..0a1d89c 100644 --- a/share/man/man9/VOP_LINK.9 +++ b/share/man/man9/VOP_LINK.9 @@ -75,12 +75,10 @@ vop_link(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) int error = 0; if (vp->v_mount != dvp->v_mount) { - VOP_ABORTOP(dvp, cnp); error = EXDEV; goto out2; } if (vp != dvp && (error = VOP_LOCK(vp))) { - VOP_ABORTOP(dvp, cnp); goto out2; } @@ -89,13 +87,11 @@ vop_link(struct vnode *dvp, struct vnode *vp, struct componentname *cnp) */ if (vp would have too many links) { - VOP_ABORTOP(dvp, cnp); error = EMLINK; goto out1; } if (vp is immutable) { - VOP_ABORTOP(dvp, cnp); error = EPERM; goto out1; } diff --git a/share/man/man9/VOP_LOOKUP.9 b/share/man/man9/VOP_LOOKUP.9 index 295acfa..47565d5 100644 --- a/share/man/man9/VOP_LOOKUP.9 +++ b/share/man/man9/VOP_LOOKUP.9 @@ -430,7 +430,6 @@ or operation would be successful .El .Sh SEE ALSO -.Xr VOP_ABORTOP 9 , .Xr VOP_ACCESS 9 , .Xr VOP_CREATE 9 , .Xr VOP_MKDIR 9 , diff --git a/share/man/man9/VOP_RENAME.9 b/share/man/man9/VOP_RENAME.9 index 9985247..e12bd98 100644 --- a/share/man/man9/VOP_RENAME.9 +++ b/share/man/man9/VOP_RENAME.9 @@ -85,14 +85,12 @@ vop_rename(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp, if (fvp->v_mount != tdvp->v_mount) { error = EXDEV; abortit: - VOP_ABORTOP(tdvp, tcnp); if (tdvp == tvp) vrele(tdvp); else vput(tdvp); if (tvp) vput(tvp); - VOP_ABORTOP(fdvp, fcnp); vrele(fdvp); vrele(fvp); return error; @@ -115,7 +113,6 @@ vop_rename(struct vnode *fdvp, struct vnode *fvp, struct componentname *fcnp, /* * Release destination. */ - VOP_ABORTOP(tdvp, tcnp); vput(tdvp); vput(tvp); |