blob: 9deff136c5b946c92b4be3530c9a2e2ffd016253 [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"
Dave Chinner6ca1c902013-08-12 20:49:26 +100020#include "xfs_format.h"
Dave Chinner239880e2013-10-23 10:50:10 +110021#include "xfs_log_format.h"
22#include "xfs_trans_resv.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110023#include "xfs_sb.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110024#include "xfs_mount.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110025#include "xfs_inode.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110026#include "xfs_error.h"
Dave Chinner239880e2013-10-23 10:50:10 +110027#include "xfs_trans.h"
28#include "xfs_trans_priv.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110029#include "xfs_inode_item.h"
Christoph Hellwig7d095252009-06-08 15:33:32 +020030#include "xfs_quota.h"
Christoph Hellwig0b1b2132009-12-14 23:14:59 +000031#include "xfs_trace.h"
Dave Chinner6d8b79c2012-10-08 21:56:09 +110032#include "xfs_icache.h"
Dave Chinnerc24b5df2013-08-12 20:49:45 +100033#include "xfs_bmap_util.h"
Brian Fosterdc06f3982014-07-24 19:49:28 +100034#include "xfs_dquot_item.h"
35#include "xfs_dquot.h"
Darrick J. Wong83104d42016-10-03 09:11:46 -070036#include "xfs_reflink.h"
David Chinnerfe4fa4b2008-10-30 17:06:08 +110037
David Chinnera167b172008-10-30 17:06:18 +110038#include <linux/kthread.h>
39#include <linux/freezer.h>
Jeff Laytonf0e28282017-12-11 06:35:19 -050040#include <linux/iversion.h>
David Chinnera167b172008-10-30 17:06:18 +110041
Dave Chinner33479e02012-10-08 21:56:11 +110042/*
43 * Allocate and initialise an xfs_inode.
44 */
Dave Chinner638f44162013-08-30 10:23:45 +100045struct xfs_inode *
Dave Chinner33479e02012-10-08 21:56:11 +110046xfs_inode_alloc(
47 struct xfs_mount *mp,
48 xfs_ino_t ino)
49{
50 struct xfs_inode *ip;
51
52 /*
53 * if this didn't occur in transactions, we could use
54 * KM_MAYFAIL and return NULL here on ENOMEM. Set the
55 * code up to do this anyway.
56 */
57 ip = kmem_zone_alloc(xfs_inode_zone, KM_SLEEP);
58 if (!ip)
59 return NULL;
60 if (inode_init_always(mp->m_super, VFS_I(ip))) {
61 kmem_zone_free(xfs_inode_zone, ip);
62 return NULL;
63 }
64
Dave Chinnerc19b3b052016-02-09 16:54:58 +110065 /* VFS doesn't initialise i_mode! */
66 VFS_I(ip)->i_mode = 0;
67
Bill O'Donnellff6d6af2015-10-12 18:21:22 +110068 XFS_STATS_INC(mp, vn_active);
Dave Chinner33479e02012-10-08 21:56:11 +110069 ASSERT(atomic_read(&ip->i_pincount) == 0);
Dave Chinner33479e02012-10-08 21:56:11 +110070 ASSERT(!xfs_isiflocked(ip));
71 ASSERT(ip->i_ino == 0);
72
Dave Chinner33479e02012-10-08 21:56:11 +110073 /* initialise the xfs inode */
74 ip->i_ino = ino;
75 ip->i_mount = mp;
76 memset(&ip->i_imap, 0, sizeof(struct xfs_imap));
77 ip->i_afp = NULL;
Darrick J. Wong3993bae2016-10-03 09:11:32 -070078 ip->i_cowfp = NULL;
79 ip->i_cnextents = 0;
80 ip->i_cformat = XFS_DINODE_FMT_EXTENTS;
Dave Chinner33479e02012-10-08 21:56:11 +110081 memset(&ip->i_df, 0, sizeof(xfs_ifork_t));
82 ip->i_flags = 0;
83 ip->i_delayed_blks = 0;
Dave Chinnerf8d55aa0522016-02-09 16:54:58 +110084 memset(&ip->i_d, 0, sizeof(ip->i_d));
Dave Chinner33479e02012-10-08 21:56:11 +110085
86 return ip;
87}
88
89STATIC void
90xfs_inode_free_callback(
91 struct rcu_head *head)
92{
93 struct inode *inode = container_of(head, struct inode, i_rcu);
94 struct xfs_inode *ip = XFS_I(inode);
95
Dave Chinnerc19b3b052016-02-09 16:54:58 +110096 switch (VFS_I(ip)->i_mode & S_IFMT) {
Dave Chinner33479e02012-10-08 21:56:11 +110097 case S_IFREG:
98 case S_IFDIR:
99 case S_IFLNK:
100 xfs_idestroy_fork(ip, XFS_DATA_FORK);
101 break;
102 }
103
104 if (ip->i_afp)
105 xfs_idestroy_fork(ip, XFS_ATTR_FORK);
Darrick J. Wong3993bae2016-10-03 09:11:32 -0700106 if (ip->i_cowfp)
107 xfs_idestroy_fork(ip, XFS_COW_FORK);
Dave Chinner33479e02012-10-08 21:56:11 +1100108
109 if (ip->i_itemp) {
Dave Chinner22525c12018-05-09 07:47:34 -0700110 ASSERT(!test_bit(XFS_LI_IN_AIL,
111 &ip->i_itemp->ili_item.li_flags));
Dave Chinner33479e02012-10-08 21:56:11 +1100112 xfs_inode_item_destroy(ip);
113 ip->i_itemp = NULL;
114 }
115
Dave Chinner1f2dcfe2016-05-18 14:01:53 +1000116 kmem_zone_free(xfs_inode_zone, ip);
117}
118
Dave Chinner8a17d7d2016-05-18 14:09:12 +1000119static void
120__xfs_inode_free(
121 struct xfs_inode *ip)
122{
123 /* asserts to verify all state is correct here */
124 ASSERT(atomic_read(&ip->i_pincount) == 0);
Dave Chinner8a17d7d2016-05-18 14:09:12 +1000125 XFS_STATS_DEC(ip->i_mount, vn_active);
126
127 call_rcu(&VFS_I(ip)->i_rcu, xfs_inode_free_callback);
128}
129
Dave Chinner1f2dcfe2016-05-18 14:01:53 +1000130void
131xfs_inode_free(
132 struct xfs_inode *ip)
133{
Brian Foster98efe8a2016-11-10 08:23:22 +1100134 ASSERT(!xfs_isiflocked(ip));
135
Dave Chinner33479e02012-10-08 21:56:11 +1100136 /*
137 * Because we use RCU freeing we need to ensure the inode always
138 * appears to be reclaimed with an invalid inode number when in the
139 * free state. The ip->i_flags_lock provides the barrier against lookup
140 * races.
141 */
142 spin_lock(&ip->i_flags_lock);
143 ip->i_flags = XFS_IRECLAIM;
144 ip->i_ino = 0;
145 spin_unlock(&ip->i_flags_lock);
146
Dave Chinner8a17d7d2016-05-18 14:09:12 +1000147 __xfs_inode_free(ip);
Dave Chinner33479e02012-10-08 21:56:11 +1100148}
149
150/*
Dave Chinnerad438c42016-05-18 14:20:08 +1000151 * Queue a new inode reclaim pass if there are reclaimable inodes and there
152 * isn't a reclaim pass already in progress. By default it runs every 5s based
153 * on the xfs periodic sync default of 30s. Perhaps this should have it's own
154 * tunable, but that can be done if this method proves to be ineffective or too
155 * aggressive.
156 */
157static void
158xfs_reclaim_work_queue(
159 struct xfs_mount *mp)
160{
161
162 rcu_read_lock();
163 if (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_RECLAIM_TAG)) {
164 queue_delayed_work(mp->m_reclaim_workqueue, &mp->m_reclaim_work,
165 msecs_to_jiffies(xfs_syncd_centisecs / 6 * 10));
166 }
167 rcu_read_unlock();
168}
169
170/*
171 * This is a fast pass over the inode cache to try to get reclaim moving on as
172 * many inodes as possible in a short period of time. It kicks itself every few
173 * seconds, as well as being kicked by the inode cache shrinker when memory
174 * goes low. It scans as quickly as possible avoiding locked inodes or those
175 * already being flushed, and once done schedules a future pass.
176 */
177void
178xfs_reclaim_worker(
179 struct work_struct *work)
180{
181 struct xfs_mount *mp = container_of(to_delayed_work(work),
182 struct xfs_mount, m_reclaim_work);
183
184 xfs_reclaim_inodes(mp, SYNC_TRYLOCK);
185 xfs_reclaim_work_queue(mp);
186}
187
188static void
189xfs_perag_set_reclaim_tag(
190 struct xfs_perag *pag)
191{
192 struct xfs_mount *mp = pag->pag_mount;
193
Brian Foster95989c42017-06-08 08:23:07 -0700194 lockdep_assert_held(&pag->pag_ici_lock);
Dave Chinnerad438c42016-05-18 14:20:08 +1000195 if (pag->pag_ici_reclaimable++)
196 return;
197
198 /* propagate the reclaim tag up into the perag radix tree */
199 spin_lock(&mp->m_perag_lock);
200 radix_tree_tag_set(&mp->m_perag_tree, pag->pag_agno,
201 XFS_ICI_RECLAIM_TAG);
202 spin_unlock(&mp->m_perag_lock);
203
204 /* schedule periodic background inode reclaim */
205 xfs_reclaim_work_queue(mp);
206
207 trace_xfs_perag_set_reclaim(mp, pag->pag_agno, -1, _RET_IP_);
208}
209
210static void
211xfs_perag_clear_reclaim_tag(
212 struct xfs_perag *pag)
213{
214 struct xfs_mount *mp = pag->pag_mount;
215
Brian Foster95989c42017-06-08 08:23:07 -0700216 lockdep_assert_held(&pag->pag_ici_lock);
Dave Chinnerad438c42016-05-18 14:20:08 +1000217 if (--pag->pag_ici_reclaimable)
218 return;
219
220 /* clear the reclaim tag from the perag radix tree */
221 spin_lock(&mp->m_perag_lock);
222 radix_tree_tag_clear(&mp->m_perag_tree, pag->pag_agno,
223 XFS_ICI_RECLAIM_TAG);
224 spin_unlock(&mp->m_perag_lock);
225 trace_xfs_perag_clear_reclaim(mp, pag->pag_agno, -1, _RET_IP_);
226}
227
228
229/*
230 * We set the inode flag atomically with the radix tree tag.
231 * Once we get tag lookups on the radix tree, this inode flag
232 * can go away.
233 */
234void
235xfs_inode_set_reclaim_tag(
236 struct xfs_inode *ip)
237{
238 struct xfs_mount *mp = ip->i_mount;
239 struct xfs_perag *pag;
240
241 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
242 spin_lock(&pag->pag_ici_lock);
243 spin_lock(&ip->i_flags_lock);
244
245 radix_tree_tag_set(&pag->pag_ici_root, XFS_INO_TO_AGINO(mp, ip->i_ino),
246 XFS_ICI_RECLAIM_TAG);
247 xfs_perag_set_reclaim_tag(pag);
248 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
249
250 spin_unlock(&ip->i_flags_lock);
251 spin_unlock(&pag->pag_ici_lock);
252 xfs_perag_put(pag);
253}
254
255STATIC void
256xfs_inode_clear_reclaim_tag(
257 struct xfs_perag *pag,
258 xfs_ino_t ino)
259{
260 radix_tree_tag_clear(&pag->pag_ici_root,
261 XFS_INO_TO_AGINO(pag->pag_mount, ino),
262 XFS_ICI_RECLAIM_TAG);
263 xfs_perag_clear_reclaim_tag(pag);
264}
265
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700266static void
267xfs_inew_wait(
268 struct xfs_inode *ip)
269{
270 wait_queue_head_t *wq = bit_waitqueue(&ip->i_flags, __XFS_INEW_BIT);
271 DEFINE_WAIT_BIT(wait, &ip->i_flags, __XFS_INEW_BIT);
272
273 do {
Ingo Molnar21417132017-03-05 11:25:39 +0100274 prepare_to_wait(wq, &wait.wq_entry, TASK_UNINTERRUPTIBLE);
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700275 if (!xfs_iflags_test(ip, XFS_INEW))
276 break;
277 schedule();
278 } while (true);
Ingo Molnar21417132017-03-05 11:25:39 +0100279 finish_wait(wq, &wait.wq_entry);
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700280}
281
Dave Chinnerad438c42016-05-18 14:20:08 +1000282/*
Dave Chinner50997472016-02-09 16:54:58 +1100283 * When we recycle a reclaimable inode, we need to re-initialise the VFS inode
284 * part of the structure. This is made more complex by the fact we store
285 * information about the on-disk values in the VFS inode and so we can't just
Dave Chinner83e06f22016-02-09 16:54:58 +1100286 * overwrite the values unconditionally. Hence we save the parameters we
Dave Chinner50997472016-02-09 16:54:58 +1100287 * need to retain across reinitialisation, and rewrite them into the VFS inode
Dave Chinner83e06f22016-02-09 16:54:58 +1100288 * after reinitialisation even if it fails.
Dave Chinner50997472016-02-09 16:54:58 +1100289 */
290static int
291xfs_reinit_inode(
292 struct xfs_mount *mp,
293 struct inode *inode)
294{
295 int error;
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100296 uint32_t nlink = inode->i_nlink;
Dave Chinner9e9a2672016-02-09 16:54:58 +1100297 uint32_t generation = inode->i_generation;
Jeff Laytonf0e28282017-12-11 06:35:19 -0500298 uint64_t version = inode_peek_iversion(inode);
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100299 umode_t mode = inode->i_mode;
Amir Goldsteinacd1d712018-01-26 11:24:40 -0800300 dev_t dev = inode->i_rdev;
Dave Chinner50997472016-02-09 16:54:58 +1100301
302 error = inode_init_always(mp->m_super, inode);
303
Dave Chinner54d7b5c2016-02-09 16:54:58 +1100304 set_nlink(inode, nlink);
Dave Chinner9e9a2672016-02-09 16:54:58 +1100305 inode->i_generation = generation;
Jeff Laytonf0e28282017-12-11 06:35:19 -0500306 inode_set_iversion_queried(inode, version);
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100307 inode->i_mode = mode;
Amir Goldsteinacd1d712018-01-26 11:24:40 -0800308 inode->i_rdev = dev;
Dave Chinner50997472016-02-09 16:54:58 +1100309 return error;
310}
311
312/*
Dave Chinnerafca6c52018-04-17 17:17:34 -0700313 * If we are allocating a new inode, then check what was returned is
314 * actually a free, empty inode. If we are not allocating an inode,
315 * then check we didn't find a free inode.
316 *
317 * Returns:
318 * 0 if the inode free state matches the lookup context
319 * -ENOENT if the inode is free and we are not allocating
320 * -EFSCORRUPTED if there is any state mismatch at all
321 */
322static int
323xfs_iget_check_free_state(
324 struct xfs_inode *ip,
325 int flags)
326{
327 if (flags & XFS_IGET_CREATE) {
328 /* should be a free inode */
329 if (VFS_I(ip)->i_mode != 0) {
330 xfs_warn(ip->i_mount,
331"Corruption detected! Free inode 0x%llx not marked free! (mode 0x%x)",
332 ip->i_ino, VFS_I(ip)->i_mode);
333 return -EFSCORRUPTED;
334 }
335
336 if (ip->i_d.di_nblocks != 0) {
337 xfs_warn(ip->i_mount,
338"Corruption detected! Free inode 0x%llx has blocks allocated!",
339 ip->i_ino);
340 return -EFSCORRUPTED;
341 }
342 return 0;
343 }
344
345 /* should be an allocated inode */
346 if (VFS_I(ip)->i_mode == 0)
347 return -ENOENT;
348
349 return 0;
350}
351
352/*
Dave Chinner33479e02012-10-08 21:56:11 +1100353 * Check the validity of the inode we just found it the cache
354 */
355static int
356xfs_iget_cache_hit(
357 struct xfs_perag *pag,
358 struct xfs_inode *ip,
359 xfs_ino_t ino,
360 int flags,
361 int lock_flags) __releases(RCU)
362{
363 struct inode *inode = VFS_I(ip);
364 struct xfs_mount *mp = ip->i_mount;
365 int error;
366
367 /*
368 * check for re-use of an inode within an RCU grace period due to the
369 * radix tree nodes not being updated yet. We monitor for this by
370 * setting the inode number to zero before freeing the inode structure.
371 * If the inode has been reallocated and set up, then the inode number
372 * will not match, so check for that, too.
373 */
374 spin_lock(&ip->i_flags_lock);
375 if (ip->i_ino != ino) {
376 trace_xfs_iget_skip(ip);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100377 XFS_STATS_INC(mp, xs_ig_frecycle);
Dave Chinner24513372014-06-25 14:58:08 +1000378 error = -EAGAIN;
Dave Chinner33479e02012-10-08 21:56:11 +1100379 goto out_error;
380 }
381
382
383 /*
384 * If we are racing with another cache hit that is currently
385 * instantiating this inode or currently recycling it out of
386 * reclaimabe state, wait for the initialisation to complete
387 * before continuing.
388 *
389 * XXX(hch): eventually we should do something equivalent to
390 * wait_on_inode to wait for these flags to be cleared
391 * instead of polling for it.
392 */
393 if (ip->i_flags & (XFS_INEW|XFS_IRECLAIM)) {
394 trace_xfs_iget_skip(ip);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100395 XFS_STATS_INC(mp, xs_ig_frecycle);
Dave Chinner24513372014-06-25 14:58:08 +1000396 error = -EAGAIN;
Dave Chinner33479e02012-10-08 21:56:11 +1100397 goto out_error;
398 }
399
400 /*
Dave Chinnerafca6c52018-04-17 17:17:34 -0700401 * Check the inode free state is valid. This also detects lookup
402 * racing with unlinks.
Dave Chinner33479e02012-10-08 21:56:11 +1100403 */
Dave Chinnerafca6c52018-04-17 17:17:34 -0700404 error = xfs_iget_check_free_state(ip, flags);
405 if (error)
Dave Chinner33479e02012-10-08 21:56:11 +1100406 goto out_error;
Dave Chinner33479e02012-10-08 21:56:11 +1100407
408 /*
409 * If IRECLAIMABLE is set, we've torn down the VFS inode already.
410 * Need to carefully get it back into useable state.
411 */
412 if (ip->i_flags & XFS_IRECLAIMABLE) {
413 trace_xfs_iget_reclaim(ip);
414
Darrick J. Wong378f6812017-06-19 08:58:56 -0700415 if (flags & XFS_IGET_INCORE) {
416 error = -EAGAIN;
417 goto out_error;
418 }
419
Dave Chinner33479e02012-10-08 21:56:11 +1100420 /*
421 * We need to set XFS_IRECLAIM to prevent xfs_reclaim_inode
422 * from stomping over us while we recycle the inode. We can't
423 * clear the radix tree reclaimable tag yet as it requires
424 * pag_ici_lock to be held exclusive.
425 */
426 ip->i_flags |= XFS_IRECLAIM;
427
428 spin_unlock(&ip->i_flags_lock);
429 rcu_read_unlock();
430
Dave Chinner50997472016-02-09 16:54:58 +1100431 error = xfs_reinit_inode(mp, inode);
Dave Chinner33479e02012-10-08 21:56:11 +1100432 if (error) {
Brian Foster756baca2017-04-26 08:30:39 -0700433 bool wake;
Dave Chinner33479e02012-10-08 21:56:11 +1100434 /*
435 * Re-initializing the inode failed, and we are in deep
436 * trouble. Try to re-add it to the reclaim list.
437 */
438 rcu_read_lock();
439 spin_lock(&ip->i_flags_lock);
Brian Foster756baca2017-04-26 08:30:39 -0700440 wake = !!__xfs_iflags_test(ip, XFS_INEW);
Dave Chinner33479e02012-10-08 21:56:11 +1100441 ip->i_flags &= ~(XFS_INEW | XFS_IRECLAIM);
Brian Foster756baca2017-04-26 08:30:39 -0700442 if (wake)
443 wake_up_bit(&ip->i_flags, __XFS_INEW_BIT);
Dave Chinner33479e02012-10-08 21:56:11 +1100444 ASSERT(ip->i_flags & XFS_IRECLAIMABLE);
445 trace_xfs_iget_reclaim_fail(ip);
446 goto out_error;
447 }
448
449 spin_lock(&pag->pag_ici_lock);
450 spin_lock(&ip->i_flags_lock);
451
452 /*
453 * Clear the per-lifetime state in the inode as we are now
454 * effectively a new inode and need to return to the initial
455 * state before reuse occurs.
456 */
457 ip->i_flags &= ~XFS_IRECLAIM_RESET_FLAGS;
458 ip->i_flags |= XFS_INEW;
Dave Chinner545c0882016-05-18 14:11:41 +1000459 xfs_inode_clear_reclaim_tag(pag, ip->i_ino);
Dave Chinner33479e02012-10-08 21:56:11 +1100460 inode->i_state = I_NEW;
461
Christoph Hellwig65523212016-11-30 14:33:25 +1100462 ASSERT(!rwsem_is_locked(&inode->i_rwsem));
463 init_rwsem(&inode->i_rwsem);
Dave Chinner33479e02012-10-08 21:56:11 +1100464
465 spin_unlock(&ip->i_flags_lock);
466 spin_unlock(&pag->pag_ici_lock);
467 } else {
468 /* If the VFS inode is being torn down, pause and try again. */
469 if (!igrab(inode)) {
470 trace_xfs_iget_skip(ip);
Dave Chinner24513372014-06-25 14:58:08 +1000471 error = -EAGAIN;
Dave Chinner33479e02012-10-08 21:56:11 +1100472 goto out_error;
473 }
474
475 /* We've got a live one. */
476 spin_unlock(&ip->i_flags_lock);
477 rcu_read_unlock();
478 trace_xfs_iget_hit(ip);
479 }
480
481 if (lock_flags != 0)
482 xfs_ilock(ip, lock_flags);
483
Darrick J. Wong378f6812017-06-19 08:58:56 -0700484 if (!(flags & XFS_IGET_INCORE))
485 xfs_iflags_clear(ip, XFS_ISTALE | XFS_IDONTCACHE);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100486 XFS_STATS_INC(mp, xs_ig_found);
Dave Chinner33479e02012-10-08 21:56:11 +1100487
488 return 0;
489
490out_error:
491 spin_unlock(&ip->i_flags_lock);
492 rcu_read_unlock();
493 return error;
494}
495
496
497static int
498xfs_iget_cache_miss(
499 struct xfs_mount *mp,
500 struct xfs_perag *pag,
501 xfs_trans_t *tp,
502 xfs_ino_t ino,
503 struct xfs_inode **ipp,
504 int flags,
505 int lock_flags)
506{
507 struct xfs_inode *ip;
508 int error;
509 xfs_agino_t agino = XFS_INO_TO_AGINO(mp, ino);
510 int iflags;
511
512 ip = xfs_inode_alloc(mp, ino);
513 if (!ip)
Dave Chinner24513372014-06-25 14:58:08 +1000514 return -ENOMEM;
Dave Chinner33479e02012-10-08 21:56:11 +1100515
516 error = xfs_iread(mp, tp, ip, flags);
517 if (error)
518 goto out_destroy;
519
Darrick J. Wong9cfb9b42018-01-08 10:51:06 -0800520 if (!xfs_inode_verify_forks(ip)) {
521 error = -EFSCORRUPTED;
522 goto out_destroy;
523 }
524
Dave Chinner33479e02012-10-08 21:56:11 +1100525 trace_xfs_iget_miss(ip);
526
Dave Chinneree457002018-03-23 10:22:53 -0700527
528 /*
Dave Chinnerafca6c52018-04-17 17:17:34 -0700529 * Check the inode free state is valid. This also detects lookup
530 * racing with unlinks.
Dave Chinneree457002018-03-23 10:22:53 -0700531 */
Dave Chinnerafca6c52018-04-17 17:17:34 -0700532 error = xfs_iget_check_free_state(ip, flags);
533 if (error)
Dave Chinner33479e02012-10-08 21:56:11 +1100534 goto out_destroy;
Dave Chinner33479e02012-10-08 21:56:11 +1100535
536 /*
537 * Preload the radix tree so we can insert safely under the
538 * write spinlock. Note that we cannot sleep inside the preload
539 * region. Since we can be called from transaction context, don't
540 * recurse into the file system.
541 */
542 if (radix_tree_preload(GFP_NOFS)) {
Dave Chinner24513372014-06-25 14:58:08 +1000543 error = -EAGAIN;
Dave Chinner33479e02012-10-08 21:56:11 +1100544 goto out_destroy;
545 }
546
547 /*
548 * Because the inode hasn't been added to the radix-tree yet it can't
549 * be found by another thread, so we can do the non-sleeping lock here.
550 */
551 if (lock_flags) {
552 if (!xfs_ilock_nowait(ip, lock_flags))
553 BUG();
554 }
555
556 /*
557 * These values must be set before inserting the inode into the radix
558 * tree as the moment it is inserted a concurrent lookup (allowed by the
559 * RCU locking mechanism) can find it and that lookup must see that this
560 * is an inode currently under construction (i.e. that XFS_INEW is set).
561 * The ip->i_flags_lock that protects the XFS_INEW flag forms the
562 * memory barrier that ensures this detection works correctly at lookup
563 * time.
564 */
565 iflags = XFS_INEW;
566 if (flags & XFS_IGET_DONTCACHE)
567 iflags |= XFS_IDONTCACHE;
Chandra Seetharaman113a5682013-06-27 17:25:07 -0500568 ip->i_udquot = NULL;
569 ip->i_gdquot = NULL;
Chandra Seetharaman92f8ff72013-07-11 00:00:40 -0500570 ip->i_pdquot = NULL;
Dave Chinner33479e02012-10-08 21:56:11 +1100571 xfs_iflags_set(ip, iflags);
572
573 /* insert the new inode */
574 spin_lock(&pag->pag_ici_lock);
575 error = radix_tree_insert(&pag->pag_ici_root, agino, ip);
576 if (unlikely(error)) {
577 WARN_ON(error != -EEXIST);
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100578 XFS_STATS_INC(mp, xs_ig_dup);
Dave Chinner24513372014-06-25 14:58:08 +1000579 error = -EAGAIN;
Dave Chinner33479e02012-10-08 21:56:11 +1100580 goto out_preload_end;
581 }
582 spin_unlock(&pag->pag_ici_lock);
583 radix_tree_preload_end();
584
585 *ipp = ip;
586 return 0;
587
588out_preload_end:
589 spin_unlock(&pag->pag_ici_lock);
590 radix_tree_preload_end();
591 if (lock_flags)
592 xfs_iunlock(ip, lock_flags);
593out_destroy:
594 __destroy_inode(VFS_I(ip));
595 xfs_inode_free(ip);
596 return error;
597}
598
599/*
600 * Look up an inode by number in the given file system.
601 * The inode is looked up in the cache held in each AG.
602 * If the inode is found in the cache, initialise the vfs inode
603 * if necessary.
604 *
605 * If it is not in core, read it in from the file system's device,
606 * add it to the cache and initialise the vfs inode.
607 *
608 * The inode is locked according to the value of the lock_flags parameter.
609 * This flag parameter indicates how and if the inode's IO lock and inode lock
610 * should be taken.
611 *
612 * mp -- the mount point structure for the current file system. It points
613 * to the inode hash table.
614 * tp -- a pointer to the current transaction if there is one. This is
615 * simply passed through to the xfs_iread() call.
616 * ino -- the number of the inode desired. This is the unique identifier
617 * within the file system for the inode being requested.
618 * lock_flags -- flags indicating how to lock the inode. See the comment
619 * for xfs_ilock() for a list of valid values.
620 */
621int
622xfs_iget(
623 xfs_mount_t *mp,
624 xfs_trans_t *tp,
625 xfs_ino_t ino,
626 uint flags,
627 uint lock_flags,
628 xfs_inode_t **ipp)
629{
630 xfs_inode_t *ip;
631 int error;
632 xfs_perag_t *pag;
633 xfs_agino_t agino;
634
635 /*
636 * xfs_reclaim_inode() uses the ILOCK to ensure an inode
637 * doesn't get freed while it's being referenced during a
638 * radix tree traversal here. It assumes this function
639 * aqcuires only the ILOCK (and therefore it has no need to
640 * involve the IOLOCK in this synchronization).
641 */
642 ASSERT((lock_flags & (XFS_IOLOCK_EXCL | XFS_IOLOCK_SHARED)) == 0);
643
644 /* reject inode numbers outside existing AGs */
645 if (!ino || XFS_INO_TO_AGNO(mp, ino) >= mp->m_sb.sb_agcount)
Dave Chinner24513372014-06-25 14:58:08 +1000646 return -EINVAL;
Dave Chinner33479e02012-10-08 21:56:11 +1100647
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100648 XFS_STATS_INC(mp, xs_ig_attempts);
Lucas Stach8774cf82015-08-28 14:50:56 +1000649
Dave Chinner33479e02012-10-08 21:56:11 +1100650 /* get the perag structure and ensure that it's inode capable */
651 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ino));
652 agino = XFS_INO_TO_AGINO(mp, ino);
653
654again:
655 error = 0;
656 rcu_read_lock();
657 ip = radix_tree_lookup(&pag->pag_ici_root, agino);
658
659 if (ip) {
660 error = xfs_iget_cache_hit(pag, ip, ino, flags, lock_flags);
661 if (error)
662 goto out_error_or_again;
663 } else {
664 rcu_read_unlock();
Darrick J. Wong378f6812017-06-19 08:58:56 -0700665 if (flags & XFS_IGET_INCORE) {
Darrick J. Wonged438b42017-10-17 21:37:32 -0700666 error = -ENODATA;
Darrick J. Wong378f6812017-06-19 08:58:56 -0700667 goto out_error_or_again;
668 }
Bill O'Donnellff6d6af2015-10-12 18:21:22 +1100669 XFS_STATS_INC(mp, xs_ig_missed);
Dave Chinner33479e02012-10-08 21:56:11 +1100670
671 error = xfs_iget_cache_miss(mp, pag, tp, ino, &ip,
672 flags, lock_flags);
673 if (error)
674 goto out_error_or_again;
675 }
676 xfs_perag_put(pag);
677
678 *ipp = ip;
679
680 /*
Dave Chinner58c90472015-02-23 22:38:08 +1100681 * If we have a real type for an on-disk inode, we can setup the inode
Dave Chinner33479e02012-10-08 21:56:11 +1100682 * now. If it's a new inode being created, xfs_ialloc will handle it.
683 */
Dave Chinnerc19b3b052016-02-09 16:54:58 +1100684 if (xfs_iflags_test(ip, XFS_INEW) && VFS_I(ip)->i_mode != 0)
Dave Chinner58c90472015-02-23 22:38:08 +1100685 xfs_setup_existing_inode(ip);
Dave Chinner33479e02012-10-08 21:56:11 +1100686 return 0;
687
688out_error_or_again:
Darrick J. Wong378f6812017-06-19 08:58:56 -0700689 if (!(flags & XFS_IGET_INCORE) && error == -EAGAIN) {
Dave Chinner33479e02012-10-08 21:56:11 +1100690 delay(1);
691 goto again;
692 }
693 xfs_perag_put(pag);
694 return error;
695}
696
Dave Chinner78ae5252010-09-28 12:28:19 +1000697/*
Darrick J. Wong378f6812017-06-19 08:58:56 -0700698 * "Is this a cached inode that's also allocated?"
699 *
700 * Look up an inode by number in the given file system. If the inode is
701 * in cache and isn't in purgatory, return 1 if the inode is allocated
702 * and 0 if it is not. For all other cases (not in cache, being torn
703 * down, etc.), return a negative error code.
704 *
705 * The caller has to prevent inode allocation and freeing activity,
706 * presumably by locking the AGI buffer. This is to ensure that an
707 * inode cannot transition from allocated to freed until the caller is
708 * ready to allow that. If the inode is in an intermediate state (new,
709 * reclaimable, or being reclaimed), -EAGAIN will be returned; if the
710 * inode is not in the cache, -ENOENT will be returned. The caller must
711 * deal with these scenarios appropriately.
712 *
713 * This is a specialized use case for the online scrubber; if you're
714 * reading this, you probably want xfs_iget.
715 */
716int
717xfs_icache_inode_is_allocated(
718 struct xfs_mount *mp,
719 struct xfs_trans *tp,
720 xfs_ino_t ino,
721 bool *inuse)
722{
723 struct xfs_inode *ip;
724 int error;
725
726 error = xfs_iget(mp, tp, ino, XFS_IGET_INCORE, 0, &ip);
727 if (error)
728 return error;
729
730 *inuse = !!(VFS_I(ip)->i_mode);
731 IRELE(ip);
732 return 0;
733}
734
735/*
Dave Chinner78ae5252010-09-28 12:28:19 +1000736 * The inode lookup is done in batches to keep the amount of lock traffic and
737 * radix tree lookups to a minimum. The batch size is a trade off between
738 * lookup reduction and stack usage. This is in the reclaim path, so we can't
739 * be too greedy.
740 */
741#define XFS_LOOKUP_BATCH 32
742
Dave Chinnere13de952010-09-28 12:28:06 +1000743STATIC int
744xfs_inode_ag_walk_grab(
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700745 struct xfs_inode *ip,
746 int flags)
Dave Chinnere13de952010-09-28 12:28:06 +1000747{
748 struct inode *inode = VFS_I(ip);
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700749 bool newinos = !!(flags & XFS_AGITER_INEW_WAIT);
Dave Chinnere13de952010-09-28 12:28:06 +1000750
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100751 ASSERT(rcu_read_lock_held());
752
753 /*
754 * check for stale RCU freed inode
755 *
756 * If the inode has been reallocated, it doesn't matter if it's not in
757 * the AG we are walking - we are walking for writeback, so if it
758 * passes all the "valid inode" checks and is dirty, then we'll write
759 * it back anyway. If it has been reallocated and still being
760 * initialised, the XFS_INEW check below will catch it.
761 */
762 spin_lock(&ip->i_flags_lock);
763 if (!ip->i_ino)
764 goto out_unlock_noent;
765
766 /* avoid new or reclaimable inodes. Leave for reclaim code to flush */
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700767 if ((!newinos && __xfs_iflags_test(ip, XFS_INEW)) ||
768 __xfs_iflags_test(ip, XFS_IRECLAIMABLE | XFS_IRECLAIM))
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100769 goto out_unlock_noent;
770 spin_unlock(&ip->i_flags_lock);
771
Dave Chinnere13de952010-09-28 12:28:06 +1000772 /* nothing to sync during shutdown */
773 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
Dave Chinner24513372014-06-25 14:58:08 +1000774 return -EFSCORRUPTED;
Dave Chinnere13de952010-09-28 12:28:06 +1000775
Dave Chinnere13de952010-09-28 12:28:06 +1000776 /* If we can't grab the inode, it must on it's way to reclaim. */
777 if (!igrab(inode))
Dave Chinner24513372014-06-25 14:58:08 +1000778 return -ENOENT;
Dave Chinnere13de952010-09-28 12:28:06 +1000779
Dave Chinnere13de952010-09-28 12:28:06 +1000780 /* inode is valid */
781 return 0;
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100782
783out_unlock_noent:
784 spin_unlock(&ip->i_flags_lock);
Dave Chinner24513372014-06-25 14:58:08 +1000785 return -ENOENT;
Dave Chinnere13de952010-09-28 12:28:06 +1000786}
787
Dave Chinner75f3cb12009-06-08 15:35:14 +0200788STATIC int
789xfs_inode_ag_walk(
790 struct xfs_mount *mp,
Dave Chinner5017e972010-01-11 11:47:40 +0000791 struct xfs_perag *pag,
Eric Sandeene0094002014-04-14 19:04:19 +1000792 int (*execute)(struct xfs_inode *ip, int flags,
Brian Fostera454f742012-11-06 09:50:39 -0500793 void *args),
794 int flags,
795 void *args,
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700796 int tag,
797 int iter_flags)
Dave Chinner75f3cb12009-06-08 15:35:14 +0200798{
Dave Chinner75f3cb12009-06-08 15:35:14 +0200799 uint32_t first_index;
800 int last_error = 0;
801 int skipped;
Dave Chinner65d0f202010-09-24 18:40:15 +1000802 int done;
Dave Chinner78ae5252010-09-28 12:28:19 +1000803 int nr_found;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200804
805restart:
Dave Chinner65d0f202010-09-24 18:40:15 +1000806 done = 0;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200807 skipped = 0;
808 first_index = 0;
Dave Chinner78ae5252010-09-28 12:28:19 +1000809 nr_found = 0;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200810 do {
Dave Chinner78ae5252010-09-28 12:28:19 +1000811 struct xfs_inode *batch[XFS_LOOKUP_BATCH];
Dave Chinner75f3cb12009-06-08 15:35:14 +0200812 int error = 0;
Dave Chinner78ae5252010-09-28 12:28:19 +1000813 int i;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200814
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100815 rcu_read_lock();
Brian Fostera454f742012-11-06 09:50:39 -0500816
817 if (tag == -1)
818 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root,
Dave Chinner78ae5252010-09-28 12:28:19 +1000819 (void **)batch, first_index,
820 XFS_LOOKUP_BATCH);
Brian Fostera454f742012-11-06 09:50:39 -0500821 else
822 nr_found = radix_tree_gang_lookup_tag(
823 &pag->pag_ici_root,
824 (void **) batch, first_index,
825 XFS_LOOKUP_BATCH, tag);
826
Dave Chinner65d0f202010-09-24 18:40:15 +1000827 if (!nr_found) {
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100828 rcu_read_unlock();
Dave Chinner75f3cb12009-06-08 15:35:14 +0200829 break;
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000830 }
Dave Chinner75f3cb12009-06-08 15:35:14 +0200831
Dave Chinner65d0f202010-09-24 18:40:15 +1000832 /*
Dave Chinner78ae5252010-09-28 12:28:19 +1000833 * Grab the inodes before we drop the lock. if we found
834 * nothing, nr == 0 and the loop will be skipped.
Dave Chinner65d0f202010-09-24 18:40:15 +1000835 */
Dave Chinner78ae5252010-09-28 12:28:19 +1000836 for (i = 0; i < nr_found; i++) {
837 struct xfs_inode *ip = batch[i];
Dave Chinner65d0f202010-09-24 18:40:15 +1000838
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700839 if (done || xfs_inode_ag_walk_grab(ip, iter_flags))
Dave Chinner78ae5252010-09-28 12:28:19 +1000840 batch[i] = NULL;
841
842 /*
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100843 * Update the index for the next lookup. Catch
844 * overflows into the next AG range which can occur if
845 * we have inodes in the last block of the AG and we
846 * are currently pointing to the last inode.
847 *
848 * Because we may see inodes that are from the wrong AG
849 * due to RCU freeing and reallocation, only update the
850 * index if it lies in this AG. It was a race that lead
851 * us to see this inode, so another lookup from the
852 * same index will not find it again.
Dave Chinner78ae5252010-09-28 12:28:19 +1000853 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100854 if (XFS_INO_TO_AGNO(mp, ip->i_ino) != pag->pag_agno)
855 continue;
Dave Chinner78ae5252010-09-28 12:28:19 +1000856 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
857 if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
858 done = 1;
Dave Chinnere13de952010-09-28 12:28:06 +1000859 }
Dave Chinner78ae5252010-09-28 12:28:19 +1000860
861 /* unlock now we've grabbed the inodes. */
Dave Chinner1a3e8f32010-12-17 17:29:43 +1100862 rcu_read_unlock();
Dave Chinnere13de952010-09-28 12:28:06 +1000863
Dave Chinner78ae5252010-09-28 12:28:19 +1000864 for (i = 0; i < nr_found; i++) {
865 if (!batch[i])
866 continue;
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700867 if ((iter_flags & XFS_AGITER_INEW_WAIT) &&
868 xfs_iflags_test(batch[i], XFS_INEW))
869 xfs_inew_wait(batch[i]);
Eric Sandeene0094002014-04-14 19:04:19 +1000870 error = execute(batch[i], flags, args);
Dave Chinner78ae5252010-09-28 12:28:19 +1000871 IRELE(batch[i]);
Dave Chinner24513372014-06-25 14:58:08 +1000872 if (error == -EAGAIN) {
Dave Chinner78ae5252010-09-28 12:28:19 +1000873 skipped++;
874 continue;
875 }
Dave Chinner24513372014-06-25 14:58:08 +1000876 if (error && last_error != -EFSCORRUPTED)
Dave Chinner78ae5252010-09-28 12:28:19 +1000877 last_error = error;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200878 }
Dave Chinnerc8e20be2010-01-10 23:51:45 +0000879
880 /* bail out if the filesystem is corrupted. */
Dave Chinner24513372014-06-25 14:58:08 +1000881 if (error == -EFSCORRUPTED)
Dave Chinner75f3cb12009-06-08 15:35:14 +0200882 break;
883
Dave Chinner8daaa832011-07-08 14:14:46 +1000884 cond_resched();
885
Dave Chinner78ae5252010-09-28 12:28:19 +1000886 } while (nr_found && !done);
Dave Chinner75f3cb12009-06-08 15:35:14 +0200887
888 if (skipped) {
889 delay(1);
890 goto restart;
891 }
Dave Chinner75f3cb12009-06-08 15:35:14 +0200892 return last_error;
893}
894
Brian Foster579b62f2012-11-06 09:50:47 -0500895/*
896 * Background scanning to trim post-EOF preallocated space. This is queued
Dwight Engenb9fe5052013-08-15 14:08:02 -0400897 * based on the 'speculative_prealloc_lifetime' tunable (5m by default).
Brian Foster579b62f2012-11-06 09:50:47 -0500898 */
Brian Fosterfa5a4f52016-06-21 11:53:28 +1000899void
Brian Foster579b62f2012-11-06 09:50:47 -0500900xfs_queue_eofblocks(
901 struct xfs_mount *mp)
902{
903 rcu_read_lock();
904 if (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_EOFBLOCKS_TAG))
905 queue_delayed_work(mp->m_eofblocks_workqueue,
906 &mp->m_eofblocks_work,
907 msecs_to_jiffies(xfs_eofb_secs * 1000));
908 rcu_read_unlock();
909}
910
911void
912xfs_eofblocks_worker(
913 struct work_struct *work)
914{
915 struct xfs_mount *mp = container_of(to_delayed_work(work),
916 struct xfs_mount, m_eofblocks_work);
917 xfs_icache_free_eofblocks(mp, NULL);
918 xfs_queue_eofblocks(mp);
919}
920
Darrick J. Wong83104d42016-10-03 09:11:46 -0700921/*
922 * Background scanning to trim preallocated CoW space. This is queued
923 * based on the 'speculative_cow_prealloc_lifetime' tunable (5m by default).
924 * (We'll just piggyback on the post-EOF prealloc space workqueue.)
925 */
Darrick J. Wong10ddf642017-12-14 15:46:05 -0800926void
Darrick J. Wong83104d42016-10-03 09:11:46 -0700927xfs_queue_cowblocks(
928 struct xfs_mount *mp)
929{
930 rcu_read_lock();
931 if (radix_tree_tagged(&mp->m_perag_tree, XFS_ICI_COWBLOCKS_TAG))
932 queue_delayed_work(mp->m_eofblocks_workqueue,
933 &mp->m_cowblocks_work,
934 msecs_to_jiffies(xfs_cowb_secs * 1000));
935 rcu_read_unlock();
936}
937
938void
939xfs_cowblocks_worker(
940 struct work_struct *work)
941{
942 struct xfs_mount *mp = container_of(to_delayed_work(work),
943 struct xfs_mount, m_cowblocks_work);
944 xfs_icache_free_cowblocks(mp, NULL);
945 xfs_queue_cowblocks(mp);
946}
947
Christoph Hellwigfe588ed2009-06-08 15:35:27 +0200948int
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700949xfs_inode_ag_iterator_flags(
Dave Chinner75f3cb12009-06-08 15:35:14 +0200950 struct xfs_mount *mp,
Eric Sandeene0094002014-04-14 19:04:19 +1000951 int (*execute)(struct xfs_inode *ip, int flags,
Brian Fostera454f742012-11-06 09:50:39 -0500952 void *args),
953 int flags,
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700954 void *args,
955 int iter_flags)
Dave Chinner75f3cb12009-06-08 15:35:14 +0200956{
Dave Chinner16fd5362010-07-20 09:43:39 +1000957 struct xfs_perag *pag;
Dave Chinner75f3cb12009-06-08 15:35:14 +0200958 int error = 0;
959 int last_error = 0;
960 xfs_agnumber_t ag;
961
Dave Chinner16fd5362010-07-20 09:43:39 +1000962 ag = 0;
Dave Chinner65d0f202010-09-24 18:40:15 +1000963 while ((pag = xfs_perag_get(mp, ag))) {
964 ag = pag->pag_agno + 1;
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700965 error = xfs_inode_ag_walk(mp, pag, execute, flags, args, -1,
966 iter_flags);
Brian Fostera454f742012-11-06 09:50:39 -0500967 xfs_perag_put(pag);
968 if (error) {
969 last_error = error;
Dave Chinner24513372014-06-25 14:58:08 +1000970 if (error == -EFSCORRUPTED)
Brian Fostera454f742012-11-06 09:50:39 -0500971 break;
972 }
973 }
Eric Sandeenb474c7a2014-06-22 15:04:54 +1000974 return last_error;
Brian Fostera454f742012-11-06 09:50:39 -0500975}
976
977int
Brian Fosterae2c4ac2017-04-26 08:30:39 -0700978xfs_inode_ag_iterator(
979 struct xfs_mount *mp,
980 int (*execute)(struct xfs_inode *ip, int flags,
981 void *args),
982 int flags,
983 void *args)
984{
985 return xfs_inode_ag_iterator_flags(mp, execute, flags, args, 0);
986}
987
988int
Brian Fostera454f742012-11-06 09:50:39 -0500989xfs_inode_ag_iterator_tag(
990 struct xfs_mount *mp,
Eric Sandeene0094002014-04-14 19:04:19 +1000991 int (*execute)(struct xfs_inode *ip, int flags,
Brian Fostera454f742012-11-06 09:50:39 -0500992 void *args),
993 int flags,
994 void *args,
995 int tag)
996{
997 struct xfs_perag *pag;
998 int error = 0;
999 int last_error = 0;
1000 xfs_agnumber_t ag;
1001
1002 ag = 0;
1003 while ((pag = xfs_perag_get_tag(mp, ag, tag))) {
1004 ag = pag->pag_agno + 1;
Brian Fosterae2c4ac2017-04-26 08:30:39 -07001005 error = xfs_inode_ag_walk(mp, pag, execute, flags, args, tag,
1006 0);
Dave Chinner5017e972010-01-11 11:47:40 +00001007 xfs_perag_put(pag);
Dave Chinner75f3cb12009-06-08 15:35:14 +02001008 if (error) {
1009 last_error = error;
Dave Chinner24513372014-06-25 14:58:08 +10001010 if (error == -EFSCORRUPTED)
Dave Chinner75f3cb12009-06-08 15:35:14 +02001011 break;
1012 }
1013 }
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001014 return last_error;
Dave Chinner75f3cb12009-06-08 15:35:14 +02001015}
1016
David Chinner76bf1052008-10-30 17:16:21 +11001017/*
Dave Chinnere3a20c02010-09-24 19:51:50 +10001018 * Grab the inode for reclaim exclusively.
1019 * Return 0 if we grabbed it, non-zero otherwise.
1020 */
1021STATIC int
1022xfs_reclaim_inode_grab(
1023 struct xfs_inode *ip,
1024 int flags)
1025{
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001026 ASSERT(rcu_read_lock_held());
1027
1028 /* quick check for stale RCU freed inode */
1029 if (!ip->i_ino)
1030 return 1;
Dave Chinnere3a20c02010-09-24 19:51:50 +10001031
1032 /*
Christoph Hellwig474fce02011-12-18 20:00:09 +00001033 * If we are asked for non-blocking operation, do unlocked checks to
1034 * see if the inode already is being flushed or in reclaim to avoid
1035 * lock traffic.
Dave Chinnere3a20c02010-09-24 19:51:50 +10001036 */
1037 if ((flags & SYNC_TRYLOCK) &&
Christoph Hellwig474fce02011-12-18 20:00:09 +00001038 __xfs_iflags_test(ip, XFS_IFLOCK | XFS_IRECLAIM))
Dave Chinnere3a20c02010-09-24 19:51:50 +10001039 return 1;
Dave Chinnere3a20c02010-09-24 19:51:50 +10001040
1041 /*
1042 * The radix tree lock here protects a thread in xfs_iget from racing
1043 * with us starting reclaim on the inode. Once we have the
1044 * XFS_IRECLAIM flag set it will not touch us.
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001045 *
1046 * Due to RCU lookup, we may find inodes that have been freed and only
1047 * have XFS_IRECLAIM set. Indeed, we may see reallocated inodes that
1048 * aren't candidates for reclaim at all, so we must check the
1049 * XFS_IRECLAIMABLE is set first before proceeding to reclaim.
Dave Chinnere3a20c02010-09-24 19:51:50 +10001050 */
1051 spin_lock(&ip->i_flags_lock);
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001052 if (!__xfs_iflags_test(ip, XFS_IRECLAIMABLE) ||
1053 __xfs_iflags_test(ip, XFS_IRECLAIM)) {
1054 /* not a reclaim candidate. */
Dave Chinnere3a20c02010-09-24 19:51:50 +10001055 spin_unlock(&ip->i_flags_lock);
1056 return 1;
1057 }
1058 __xfs_iflags_set(ip, XFS_IRECLAIM);
1059 spin_unlock(&ip->i_flags_lock);
1060 return 0;
1061}
1062
1063/*
Christoph Hellwig8a480882012-04-23 15:58:35 +10001064 * Inodes in different states need to be treated differently. The following
1065 * table lists the inode states and the reclaim actions necessary:
Dave Chinner777df5a2010-02-06 12:37:26 +11001066 *
1067 * inode state iflush ret required action
1068 * --------------- ---------- ---------------
1069 * bad - reclaim
1070 * shutdown EIO unpin and reclaim
1071 * clean, unpinned 0 reclaim
1072 * stale, unpinned 0 reclaim
Dave Chinnerc8543632010-02-06 12:39:36 +11001073 * clean, pinned(*) 0 requeue
1074 * stale, pinned EAGAIN requeue
Christoph Hellwig8a480882012-04-23 15:58:35 +10001075 * dirty, async - requeue
1076 * dirty, sync 0 reclaim
Dave Chinner777df5a2010-02-06 12:37:26 +11001077 *
1078 * (*) dgc: I don't think the clean, pinned state is possible but it gets
1079 * handled anyway given the order of checks implemented.
1080 *
Dave Chinnerc8543632010-02-06 12:39:36 +11001081 * Also, because we get the flush lock first, we know that any inode that has
1082 * been flushed delwri has had the flush completed by the time we check that
Christoph Hellwig8a480882012-04-23 15:58:35 +10001083 * the inode is clean.
Dave Chinnerc8543632010-02-06 12:39:36 +11001084 *
Christoph Hellwig8a480882012-04-23 15:58:35 +10001085 * Note that because the inode is flushed delayed write by AIL pushing, the
1086 * flush lock may already be held here and waiting on it can result in very
1087 * long latencies. Hence for sync reclaims, where we wait on the flush lock,
1088 * the caller should push the AIL first before trying to reclaim inodes to
1089 * minimise the amount of time spent waiting. For background relaim, we only
1090 * bother to reclaim clean inodes anyway.
Dave Chinnerc8543632010-02-06 12:39:36 +11001091 *
Dave Chinner777df5a2010-02-06 12:37:26 +11001092 * Hence the order of actions after gaining the locks should be:
1093 * bad => reclaim
1094 * shutdown => unpin and reclaim
Christoph Hellwig8a480882012-04-23 15:58:35 +10001095 * pinned, async => requeue
Dave Chinnerc8543632010-02-06 12:39:36 +11001096 * pinned, sync => unpin
Dave Chinner777df5a2010-02-06 12:37:26 +11001097 * stale => reclaim
1098 * clean => reclaim
Christoph Hellwig8a480882012-04-23 15:58:35 +10001099 * dirty, async => requeue
Dave Chinnerc8543632010-02-06 12:39:36 +11001100 * dirty, sync => flush, wait and reclaim
Dave Chinner777df5a2010-02-06 12:37:26 +11001101 */
Dave Chinner75f3cb12009-06-08 15:35:14 +02001102STATIC int
Dave Chinnerc8e20be2010-01-10 23:51:45 +00001103xfs_reclaim_inode(
Dave Chinner75f3cb12009-06-08 15:35:14 +02001104 struct xfs_inode *ip,
1105 struct xfs_perag *pag,
Dave Chinnerc8e20be2010-01-10 23:51:45 +00001106 int sync_mode)
David Chinner7a3be022008-10-30 17:37:37 +11001107{
Christoph Hellwig4c468192012-04-23 15:58:36 +10001108 struct xfs_buf *bp = NULL;
Dave Chinner8a17d7d2016-05-18 14:09:12 +10001109 xfs_ino_t ino = ip->i_ino; /* for radix_tree_delete */
Christoph Hellwig4c468192012-04-23 15:58:36 +10001110 int error;
Dave Chinner777df5a2010-02-06 12:37:26 +11001111
Dave Chinner1bfd8d02011-03-26 09:13:55 +11001112restart:
1113 error = 0;
Dave Chinnerc8e20be2010-01-10 23:51:45 +00001114 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinnerc8543632010-02-06 12:39:36 +11001115 if (!xfs_iflock_nowait(ip)) {
1116 if (!(sync_mode & SYNC_WAIT))
1117 goto out;
1118 xfs_iflock(ip);
1119 }
Dave Chinnerc8e20be2010-01-10 23:51:45 +00001120
Dave Chinner777df5a2010-02-06 12:37:26 +11001121 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
1122 xfs_iunpin_wait(ip);
Brian Foster98efe8a2016-11-10 08:23:22 +11001123 /* xfs_iflush_abort() drops the flush lock */
Dave Chinner04913fd2012-04-23 15:58:41 +10001124 xfs_iflush_abort(ip, false);
Dave Chinner777df5a2010-02-06 12:37:26 +11001125 goto reclaim;
1126 }
Dave Chinnerc8543632010-02-06 12:39:36 +11001127 if (xfs_ipincount(ip)) {
Christoph Hellwig8a480882012-04-23 15:58:35 +10001128 if (!(sync_mode & SYNC_WAIT))
1129 goto out_ifunlock;
Dave Chinner777df5a2010-02-06 12:37:26 +11001130 xfs_iunpin_wait(ip);
Dave Chinnerc8543632010-02-06 12:39:36 +11001131 }
Brian Foster98efe8a2016-11-10 08:23:22 +11001132 if (xfs_iflags_test(ip, XFS_ISTALE) || xfs_inode_clean(ip)) {
1133 xfs_ifunlock(ip);
Dave Chinner777df5a2010-02-06 12:37:26 +11001134 goto reclaim;
Brian Foster98efe8a2016-11-10 08:23:22 +11001135 }
Dave Chinner777df5a2010-02-06 12:37:26 +11001136
Dave Chinner1bfd8d02011-03-26 09:13:55 +11001137 /*
Christoph Hellwig8a480882012-04-23 15:58:35 +10001138 * Never flush out dirty data during non-blocking reclaim, as it would
1139 * just contend with AIL pushing trying to do the same job.
1140 */
1141 if (!(sync_mode & SYNC_WAIT))
1142 goto out_ifunlock;
1143
1144 /*
Dave Chinner1bfd8d02011-03-26 09:13:55 +11001145 * Now we have an inode that needs flushing.
1146 *
Christoph Hellwig4c468192012-04-23 15:58:36 +10001147 * Note that xfs_iflush will never block on the inode buffer lock, as
Dave Chinner1bfd8d02011-03-26 09:13:55 +11001148 * xfs_ifree_cluster() can lock the inode buffer before it locks the
Christoph Hellwig4c468192012-04-23 15:58:36 +10001149 * ip->i_lock, and we are doing the exact opposite here. As a result,
Christoph Hellwig475ee412012-07-03 12:21:22 -04001150 * doing a blocking xfs_imap_to_bp() to get the cluster buffer would
1151 * result in an ABBA deadlock with xfs_ifree_cluster().
Dave Chinner1bfd8d02011-03-26 09:13:55 +11001152 *
1153 * As xfs_ifree_cluser() must gather all inodes that are active in the
1154 * cache to mark them stale, if we hit this case we don't actually want
1155 * to do IO here - we want the inode marked stale so we can simply
Christoph Hellwig4c468192012-04-23 15:58:36 +10001156 * reclaim it. Hence if we get an EAGAIN error here, just unlock the
1157 * inode, back off and try again. Hopefully the next pass through will
1158 * see the stale flag set on the inode.
Dave Chinner1bfd8d02011-03-26 09:13:55 +11001159 */
Christoph Hellwig4c468192012-04-23 15:58:36 +10001160 error = xfs_iflush(ip, &bp);
Dave Chinner24513372014-06-25 14:58:08 +10001161 if (error == -EAGAIN) {
Christoph Hellwig8a480882012-04-23 15:58:35 +10001162 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1163 /* backoff longer than in xfs_ifree_cluster */
1164 delay(2);
1165 goto restart;
Dave Chinnerc8e20be2010-01-10 23:51:45 +00001166 }
Dave Chinnerc8543632010-02-06 12:39:36 +11001167
Christoph Hellwig4c468192012-04-23 15:58:36 +10001168 if (!error) {
1169 error = xfs_bwrite(bp);
1170 xfs_buf_relse(bp);
1171 }
1172
Dave Chinner777df5a2010-02-06 12:37:26 +11001173reclaim:
Brian Foster98efe8a2016-11-10 08:23:22 +11001174 ASSERT(!xfs_isiflocked(ip));
1175
Dave Chinner8a17d7d2016-05-18 14:09:12 +10001176 /*
1177 * Because we use RCU freeing we need to ensure the inode always appears
1178 * to be reclaimed with an invalid inode number when in the free state.
Brian Foster98efe8a2016-11-10 08:23:22 +11001179 * We do this as early as possible under the ILOCK so that
Omar Sandovalf2e9ad22017-08-25 10:05:26 -07001180 * xfs_iflush_cluster() and xfs_ifree_cluster() can be guaranteed to
1181 * detect races with us here. By doing this, we guarantee that once
1182 * xfs_iflush_cluster() or xfs_ifree_cluster() has locked XFS_ILOCK that
1183 * it will see either a valid inode that will serialise correctly, or it
1184 * will see an invalid inode that it can skip.
Dave Chinner8a17d7d2016-05-18 14:09:12 +10001185 */
1186 spin_lock(&ip->i_flags_lock);
1187 ip->i_flags = XFS_IRECLAIM;
1188 ip->i_ino = 0;
1189 spin_unlock(&ip->i_flags_lock);
1190
Dave Chinnerc8e20be2010-01-10 23:51:45 +00001191 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner2f11fea2010-07-20 17:53:25 +10001192
Bill O'Donnellff6d6af2015-10-12 18:21:22 +11001193 XFS_STATS_INC(ip->i_mount, xs_ig_reclaims);
Dave Chinner2f11fea2010-07-20 17:53:25 +10001194 /*
1195 * Remove the inode from the per-AG radix tree.
1196 *
1197 * Because radix_tree_delete won't complain even if the item was never
1198 * added to the tree assert that it's been there before to catch
1199 * problems with the inode life time early on.
1200 */
Dave Chinner1a427ab2010-12-16 17:08:41 +11001201 spin_lock(&pag->pag_ici_lock);
Dave Chinner2f11fea2010-07-20 17:53:25 +10001202 if (!radix_tree_delete(&pag->pag_ici_root,
Dave Chinner8a17d7d2016-05-18 14:09:12 +10001203 XFS_INO_TO_AGINO(ip->i_mount, ino)))
Dave Chinner2f11fea2010-07-20 17:53:25 +10001204 ASSERT(0);
Dave Chinner545c0882016-05-18 14:11:41 +10001205 xfs_perag_clear_reclaim_tag(pag);
Dave Chinner1a427ab2010-12-16 17:08:41 +11001206 spin_unlock(&pag->pag_ici_lock);
Dave Chinner2f11fea2010-07-20 17:53:25 +10001207
1208 /*
1209 * Here we do an (almost) spurious inode lock in order to coordinate
1210 * with inode cache radix tree lookups. This is because the lookup
1211 * can reference the inodes in the cache without taking references.
1212 *
1213 * We make that OK here by ensuring that we wait until the inode is
Alex Elderad637a12012-02-16 22:01:00 +00001214 * unlocked after the lookup before we go ahead and free it.
Dave Chinner2f11fea2010-07-20 17:53:25 +10001215 */
Alex Elderad637a12012-02-16 22:01:00 +00001216 xfs_ilock(ip, XFS_ILOCK_EXCL);
Dave Chinner2f11fea2010-07-20 17:53:25 +10001217 xfs_qm_dqdetach(ip);
Alex Elderad637a12012-02-16 22:01:00 +00001218 xfs_iunlock(ip, XFS_ILOCK_EXCL);
Dave Chinner2f11fea2010-07-20 17:53:25 +10001219
Dave Chinner8a17d7d2016-05-18 14:09:12 +10001220 __xfs_inode_free(ip);
Alex Elderad637a12012-02-16 22:01:00 +00001221 return error;
Christoph Hellwig8a480882012-04-23 15:58:35 +10001222
1223out_ifunlock:
1224 xfs_ifunlock(ip);
1225out:
1226 xfs_iflags_clear(ip, XFS_IRECLAIM);
1227 xfs_iunlock(ip, XFS_ILOCK_EXCL);
1228 /*
Dave Chinner24513372014-06-25 14:58:08 +10001229 * We could return -EAGAIN here to make reclaim rescan the inode tree in
Christoph Hellwig8a480882012-04-23 15:58:35 +10001230 * a short while. However, this just burns CPU time scanning the tree
Dave Chinner58896082012-10-08 21:56:05 +11001231 * waiting for IO to complete and the reclaim work never goes back to
1232 * the idle state. Instead, return 0 to let the next scheduled
1233 * background reclaim attempt to reclaim the inode again.
Christoph Hellwig8a480882012-04-23 15:58:35 +10001234 */
1235 return 0;
David Chinner7a3be022008-10-30 17:37:37 +11001236}
1237
Dave Chinner65d0f202010-09-24 18:40:15 +10001238/*
1239 * Walk the AGs and reclaim the inodes in them. Even if the filesystem is
1240 * corrupted, we still want to try to reclaim all the inodes. If we don't,
1241 * then a shut down during filesystem unmount reclaim walk leak all the
1242 * unreclaimed inodes.
1243 */
Dave Chinner33479e02012-10-08 21:56:11 +11001244STATIC int
Dave Chinner65d0f202010-09-24 18:40:15 +10001245xfs_reclaim_inodes_ag(
1246 struct xfs_mount *mp,
1247 int flags,
1248 int *nr_to_scan)
1249{
1250 struct xfs_perag *pag;
1251 int error = 0;
1252 int last_error = 0;
1253 xfs_agnumber_t ag;
Dave Chinner69b491c2010-09-27 11:09:51 +10001254 int trylock = flags & SYNC_TRYLOCK;
1255 int skipped;
Dave Chinner65d0f202010-09-24 18:40:15 +10001256
Dave Chinner69b491c2010-09-27 11:09:51 +10001257restart:
Dave Chinner65d0f202010-09-24 18:40:15 +10001258 ag = 0;
Dave Chinner69b491c2010-09-27 11:09:51 +10001259 skipped = 0;
Dave Chinner65d0f202010-09-24 18:40:15 +10001260 while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) {
1261 unsigned long first_index = 0;
1262 int done = 0;
Dave Chinnere3a20c02010-09-24 19:51:50 +10001263 int nr_found = 0;
Dave Chinner65d0f202010-09-24 18:40:15 +10001264
1265 ag = pag->pag_agno + 1;
1266
Dave Chinner69b491c2010-09-27 11:09:51 +10001267 if (trylock) {
1268 if (!mutex_trylock(&pag->pag_ici_reclaim_lock)) {
1269 skipped++;
Dave Chinnerf83282a2010-11-08 08:55:04 +00001270 xfs_perag_put(pag);
Dave Chinner69b491c2010-09-27 11:09:51 +10001271 continue;
1272 }
1273 first_index = pag->pag_ici_reclaim_cursor;
1274 } else
1275 mutex_lock(&pag->pag_ici_reclaim_lock);
1276
Dave Chinner65d0f202010-09-24 18:40:15 +10001277 do {
Dave Chinnere3a20c02010-09-24 19:51:50 +10001278 struct xfs_inode *batch[XFS_LOOKUP_BATCH];
1279 int i;
Dave Chinner65d0f202010-09-24 18:40:15 +10001280
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001281 rcu_read_lock();
Dave Chinnere3a20c02010-09-24 19:51:50 +10001282 nr_found = radix_tree_gang_lookup_tag(
1283 &pag->pag_ici_root,
1284 (void **)batch, first_index,
1285 XFS_LOOKUP_BATCH,
Dave Chinner65d0f202010-09-24 18:40:15 +10001286 XFS_ICI_RECLAIM_TAG);
1287 if (!nr_found) {
Dave Chinnerb2232212011-05-06 02:54:04 +00001288 done = 1;
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001289 rcu_read_unlock();
Dave Chinner65d0f202010-09-24 18:40:15 +10001290 break;
1291 }
1292
1293 /*
Dave Chinnere3a20c02010-09-24 19:51:50 +10001294 * Grab the inodes before we drop the lock. if we found
1295 * nothing, nr == 0 and the loop will be skipped.
Dave Chinner65d0f202010-09-24 18:40:15 +10001296 */
Dave Chinnere3a20c02010-09-24 19:51:50 +10001297 for (i = 0; i < nr_found; i++) {
1298 struct xfs_inode *ip = batch[i];
Dave Chinner65d0f202010-09-24 18:40:15 +10001299
Dave Chinnere3a20c02010-09-24 19:51:50 +10001300 if (done || xfs_reclaim_inode_grab(ip, flags))
1301 batch[i] = NULL;
Dave Chinner65d0f202010-09-24 18:40:15 +10001302
Dave Chinnere3a20c02010-09-24 19:51:50 +10001303 /*
1304 * Update the index for the next lookup. Catch
1305 * overflows into the next AG range which can
1306 * occur if we have inodes in the last block of
1307 * the AG and we are currently pointing to the
1308 * last inode.
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001309 *
1310 * Because we may see inodes that are from the
1311 * wrong AG due to RCU freeing and
1312 * reallocation, only update the index if it
1313 * lies in this AG. It was a race that lead us
1314 * to see this inode, so another lookup from
1315 * the same index will not find it again.
Dave Chinnere3a20c02010-09-24 19:51:50 +10001316 */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001317 if (XFS_INO_TO_AGNO(mp, ip->i_ino) !=
1318 pag->pag_agno)
1319 continue;
Dave Chinnere3a20c02010-09-24 19:51:50 +10001320 first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
1321 if (first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
1322 done = 1;
1323 }
1324
1325 /* unlock now we've grabbed the inodes. */
Dave Chinner1a3e8f32010-12-17 17:29:43 +11001326 rcu_read_unlock();
Dave Chinnere3a20c02010-09-24 19:51:50 +10001327
1328 for (i = 0; i < nr_found; i++) {
1329 if (!batch[i])
1330 continue;
1331 error = xfs_reclaim_inode(batch[i], pag, flags);
Dave Chinner24513372014-06-25 14:58:08 +10001332 if (error && last_error != -EFSCORRUPTED)
Dave Chinnere3a20c02010-09-24 19:51:50 +10001333 last_error = error;
1334 }
1335
1336 *nr_to_scan -= XFS_LOOKUP_BATCH;
1337
Dave Chinner8daaa832011-07-08 14:14:46 +10001338 cond_resched();
1339
Dave Chinnere3a20c02010-09-24 19:51:50 +10001340 } while (nr_found && !done && *nr_to_scan > 0);
Dave Chinner65d0f202010-09-24 18:40:15 +10001341
Dave Chinner69b491c2010-09-27 11:09:51 +10001342 if (trylock && !done)
1343 pag->pag_ici_reclaim_cursor = first_index;
1344 else
1345 pag->pag_ici_reclaim_cursor = 0;
1346 mutex_unlock(&pag->pag_ici_reclaim_lock);
Dave Chinner65d0f202010-09-24 18:40:15 +10001347 xfs_perag_put(pag);
1348 }
Dave Chinner69b491c2010-09-27 11:09:51 +10001349
1350 /*
1351 * if we skipped any AG, and we still have scan count remaining, do
1352 * another pass this time using blocking reclaim semantics (i.e
1353 * waiting on the reclaim locks and ignoring the reclaim cursors). This
1354 * ensure that when we get more reclaimers than AGs we block rather
1355 * than spin trying to execute reclaim.
1356 */
Dave Chinner8daaa832011-07-08 14:14:46 +10001357 if (skipped && (flags & SYNC_WAIT) && *nr_to_scan > 0) {
Dave Chinner69b491c2010-09-27 11:09:51 +10001358 trylock = 0;
1359 goto restart;
1360 }
Eric Sandeenb474c7a2014-06-22 15:04:54 +10001361 return last_error;
Dave Chinner65d0f202010-09-24 18:40:15 +10001362}
1363
David Chinnerfce08f22008-10-30 17:37:03 +11001364int
David Chinner1dc33182008-10-30 17:37:15 +11001365xfs_reclaim_inodes(
David Chinnerfce08f22008-10-30 17:37:03 +11001366 xfs_mount_t *mp,
David Chinnerfce08f22008-10-30 17:37:03 +11001367 int mode)
1368{
Dave Chinner65d0f202010-09-24 18:40:15 +10001369 int nr_to_scan = INT_MAX;
1370
1371 return xfs_reclaim_inodes_ag(mp, mode, &nr_to_scan);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001372}
1373
1374/*
Dave Chinner8daaa832011-07-08 14:14:46 +10001375 * Scan a certain number of inodes for reclaim.
Dave Chinnera7b339f2011-04-08 12:45:07 +10001376 *
1377 * When called we make sure that there is a background (fast) inode reclaim in
Dave Chinner8daaa832011-07-08 14:14:46 +10001378 * progress, while we will throttle the speed of reclaim via doing synchronous
Dave Chinnera7b339f2011-04-08 12:45:07 +10001379 * reclaim of inodes. That means if we come across dirty inodes, we wait for
1380 * them to be cleaned, which we hope will not be very long due to the
1381 * background walker having already kicked the IO off on those dirty inodes.
Dave Chinner9bf729c2010-04-29 09:55:50 +10001382 */
Dave Chinner0a234c62013-08-28 10:17:57 +10001383long
Dave Chinner8daaa832011-07-08 14:14:46 +10001384xfs_reclaim_inodes_nr(
1385 struct xfs_mount *mp,
1386 int nr_to_scan)
Dave Chinner9bf729c2010-04-29 09:55:50 +10001387{
Dave Chinner8daaa832011-07-08 14:14:46 +10001388 /* kick background reclaimer and push the AIL */
Dave Chinner58896082012-10-08 21:56:05 +11001389 xfs_reclaim_work_queue(mp);
Dave Chinner8daaa832011-07-08 14:14:46 +10001390 xfs_ail_push_all(mp->m_ail);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001391
Dave Chinner0a234c62013-08-28 10:17:57 +10001392 return xfs_reclaim_inodes_ag(mp, SYNC_TRYLOCK | SYNC_WAIT, &nr_to_scan);
Dave Chinner8daaa832011-07-08 14:14:46 +10001393}
Dave Chinnera7b339f2011-04-08 12:45:07 +10001394
Dave Chinner8daaa832011-07-08 14:14:46 +10001395/*
1396 * Return the number of reclaimable inodes in the filesystem for
1397 * the shrinker to determine how much to reclaim.
1398 */
1399int
1400xfs_reclaim_inodes_count(
1401 struct xfs_mount *mp)
1402{
1403 struct xfs_perag *pag;
1404 xfs_agnumber_t ag = 0;
1405 int reclaimable = 0;
Dave Chinner9bf729c2010-04-29 09:55:50 +10001406
Dave Chinner65d0f202010-09-24 18:40:15 +10001407 while ((pag = xfs_perag_get_tag(mp, ag, XFS_ICI_RECLAIM_TAG))) {
1408 ag = pag->pag_agno + 1;
Dave Chinner70e60ce2010-07-20 08:07:02 +10001409 reclaimable += pag->pag_ici_reclaimable;
1410 xfs_perag_put(pag);
Dave Chinner9bf729c2010-04-29 09:55:50 +10001411 }
Dave Chinner9bf729c2010-04-29 09:55:50 +10001412 return reclaimable;
1413}
1414
Brian Foster41176a62012-11-06 09:50:42 -05001415STATIC int
Brian Foster3e3f9f52012-11-07 12:21:13 -05001416xfs_inode_match_id(
1417 struct xfs_inode *ip,
1418 struct xfs_eofblocks *eofb)
1419{
Dwight Engenb9fe5052013-08-15 14:08:02 -04001420 if ((eofb->eof_flags & XFS_EOF_FLAGS_UID) &&
1421 !uid_eq(VFS_I(ip)->i_uid, eofb->eof_uid))
Brian Foster1b556042012-11-06 09:50:45 -05001422 return 0;
Brian Foster3e3f9f52012-11-07 12:21:13 -05001423
Dwight Engenb9fe5052013-08-15 14:08:02 -04001424 if ((eofb->eof_flags & XFS_EOF_FLAGS_GID) &&
1425 !gid_eq(VFS_I(ip)->i_gid, eofb->eof_gid))
Brian Foster1b556042012-11-06 09:50:45 -05001426 return 0;
1427
Dwight Engenb9fe5052013-08-15 14:08:02 -04001428 if ((eofb->eof_flags & XFS_EOF_FLAGS_PRID) &&
Brian Foster1b556042012-11-06 09:50:45 -05001429 xfs_get_projid(ip) != eofb->eof_prid)
1430 return 0;
1431
1432 return 1;
Brian Foster3e3f9f52012-11-07 12:21:13 -05001433}
1434
Brian Fosterf4526392014-07-24 19:44:28 +10001435/*
1436 * A union-based inode filtering algorithm. Process the inode if any of the
1437 * criteria match. This is for global/internal scans only.
1438 */
1439STATIC int
1440xfs_inode_match_id_union(
1441 struct xfs_inode *ip,
1442 struct xfs_eofblocks *eofb)
1443{
1444 if ((eofb->eof_flags & XFS_EOF_FLAGS_UID) &&
1445 uid_eq(VFS_I(ip)->i_uid, eofb->eof_uid))
1446 return 1;
1447
1448 if ((eofb->eof_flags & XFS_EOF_FLAGS_GID) &&
1449 gid_eq(VFS_I(ip)->i_gid, eofb->eof_gid))
1450 return 1;
1451
1452 if ((eofb->eof_flags & XFS_EOF_FLAGS_PRID) &&
1453 xfs_get_projid(ip) == eofb->eof_prid)
1454 return 1;
1455
1456 return 0;
1457}
1458
Brian Foster3e3f9f52012-11-07 12:21:13 -05001459STATIC int
Brian Foster41176a62012-11-06 09:50:42 -05001460xfs_inode_free_eofblocks(
1461 struct xfs_inode *ip,
Brian Foster41176a62012-11-06 09:50:42 -05001462 int flags,
1463 void *args)
1464{
Brian Fostera36b9262017-01-27 23:22:55 -08001465 int ret = 0;
Brian Foster3e3f9f52012-11-07 12:21:13 -05001466 struct xfs_eofblocks *eofb = args;
Brian Fosterf4526392014-07-24 19:44:28 +10001467 int match;
Brian Foster5400da72014-07-24 19:40:22 +10001468
Brian Foster41176a62012-11-06 09:50:42 -05001469 if (!xfs_can_free_eofblocks(ip, false)) {
1470 /* inode could be preallocated or append-only */
1471 trace_xfs_inode_free_eofblocks_invalid(ip);
1472 xfs_inode_clear_eofblocks_tag(ip);
1473 return 0;
1474 }
1475
1476 /*
1477 * If the mapping is dirty the operation can block and wait for some
1478 * time. Unless we are waiting, skip it.
1479 */
1480 if (!(flags & SYNC_WAIT) &&
1481 mapping_tagged(VFS_I(ip)->i_mapping, PAGECACHE_TAG_DIRTY))
1482 return 0;
1483
Brian Foster00ca79a2012-11-07 12:21:14 -05001484 if (eofb) {
Brian Fosterf4526392014-07-24 19:44:28 +10001485 if (eofb->eof_flags & XFS_EOF_FLAGS_UNION)
1486 match = xfs_inode_match_id_union(ip, eofb);
1487 else
1488 match = xfs_inode_match_id(ip, eofb);
1489 if (!match)
Brian Foster00ca79a2012-11-07 12:21:14 -05001490 return 0;
1491
1492 /* skip the inode if the file size is too small */
1493 if (eofb->eof_flags & XFS_EOF_FLAGS_MINFILESIZE &&
1494 XFS_ISIZE(ip) < eofb->eof_min_file_size)
1495 return 0;
1496 }
Brian Foster3e3f9f52012-11-07 12:21:13 -05001497
Brian Fostera36b9262017-01-27 23:22:55 -08001498 /*
1499 * If the caller is waiting, return -EAGAIN to keep the background
1500 * scanner moving and revisit the inode in a subsequent pass.
1501 */
Brian Fosterc3155092017-01-27 23:22:56 -08001502 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_EXCL)) {
Brian Fostera36b9262017-01-27 23:22:55 -08001503 if (flags & SYNC_WAIT)
1504 ret = -EAGAIN;
1505 return ret;
1506 }
1507 ret = xfs_free_eofblocks(ip);
Brian Fosterc3155092017-01-27 23:22:56 -08001508 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Brian Foster41176a62012-11-06 09:50:42 -05001509
1510 return ret;
1511}
1512
Darrick J. Wong83104d42016-10-03 09:11:46 -07001513static int
1514__xfs_icache_free_eofblocks(
Brian Foster41176a62012-11-06 09:50:42 -05001515 struct xfs_mount *mp,
Darrick J. Wong83104d42016-10-03 09:11:46 -07001516 struct xfs_eofblocks *eofb,
1517 int (*execute)(struct xfs_inode *ip, int flags,
1518 void *args),
1519 int tag)
Brian Foster41176a62012-11-06 09:50:42 -05001520{
Brian Foster8ca149d2012-11-07 12:21:12 -05001521 int flags = SYNC_TRYLOCK;
1522
1523 if (eofb && (eofb->eof_flags & XFS_EOF_FLAGS_SYNC))
1524 flags = SYNC_WAIT;
1525
Darrick J. Wong83104d42016-10-03 09:11:46 -07001526 return xfs_inode_ag_iterator_tag(mp, execute, flags,
1527 eofb, tag);
1528}
1529
1530int
1531xfs_icache_free_eofblocks(
1532 struct xfs_mount *mp,
1533 struct xfs_eofblocks *eofb)
1534{
1535 return __xfs_icache_free_eofblocks(mp, eofb, xfs_inode_free_eofblocks,
1536 XFS_ICI_EOFBLOCKS_TAG);
Brian Foster41176a62012-11-06 09:50:42 -05001537}
1538
Brian Fosterdc06f3982014-07-24 19:49:28 +10001539/*
1540 * Run eofblocks scans on the quotas applicable to the inode. For inodes with
1541 * multiple quotas, we don't know exactly which quota caused an allocation
1542 * failure. We make a best effort by including each quota under low free space
1543 * conditions (less than 1% free space) in the scan.
1544 */
Darrick J. Wong83104d42016-10-03 09:11:46 -07001545static int
1546__xfs_inode_free_quota_eofblocks(
1547 struct xfs_inode *ip,
1548 int (*execute)(struct xfs_mount *mp,
1549 struct xfs_eofblocks *eofb))
Brian Fosterdc06f3982014-07-24 19:49:28 +10001550{
1551 int scan = 0;
1552 struct xfs_eofblocks eofb = {0};
1553 struct xfs_dquot *dq;
1554
Brian Fosterdc06f3982014-07-24 19:49:28 +10001555 /*
Brian Fosterc3155092017-01-27 23:22:56 -08001556 * Run a sync scan to increase effectiveness and use the union filter to
Brian Fosterdc06f3982014-07-24 19:49:28 +10001557 * cover all applicable quotas in a single scan.
1558 */
Brian Fosterdc06f3982014-07-24 19:49:28 +10001559 eofb.eof_flags = XFS_EOF_FLAGS_UNION|XFS_EOF_FLAGS_SYNC;
1560
1561 if (XFS_IS_UQUOTA_ENFORCED(ip->i_mount)) {
1562 dq = xfs_inode_dquot(ip, XFS_DQ_USER);
1563 if (dq && xfs_dquot_lowsp(dq)) {
1564 eofb.eof_uid = VFS_I(ip)->i_uid;
1565 eofb.eof_flags |= XFS_EOF_FLAGS_UID;
1566 scan = 1;
1567 }
1568 }
1569
1570 if (XFS_IS_GQUOTA_ENFORCED(ip->i_mount)) {
1571 dq = xfs_inode_dquot(ip, XFS_DQ_GROUP);
1572 if (dq && xfs_dquot_lowsp(dq)) {
1573 eofb.eof_gid = VFS_I(ip)->i_gid;
1574 eofb.eof_flags |= XFS_EOF_FLAGS_GID;
1575 scan = 1;
1576 }
1577 }
1578
1579 if (scan)
Darrick J. Wong83104d42016-10-03 09:11:46 -07001580 execute(ip->i_mount, &eofb);
Brian Fosterdc06f3982014-07-24 19:49:28 +10001581
1582 return scan;
1583}
1584
Darrick J. Wong83104d42016-10-03 09:11:46 -07001585int
1586xfs_inode_free_quota_eofblocks(
1587 struct xfs_inode *ip)
1588{
1589 return __xfs_inode_free_quota_eofblocks(ip, xfs_icache_free_eofblocks);
1590}
1591
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001592static inline unsigned long
1593xfs_iflag_for_tag(
1594 int tag)
1595{
1596 switch (tag) {
1597 case XFS_ICI_EOFBLOCKS_TAG:
1598 return XFS_IEOFBLOCKS;
1599 case XFS_ICI_COWBLOCKS_TAG:
1600 return XFS_ICOWBLOCKS;
1601 default:
1602 ASSERT(0);
1603 return 0;
1604 }
1605}
1606
Darrick J. Wong83104d42016-10-03 09:11:46 -07001607static void
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001608__xfs_inode_set_blocks_tag(
Darrick J. Wong83104d42016-10-03 09:11:46 -07001609 xfs_inode_t *ip,
1610 void (*execute)(struct xfs_mount *mp),
1611 void (*set_tp)(struct xfs_mount *mp, xfs_agnumber_t agno,
1612 int error, unsigned long caller_ip),
1613 int tag)
Brian Foster27b52862012-11-06 09:50:38 -05001614{
1615 struct xfs_mount *mp = ip->i_mount;
1616 struct xfs_perag *pag;
1617 int tagged;
1618
Christoph Hellwig85a6e762016-09-19 11:09:48 +10001619 /*
1620 * Don't bother locking the AG and looking up in the radix trees
1621 * if we already know that we have the tag set.
1622 */
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001623 if (ip->i_flags & xfs_iflag_for_tag(tag))
Christoph Hellwig85a6e762016-09-19 11:09:48 +10001624 return;
1625 spin_lock(&ip->i_flags_lock);
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001626 ip->i_flags |= xfs_iflag_for_tag(tag);
Christoph Hellwig85a6e762016-09-19 11:09:48 +10001627 spin_unlock(&ip->i_flags_lock);
1628
Brian Foster27b52862012-11-06 09:50:38 -05001629 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
1630 spin_lock(&pag->pag_ici_lock);
Brian Foster27b52862012-11-06 09:50:38 -05001631
Darrick J. Wong83104d42016-10-03 09:11:46 -07001632 tagged = radix_tree_tagged(&pag->pag_ici_root, tag);
Brian Foster27b52862012-11-06 09:50:38 -05001633 radix_tree_tag_set(&pag->pag_ici_root,
Darrick J. Wong83104d42016-10-03 09:11:46 -07001634 XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino), tag);
Brian Foster27b52862012-11-06 09:50:38 -05001635 if (!tagged) {
1636 /* propagate the eofblocks tag up into the perag radix tree */
1637 spin_lock(&ip->i_mount->m_perag_lock);
1638 radix_tree_tag_set(&ip->i_mount->m_perag_tree,
1639 XFS_INO_TO_AGNO(ip->i_mount, ip->i_ino),
Darrick J. Wong83104d42016-10-03 09:11:46 -07001640 tag);
Brian Foster27b52862012-11-06 09:50:38 -05001641 spin_unlock(&ip->i_mount->m_perag_lock);
1642
Brian Foster579b62f2012-11-06 09:50:47 -05001643 /* kick off background trimming */
Darrick J. Wong83104d42016-10-03 09:11:46 -07001644 execute(ip->i_mount);
Brian Foster579b62f2012-11-06 09:50:47 -05001645
Darrick J. Wong83104d42016-10-03 09:11:46 -07001646 set_tp(ip->i_mount, pag->pag_agno, -1, _RET_IP_);
Brian Foster27b52862012-11-06 09:50:38 -05001647 }
1648
1649 spin_unlock(&pag->pag_ici_lock);
1650 xfs_perag_put(pag);
1651}
1652
1653void
Darrick J. Wong83104d42016-10-03 09:11:46 -07001654xfs_inode_set_eofblocks_tag(
Brian Foster27b52862012-11-06 09:50:38 -05001655 xfs_inode_t *ip)
1656{
Darrick J. Wong83104d42016-10-03 09:11:46 -07001657 trace_xfs_inode_set_eofblocks_tag(ip);
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001658 return __xfs_inode_set_blocks_tag(ip, xfs_queue_eofblocks,
Darrick J. Wong83104d42016-10-03 09:11:46 -07001659 trace_xfs_perag_set_eofblocks,
1660 XFS_ICI_EOFBLOCKS_TAG);
1661}
1662
1663static void
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001664__xfs_inode_clear_blocks_tag(
Darrick J. Wong83104d42016-10-03 09:11:46 -07001665 xfs_inode_t *ip,
1666 void (*clear_tp)(struct xfs_mount *mp, xfs_agnumber_t agno,
1667 int error, unsigned long caller_ip),
1668 int tag)
1669{
Brian Foster27b52862012-11-06 09:50:38 -05001670 struct xfs_mount *mp = ip->i_mount;
1671 struct xfs_perag *pag;
1672
Christoph Hellwig85a6e762016-09-19 11:09:48 +10001673 spin_lock(&ip->i_flags_lock);
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001674 ip->i_flags &= ~xfs_iflag_for_tag(tag);
Christoph Hellwig85a6e762016-09-19 11:09:48 +10001675 spin_unlock(&ip->i_flags_lock);
1676
Brian Foster27b52862012-11-06 09:50:38 -05001677 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
1678 spin_lock(&pag->pag_ici_lock);
Brian Foster27b52862012-11-06 09:50:38 -05001679
1680 radix_tree_tag_clear(&pag->pag_ici_root,
Darrick J. Wong83104d42016-10-03 09:11:46 -07001681 XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino), tag);
1682 if (!radix_tree_tagged(&pag->pag_ici_root, tag)) {
Brian Foster27b52862012-11-06 09:50:38 -05001683 /* clear the eofblocks tag from the perag radix tree */
1684 spin_lock(&ip->i_mount->m_perag_lock);
1685 radix_tree_tag_clear(&ip->i_mount->m_perag_tree,
1686 XFS_INO_TO_AGNO(ip->i_mount, ip->i_ino),
Darrick J. Wong83104d42016-10-03 09:11:46 -07001687 tag);
Brian Foster27b52862012-11-06 09:50:38 -05001688 spin_unlock(&ip->i_mount->m_perag_lock);
Darrick J. Wong83104d42016-10-03 09:11:46 -07001689 clear_tp(ip->i_mount, pag->pag_agno, -1, _RET_IP_);
Brian Foster27b52862012-11-06 09:50:38 -05001690 }
1691
1692 spin_unlock(&pag->pag_ici_lock);
1693 xfs_perag_put(pag);
1694}
1695
Darrick J. Wong83104d42016-10-03 09:11:46 -07001696void
1697xfs_inode_clear_eofblocks_tag(
1698 xfs_inode_t *ip)
1699{
1700 trace_xfs_inode_clear_eofblocks_tag(ip);
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001701 return __xfs_inode_clear_blocks_tag(ip,
Darrick J. Wong83104d42016-10-03 09:11:46 -07001702 trace_xfs_perag_clear_eofblocks, XFS_ICI_EOFBLOCKS_TAG);
1703}
1704
1705/*
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08001706 * Set ourselves up to free CoW blocks from this file. If it's already clean
1707 * then we can bail out quickly, but otherwise we must back off if the file
1708 * is undergoing some kind of write.
1709 */
1710static bool
1711xfs_prep_free_cowblocks(
1712 struct xfs_inode *ip,
1713 struct xfs_ifork *ifp)
1714{
1715 /*
1716 * Just clear the tag if we have an empty cow fork or none at all. It's
1717 * possible the inode was fully unshared since it was originally tagged.
1718 */
1719 if (!xfs_is_reflink_inode(ip) || !ifp->if_bytes) {
1720 trace_xfs_inode_free_cowblocks_invalid(ip);
1721 xfs_inode_clear_cowblocks_tag(ip);
1722 return false;
1723 }
1724
1725 /*
1726 * If the mapping is dirty or under writeback we cannot touch the
1727 * CoW fork. Leave it alone if we're in the midst of a directio.
1728 */
1729 if ((VFS_I(ip)->i_state & I_DIRTY_PAGES) ||
1730 mapping_tagged(VFS_I(ip)->i_mapping, PAGECACHE_TAG_DIRTY) ||
1731 mapping_tagged(VFS_I(ip)->i_mapping, PAGECACHE_TAG_WRITEBACK) ||
1732 atomic_read(&VFS_I(ip)->i_dio_count))
1733 return false;
1734
1735 return true;
1736}
1737
1738/*
Darrick J. Wong83104d42016-10-03 09:11:46 -07001739 * Automatic CoW Reservation Freeing
1740 *
1741 * These functions automatically garbage collect leftover CoW reservations
1742 * that were made on behalf of a cowextsize hint when we start to run out
1743 * of quota or when the reservations sit around for too long. If the file
1744 * has dirty pages or is undergoing writeback, its CoW reservations will
1745 * be retained.
1746 *
1747 * The actual garbage collection piggybacks off the same code that runs
1748 * the speculative EOF preallocation garbage collector.
1749 */
1750STATIC int
1751xfs_inode_free_cowblocks(
1752 struct xfs_inode *ip,
1753 int flags,
1754 void *args)
1755{
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08001756 struct xfs_eofblocks *eofb = args;
Brian Foster39937232016-11-08 12:53:33 +11001757 struct xfs_ifork *ifp = XFS_IFORK_PTR(ip, XFS_COW_FORK);
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08001758 int match;
1759 int ret = 0;
Darrick J. Wong83104d42016-10-03 09:11:46 -07001760
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08001761 if (!xfs_prep_free_cowblocks(ip, ifp))
Darrick J. Wong83104d42016-10-03 09:11:46 -07001762 return 0;
1763
1764 if (eofb) {
1765 if (eofb->eof_flags & XFS_EOF_FLAGS_UNION)
1766 match = xfs_inode_match_id_union(ip, eofb);
1767 else
1768 match = xfs_inode_match_id(ip, eofb);
1769 if (!match)
1770 return 0;
1771
1772 /* skip the inode if the file size is too small */
1773 if (eofb->eof_flags & XFS_EOF_FLAGS_MINFILESIZE &&
1774 XFS_ISIZE(ip) < eofb->eof_min_file_size)
1775 return 0;
Darrick J. Wong83104d42016-10-03 09:11:46 -07001776 }
1777
1778 /* Free the CoW blocks */
Brian Fosterc3155092017-01-27 23:22:56 -08001779 xfs_ilock(ip, XFS_IOLOCK_EXCL);
1780 xfs_ilock(ip, XFS_MMAPLOCK_EXCL);
Darrick J. Wong83104d42016-10-03 09:11:46 -07001781
Darrick J. Wongbe78ff02018-01-16 19:03:59 -08001782 /*
1783 * Check again, nobody else should be able to dirty blocks or change
1784 * the reflink iflag now that we have the first two locks held.
1785 */
1786 if (xfs_prep_free_cowblocks(ip, ifp))
1787 ret = xfs_reflink_cancel_cow_range(ip, 0, NULLFILEOFF, false);
Darrick J. Wong83104d42016-10-03 09:11:46 -07001788
Brian Fosterc3155092017-01-27 23:22:56 -08001789 xfs_iunlock(ip, XFS_MMAPLOCK_EXCL);
1790 xfs_iunlock(ip, XFS_IOLOCK_EXCL);
Darrick J. Wong83104d42016-10-03 09:11:46 -07001791
1792 return ret;
1793}
1794
1795int
1796xfs_icache_free_cowblocks(
1797 struct xfs_mount *mp,
1798 struct xfs_eofblocks *eofb)
1799{
1800 return __xfs_icache_free_eofblocks(mp, eofb, xfs_inode_free_cowblocks,
1801 XFS_ICI_COWBLOCKS_TAG);
1802}
1803
1804int
1805xfs_inode_free_quota_cowblocks(
1806 struct xfs_inode *ip)
1807{
1808 return __xfs_inode_free_quota_eofblocks(ip, xfs_icache_free_cowblocks);
1809}
1810
1811void
1812xfs_inode_set_cowblocks_tag(
1813 xfs_inode_t *ip)
1814{
Brian Foster7b7381f2016-10-24 14:21:00 +11001815 trace_xfs_inode_set_cowblocks_tag(ip);
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001816 return __xfs_inode_set_blocks_tag(ip, xfs_queue_cowblocks,
Brian Foster7b7381f2016-10-24 14:21:00 +11001817 trace_xfs_perag_set_cowblocks,
Darrick J. Wong83104d42016-10-03 09:11:46 -07001818 XFS_ICI_COWBLOCKS_TAG);
1819}
1820
1821void
1822xfs_inode_clear_cowblocks_tag(
1823 xfs_inode_t *ip)
1824{
Brian Foster7b7381f2016-10-24 14:21:00 +11001825 trace_xfs_inode_clear_cowblocks_tag(ip);
Darrick J. Wong91aae6b2017-12-14 15:42:22 -08001826 return __xfs_inode_clear_blocks_tag(ip,
Brian Foster7b7381f2016-10-24 14:21:00 +11001827 trace_xfs_perag_clear_cowblocks, XFS_ICI_COWBLOCKS_TAG);
Darrick J. Wong83104d42016-10-03 09:11:46 -07001828}