aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2013-12-06 15:30:08 -0500
committerBen Myers <bpm@sgi.com>2013-12-18 16:38:57 -0500
commit01f4f3277556d4f4f833371db0219b0ca11c5409 (patch)
tree393ca8f6130a12c5a64e4d5ab42a907f60fb9847 /fs/xfs/xfs_inode.c
parent30ba7ad54335e4715d3cc9cc8f43cbf1b3535e46 (diff)
xfs: remove xfs_iunlock_map_shared
We can just use xfs_iunlock without any loss of clarity. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <dchinner@redhat.com> Signed-off-by: Ben Myers <bpm@sgi.com>
Diffstat (limited to 'fs/xfs/xfs_inode.c')
-rw-r--r--fs/xfs/xfs_inode.c17
1 files changed, 2 insertions, 15 deletions
diff --git a/fs/xfs/xfs_inode.c b/fs/xfs/xfs_inode.c
index 001aa893ed59..967f90625eae 100644
--- a/fs/xfs/xfs_inode.c
+++ b/fs/xfs/xfs_inode.c
@@ -88,8 +88,7 @@ xfs_get_extsz_hint(
88 * have been read in yet, and only lock the inode exclusively if they have not. 88 * have been read in yet, and only lock the inode exclusively if they have not.
89 * 89 *
90 * The function returns a value which should be given to the corresponding 90 * The function returns a value which should be given to the corresponding
91 * xfs_iunlock_map_shared(). This value is the mode in which the lock was 91 * xfs_iunlock() call.
92 * actually taken.
93 */ 92 */
94uint 93uint
95xfs_ilock_map_shared( 94xfs_ilock_map_shared(
@@ -110,18 +109,6 @@ xfs_ilock_map_shared(
110} 109}
111 110
112/* 111/*
113 * This is simply the unlock routine to go with xfs_ilock_map_shared().
114 * All it does is call xfs_iunlock() with the given lock_mode.
115 */
116void
117xfs_iunlock_map_shared(
118 xfs_inode_t *ip,
119 unsigned int lock_mode)
120{
121 xfs_iunlock(ip, lock_mode);
122}
123
124/*
125 * The xfs inode contains 2 locks: a multi-reader lock called the 112 * The xfs inode contains 2 locks: a multi-reader lock called the
126 * i_iolock and a multi-reader lock called the i_lock. This routine 113 * i_iolock and a multi-reader lock called the i_lock. This routine
127 * allows either or both of the locks to be obtained. 114 * allows either or both of the locks to be obtained.
@@ -590,7 +577,7 @@ xfs_lookup(
590 577
591 lock_mode = xfs_ilock_map_shared(dp); 578 lock_mode = xfs_ilock_map_shared(dp);
592 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name); 579 error = xfs_dir_lookup(NULL, dp, name, &inum, ci_name);
593 xfs_iunlock_map_shared(dp, lock_mode); 580 xfs_iunlock(dp, lock_mode);
594 581
595 if (error) 582 if (error)
596 goto out; 583 goto out;