MFC: expose vdropl()

This commit is contained in:
des 2007-05-24 16:09:38 +00:00
parent a7d7eea4be
commit dc22b24953
2 changed files with 2 additions and 2 deletions

@ -94,7 +94,6 @@ static int flushbuflist(struct bufv *bufv, int flags, struct bufobj *bo,
static void syncer_shutdown(void *arg, int howto);
static int vtryrecycle(struct vnode *vp);
static void vbusy(struct vnode *vp);
static void vdropl(struct vnode *vp);
static void vinactive(struct vnode *, struct thread *);
static void v_incr_usecount(struct vnode *);
static void v_decr_usecount(struct vnode *);
@ -2199,7 +2198,7 @@ vdrop(struct vnode *vp)
* the vnode we will free it if it has been vgone'd otherwise it is
* placed on the free list.
*/
static void
void
vdropl(struct vnode *vp)
{

@ -593,6 +593,7 @@ int vaccess_acl_posix1e(enum vtype type, uid_t file_uid,
void vattr_null(struct vattr *vap);
int vcount(struct vnode *vp);
void vdrop(struct vnode *);
void vdropl(struct vnode *);
void vfs_add_vnodeops(const void *);
void vfs_rm_vnodeops(const void *);
int vflush(struct mount *mp, int rootrefs, int flags, struct thread *td);