summaryrefslogtreecommitdiffstats
path: root/sys/fs/smbfs
diff options
context:
space:
mode:
authorjhb <jhb@FreeBSD.org>2010-08-20 19:46:50 +0000
committerjhb <jhb@FreeBSD.org>2010-08-20 19:46:50 +0000
commitd4890c88b0febe402398e0a0bb66efdc998dd9c9 (patch)
tree9899b196d40cbc0b664fe2238a340bf770b2bd81 /sys/fs/smbfs
parenta9738fb2b395d0c304c9a1fcf56a05f4143d9afb (diff)
downloadFreeBSD-src-d4890c88b0febe402398e0a0bb66efdc998dd9c9.zip
FreeBSD-src-d4890c88b0febe402398e0a0bb66efdc998dd9c9.tar.gz
Add dedicated routines to toggle lockmgr flags such as LK_NOSHARE and
LK_CANRECURSE after a lock is created. Use them to implement macros that otherwise manipulated the flags directly. Assert that the associated lockmgr lock is exclusively locked by the current thread when manipulating these flags to ensure the flag updates are safe. This last change required some minor shuffling in a few filesystems to exclusively lock a brand new vnode slightly earlier. Reviewed by: kib MFC after: 3 days
Diffstat (limited to 'sys/fs/smbfs')
-rw-r--r--sys/fs/smbfs/smbfs_node.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/fs/smbfs/smbfs_node.c b/sys/fs/smbfs/smbfs_node.c
index a0543e2..661579c 100644
--- a/sys/fs/smbfs/smbfs_node.c
+++ b/sys/fs/smbfs/smbfs_node.c
@@ -253,8 +253,8 @@ loop:
} else if (vp->v_type == VREG)
SMBERROR("new vnode '%s' born without parent ?\n", np->n_name);
- VN_LOCK_AREC(vp);
vn_lock(vp, LK_EXCLUSIVE | LK_RETRY);
+ VN_LOCK_AREC(vp);
smbfs_hash_lock(smp);
LIST_FOREACH(np2, nhpp, n_hash) {
OpenPOWER on IntegriCloud