aboutsummaryrefslogtreecommitdiffstats
path: root/fs/xfs
diff options
context:
space:
mode:
authorChristoph Hellwig <hch@infradead.org>2009-11-14 11:17:23 -0500
committerAlex Elder <aelder@sgi.com>2009-12-11 16:11:23 -0500
commit0c3dc2b02a4996c13e26eb91296e8a309e0c6227 (patch)
tree7a974ff0d9cb20dee3c2afa84fd1f67ffda281eb /fs/xfs
parentb8f82a4a6fc79fcb4b2eb81252020e04c9b49da5 (diff)
xfs: remove incorrect sparse annotation for xfs_iget_cache_miss
xfs_iget_cache_miss does not get called with the pag_ici_lock held, so the __releases annotation is incorrect. Signed-off-by: Christoph Hellwig <hch@lst.de> Reviewed-by: Dave Chinner <david@fromorbit.com> Signed-off-by: Alex Elder <aelder@sgi.com>
Diffstat (limited to 'fs/xfs')
-rw-r--r--fs/xfs/xfs_iget.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_iget.c b/fs/xfs/xfs_iget.c
index cc72c561ff52..073bb4a26b19 100644
--- a/fs/xfs/xfs_iget.c
+++ b/fs/xfs/xfs_iget.c
@@ -293,7 +293,7 @@ xfs_iget_cache_miss(
293 struct xfs_inode **ipp, 293 struct xfs_inode **ipp,
294 xfs_daddr_t bno, 294 xfs_daddr_t bno,
295 int flags, 295 int flags,
296 int lock_flags) __releases(pag->pag_ici_lock) 296 int lock_flags)
297{ 297{
298 struct xfs_inode *ip; 298 struct xfs_inode *ip;
299 int error; 299 int error;