diff options
author | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-06-20 15:03:41 +0000 |
---|---|---|
committer | Thordur I. Bjornsson <thib@cvs.openbsd.org> | 2007-06-20 15:03:41 +0000 |
commit | b90dc6b6601a10f0f5eeadd9d0b2068a788ab699 (patch) | |
tree | dfd3f725ffdc1987ab33f456927eb6de006723aa /sys/ufs | |
parent | b20202e3f1dd379b458c573b5a5e104622f573d2 (diff) |
remove an XXX comment;
Basically the reason why we dont do VOP_ABORTOP()'s in NFS
is that sys_rename() actually handles the garbage collection
of the pathname buffers, the calls in ufs are actually fluff
too, but will be delt with later.
ok pedro@
Diffstat (limited to 'sys/ufs')
-rw-r--r-- | sys/ufs/ufs/ufs_vnops.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/sys/ufs/ufs/ufs_vnops.c b/sys/ufs/ufs/ufs_vnops.c index 1761fed6c56..59afe3bafd2 100644 --- a/sys/ufs/ufs/ufs_vnops.c +++ b/sys/ufs/ufs/ufs_vnops.c @@ -1,4 +1,4 @@ -/* $OpenBSD: ufs_vnops.c,v 1.81 2007/06/01 23:47:57 deraadt Exp $ */ +/* $OpenBSD: ufs_vnops.c,v 1.82 2007/06/20 15:03:40 thib Exp $ */ /* $NetBSD: ufs_vnops.c,v 1.18 1996/05/11 18:28:04 mycroft Exp $ */ /* @@ -696,14 +696,14 @@ ufs_rename(void *v) (tvp && (fvp->v_mount != tvp->v_mount))) { error = EXDEV; abortit: - VOP_ABORTOP(tdvp, tcnp); /* XXX, why not in NFS? */ + VOP_ABORTOP(tdvp, tcnp); if (tdvp == tvp) vrele(tdvp); else vput(tdvp); if (tvp) vput(tvp); - VOP_ABORTOP(fdvp, fcnp); /* XXX, why not in NFS? */ + VOP_ABORTOP(fdvp, fcnp); vrele(fdvp); vrele(fvp); return (error); |