aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs/xfs_inode_item.c
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2010-06-23 21:52:50 -0400
committerAlex Elder <aelder@sgi.com>2010-07-26 14:16:44 -0400
commitf2d6761433d69d94e0b39ac44ef0f0f0b0508065 (patch)
tree12b33cc84c66146b9dc16f8df4884a7e6345f20f /fs/xfs/xfs_inode_item.c
parentef35e9255d4ed12522e836fbcec861e7306d794a (diff)
xfs: remove xfs_iput
xfs_iput is just a small wrapper for xfs_iunlock + IRELE. Having this out of line wrapper means the trace events in those two can't track their caller properly. So just remove the wrapper and opencode the unlock + rele in the few callers. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <dchinner@redhat.com>
Diffstat (limited to 'fs/xfs/xfs_inode_item.c')
-rw-r--r--fs/xfs/xfs_inode_item.c6
1 files changed, 4 insertions, 2 deletions
diff --git a/fs/xfs/xfs_inode_item.c b/fs/xfs/xfs_inode_item.c
index 2998b2cb7466..065c1ad9b708 100644
--- a/fs/xfs/xfs_inode_item.c
+++ b/fs/xfs/xfs_inode_item.c
@@ -660,8 +660,10 @@ xfs_inode_item_unlock(
660 660
661 lock_flags = iip->ili_lock_flags; 661 lock_flags = iip->ili_lock_flags;
662 iip->ili_lock_flags = 0; 662 iip->ili_lock_flags = 0;
663 if (lock_flags) 663 if (lock_flags) {
664 xfs_iput(iip->ili_inode, lock_flags); 664 xfs_iunlock(iip->ili_inode, lock_flags);
665 IRELE(iip->ili_inode);
666 }
665} 667}
666 668
667/* 669/*