aboutsummaryrefslogtreecommitdiff
path: root/sys/nfs4client/nfs4_vnops.c
diff options
context:
space:
mode:
authorAttilio Rao <attilio@FreeBSD.org>2008-01-10 01:10:58 +0000
committerAttilio Rao <attilio@FreeBSD.org>2008-01-10 01:10:58 +0000
commitcb05b60a8982e5497cd30449710deb2f4be653d4 (patch)
treec4e28d990eaa525916ab09f2bd1d9c6ddf2c8dea /sys/nfs4client/nfs4_vnops.c
parent71e3b145e380a641c1129e0363ecb2f5ebbb09f2 (diff)
downloadsrc-cb05b60a8982e5497cd30449710deb2f4be653d4.tar.gz
src-cb05b60a8982e5497cd30449710deb2f4be653d4.zip
vn_lock() is currently only used with the 'curthread' passed as argument.
Remove this argument and pass curthread directly to underlying VOP_LOCK1() VFS method. This modify makes the code cleaner and in particular remove an annoying dependence helping next lockmgr() cleanup. KPI results, obviously, changed. Manpage and FreeBSD_version will be updated through further commits. As a side note, would be valuable to say that next commits will address a similar cleanup about VFS methods, in particular vop_lock1 and vop_unlock. Tested by: Diego Sardina <siarodx at gmail dot com>, Andrea Di Pasquale <whyx dot it at gmail dot com>
Notes
Notes: svn path=/head/; revision=175202
Diffstat (limited to 'sys/nfs4client/nfs4_vnops.c')
-rw-r--r--sys/nfs4client/nfs4_vnops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/sys/nfs4client/nfs4_vnops.c b/sys/nfs4client/nfs4_vnops.c
index 8094a3e33359..b631c77c7c1d 100644
--- a/sys/nfs4client/nfs4_vnops.c
+++ b/sys/nfs4client/nfs4_vnops.c
@@ -1048,7 +1048,7 @@ nfs4_lookup(struct vop_lookup_args *ap)
VOP_UNLOCK(dvp, 0, td);
error = nfs_nget(dvp->v_mount, fhp, fhsize, &np, LK_EXCLUSIVE);
- vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY, td);
+ vn_lock(dvp, LK_EXCLUSIVE | LK_RETRY);
if (error)
return (error);
newvp = NFSTOV(np);
@@ -1709,7 +1709,7 @@ nfs4_rename(struct vop_rename_args *ap)
error = 0;
goto out;
}
- if ((error = vn_lock(fvp, LK_EXCLUSIVE, fcnp->cn_thread)) != 0)
+ if ((error = vn_lock(fvp, LK_EXCLUSIVE)) != 0)
goto out;
/*