diff options
author | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2007-04-13 10:44:08 +0000 |
---|---|---|
committer | Alexander Bluhm <bluhm@cvs.openbsd.org> | 2007-04-13 10:44:08 +0000 |
commit | 4fda9346d2c40dfbb62c38ce9c812f03309128c6 (patch) | |
tree | d55210d6a226ad2de10e48ac81536afae3534a0a /sys/kern | |
parent | c0cbe09690926dbe6cf746bca30096d355525fc5 (diff) |
Remove comments talking about vnode interlock. No binary change.
ok thib
Diffstat (limited to 'sys/kern')
-rw-r--r-- | sys/kern/vfs_subr.c | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/sys/kern/vfs_subr.c b/sys/kern/vfs_subr.c index 0274a015389..a7dc77ba8e7 100644 --- a/sys/kern/vfs_subr.c +++ b/sys/kern/vfs_subr.c @@ -1,4 +1,4 @@ -/* $OpenBSD: vfs_subr.c,v 1.142 2007/04/11 16:08:50 thib Exp $ */ +/* $OpenBSD: vfs_subr.c,v 1.143 2007/04/13 10:44:07 bluhm Exp $ */ /* $NetBSD: vfs_subr.c,v 1.53 1996/04/22 01:39:13 christos Exp $ */ /* @@ -925,7 +925,6 @@ vflush(struct mount *mp, struct vnode *skipvp, int flags) /* * Disassociate the underlying file system from a vnode. - * The vnode interlock is held on entry. */ void vclean(struct vnode *vp, int flags, struct proc *p) @@ -1018,7 +1017,6 @@ vclean(struct vnode *vp, int flags, struct proc *p) /* * Recycle an unused vnode to the front of the free list. - * Release the passed interlock if the vnode will be recycled. */ int vrecycle(struct vnode *vp, struct proc *p) @@ -1042,7 +1040,7 @@ vgone(struct vnode *vp) } /* - * vgone, with the vp interlock held. + * vgone, with struct proc. */ void vgonel(struct vnode *vp, struct proc *p) |