diff options
Diffstat (limited to 'fs/xfs/xfs_icache.c')
-rw-r--r-- | fs/xfs/xfs_icache.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/fs/xfs/xfs_icache.c b/fs/xfs/xfs_icache.c index 16219b9c6790..73b62a24ceac 100644 --- a/fs/xfs/xfs_icache.c +++ b/fs/xfs/xfs_icache.c | |||
@@ -1167,7 +1167,7 @@ xfs_reclaim_inodes( | |||
1167 | * them to be cleaned, which we hope will not be very long due to the | 1167 | * them to be cleaned, which we hope will not be very long due to the |
1168 | * background walker having already kicked the IO off on those dirty inodes. | 1168 | * background walker having already kicked the IO off on those dirty inodes. |
1169 | */ | 1169 | */ |
1170 | void | 1170 | long |
1171 | xfs_reclaim_inodes_nr( | 1171 | xfs_reclaim_inodes_nr( |
1172 | struct xfs_mount *mp, | 1172 | struct xfs_mount *mp, |
1173 | int nr_to_scan) | 1173 | int nr_to_scan) |
@@ -1176,7 +1176,7 @@ xfs_reclaim_inodes_nr( | |||
1176 | xfs_reclaim_work_queue(mp); | 1176 | xfs_reclaim_work_queue(mp); |
1177 | xfs_ail_push_all(mp->m_ail); | 1177 | xfs_ail_push_all(mp->m_ail); |
1178 | 1178 | ||
1179 | xfs_reclaim_inodes_ag(mp, SYNC_TRYLOCK | SYNC_WAIT, &nr_to_scan); | 1179 | return xfs_reclaim_inodes_ag(mp, SYNC_TRYLOCK | SYNC_WAIT, &nr_to_scan); |
1180 | } | 1180 | } |
1181 | 1181 | ||
1182 | /* | 1182 | /* |