blob: 15be21f074fd875e1e20016f7ceb7d97401dce46 [file] [log] [blame]
David Chinnerfe4fa4b2008-10-30 17:06:08 +11001/*
2 * Copyright (c) 2000-2005 Silicon Graphics, Inc.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope that it would be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
13 *
14 * You should have received a copy of the GNU General Public License
15 * along with this program; if not, write the Free Software Foundation,
16 * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
17 */
18#include "xfs.h"
19#include "xfs_fs.h"
20#include "xfs_types.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110021#include "xfs_log.h"
Dave Chinnerf661f1e2012-10-08 21:56:02 +110022#include "xfs_log_priv.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110023#include "xfs_inum.h"
24#include "xfs_trans.h"
Dave Chinnerfd074842011-04-08 12:45:07 +100025#include "xfs_trans_priv.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110026#include "xfs_sb.h"
27#include "xfs_ag.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110028#include "xfs_mount.h"
29#include "xfs_bmap_btree.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110030#include "xfs_inode.h"
31#include "xfs_dinode.h"
32#include "xfs_error.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110033#include "xfs_filestream.h"
34#include "xfs_vnodeops.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110035#include "xfs_inode_item.h"
Christoph Hellwig7d095252009-06-08 15:33:32 +020036#include "xfs_quota.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000037#include "xfs_trace.h"
Dave Chinner1a387d32010-08-24 11:46:31 +100038#include "xfs_fsops.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110039
David Chinnera167b172008-10-30 17:06:18 +110040#include <linux/kthread.h>
41#include <linux/freezer.h>
42
Dave Chinner78ae5252010-09-28 12:28:19 +100043/*
44 * The inode lookup is done in batches to keep the amount of lock traffic and
45 * radix tree lookups to a minimum. The batch size is a trade off between
46 * lookup reduction and stack usage. This is in the reclaim path, so we can't
47 * be too greedy.
48 */
49#define XFS_LOOKUP_BATCH 32
50
Dave Chinnere13de952010-09-28 12:28:06 +100051STATIC int
52xfs_inode_ag_walk_grab(
53 struct xfs_inode *ip)
54{
55 struct inode *inode = VFS_I(ip);
56
Dave Chinner1a3e8f32010-12-17 17:29:43 +110057 ASSERT(rcu_read_lock_held());
58
59 /*
60 * check for stale RCU freed inode
61 *
62 * If the inode has been reallocated, it doesn't matter if it's not in
63 * the AG we are walking - we are walking for writeback, so if it
64 * passes all the "valid inode" checks and is dirty, then we'll write
65 * it back anyway. If it has been reallocated and still being
66 * initialised, the XFS_INEW check below will catch it.
67 */
68 spin_lock(&ip->i_flags_lock);
69 if (!ip->i_ino)
70 goto out_unlock_noent;
71
72 /* avoid new or reclaimable inodes. Leave for reclaim code to flush */
73 if (__xfs_iflags_test(ip, XFS_INEW | XFS_IRECLAIMABLE | XFS_IRECLAIM))
74 goto out_unlock_noent;
75 spin_unlock(&ip->i_flags_lock);
76
Dave Chinnere13de952010-09-28 12:28:06 +100077 /* nothing to sync during shutdown */
78 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
79 return EFSCORRUPTED;
80
Dave Chinnere13de952010-09-28 12:28:06 +100081 /* If we can't grab the inode, it must on it's way to reclaim. */
82 if (!igrab(inode))
83 return ENOENT;
84
85 if (is_bad_inode(inode)) {
86 IRELE(ip);
87 return ENOENT;
88 }
89
90 /* inode is valid */
91 return 0;
Dave Chinner1a3e8f32010-12-17 17:29:43 +110092
93out_unlock_noent:
94 spin_unlock(&ip->i_flags_lock);
95 return ENOENT;
Dave Chinnere13de952010-09-28 12:28:06 +100096}
97
Dave Chinner75f3cb12009-06-08 15:35:14 +020098STATIC int
99xfs_inode_ag_walk(
100 struct xfs_mount *mp,
Dave Chinner5017e972010-01-11 11:47:40 +0000101 struct xfs_perag *pag,
Dave Chinner75f3cb12009-06-08 15:35:14 +0200102 int (*execute)(struct xfs_inode *ip,
103 struct xfs_perag *pag, int flags),
Dave Chinner65d0f202010-09-24 18:40:15 +1000104 int flags)
Dave Chinner75f3cb12009-06-08 15:35:14 +0200105{
Dave Chinner75f3cb12009-06-08 15:35:14 +0200106 uint32_t first_index;
107 int last_error = 0;
108 int skipped;
Dave Chinner65d0f202010-09-24 18:40:15 +1000109 int done;
Dave Chinner78ae5252010-09-28 12:28:19 +1000110 int nr_found;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200111
112restart:
Dave Chinner65d0f202010-09-24 18:40:15 +1000113 done = 0;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200114 skipped = 0;
115 first_index = 0;
Dave Chinner78ae5252010-09-28 12:28:19 +1000116 nr_found = 0;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200117 do {
Dave Chinner78ae5252010-09-28 12:28:19 +1000118 struct xfs_inode *batch[XFS_LOOKUP_BATCH];
Dave Chinner75f3cb12009-06-08 15:35:14 +0200119 int error = 0;
Dave Chinner78ae5252010-09-28 12:28:19 +1000120 int i;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200121
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100122 rcu_read_lock();
Dave Chinner65d0f202010-09-24 18:40:15 +1000123 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root,
Dave Chinner78ae5252010-09-28 12:28:19 +1000124 (void **)batch, first_index,
125 XFS_LOOKUP_BATCH);
Dave Chinner65d0f202010-09-24 18:40:15 +1000126 if (!nr_found) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100127 rcu_read_unlock();
Dave Chinner75f3cb12009-06-08 15:35:14 +0200128 break;
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000129 }
Dave Chinner75f3cb12009-06-08 15:35:14 +0200130
Dave Chinner65d0f202010-09-24 18:40:15 +1000131 /*
Dave Chinner78ae5252010-09-28 12:28:19 +1000132 * Grab the inodes before we drop the lock. if we found
133 * nothing, nr == 0 and the loop will be skipped.
Dave Chinner65d0f202010-09-24 18:40:15 +1000134 */
Dave Chinner78ae5252010-09-28 12:28:19 +1000135 for (i = 0; i < nr_found; i++) {
136 struct xfs_inode *ip = batch[i];
Dave Chinner65d0f202010-09-24 18:40:15 +1000137
Dave Chinner78ae5252010-09-28 12:28:19 +1000138 if (done || xfs_inode_ag_walk_grab(ip))
139 batch[i] = NULL;
140
141 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100142 * Update the index for the next lookup. Catch
143 * overflows into the next AG range which can occur if
144 * we have inodes in the last block of the AG and we
145 * are currently pointing to the last inode.
146 *
147 * Because we may see inodes that are from the wrong AG
148 * due to RCU freeing and reallocation, only update the
149 * index if it lies in this AG. It was a race that lead
150 * us to see this inode, so another lookup from the
151 * same index will not find it again.
Dave Chinner78ae5252010-09-28 12:28:19 +1000152 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100153 if (XFS_INO_TO_AGNO(mp, ip->i_ino) != pag->pag_agno)
154 continue;
Dave Chinner78ae5252010-09-28 12:28:19 +1000155 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
156 if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
157 done = 1;
Dave Chinnere13de952010-09-28 12:28:06 +1000158 }
Dave Chinner78ae5252010-09-28 12:28:19 +1000159
160 /* unlock now we've grabbed the inodes. */
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100161 rcu_read_unlock();
Dave Chinnere13de952010-09-28 12:28:06 +1000162
Dave Chinner78ae5252010-09-28 12:28:19 +1000163 for (i = 0; i < nr_found; i++) {
164 if (!batch[i])
165 continue;
166 error = execute(batch[i], pag, flags);
167 IRELE(batch[i]);
168 if (error == EAGAIN) {
169 skipped++;
170 continue;
171 }
172 if (error && last_error != EFSCORRUPTED)
173 last_error = error;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200174 }
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000175
176 /* bail out if the filesystem is corrupted. */
Dave Chinner75f3cb12009-06-08 15:35:14 +0200177 if (error == EFSCORRUPTED)
178 break;
179
Dave Chinner8daaa832011-07-08 14:14:46 +1000180 cond_resched();
181
Dave Chinner78ae5252010-09-28 12:28:19 +1000182 } while (nr_found && !done);
Dave Chinner75f3cb12009-06-08 15:35:14 +0200183
184 if (skipped) {
185 delay(1);
186 goto restart;
187 }
Dave Chinner75f3cb12009-06-08 15:35:14 +0200188 return last_error;
189}
190
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200191int
Dave Chinner75f3cb12009-06-08 15:35:14 +0200192xfs_inode_ag_iterator(
193 struct xfs_mount *mp,
194 int (*execute)(struct xfs_inode *ip,
195 struct xfs_perag *pag, int flags),
Dave Chinner65d0f202010-09-24 18:40:15 +1000196 int flags)
Dave Chinner75f3cb12009-06-08 15:35:14 +0200197{
Dave Chinner16fd5362010-07-20 09:43:39 +1000198 struct xfs_perag *pag;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200199 int error = 0;
200 int last_error = 0;
201 xfs_agnumber_t ag;
202
Dave Chinner16fd5362010-07-20 09:43:39 +1000203 ag = 0;
Dave Chinner65d0f202010-09-24 18:40:15 +1000204 while ((pag = xfs_perag_get(mp, ag))) {
205 ag = pag->pag_agno + 1;
206 error = xfs_inode_ag_walk(mp, pag, execute, flags);
Dave Chinner5017e972010-01-11 11:47:40 +0000207 xfs_perag_put(pag);
Dave Chinner75f3cb12009-06-08 15:35:14 +0200208 if (error) {
209 last_error = error;
210 if (error == EFSCORRUPTED)
211 break;
212 }
213 }
214 return XFS_ERROR(last_error);
215}
216
Dave Chinner5a34d5c2009-06-08 15:35:03 +0200217STATIC int
Christoph Hellwig2af75df2008-10-30 17:14:53 +1100218xfs_sync_fsdata(
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000219 struct xfs_mount *mp)
Christoph Hellwig2af75df2008-10-30 17:14:53 +1100220{
221 struct xfs_buf *bp;
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000222 int error;
Christoph Hellwig2af75df2008-10-30 17:14:53 +1100223
224 /*
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000225 * If the buffer is pinned then push on the log so we won't get stuck
226 * waiting in the write for someone, maybe ourselves, to flush the log.
227 *
228 * Even though we just pushed the log above, we did not have the
229 * superblock buffer locked at that point so it can become pinned in
230 * between there and here.
Christoph Hellwig2af75df2008-10-30 17:14:53 +1100231 */
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000232 bp = xfs_getsb(mp, 0);
Chandra Seetharaman811e64c2011-07-22 23:40:27 +0000233 if (xfs_buf_ispinned(bp))
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000234 xfs_log_force(mp, 0);
Christoph Hellwigc2b006c2011-08-23 08:28:07 +0000235 error = xfs_bwrite(bp);
236 xfs_buf_relse(bp);
237 return error;
Christoph Hellwig2af75df2008-10-30 17:14:53 +1100238}
239
David Chinnerfe4fa4b2008-10-30 17:06:08 +1100240/*
David Chinnera4e4c4f2008-10-30 17:16:11 +1100241 * When remounting a filesystem read-only or freezing the filesystem, we have
242 * two phases to execute. This first phase is syncing the data before we
243 * quiesce the filesystem, and the second is flushing all the inodes out after
244 * we've waited for all the transactions created by the first phase to
245 * complete. The second phase ensures that the inodes are written to their
246 * location on disk rather than just existing in transactions in the log. This
247 * means after a quiesce there is no log replay required to write the inodes to
248 * disk (this is the main difference between a sync and a quiesce).
249 */
250/*
251 * First stage of freeze - no writers will make progress now we are here,
David Chinnere9f1c6e2008-10-30 17:15:50 +1100252 * so we flush delwri and delalloc buffers here, then wait for all I/O to
253 * complete. Data is frozen at that point. Metadata is not frozen,
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000254 * transactions can still occur here so don't bother emptying the AIL
David Chinnera4e4c4f2008-10-30 17:16:11 +1100255 * because it'll just get dirty again.
David Chinnere9f1c6e2008-10-30 17:15:50 +1100256 */
257int
258xfs_quiesce_data(
259 struct xfs_mount *mp)
260{
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000261 int error, error2 = 0;
David Chinnere9f1c6e2008-10-30 17:15:50 +1100262
Christoph Hellwig34625c62011-12-06 21:58:12 +0000263 /* force out the log */
Christoph Hellwig33b8f7c2011-07-08 14:34:39 +0200264 xfs_log_force(mp, XFS_LOG_SYNC);
265
David Chinnera4e4c4f2008-10-30 17:16:11 +1100266 /* write superblock and hoover up shutdown errors */
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000267 error = xfs_sync_fsdata(mp);
268
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000269 /* mark the log as covered if needed */
270 if (xfs_log_need_covered(mp))
Dave Chinnerc58efdb2011-01-04 04:49:29 +0000271 error2 = xfs_fs_log_dummy(mp);
David Chinnere9f1c6e2008-10-30 17:15:50 +1100272
Christoph Hellwigdf308bc2010-03-12 10:59:16 +0000273 return error ? error : error2;
David Chinnere9f1c6e2008-10-30 17:15:50 +1100274}
275
David Chinner76bf1052008-10-30 17:16:21 +1100276/*
277 * Second stage of a quiesce. The data is already synced, now we have to take
278 * care of the metadata. New transactions are already blocked, so we need to
Lucas De Marchi25985ed2011-03-30 22:57:33 -0300279 * wait for any remaining transactions to drain out before proceeding.
Dave Chinner7f7bebe2012-10-08 21:56:01 +1100280 *
281 * Note: this stops background sync work - the callers must ensure it is started
282 * again when appropriate.
David Chinner76bf1052008-10-30 17:16:21 +1100283 */
284void
285xfs_quiesce_attr(
286 struct xfs_mount *mp)
287{
288 int error = 0;
289
290 /* wait for all modifications to complete */
291 while (atomic_read(&mp->m_active_trans) > 0)
292 delay(100);
293
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000294 /* reclaim inodes to do any IO before the freeze completes */
295 xfs_reclaim_inodes(mp, 0);
296 xfs_reclaim_inodes(mp, SYNC_WAIT);
297
298 /* flush all pending changes from the AIL */
299 xfs_ail_push_all_sync(mp->m_ail);
David Chinner76bf1052008-10-30 17:16:21 +1100300
Dave Chinnerf661f1e2012-10-08 21:56:02 +1100301 /* stop background log work */
302 cancel_delayed_work_sync(&mp->m_log->l_work);
Dave Chinner7f7bebe2012-10-08 21:56:01 +1100303
Felix Blyakher5e106572009-01-22 21:34:05 -0600304 /*
305 * Just warn here till VFS can correctly support
306 * read-only remount without racing.
307 */
308 WARN_ON(atomic_read(&mp->m_active_trans) != 0);
David Chinner76bf1052008-10-30 17:16:21 +1100309
310 /* Push the superblock and write an unmount record */
Chandra Seetharamanadab0f62011-06-29 22:10:14 +0000311 error = xfs_log_sbcount(mp);
David Chinner76bf1052008-10-30 17:16:21 +1100312 if (error)
Dave Chinner4f107002011-03-07 10:00:35 +1100313 xfs_warn(mp, "xfs_attr_quiesce: failed to log sb changes. "
David Chinner76bf1052008-10-30 17:16:21 +1100314 "Frozen image may not be consistent.");
315 xfs_log_unmount_write(mp);
Christoph Hellwig211e4d42012-04-23 15:58:34 +1000316
317 /*
318 * At this point we might have modified the superblock again and thus
319 * added an item to the AIL, thus flush it again.
320 */
321 xfs_ail_push_all_sync(mp->m_ail);
Mark Tinguely9a57fa82012-07-24 10:59:19 -0500322
323 /*
324 * The superblock buffer is uncached and xfsaild_push() will lock and
325 * set the XBF_ASYNC flag on the buffer. We cannot do xfs_buf_iowait()
326 * here but a lock on the superblock buffer will block until iodone()
327 * has completed.
328 */
329 xfs_buf_lock(mp->m_sb_bp);
330 xfs_buf_unlock(mp->m_sb_bp);
David Chinner76bf1052008-10-30 17:16:21 +1100331}
332
Dave Chinner89e4cb52011-04-08 12:45:07 +1000333/*
Dave Chinnera7b339f2011-04-08 12:45:07 +1000334 * Queue a new inode reclaim pass if there are reclaimable inodes and there
335 * isn't a reclaim pass already in progress. By default it runs every 5s based
Dave Chinner58896082012-10-08 21:56:05 +1100336 * on the xfs periodic sync default of 30s. Perhaps this should have it's own
Dave Chinnera7b339f2011-04-08 12:45:07 +1000337 * tunable, but that can be done if this method proves to be ineffective or too
338 * aggressive.
339 */
340static void
Dave Chinner58896082012-10-08 21:56:05 +1100341xfs_reclaim_work_queue(
Dave Chinnera7b339f2011-04-08 12:45:07 +1000342 struct xfs_mount *mp)
David Chinnera167b172008-10-30 17:06:18 +1100343{
David Chinnera167b172008-10-30 17:06:18 +1100344
Dave Chinnera7b339f2011-04-08 12:45:07 +1000345 rcu_read_lock();
346 if (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_RECLAIM_TAG)) {
Dave Chinner58896082012-10-08 21:56:05 +1100347 queue_delayed_work(mp->m_reclaim_workqueue, &mp->m_reclaim_work,
Dave Chinnera7b339f2011-04-08 12:45:07 +1000348 msecs_to_jiffies(xfs_syncd_centisecs / 6 * 10));
David Chinnera167b172008-10-30 17:06:18 +1100349 }
Dave Chinnera7b339f2011-04-08 12:45:07 +1000350 rcu_read_unlock();
351}
David Chinnera167b172008-10-30 17:06:18 +1100352
Dave Chinnera7b339f2011-04-08 12:45:07 +1000353/*
354 * This is a fast pass over the inode cache to try to get reclaim moving on as
355 * many inodes as possible in a short period of time. It kicks itself every few
356 * seconds, as well as being kicked by the inode cache shrinker when memory
357 * goes low. It scans as quickly as possible avoiding locked inodes or those
358 * already being flushed, and once done schedules a future pass.
359 */
Dave Chinner33c7a2b2012-10-08 21:55:59 +1100360void
Dave Chinnera7b339f2011-04-08 12:45:07 +1000361xfs_reclaim_worker(
362 struct work_struct *work)
363{
364 struct xfs_mount *mp = container_of(to_delayed_work(work),
365 struct xfs_mount, m_reclaim_work);
366
367 xfs_reclaim_inodes(mp, SYNC_TRYLOCK);
Dave Chinner58896082012-10-08 21:56:05 +1100368 xfs_reclaim_work_queue(mp);
Dave Chinnera7b339f2011-04-08 12:45:07 +1000369}
370
Christoph Hellwigbc990f52009-08-16 20:36:34 -0400371void
372__xfs_inode_set_reclaim_tag(
373 struct xfs_perag *pag,
374 struct xfs_inode *ip)
375{
376 radix_tree_tag_set(&pag->pag_ici_root,
377 XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino),
378 XFS_ICI_RECLAIM_TAG);
Dave Chinner16fd5362010-07-20 09:43:39 +1000379
380 if (!pag->pag_ici_reclaimable) {
381 /* propagate the reclaim tag up into the perag radix tree */
382 spin_lock(&ip->i_mount->m_perag_lock);
383 radix_tree_tag_set(&ip->i_mount->m_perag_tree,
384 XFS_INO_TO_AGNO(ip->i_mount, ip->i_ino),
385 XFS_ICI_RECLAIM_TAG);
386 spin_unlock(&ip->i_mount->m_perag_lock);
Dave Chinnera7b339f2011-04-08 12:45:07 +1000387
388 /* schedule periodic background inode reclaim */
Dave Chinner58896082012-10-08 21:56:05 +1100389 xfs_reclaim_work_queue(ip->i_mount);
Dave Chinnera7b339f2011-04-08 12:45:07 +1000390
Dave Chinner16fd5362010-07-20 09:43:39 +1000391 trace_xfs_perag_set_reclaim(ip->i_mount, pag->pag_agno,
392 -1, _RET_IP_);
393 }
Dave Chinner9bf729c2010-04-29 09:55:50 +1000394 pag->pag_ici_reclaimable++;
Christoph Hellwigbc990f52009-08-16 20:36:34 -0400395}
396
David Chinner11654512008-10-30 17:37:49 +1100397/*
398 * We set the inode flag atomically with the radix tree tag.
399 * Once we get tag lookups on the radix tree, this inode flag
400 * can go away.
401 */
David Chinner396beb82008-10-30 17:37:26 +1100402void
403xfs_inode_set_reclaim_tag(
404 xfs_inode_t *ip)
405{
Dave Chinner5017e972010-01-11 11:47:40 +0000406 struct xfs_mount *mp = ip->i_mount;
407 struct xfs_perag *pag;
David Chinner396beb82008-10-30 17:37:26 +1100408
Dave Chinner5017e972010-01-11 11:47:40 +0000409 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
Dave Chinner1a427ab2010-12-16 17:08:41 +1100410 spin_lock(&pag->pag_ici_lock);
David Chinner396beb82008-10-30 17:37:26 +1100411 spin_lock(&ip->i_flags_lock);
Christoph Hellwigbc990f52009-08-16 20:36:34 -0400412 __xfs_inode_set_reclaim_tag(pag, ip);
David Chinner11654512008-10-30 17:37:49 +1100413 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
David Chinner396beb82008-10-30 17:37:26 +1100414 spin_unlock(&ip->i_flags_lock);
Dave Chinner1a427ab2010-12-16 17:08:41 +1100415 spin_unlock(&pag->pag_ici_lock);
Dave Chinner5017e972010-01-11 11:47:40 +0000416 xfs_perag_put(pag);
David Chinner396beb82008-10-30 17:37:26 +1100417}
418
Johannes Weiner081003f2010-10-01 07:43:54 +0000419STATIC void
420__xfs_inode_clear_reclaim(
David Chinner396beb82008-10-30 17:37:26 +1100421 xfs_perag_t *pag,
422 xfs_inode_t *ip)
423{
Dave Chinner9bf729c2010-04-29 09:55:50 +1000424 pag->pag_ici_reclaimable--;
Dave Chinner16fd5362010-07-20 09:43:39 +1000425 if (!pag->pag_ici_reclaimable) {
426 /* clear the reclaim tag from the perag radix tree */
427 spin_lock(&ip->i_mount->m_perag_lock);
428 radix_tree_tag_clear(&ip->i_mount->m_perag_tree,
429 XFS_INO_TO_AGNO(ip->i_mount, ip->i_ino),
430 XFS_ICI_RECLAIM_TAG);
431 spin_unlock(&ip->i_mount->m_perag_lock);
432 trace_xfs_perag_clear_reclaim(ip->i_mount, pag->pag_agno,
433 -1, _RET_IP_);
434 }
David Chinner396beb82008-10-30 17:37:26 +1100435}
436
Johannes Weiner081003f2010-10-01 07:43:54 +0000437void
438__xfs_inode_clear_reclaim_tag(
439 xfs_mount_t *mp,
440 xfs_perag_t *pag,
441 xfs_inode_t *ip)
442{
443 radix_tree_tag_clear(&pag->pag_ici_root,
444 XFS_INO_TO_AGINO(mp, ip->i_ino), XFS_ICI_RECLAIM_TAG);
445 __xfs_inode_clear_reclaim(pag, ip);
446}
447
Dave Chinner777df5a2010-02-06 12:37:26 +1100448/*
Dave Chinnere3a20c02010-09-24 19:51:50 +1000449 * Grab the inode for reclaim exclusively.
450 * Return 0 if we grabbed it, non-zero otherwise.
451 */
452STATIC int
453xfs_reclaim_inode_grab(
454 struct xfs_inode *ip,
455 int flags)
456{
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100457 ASSERT(rcu_read_lock_held());
458
459 /* quick check for stale RCU freed inode */
460 if (!ip->i_ino)
461 return 1;
Dave Chinnere3a20c02010-09-24 19:51:50 +1000462
463 /*
Christoph Hellwig474fce02011-12-18 20:00:09 +0000464 * If we are asked for non-blocking operation, do unlocked checks to
465 * see if the inode already is being flushed or in reclaim to avoid
466 * lock traffic.
Dave Chinnere3a20c02010-09-24 19:51:50 +1000467 */
468 if ((flags & SYNC_TRYLOCK) &&
Christoph Hellwig474fce02011-12-18 20:00:09 +0000469 __xfs_iflags_test(ip, XFS_IFLOCK | XFS_IRECLAIM))
Dave Chinnere3a20c02010-09-24 19:51:50 +1000470 return 1;
Dave Chinnere3a20c02010-09-24 19:51:50 +1000471
472 /*
473 * The radix tree lock here protects a thread in xfs_iget from racing
474 * with us starting reclaim on the inode. Once we have the
475 * XFS_IRECLAIM flag set it will not touch us.
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100476 *
477 * Due to RCU lookup, we may find inodes that have been freed and only
478 * have XFS_IRECLAIM set. Indeed, we may see reallocated inodes that
479 * aren't candidates for reclaim at all, so we must check the
480 * XFS_IRECLAIMABLE is set first before proceeding to reclaim.
Dave Chinnere3a20c02010-09-24 19:51:50 +1000481 */
482 spin_lock(&ip->i_flags_lock);
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100483 if (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) ||
484 __xfs_iflags_test(ip, XFS_IRECLAIM)) {
485 /* not a reclaim candidate. */
Dave Chinnere3a20c02010-09-24 19:51:50 +1000486 spin_unlock(&ip->i_flags_lock);
487 return 1;
488 }
489 __xfs_iflags_set(ip, XFS_IRECLAIM);
490 spin_unlock(&ip->i_flags_lock);
491 return 0;
492}
493
494/*
Christoph Hellwig8a480882012-04-23 15:58:35 +1000495 * Inodes in different states need to be treated differently. The following
496 * table lists the inode states and the reclaim actions necessary:
Dave Chinner777df5a2010-02-06 12:37:26 +1100497 *
498 * inode state iflush ret required action
499 * --------------- ---------- ---------------
500 * bad - reclaim
501 * shutdown EIO unpin and reclaim
502 * clean, unpinned 0 reclaim
503 * stale, unpinned 0 reclaim
Dave Chinnerc8543632010-02-06 12:39:36 +1100504 * clean, pinned(*) 0 requeue
505 * stale, pinned EAGAIN requeue
Christoph Hellwig8a480882012-04-23 15:58:35 +1000506 * dirty, async - requeue
507 * dirty, sync 0 reclaim
Dave Chinner777df5a2010-02-06 12:37:26 +1100508 *
509 * (*) dgc: I don't think the clean, pinned state is possible but it gets
510 * handled anyway given the order of checks implemented.
511 *
Dave Chinnerc8543632010-02-06 12:39:36 +1100512 * Also, because we get the flush lock first, we know that any inode that has
513 * been flushed delwri has had the flush completed by the time we check that
Christoph Hellwig8a480882012-04-23 15:58:35 +1000514 * the inode is clean.
Dave Chinnerc8543632010-02-06 12:39:36 +1100515 *
Christoph Hellwig8a480882012-04-23 15:58:35 +1000516 * Note that because the inode is flushed delayed write by AIL pushing, the
517 * flush lock may already be held here and waiting on it can result in very
518 * long latencies. Hence for sync reclaims, where we wait on the flush lock,
519 * the caller should push the AIL first before trying to reclaim inodes to
520 * minimise the amount of time spent waiting. For background relaim, we only
521 * bother to reclaim clean inodes anyway.
Dave Chinnerc8543632010-02-06 12:39:36 +1100522 *
Dave Chinner777df5a2010-02-06 12:37:26 +1100523 * Hence the order of actions after gaining the locks should be:
524 * bad => reclaim
525 * shutdown => unpin and reclaim
Christoph Hellwig8a480882012-04-23 15:58:35 +1000526 * pinned, async => requeue
Dave Chinnerc8543632010-02-06 12:39:36 +1100527 * pinned, sync => unpin
Dave Chinner777df5a2010-02-06 12:37:26 +1100528 * stale => reclaim
529 * clean => reclaim
Christoph Hellwig8a480882012-04-23 15:58:35 +1000530 * dirty, async => requeue
Dave Chinnerc8543632010-02-06 12:39:36 +1100531 * dirty, sync => flush, wait and reclaim
Dave Chinner777df5a2010-02-06 12:37:26 +1100532 */
Dave Chinner75f3cb12009-06-08 15:35:14 +0200533STATIC int
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000534xfs_reclaim_inode(
Dave Chinner75f3cb12009-06-08 15:35:14 +0200535 struct xfs_inode *ip,
536 struct xfs_perag *pag,
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000537 int sync_mode)
David Chinner7a3be022008-10-30 17:37:37 +1100538{
Christoph Hellwig4c468192012-04-23 15:58:36 +1000539 struct xfs_buf *bp = NULL;
540 int error;
Dave Chinner777df5a2010-02-06 12:37:26 +1100541
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100542restart:
543 error = 0;
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000544 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc8543632010-02-06 12:39:36 +1100545 if (!xfs_iflock_nowait(ip)) {
546 if (!(sync_mode & SYNC_WAIT))
547 goto out;
548 xfs_iflock(ip);
549 }
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000550
Dave Chinner777df5a2010-02-06 12:37:26 +1100551 if (is_bad_inode(VFS_I(ip)))
552 goto reclaim;
553 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
554 xfs_iunpin_wait(ip);
Dave Chinner04913fd2012-04-23 15:58:41 +1000555 xfs_iflush_abort(ip, false);
Dave Chinner777df5a2010-02-06 12:37:26 +1100556 goto reclaim;
557 }
Dave Chinnerc8543632010-02-06 12:39:36 +1100558 if (xfs_ipincount(ip)) {
Christoph Hellwig8a480882012-04-23 15:58:35 +1000559 if (!(sync_mode & SYNC_WAIT))
560 goto out_ifunlock;
Dave Chinner777df5a2010-02-06 12:37:26 +1100561 xfs_iunpin_wait(ip);
Dave Chinnerc8543632010-02-06 12:39:36 +1100562 }
Dave Chinner777df5a2010-02-06 12:37:26 +1100563 if (xfs_iflags_test(ip, XFS_ISTALE))
564 goto reclaim;
565 if (xfs_inode_clean(ip))
566 goto reclaim;
567
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100568 /*
Christoph Hellwig8a480882012-04-23 15:58:35 +1000569 * Never flush out dirty data during non-blocking reclaim, as it would
570 * just contend with AIL pushing trying to do the same job.
571 */
572 if (!(sync_mode & SYNC_WAIT))
573 goto out_ifunlock;
574
575 /*
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100576 * Now we have an inode that needs flushing.
577 *
Christoph Hellwig4c468192012-04-23 15:58:36 +1000578 * Note that xfs_iflush will never block on the inode buffer lock, as
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100579 * xfs_ifree_cluster() can lock the inode buffer before it locks the
Christoph Hellwig4c468192012-04-23 15:58:36 +1000580 * ip->i_lock, and we are doing the exact opposite here. As a result,
Christoph Hellwig475ee412012-07-03 12:21:22 -0400581 * doing a blocking xfs_imap_to_bp() to get the cluster buffer would
582 * result in an ABBA deadlock with xfs_ifree_cluster().
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100583 *
584 * As xfs_ifree_cluser() must gather all inodes that are active in the
585 * cache to mark them stale, if we hit this case we don't actually want
586 * to do IO here - we want the inode marked stale so we can simply
Christoph Hellwig4c468192012-04-23 15:58:36 +1000587 * reclaim it. Hence if we get an EAGAIN error here, just unlock the
588 * inode, back off and try again. Hopefully the next pass through will
589 * see the stale flag set on the inode.
Dave Chinner1bfd8d02011-03-26 09:13:55 +1100590 */
Christoph Hellwig4c468192012-04-23 15:58:36 +1000591 error = xfs_iflush(ip, &bp);
Christoph Hellwig8a480882012-04-23 15:58:35 +1000592 if (error == EAGAIN) {
593 xfs_iunlock(ip, XFS_ILOCK_EXCL);
594 /* backoff longer than in xfs_ifree_cluster */
595 delay(2);
596 goto restart;
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000597 }
Dave Chinnerc8543632010-02-06 12:39:36 +1100598
Christoph Hellwig4c468192012-04-23 15:58:36 +1000599 if (!error) {
600 error = xfs_bwrite(bp);
601 xfs_buf_relse(bp);
602 }
603
604 xfs_iflock(ip);
Dave Chinner777df5a2010-02-06 12:37:26 +1100605reclaim:
606 xfs_ifunlock(ip);
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000607 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner2f11fea2010-07-20 17:53:25 +1000608
609 XFS_STATS_INC(xs_ig_reclaims);
610 /*
611 * Remove the inode from the per-AG radix tree.
612 *
613 * Because radix_tree_delete won't complain even if the item was never
614 * added to the tree assert that it's been there before to catch
615 * problems with the inode life time early on.
616 */
Dave Chinner1a427ab2010-12-16 17:08:41 +1100617 spin_lock(&pag->pag_ici_lock);
Dave Chinner2f11fea2010-07-20 17:53:25 +1000618 if (!radix_tree_delete(&pag->pag_ici_root,
619 XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino)))
620 ASSERT(0);
Johannes Weiner081003f2010-10-01 07:43:54 +0000621 __xfs_inode_clear_reclaim(pag, ip);
Dave Chinner1a427ab2010-12-16 17:08:41 +1100622 spin_unlock(&pag->pag_ici_lock);
Dave Chinner2f11fea2010-07-20 17:53:25 +1000623
624 /*
625 * Here we do an (almost) spurious inode lock in order to coordinate
626 * with inode cache radix tree lookups. This is because the lookup
627 * can reference the inodes in the cache without taking references.
628 *
629 * We make that OK here by ensuring that we wait until the inode is
Alex Elderad637a12012-02-16 22:01:00 +0000630 * unlocked after the lookup before we go ahead and free it.
Dave Chinner2f11fea2010-07-20 17:53:25 +1000631 */
Alex Elderad637a12012-02-16 22:01:00 +0000632 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner2f11fea2010-07-20 17:53:25 +1000633 xfs_qm_dqdetach(ip);
Alex Elderad637a12012-02-16 22:01:00 +0000634 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner2f11fea2010-07-20 17:53:25 +1000635
636 xfs_inode_free(ip);
Alex Elderad637a12012-02-16 22:01:00 +0000637 return error;
Christoph Hellwig8a480882012-04-23 15:58:35 +1000638
639out_ifunlock:
640 xfs_ifunlock(ip);
641out:
642 xfs_iflags_clear(ip, XFS_IRECLAIM);
643 xfs_iunlock(ip, XFS_ILOCK_EXCL);
644 /*
645 * We could return EAGAIN here to make reclaim rescan the inode tree in
646 * a short while. However, this just burns CPU time scanning the tree
Dave Chinner58896082012-10-08 21:56:05 +1100647 * waiting for IO to complete and the reclaim work never goes back to
648 * the idle state. Instead, return 0 to let the next scheduled
649 * background reclaim attempt to reclaim the inode again.
Christoph Hellwig8a480882012-04-23 15:58:35 +1000650 */
651 return 0;
David Chinner7a3be022008-10-30 17:37:37 +1100652}
653
Dave Chinner65d0f202010-09-24 18:40:15 +1000654/*
655 * Walk the AGs and reclaim the inodes in them. Even if the filesystem is
656 * corrupted, we still want to try to reclaim all the inodes. If we don't,
657 * then a shut down during filesystem unmount reclaim walk leak all the
658 * unreclaimed inodes.
659 */
660int
661xfs_reclaim_inodes_ag(
662 struct xfs_mount *mp,
663 int flags,
664 int *nr_to_scan)
665{
666 struct xfs_perag *pag;
667 int error = 0;
668 int last_error = 0;
669 xfs_agnumber_t ag;
Dave Chinner69b491c2010-09-27 11:09:51 +1000670 int trylock = flags & SYNC_TRYLOCK;
671 int skipped;
Dave Chinner65d0f202010-09-24 18:40:15 +1000672
Dave Chinner69b491c2010-09-27 11:09:51 +1000673restart:
Dave Chinner65d0f202010-09-24 18:40:15 +1000674 ag = 0;
Dave Chinner69b491c2010-09-27 11:09:51 +1000675 skipped = 0;
Dave Chinner65d0f202010-09-24 18:40:15 +1000676 while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) {
677 unsigned long first_index = 0;
678 int done = 0;
Dave Chinnere3a20c02010-09-24 19:51:50 +1000679 int nr_found = 0;
Dave Chinner65d0f202010-09-24 18:40:15 +1000680
681 ag = pag->pag_agno + 1;
682
Dave Chinner69b491c2010-09-27 11:09:51 +1000683 if (trylock) {
684 if (!mutex_trylock(&pag->pag_ici_reclaim_lock)) {
685 skipped++;
Dave Chinnerf83282a2010-11-08 08:55:04 +0000686 xfs_perag_put(pag);
Dave Chinner69b491c2010-09-27 11:09:51 +1000687 continue;
688 }
689 first_index = pag->pag_ici_reclaim_cursor;
690 } else
691 mutex_lock(&pag->pag_ici_reclaim_lock);
692
Dave Chinner65d0f202010-09-24 18:40:15 +1000693 do {
Dave Chinnere3a20c02010-09-24 19:51:50 +1000694 struct xfs_inode *batch[XFS_LOOKUP_BATCH];
695 int i;
Dave Chinner65d0f202010-09-24 18:40:15 +1000696
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100697 rcu_read_lock();
Dave Chinnere3a20c02010-09-24 19:51:50 +1000698 nr_found = radix_tree_gang_lookup_tag(
699 &pag->pag_ici_root,
700 (void **)batch, first_index,
701 XFS_LOOKUP_BATCH,
Dave Chinner65d0f202010-09-24 18:40:15 +1000702 XFS_ICI_RECLAIM_TAG);
703 if (!nr_found) {
Dave Chinnerb2232212011-05-06 02:54:04 +0000704 done = 1;
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100705 rcu_read_unlock();
Dave Chinner65d0f202010-09-24 18:40:15 +1000706 break;
707 }
708
709 /*
Dave Chinnere3a20c02010-09-24 19:51:50 +1000710 * Grab the inodes before we drop the lock. if we found
711 * nothing, nr == 0 and the loop will be skipped.
Dave Chinner65d0f202010-09-24 18:40:15 +1000712 */
Dave Chinnere3a20c02010-09-24 19:51:50 +1000713 for (i = 0; i < nr_found; i++) {
714 struct xfs_inode *ip = batch[i];
Dave Chinner65d0f202010-09-24 18:40:15 +1000715
Dave Chinnere3a20c02010-09-24 19:51:50 +1000716 if (done || xfs_reclaim_inode_grab(ip, flags))
717 batch[i] = NULL;
Dave Chinner65d0f202010-09-24 18:40:15 +1000718
Dave Chinnere3a20c02010-09-24 19:51:50 +1000719 /*
720 * Update the index for the next lookup. Catch
721 * overflows into the next AG range which can
722 * occur if we have inodes in the last block of
723 * the AG and we are currently pointing to the
724 * last inode.
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100725 *
726 * Because we may see inodes that are from the
727 * wrong AG due to RCU freeing and
728 * reallocation, only update the index if it
729 * lies in this AG. It was a race that lead us
730 * to see this inode, so another lookup from
731 * the same index will not find it again.
Dave Chinnere3a20c02010-09-24 19:51:50 +1000732 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100733 if (XFS_INO_TO_AGNO(mp, ip->i_ino) !=
734 pag->pag_agno)
735 continue;
Dave Chinnere3a20c02010-09-24 19:51:50 +1000736 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
737 if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
738 done = 1;
739 }
740
741 /* unlock now we've grabbed the inodes. */
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100742 rcu_read_unlock();
Dave Chinnere3a20c02010-09-24 19:51:50 +1000743
744 for (i = 0; i < nr_found; i++) {
745 if (!batch[i])
746 continue;
747 error = xfs_reclaim_inode(batch[i], pag, flags);
748 if (error && last_error != EFSCORRUPTED)
749 last_error = error;
750 }
751
752 *nr_to_scan -= XFS_LOOKUP_BATCH;
753
Dave Chinner8daaa832011-07-08 14:14:46 +1000754 cond_resched();
755
Dave Chinnere3a20c02010-09-24 19:51:50 +1000756 } while (nr_found && !done && *nr_to_scan > 0);
Dave Chinner65d0f202010-09-24 18:40:15 +1000757
Dave Chinner69b491c2010-09-27 11:09:51 +1000758 if (trylock && !done)
759 pag->pag_ici_reclaim_cursor = first_index;
760 else
761 pag->pag_ici_reclaim_cursor = 0;
762 mutex_unlock(&pag->pag_ici_reclaim_lock);
Dave Chinner65d0f202010-09-24 18:40:15 +1000763 xfs_perag_put(pag);
764 }
Dave Chinner69b491c2010-09-27 11:09:51 +1000765
766 /*
767 * if we skipped any AG, and we still have scan count remaining, do
768 * another pass this time using blocking reclaim semantics (i.e
769 * waiting on the reclaim locks and ignoring the reclaim cursors). This
770 * ensure that when we get more reclaimers than AGs we block rather
771 * than spin trying to execute reclaim.
772 */
Dave Chinner8daaa832011-07-08 14:14:46 +1000773 if (skipped && (flags & SYNC_WAIT) && *nr_to_scan > 0) {
Dave Chinner69b491c2010-09-27 11:09:51 +1000774 trylock = 0;
775 goto restart;
776 }
Dave Chinner65d0f202010-09-24 18:40:15 +1000777 return XFS_ERROR(last_error);
778}
779
David Chinnerfce08f22008-10-30 17:37:03 +1100780int
David Chinner1dc33182008-10-30 17:37:15 +1100781xfs_reclaim_inodes(
David Chinnerfce08f22008-10-30 17:37:03 +1100782 xfs_mount_t *mp,
David Chinnerfce08f22008-10-30 17:37:03 +1100783 int mode)
784{
Dave Chinner65d0f202010-09-24 18:40:15 +1000785 int nr_to_scan = INT_MAX;
786
787 return xfs_reclaim_inodes_ag(mp, mode, &nr_to_scan);
Dave Chinner9bf729c2010-04-29 09:55:50 +1000788}
789
790/*
Dave Chinner8daaa832011-07-08 14:14:46 +1000791 * Scan a certain number of inodes for reclaim.
Dave Chinnera7b339f2011-04-08 12:45:07 +1000792 *
793 * When called we make sure that there is a background (fast) inode reclaim in
Dave Chinner8daaa832011-07-08 14:14:46 +1000794 * progress, while we will throttle the speed of reclaim via doing synchronous
Dave Chinnera7b339f2011-04-08 12:45:07 +1000795 * reclaim of inodes. That means if we come across dirty inodes, we wait for
796 * them to be cleaned, which we hope will not be very long due to the
797 * background walker having already kicked the IO off on those dirty inodes.
Dave Chinner9bf729c2010-04-29 09:55:50 +1000798 */
Dave Chinner8daaa832011-07-08 14:14:46 +1000799void
800xfs_reclaim_inodes_nr(
801 struct xfs_mount *mp,
802 int nr_to_scan)
Dave Chinner9bf729c2010-04-29 09:55:50 +1000803{
Dave Chinner8daaa832011-07-08 14:14:46 +1000804 /* kick background reclaimer and push the AIL */
Dave Chinner58896082012-10-08 21:56:05 +1100805 xfs_reclaim_work_queue(mp);
Dave Chinner8daaa832011-07-08 14:14:46 +1000806 xfs_ail_push_all(mp->m_ail);
Dave Chinner9bf729c2010-04-29 09:55:50 +1000807
Dave Chinner8daaa832011-07-08 14:14:46 +1000808 xfs_reclaim_inodes_ag(mp, SYNC_TRYLOCK | SYNC_WAIT, &nr_to_scan);
809}
Dave Chinnera7b339f2011-04-08 12:45:07 +1000810
Dave Chinner8daaa832011-07-08 14:14:46 +1000811/*
812 * Return the number of reclaimable inodes in the filesystem for
813 * the shrinker to determine how much to reclaim.
814 */
815int
816xfs_reclaim_inodes_count(
817 struct xfs_mount *mp)
818{
819 struct xfs_perag *pag;
820 xfs_agnumber_t ag = 0;
821 int reclaimable = 0;
Dave Chinner9bf729c2010-04-29 09:55:50 +1000822
Dave Chinner65d0f202010-09-24 18:40:15 +1000823 while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) {
824 ag = pag->pag_agno + 1;
Dave Chinner70e60ce2010-07-20 08:07:02 +1000825 reclaimable += pag->pag_ici_reclaimable;
826 xfs_perag_put(pag);
Dave Chinner9bf729c2010-04-29 09:55:50 +1000827 }
Dave Chinner9bf729c2010-04-29 09:55:50 +1000828 return reclaimable;
829}
830