diff options
author | jhb <jhb@FreeBSD.org> | 2010-08-20 19:46:50 +0000 |
---|---|---|
committer | jhb <jhb@FreeBSD.org> | 2010-08-20 19:46:50 +0000 |
commit | d4890c88b0febe402398e0a0bb66efdc998dd9c9 (patch) | |
tree | 9899b196d40cbc0b664fe2238a340bf770b2bd81 /sys/gnu | |
parent | a9738fb2b395d0c304c9a1fcf56a05f4143d9afb (diff) | |
download | FreeBSD-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/gnu')
-rw-r--r-- | sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c b/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c index 49cfb5d..e4e1e8d 100644 --- a/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c +++ b/sys/gnu/fs/xfs/FreeBSD/xfs_freebsd_iget.c @@ -389,8 +389,8 @@ xfs_vn_allocate(xfs_mount_t *mp, xfs_inode_t *ip, struct xfs_vnode **vpp) return (error); } - VN_LOCK_AREC(vp); vn_lock(vp, LK_EXCLUSIVE | LK_RETRY); + VN_LOCK_AREC(vp); error = insmntque(vp, XVFSTOMNT(XFS_MTOVFS(mp))); if (error != 0) { kmem_free(vdata, sizeof(*vdata)); |