diff options
author | Dave Chinner <david@fromorbit.com> | 2009-06-08 15:35:12 +0200 |
---|---|---|
committer | Christoph Hellwig <hch@brick.lst.de> | 2009-06-08 15:35:12 +0200 |
commit | abc1064742604e60a47a65fa3214dc1a84db093d (patch) | |
tree | eeefefeaae0783b8943e99b68b27547c575d5194 /fs/xfs/linux-2.6/xfs_sync.h | |
parent | 1da8eecab5f866b4f5be43adbaadf18e259a8cc5 (diff) | |
download | kernel_samsung_tuna-abc1064742604e60a47a65fa3214dc1a84db093d.zip kernel_samsung_tuna-abc1064742604e60a47a65fa3214dc1a84db093d.tar.gz kernel_samsung_tuna-abc1064742604e60a47a65fa3214dc1a84db093d.tar.bz2 |
xfs: remove unused parameter from xfs_reclaim_inodes
The noblock parameter of xfs_reclaim_inodes is only ever set to zero. Remove
it and all the conditional code that is never executed.
Signed-off-by: Dave Chinner <david@fromorbit.com>
Signed-off-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Eric Sandeen <sandeen@sandeen.net>
Diffstat (limited to 'fs/xfs/linux-2.6/xfs_sync.h')
-rw-r--r-- | fs/xfs/linux-2.6/xfs_sync.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/linux-2.6/xfs_sync.h b/fs/xfs/linux-2.6/xfs_sync.h index 308d5bf..d7b2b5f 100644 --- a/fs/xfs/linux-2.6/xfs_sync.h +++ b/fs/xfs/linux-2.6/xfs_sync.h @@ -48,7 +48,7 @@ void xfs_quiesce_attr(struct xfs_mount *mp); void xfs_flush_inodes(struct xfs_inode *ip); int xfs_reclaim_inode(struct xfs_inode *ip, int locked, int sync_mode); -int xfs_reclaim_inodes(struct xfs_mount *mp, int noblock, int mode); +int xfs_reclaim_inodes(struct xfs_mount *mp, int mode); void xfs_inode_set_reclaim_tag(struct xfs_inode *ip); void xfs_inode_clear_reclaim_tag(struct xfs_inode *ip); |