Remove unused thread argument to vrecycle().

Reviewed by:	kib
This commit is contained in:
Edward Tomasz Napierala 2012-04-23 14:10:34 +00:00
parent c52fd858ae
commit af6e6b87ad
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=234607
15 changed files with 16 additions and 23 deletions

View File

@ -4556,7 +4556,7 @@ zfs_inactive(vnode_t *vp, cred_t *cr, caller_context_t *ct)
ASSERT(vp->v_count <= 1);
vp->v_count = 0;
VI_UNLOCK(vp);
vrecycle(vp, curthread);
vrecycle(vp);
rw_exit(&zfsvfs->z_teardown_inactive_lock);
return;
}

View File

@ -1428,7 +1428,7 @@ zfs_zinactive(znode_t *zp)
mutex_exit(&zp->z_lock);
ZFS_OBJ_HOLD_EXIT(zfsvfs, z_id);
ASSERT(vp->v_count == 0);
vrecycle(vp, curthread);
vrecycle(vp);
vfslocked = VFS_LOCK_GIANT(zfsvfs->z_vfs);
zfs_rmnode(zp);
VFS_UNLOCK_GIANT(vfslocked);

View File

@ -65,7 +65,6 @@ cd9660_inactive(ap)
} */ *ap;
{
struct vnode *vp = ap->a_vp;
struct thread *td = ap->a_td;
struct iso_node *ip = VTOI(vp);
int error = 0;
@ -74,7 +73,7 @@ cd9660_inactive(ap)
* so that it can be reused immediately.
*/
if (ip->inode.iso_mode == 0)
vrecycle(vp, td);
vrecycle(vp);
return error;
}

View File

@ -498,7 +498,7 @@ ext2_inactive(ap)
* so that it can be reused immediately.
*/
if (ip->i_mode == 0)
vrecycle(vp, td);
vrecycle(vp);
return (error);
}

View File

@ -576,7 +576,7 @@ hpfs_inactive(ap)
}
if (hp->h_flag & H_INVAL) {
vrecycle(vp, ap->a_td);
vrecycle(vp);
return (0);
}

View File

@ -583,7 +583,6 @@ msdosfs_inactive(ap)
{
struct vnode *vp = ap->a_vp;
struct denode *dep = VTODE(vp);
struct thread *td = ap->a_td;
int error = 0;
#ifdef MSDOSFS_DEBUG
@ -622,6 +621,6 @@ msdosfs_inactive(ap)
vrefcnt(vp), dep->de_Name[0]);
#endif
if (dep->de_Name[0] == SLOT_DELETED || dep->de_Name[0] == SLOT_EMPTY)
vrecycle(vp, td);
vrecycle(vp);
return (error);
}

View File

@ -678,7 +678,6 @@ static int
null_inactive(struct vop_inactive_args *ap)
{
struct vnode *vp = ap->a_vp;
struct thread *td = ap->a_td;
vp->v_object = NULL;
@ -686,7 +685,7 @@ null_inactive(struct vop_inactive_args *ap)
* If this is the last reference, then free up the vnode
* so as not to tie up the lower vnodes.
*/
vrecycle(vp, td);
vrecycle(vp);
return (0);
}

View File

@ -373,7 +373,7 @@ smbfs_inactive(ap)
smbfs_attr_cacheremove(vp);
}
if (np->n_flag & NGONE)
vrecycle(vp, td);
vrecycle(vp);
return (0);
}
/*

View File

@ -1577,7 +1577,6 @@ static int
tmpfs_inactive(struct vop_inactive_args *v)
{
struct vnode *vp = v->a_vp;
struct thread *l = v->a_td;
struct tmpfs_node *node;
@ -1586,7 +1585,7 @@ tmpfs_inactive(struct vop_inactive_args *v)
node = VP_TO_TMPFS_NODE(vp);
if (node->tn_links == 0)
vrecycle(vp, l);
vrecycle(vp);
return 0;
}

View File

@ -1702,7 +1702,7 @@ static int
unionfs_inactive(struct vop_inactive_args *ap)
{
ap->a_vp->v_object = NULL;
vrecycle(ap->a_vp, ap->a_td);
vrecycle(ap->a_vp);
return (0);
}

View File

@ -104,12 +104,10 @@ reiserfs_inactive(struct vop_inactive_args *ap)
{
int error;
struct vnode *vp;
struct thread *td;
struct reiserfs_node *ip;
error = 0;
vp = ap->a_vp;
td = ap->a_td;
ip = VTOI(vp);
reiserfs_log(LOG_DEBUG, "deactivating inode used %d times\n",
@ -129,7 +127,7 @@ reiserfs_inactive(struct vop_inactive_args *ap)
*/
if (ip->i_mode == 0) {
reiserfs_log(LOG_DEBUG, "recyling\n");
vrecycle(vp, td);
vrecycle(vp);
}
return (error);

View File

@ -703,7 +703,7 @@ do_recycle(void *context, int pending __unused)
{
struct vnode *vp = (struct vnode *)context;
vrecycle(vp, curthread);
vrecycle(vp);
vdrop(vp);
}
@ -1065,7 +1065,7 @@ mqfs_inactive(struct vop_inactive_args *ap)
struct mqfs_node *pn = VTON(ap->a_vp);
if (pn->mn_deleted)
vrecycle(ap->a_vp, ap->a_td);
vrecycle(ap->a_vp);
return (0);
}

View File

@ -2659,7 +2659,7 @@ vflush(struct mount *mp, int rootrefs, int flags, struct thread *td)
* Recycle an unused vnode to the front of the free list.
*/
int
vrecycle(struct vnode *vp, struct thread *td)
vrecycle(struct vnode *vp)
{
int recycled;

View File

@ -639,7 +639,7 @@ int vtruncbuf(struct vnode *vp, struct ucred *cred, off_t length,
void vunref(struct vnode *);
void vn_printf(struct vnode *vp, const char *fmt, ...) __printflike(2,3);
#define vprint(label, vp) vn_printf((vp), "%s\n", (label))
int vrecycle(struct vnode *vp, struct thread *td);
int vrecycle(struct vnode *vp);
int vn_close(struct vnode *vp,
int flags, struct ucred *file_cred, struct thread *td);
void vn_finished_write(struct mount *mp);

View File

@ -73,7 +73,6 @@ ufs_inactive(ap)
{
struct vnode *vp = ap->a_vp;
struct inode *ip = VTOI(vp);
struct thread *td = ap->a_td;
mode_t mode;
int error = 0;
off_t isize;
@ -172,7 +171,7 @@ ufs_inactive(ap)
* so that it can be reused immediately.
*/
if (ip->i_mode == 0)
vrecycle(vp, td);
vrecycle(vp);
if (mp != NULL)
vn_finished_secondary_write(mp);
return (error);