diff options
author | Dave Chinner <david@fromorbit.com> | 2009-06-08 09:35:12 -0400 |
---|---|---|
committer | Christoph Hellwig <hch@brick.lst.de> | 2009-06-08 09:35:12 -0400 |
commit | abc1064742604e60a47a65fa3214dc1a84db093d (patch) | |
tree | eeefefeaae0783b8943e99b68b27547c575d5194 /fs/xfs/xfs_mount.c | |
parent | 1da8eecab5f866b4f5be43adbaadf18e259a8cc5 (diff) |
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/xfs_mount.c')
-rw-r--r-- | fs/xfs/xfs_mount.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/fs/xfs/xfs_mount.c b/fs/xfs/xfs_mount.c index b659db5e7165..5c6f092659c1 100644 --- a/fs/xfs/xfs_mount.c +++ b/fs/xfs/xfs_mount.c | |||
@@ -1371,7 +1371,7 @@ xfs_unmountfs( | |||
1371 | * need to force the log first. | 1371 | * need to force the log first. |
1372 | */ | 1372 | */ |
1373 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC); | 1373 | xfs_log_force(mp, (xfs_lsn_t)0, XFS_LOG_FORCE | XFS_LOG_SYNC); |
1374 | xfs_reclaim_inodes(mp, 0, XFS_IFLUSH_ASYNC); | 1374 | xfs_reclaim_inodes(mp, XFS_IFLUSH_ASYNC); |
1375 | 1375 | ||
1376 | xfs_qm_unmount(mp); | 1376 | xfs_qm_unmount(mp); |
1377 | 1377 | ||