]> bbs.cooldavid.org Git - net-next-2.6.git/blame - fs/xfs/linux-2.6/xfs_sync.c
xfs: Use delayed write for inodes rather than async V2
[net-next-2.6.git] / fs / xfs / linux-2.6 / xfs_sync.c
CommitLineData
fe4fa4b8
DC
1/*
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"
21#include "xfs_bit.h"
22#include "xfs_log.h"
23#include "xfs_inum.h"
24#include "xfs_trans.h"
25#include "xfs_sb.h"
26#include "xfs_ag.h"
27#include "xfs_dir2.h"
28#include "xfs_dmapi.h"
29#include "xfs_mount.h"
30#include "xfs_bmap_btree.h"
31#include "xfs_alloc_btree.h"
32#include "xfs_ialloc_btree.h"
33#include "xfs_btree.h"
34#include "xfs_dir2_sf.h"
35#include "xfs_attr_sf.h"
36#include "xfs_inode.h"
37#include "xfs_dinode.h"
38#include "xfs_error.h"
39#include "xfs_mru_cache.h"
40#include "xfs_filestream.h"
41#include "xfs_vnodeops.h"
42#include "xfs_utils.h"
43#include "xfs_buf_item.h"
44#include "xfs_inode_item.h"
45#include "xfs_rw.h"
7d095257 46#include "xfs_quota.h"
0b1b213f 47#include "xfs_trace.h"
fe4fa4b8 48
a167b17e
DC
49#include <linux/kthread.h>
50#include <linux/freezer.h>
51
5a34d5cd 52
75f3cb13
DC
53STATIC xfs_inode_t *
54xfs_inode_ag_lookup(
55 struct xfs_mount *mp,
56 struct xfs_perag *pag,
57 uint32_t *first_index,
58 int tag)
59{
60 int nr_found;
61 struct xfs_inode *ip;
62
63 /*
64 * use a gang lookup to find the next inode in the tree
65 * as the tree is sparse and a gang lookup walks to find
66 * the number of objects requested.
67 */
75f3cb13
DC
68 if (tag == XFS_ICI_NO_TAG) {
69 nr_found = radix_tree_gang_lookup(&pag->pag_ici_root,
70 (void **)&ip, *first_index, 1);
71 } else {
72 nr_found = radix_tree_gang_lookup_tag(&pag->pag_ici_root,
73 (void **)&ip, *first_index, 1, tag);
74 }
75 if (!nr_found)
c8e20be0 76 return NULL;
75f3cb13
DC
77
78 /*
79 * Update the index for the next lookup. Catch overflows
80 * into the next AG range which can occur if we have inodes
81 * in the last block of the AG and we are currently
82 * pointing to the last inode.
83 */
84 *first_index = XFS_INO_TO_AGINO(mp, ip->i_ino + 1);
85 if (*first_index < XFS_INO_TO_AGINO(mp, ip->i_ino))
c8e20be0 86 return NULL;
75f3cb13 87 return ip;
75f3cb13
DC
88}
89
90STATIC int
91xfs_inode_ag_walk(
92 struct xfs_mount *mp,
5017e97d 93 struct xfs_perag *pag,
75f3cb13
DC
94 int (*execute)(struct xfs_inode *ip,
95 struct xfs_perag *pag, int flags),
96 int flags,
c8e20be0
DC
97 int tag,
98 int exclusive)
75f3cb13 99{
75f3cb13
DC
100 uint32_t first_index;
101 int last_error = 0;
102 int skipped;
103
104restart:
105 skipped = 0;
106 first_index = 0;
107 do {
108 int error = 0;
109 xfs_inode_t *ip;
110
c8e20be0
DC
111 if (exclusive)
112 write_lock(&pag->pag_ici_lock);
113 else
114 read_lock(&pag->pag_ici_lock);
75f3cb13 115 ip = xfs_inode_ag_lookup(mp, pag, &first_index, tag);
c8e20be0
DC
116 if (!ip) {
117 if (exclusive)
118 write_unlock(&pag->pag_ici_lock);
119 else
120 read_unlock(&pag->pag_ici_lock);
75f3cb13 121 break;
c8e20be0 122 }
75f3cb13 123
c8e20be0 124 /* execute releases pag->pag_ici_lock */
75f3cb13
DC
125 error = execute(ip, pag, flags);
126 if (error == EAGAIN) {
127 skipped++;
128 continue;
129 }
130 if (error)
131 last_error = error;
c8e20be0
DC
132
133 /* bail out if the filesystem is corrupted. */
75f3cb13
DC
134 if (error == EFSCORRUPTED)
135 break;
136
137 } while (1);
138
139 if (skipped) {
140 delay(1);
141 goto restart;
142 }
75f3cb13
DC
143 return last_error;
144}
145
fe588ed3 146int
75f3cb13
DC
147xfs_inode_ag_iterator(
148 struct xfs_mount *mp,
149 int (*execute)(struct xfs_inode *ip,
150 struct xfs_perag *pag, int flags),
151 int flags,
c8e20be0
DC
152 int tag,
153 int exclusive)
75f3cb13
DC
154{
155 int error = 0;
156 int last_error = 0;
157 xfs_agnumber_t ag;
158
159 for (ag = 0; ag < mp->m_sb.sb_agcount; ag++) {
5017e97d
DC
160 struct xfs_perag *pag;
161
162 pag = xfs_perag_get(mp, ag);
163 if (!pag->pag_ici_init) {
164 xfs_perag_put(pag);
75f3cb13 165 continue;
5017e97d
DC
166 }
167 error = xfs_inode_ag_walk(mp, pag, execute, flags, tag,
c8e20be0 168 exclusive);
5017e97d 169 xfs_perag_put(pag);
75f3cb13
DC
170 if (error) {
171 last_error = error;
172 if (error == EFSCORRUPTED)
173 break;
174 }
175 }
176 return XFS_ERROR(last_error);
177}
178
1da8eeca 179/* must be called with pag_ici_lock held and releases it */
fe588ed3 180int
1da8eeca
DC
181xfs_sync_inode_valid(
182 struct xfs_inode *ip,
183 struct xfs_perag *pag)
184{
185 struct inode *inode = VFS_I(ip);
018027be 186 int error = EFSCORRUPTED;
1da8eeca
DC
187
188 /* nothing to sync during shutdown */
018027be
DC
189 if (XFS_FORCED_SHUTDOWN(ip->i_mount))
190 goto out_unlock;
1da8eeca 191
018027be
DC
192 /* avoid new or reclaimable inodes. Leave for reclaim code to flush */
193 error = ENOENT;
194 if (xfs_iflags_test(ip, XFS_INEW | XFS_IRECLAIMABLE | XFS_IRECLAIM))
195 goto out_unlock;
1da8eeca 196
018027be
DC
197 /* If we can't grab the inode, it must on it's way to reclaim. */
198 if (!igrab(inode))
199 goto out_unlock;
200
201 if (is_bad_inode(inode)) {
1da8eeca 202 IRELE(ip);
018027be 203 goto out_unlock;
1da8eeca
DC
204 }
205
018027be
DC
206 /* inode is valid */
207 error = 0;
208out_unlock:
209 read_unlock(&pag->pag_ici_lock);
210 return error;
1da8eeca
DC
211}
212
5a34d5cd
DC
213STATIC int
214xfs_sync_inode_data(
215 struct xfs_inode *ip,
75f3cb13 216 struct xfs_perag *pag,
5a34d5cd
DC
217 int flags)
218{
219 struct inode *inode = VFS_I(ip);
220 struct address_space *mapping = inode->i_mapping;
221 int error = 0;
222
75f3cb13
DC
223 error = xfs_sync_inode_valid(ip, pag);
224 if (error)
225 return error;
226
5a34d5cd
DC
227 if (!mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
228 goto out_wait;
229
230 if (!xfs_ilock_nowait(ip, XFS_IOLOCK_SHARED)) {
231 if (flags & SYNC_TRYLOCK)
232 goto out_wait;
233 xfs_ilock(ip, XFS_IOLOCK_SHARED);
234 }
235
236 error = xfs_flush_pages(ip, 0, -1, (flags & SYNC_WAIT) ?
0cadda1c 237 0 : XBF_ASYNC, FI_NONE);
5a34d5cd
DC
238 xfs_iunlock(ip, XFS_IOLOCK_SHARED);
239
240 out_wait:
b0710ccc 241 if (flags & SYNC_WAIT)
5a34d5cd 242 xfs_ioend_wait(ip);
75f3cb13 243 IRELE(ip);
5a34d5cd
DC
244 return error;
245}
246
845b6d0c
CH
247STATIC int
248xfs_sync_inode_attr(
249 struct xfs_inode *ip,
75f3cb13 250 struct xfs_perag *pag,
845b6d0c
CH
251 int flags)
252{
253 int error = 0;
254
75f3cb13
DC
255 error = xfs_sync_inode_valid(ip, pag);
256 if (error)
257 return error;
258
845b6d0c
CH
259 xfs_ilock(ip, XFS_ILOCK_SHARED);
260 if (xfs_inode_clean(ip))
261 goto out_unlock;
262 if (!xfs_iflock_nowait(ip)) {
263 if (!(flags & SYNC_WAIT))
264 goto out_unlock;
265 xfs_iflock(ip);
266 }
267
268 if (xfs_inode_clean(ip)) {
269 xfs_ifunlock(ip);
270 goto out_unlock;
271 }
272
c854363e 273 error = xfs_iflush(ip, flags);
845b6d0c
CH
274
275 out_unlock:
276 xfs_iunlock(ip, XFS_ILOCK_SHARED);
75f3cb13 277 IRELE(ip);
845b6d0c
CH
278 return error;
279}
280
075fe102
CH
281/*
282 * Write out pagecache data for the whole filesystem.
283 */
683a8970 284int
075fe102
CH
285xfs_sync_data(
286 struct xfs_mount *mp,
287 int flags)
683a8970 288{
075fe102 289 int error;
fe4fa4b8 290
b0710ccc 291 ASSERT((flags & ~(SYNC_TRYLOCK|SYNC_WAIT)) == 0);
fe4fa4b8 292
075fe102 293 error = xfs_inode_ag_iterator(mp, xfs_sync_inode_data, flags,
c8e20be0 294 XFS_ICI_NO_TAG, 0);
075fe102
CH
295 if (error)
296 return XFS_ERROR(error);
e9f1c6ee 297
a14a348b 298 xfs_log_force(mp, (flags & SYNC_WAIT) ? XFS_LOG_SYNC : 0);
075fe102
CH
299 return 0;
300}
e9f1c6ee 301
075fe102
CH
302/*
303 * Write out inode metadata (attributes) for the whole filesystem.
304 */
305int
306xfs_sync_attr(
307 struct xfs_mount *mp,
308 int flags)
309{
310 ASSERT((flags & ~SYNC_WAIT) == 0);
75f3cb13 311
075fe102 312 return xfs_inode_ag_iterator(mp, xfs_sync_inode_attr, flags,
c8e20be0 313 XFS_ICI_NO_TAG, 0);
fe4fa4b8
DC
314}
315
2af75df7
CH
316STATIC int
317xfs_commit_dummy_trans(
318 struct xfs_mount *mp,
dce5065a 319 uint flags)
2af75df7
CH
320{
321 struct xfs_inode *ip = mp->m_rootip;
322 struct xfs_trans *tp;
323 int error;
324
325 /*
326 * Put a dummy transaction in the log to tell recovery
327 * that all others are OK.
328 */
329 tp = xfs_trans_alloc(mp, XFS_TRANS_DUMMY1);
330 error = xfs_trans_reserve(tp, 0, XFS_ICHANGE_LOG_RES(mp), 0, 0, 0);
331 if (error) {
332 xfs_trans_cancel(tp, 0);
333 return error;
334 }
335
336 xfs_ilock(ip, XFS_ILOCK_EXCL);
337
338 xfs_trans_ijoin(tp, ip, XFS_ILOCK_EXCL);
339 xfs_trans_ihold(tp, ip);
340 xfs_trans_log_inode(tp, ip, XFS_ILOG_CORE);
2af75df7 341 error = xfs_trans_commit(tp, 0);
2af75df7
CH
342 xfs_iunlock(ip, XFS_ILOCK_EXCL);
343
dce5065a 344 /* the log force ensures this transaction is pushed to disk */
a14a348b 345 xfs_log_force(mp, (flags & SYNC_WAIT) ? XFS_LOG_SYNC : 0);
dce5065a 346 return error;
2af75df7
CH
347}
348
5d77c0dc 349STATIC int
2af75df7
CH
350xfs_sync_fsdata(
351 struct xfs_mount *mp,
352 int flags)
353{
354 struct xfs_buf *bp;
355 struct xfs_buf_log_item *bip;
356 int error = 0;
357
358 /*
359 * If this is xfssyncd() then only sync the superblock if we can
360 * lock it without sleeping and it is not pinned.
361 */
8b5403a6 362 if (flags & SYNC_TRYLOCK) {
2af75df7
CH
363 ASSERT(!(flags & SYNC_WAIT));
364
0cadda1c 365 bp = xfs_getsb(mp, XBF_TRYLOCK);
2af75df7
CH
366 if (!bp)
367 goto out;
368
369 bip = XFS_BUF_FSPRIVATE(bp, struct xfs_buf_log_item *);
370 if (!bip || !xfs_buf_item_dirty(bip) || XFS_BUF_ISPINNED(bp))
371 goto out_brelse;
372 } else {
373 bp = xfs_getsb(mp, 0);
374
375 /*
376 * If the buffer is pinned then push on the log so we won't
377 * get stuck waiting in the write for someone, maybe
378 * ourselves, to flush the log.
379 *
380 * Even though we just pushed the log above, we did not have
381 * the superblock buffer locked at that point so it can
382 * become pinned in between there and here.
383 */
384 if (XFS_BUF_ISPINNED(bp))
a14a348b 385 xfs_log_force(mp, 0);
2af75df7
CH
386 }
387
388
389 if (flags & SYNC_WAIT)
390 XFS_BUF_UNASYNC(bp);
391 else
392 XFS_BUF_ASYNC(bp);
393
dce5065a
DC
394 error = xfs_bwrite(mp, bp);
395 if (error)
396 return error;
397
398 /*
399 * If this is a data integrity sync make sure all pending buffers
400 * are flushed out for the log coverage check below.
401 */
402 if (flags & SYNC_WAIT)
403 xfs_flush_buftarg(mp->m_ddev_targp, 1);
404
405 if (xfs_log_need_covered(mp))
406 error = xfs_commit_dummy_trans(mp, flags);
407 return error;
2af75df7
CH
408
409 out_brelse:
410 xfs_buf_relse(bp);
411 out:
412 return error;
e9f1c6ee
DC
413}
414
415/*
a4e4c4f4
DC
416 * When remounting a filesystem read-only or freezing the filesystem, we have
417 * two phases to execute. This first phase is syncing the data before we
418 * quiesce the filesystem, and the second is flushing all the inodes out after
419 * we've waited for all the transactions created by the first phase to
420 * complete. The second phase ensures that the inodes are written to their
421 * location on disk rather than just existing in transactions in the log. This
422 * means after a quiesce there is no log replay required to write the inodes to
423 * disk (this is the main difference between a sync and a quiesce).
424 */
425/*
426 * First stage of freeze - no writers will make progress now we are here,
e9f1c6ee
DC
427 * so we flush delwri and delalloc buffers here, then wait for all I/O to
428 * complete. Data is frozen at that point. Metadata is not frozen,
a4e4c4f4
DC
429 * transactions can still occur here so don't bother flushing the buftarg
430 * because it'll just get dirty again.
e9f1c6ee
DC
431 */
432int
433xfs_quiesce_data(
434 struct xfs_mount *mp)
435{
436 int error;
437
438 /* push non-blocking */
075fe102 439 xfs_sync_data(mp, 0);
8b5403a6 440 xfs_qm_sync(mp, SYNC_TRYLOCK);
e9f1c6ee 441
c90b07e8 442 /* push and block till complete */
b0710ccc 443 xfs_sync_data(mp, SYNC_WAIT);
7d095257 444 xfs_qm_sync(mp, SYNC_WAIT);
e9f1c6ee 445
a4e4c4f4 446 /* write superblock and hoover up shutdown errors */
c90b07e8 447 error = xfs_sync_fsdata(mp, SYNC_WAIT);
e9f1c6ee 448
a4e4c4f4 449 /* flush data-only devices */
e9f1c6ee
DC
450 if (mp->m_rtdev_targp)
451 XFS_bflush(mp->m_rtdev_targp);
452
453 return error;
2af75df7
CH
454}
455
76bf105c
DC
456STATIC void
457xfs_quiesce_fs(
458 struct xfs_mount *mp)
459{
460 int count = 0, pincount;
461
c854363e 462 xfs_reclaim_inodes(mp, 0);
76bf105c 463 xfs_flush_buftarg(mp->m_ddev_targp, 0);
76bf105c
DC
464
465 /*
466 * This loop must run at least twice. The first instance of the loop
467 * will flush most meta data but that will generate more meta data
468 * (typically directory updates). Which then must be flushed and
c854363e
DC
469 * logged before we can write the unmount record. We also so sync
470 * reclaim of inodes to catch any that the above delwri flush skipped.
76bf105c
DC
471 */
472 do {
c854363e 473 xfs_reclaim_inodes(mp, SYNC_WAIT);
075fe102 474 xfs_sync_attr(mp, SYNC_WAIT);
76bf105c
DC
475 pincount = xfs_flush_buftarg(mp->m_ddev_targp, 1);
476 if (!pincount) {
477 delay(50);
478 count++;
479 }
480 } while (count < 2);
481}
482
483/*
484 * Second stage of a quiesce. The data is already synced, now we have to take
485 * care of the metadata. New transactions are already blocked, so we need to
486 * wait for any remaining transactions to drain out before proceding.
487 */
488void
489xfs_quiesce_attr(
490 struct xfs_mount *mp)
491{
492 int error = 0;
493
494 /* wait for all modifications to complete */
495 while (atomic_read(&mp->m_active_trans) > 0)
496 delay(100);
497
498 /* flush inodes and push all remaining buffers out to disk */
499 xfs_quiesce_fs(mp);
500
5e106572
FB
501 /*
502 * Just warn here till VFS can correctly support
503 * read-only remount without racing.
504 */
505 WARN_ON(atomic_read(&mp->m_active_trans) != 0);
76bf105c
DC
506
507 /* Push the superblock and write an unmount record */
508 error = xfs_log_sbcount(mp, 1);
509 if (error)
510 xfs_fs_cmn_err(CE_WARN, mp,
511 "xfs_attr_quiesce: failed to log sb changes. "
512 "Frozen image may not be consistent.");
513 xfs_log_unmount_write(mp);
514 xfs_unmountfs_writesb(mp);
515}
516
a167b17e
DC
517/*
518 * Enqueue a work item to be picked up by the vfs xfssyncd thread.
519 * Doing this has two advantages:
520 * - It saves on stack space, which is tight in certain situations
521 * - It can be used (with care) as a mechanism to avoid deadlocks.
522 * Flushing while allocating in a full filesystem requires both.
523 */
524STATIC void
525xfs_syncd_queue_work(
526 struct xfs_mount *mp,
527 void *data,
e43afd72
DC
528 void (*syncer)(struct xfs_mount *, void *),
529 struct completion *completion)
a167b17e 530{
a8d770d9 531 struct xfs_sync_work *work;
a167b17e 532
a8d770d9 533 work = kmem_alloc(sizeof(struct xfs_sync_work), KM_SLEEP);
a167b17e
DC
534 INIT_LIST_HEAD(&work->w_list);
535 work->w_syncer = syncer;
536 work->w_data = data;
537 work->w_mount = mp;
e43afd72 538 work->w_completion = completion;
a167b17e
DC
539 spin_lock(&mp->m_sync_lock);
540 list_add_tail(&work->w_list, &mp->m_sync_list);
541 spin_unlock(&mp->m_sync_lock);
542 wake_up_process(mp->m_sync_task);
543}
544
545/*
546 * Flush delayed allocate data, attempting to free up reserved space
547 * from existing allocations. At this point a new allocation attempt
548 * has failed with ENOSPC and we are in the process of scratching our
549 * heads, looking about for more room...
550 */
551STATIC void
a8d770d9 552xfs_flush_inodes_work(
a167b17e
DC
553 struct xfs_mount *mp,
554 void *arg)
555{
556 struct inode *inode = arg;
075fe102 557 xfs_sync_data(mp, SYNC_TRYLOCK);
b0710ccc 558 xfs_sync_data(mp, SYNC_TRYLOCK | SYNC_WAIT);
a167b17e
DC
559 iput(inode);
560}
561
562void
a8d770d9 563xfs_flush_inodes(
a167b17e
DC
564 xfs_inode_t *ip)
565{
566 struct inode *inode = VFS_I(ip);
e43afd72 567 DECLARE_COMPLETION_ONSTACK(completion);
a167b17e
DC
568
569 igrab(inode);
e43afd72
DC
570 xfs_syncd_queue_work(ip->i_mount, inode, xfs_flush_inodes_work, &completion);
571 wait_for_completion(&completion);
a14a348b 572 xfs_log_force(ip->i_mount, XFS_LOG_SYNC);
a167b17e
DC
573}
574
aacaa880
DC
575/*
576 * Every sync period we need to unpin all items, reclaim inodes, sync
577 * quota and write out the superblock. We might need to cover the log
578 * to indicate it is idle.
579 */
a167b17e
DC
580STATIC void
581xfs_sync_worker(
582 struct xfs_mount *mp,
583 void *unused)
584{
585 int error;
586
aacaa880 587 if (!(mp->m_flags & XFS_MOUNT_RDONLY)) {
a14a348b 588 xfs_log_force(mp, 0);
c854363e 589 xfs_reclaim_inodes(mp, 0);
aacaa880 590 /* dgc: errors ignored here */
8b5403a6
CH
591 error = xfs_qm_sync(mp, SYNC_TRYLOCK);
592 error = xfs_sync_fsdata(mp, SYNC_TRYLOCK);
aacaa880 593 }
a167b17e
DC
594 mp->m_sync_seq++;
595 wake_up(&mp->m_wait_single_sync_task);
596}
597
598STATIC int
599xfssyncd(
600 void *arg)
601{
602 struct xfs_mount *mp = arg;
603 long timeleft;
a8d770d9 604 xfs_sync_work_t *work, *n;
a167b17e
DC
605 LIST_HEAD (tmp);
606
607 set_freezable();
608 timeleft = xfs_syncd_centisecs * msecs_to_jiffies(10);
609 for (;;) {
610 timeleft = schedule_timeout_interruptible(timeleft);
611 /* swsusp */
612 try_to_freeze();
613 if (kthread_should_stop() && list_empty(&mp->m_sync_list))
614 break;
615
616 spin_lock(&mp->m_sync_lock);
617 /*
618 * We can get woken by laptop mode, to do a sync -
619 * that's the (only!) case where the list would be
620 * empty with time remaining.
621 */
622 if (!timeleft || list_empty(&mp->m_sync_list)) {
623 if (!timeleft)
624 timeleft = xfs_syncd_centisecs *
625 msecs_to_jiffies(10);
626 INIT_LIST_HEAD(&mp->m_sync_work.w_list);
627 list_add_tail(&mp->m_sync_work.w_list,
628 &mp->m_sync_list);
629 }
630 list_for_each_entry_safe(work, n, &mp->m_sync_list, w_list)
631 list_move(&work->w_list, &tmp);
632 spin_unlock(&mp->m_sync_lock);
633
634 list_for_each_entry_safe(work, n, &tmp, w_list) {
635 (*work->w_syncer)(mp, work->w_data);
636 list_del(&work->w_list);
637 if (work == &mp->m_sync_work)
638 continue;
e43afd72
DC
639 if (work->w_completion)
640 complete(work->w_completion);
a167b17e
DC
641 kmem_free(work);
642 }
643 }
644
645 return 0;
646}
647
648int
649xfs_syncd_init(
650 struct xfs_mount *mp)
651{
652 mp->m_sync_work.w_syncer = xfs_sync_worker;
653 mp->m_sync_work.w_mount = mp;
e43afd72 654 mp->m_sync_work.w_completion = NULL;
a167b17e
DC
655 mp->m_sync_task = kthread_run(xfssyncd, mp, "xfssyncd");
656 if (IS_ERR(mp->m_sync_task))
657 return -PTR_ERR(mp->m_sync_task);
658 return 0;
659}
660
661void
662xfs_syncd_stop(
663 struct xfs_mount *mp)
664{
665 kthread_stop(mp->m_sync_task);
666}
667
bc990f5c
CH
668void
669__xfs_inode_set_reclaim_tag(
670 struct xfs_perag *pag,
671 struct xfs_inode *ip)
672{
673 radix_tree_tag_set(&pag->pag_ici_root,
674 XFS_INO_TO_AGINO(ip->i_mount, ip->i_ino),
675 XFS_ICI_RECLAIM_TAG);
676}
677
11654513
DC
678/*
679 * We set the inode flag atomically with the radix tree tag.
680 * Once we get tag lookups on the radix tree, this inode flag
681 * can go away.
682 */
396beb85
DC
683void
684xfs_inode_set_reclaim_tag(
685 xfs_inode_t *ip)
686{
5017e97d
DC
687 struct xfs_mount *mp = ip->i_mount;
688 struct xfs_perag *pag;
396beb85 689
5017e97d 690 pag = xfs_perag_get(mp, XFS_INO_TO_AGNO(mp, ip->i_ino));
396beb85
DC
691 read_lock(&pag->pag_ici_lock);
692 spin_lock(&ip->i_flags_lock);
bc990f5c 693 __xfs_inode_set_reclaim_tag(pag, ip);
11654513 694 __xfs_iflags_set(ip, XFS_IRECLAIMABLE);
396beb85
DC
695 spin_unlock(&ip->i_flags_lock);
696 read_unlock(&pag->pag_ici_lock);
5017e97d 697 xfs_perag_put(pag);
396beb85
DC
698}
699
700void
701__xfs_inode_clear_reclaim_tag(
702 xfs_mount_t *mp,
703 xfs_perag_t *pag,
704 xfs_inode_t *ip)
705{
706 radix_tree_tag_clear(&pag->pag_ici_root,
707 XFS_INO_TO_AGINO(mp, ip->i_ino), XFS_ICI_RECLAIM_TAG);
708}
709
777df5af
DC
710/*
711 * Inodes in different states need to be treated differently, and the return
712 * value of xfs_iflush is not sufficient to get this right. The following table
713 * lists the inode states and the reclaim actions necessary for non-blocking
714 * reclaim:
715 *
716 *
717 * inode state iflush ret required action
718 * --------------- ---------- ---------------
719 * bad - reclaim
720 * shutdown EIO unpin and reclaim
721 * clean, unpinned 0 reclaim
722 * stale, unpinned 0 reclaim
c854363e
DC
723 * clean, pinned(*) 0 requeue
724 * stale, pinned EAGAIN requeue
725 * dirty, delwri ok 0 requeue
726 * dirty, delwri blocked EAGAIN requeue
727 * dirty, sync flush 0 reclaim
777df5af
DC
728 *
729 * (*) dgc: I don't think the clean, pinned state is possible but it gets
730 * handled anyway given the order of checks implemented.
731 *
c854363e
DC
732 * As can be seen from the table, the return value of xfs_iflush() is not
733 * sufficient to correctly decide the reclaim action here. The checks in
734 * xfs_iflush() might look like duplicates, but they are not.
735 *
736 * Also, because we get the flush lock first, we know that any inode that has
737 * been flushed delwri has had the flush completed by the time we check that
738 * the inode is clean. The clean inode check needs to be done before flushing
739 * the inode delwri otherwise we would loop forever requeuing clean inodes as
740 * we cannot tell apart a successful delwri flush and a clean inode from the
741 * return value of xfs_iflush().
742 *
743 * Note that because the inode is flushed delayed write by background
744 * writeback, the flush lock may already be held here and waiting on it can
745 * result in very long latencies. Hence for sync reclaims, where we wait on the
746 * flush lock, the caller should push out delayed write inodes first before
747 * trying to reclaim them to minimise the amount of time spent waiting. For
748 * background relaim, we just requeue the inode for the next pass.
749 *
777df5af
DC
750 * Hence the order of actions after gaining the locks should be:
751 * bad => reclaim
752 * shutdown => unpin and reclaim
c854363e
DC
753 * pinned, delwri => requeue
754 * pinned, sync => unpin
777df5af
DC
755 * stale => reclaim
756 * clean => reclaim
c854363e
DC
757 * dirty, delwri => flush and requeue
758 * dirty, sync => flush, wait and reclaim
777df5af 759 */
75f3cb13 760STATIC int
c8e20be0 761xfs_reclaim_inode(
75f3cb13
DC
762 struct xfs_inode *ip,
763 struct xfs_perag *pag,
c8e20be0 764 int sync_mode)
fce08f2f 765{
c854363e 766 int error = 0;
777df5af 767
c8e20be0
DC
768 /*
769 * The radix tree lock here protects a thread in xfs_iget from racing
770 * with us starting reclaim on the inode. Once we have the
771 * XFS_IRECLAIM flag set it will not touch us.
772 */
773 spin_lock(&ip->i_flags_lock);
774 ASSERT_ALWAYS(__xfs_iflags_test(ip, XFS_IRECLAIMABLE));
775 if (__xfs_iflags_test(ip, XFS_IRECLAIM)) {
776 /* ignore as it is already under reclaim */
777 spin_unlock(&ip->i_flags_lock);
778 write_unlock(&pag->pag_ici_lock);
75f3cb13 779 return 0;
fce08f2f 780 }
c8e20be0
DC
781 __xfs_iflags_set(ip, XFS_IRECLAIM);
782 spin_unlock(&ip->i_flags_lock);
783 write_unlock(&pag->pag_ici_lock);
784
c8e20be0 785 xfs_ilock(ip, XFS_ILOCK_EXCL);
c854363e
DC
786 if (!xfs_iflock_nowait(ip)) {
787 if (!(sync_mode & SYNC_WAIT))
788 goto out;
789 xfs_iflock(ip);
790 }
7a3be02b 791
777df5af
DC
792 if (is_bad_inode(VFS_I(ip)))
793 goto reclaim;
794 if (XFS_FORCED_SHUTDOWN(ip->i_mount)) {
795 xfs_iunpin_wait(ip);
796 goto reclaim;
797 }
c854363e
DC
798 if (xfs_ipincount(ip)) {
799 if (!(sync_mode & SYNC_WAIT)) {
800 xfs_ifunlock(ip);
801 goto out;
802 }
777df5af 803 xfs_iunpin_wait(ip);
c854363e 804 }
777df5af
DC
805 if (xfs_iflags_test(ip, XFS_ISTALE))
806 goto reclaim;
807 if (xfs_inode_clean(ip))
808 goto reclaim;
809
810 /* Now we have an inode that needs flushing */
811 error = xfs_iflush(ip, sync_mode);
c854363e
DC
812 if (sync_mode & SYNC_WAIT) {
813 xfs_iflock(ip);
814 goto reclaim;
c8e20be0
DC
815 }
816
c854363e
DC
817 /*
818 * When we have to flush an inode but don't have SYNC_WAIT set, we
819 * flush the inode out using a delwri buffer and wait for the next
820 * call into reclaim to find it in a clean state instead of waiting for
821 * it now. We also don't return errors here - if the error is transient
822 * then the next reclaim pass will flush the inode, and if the error
823 * is permanent then the next sync reclaim will relcaim the inode and
824 * pass on the error.
825 */
826 if (error && !XFS_FORCED_SHUTDOWN(ip->i_mount)) {
827 xfs_fs_cmn_err(CE_WARN, ip->i_mount,
828 "inode 0x%llx background reclaim flush failed with %d",
829 (long long)ip->i_ino, error);
830 }
831out:
832 xfs_iflags_clear(ip, XFS_IRECLAIM);
833 xfs_iunlock(ip, XFS_ILOCK_EXCL);
834 /*
835 * We could return EAGAIN here to make reclaim rescan the inode tree in
836 * a short while. However, this just burns CPU time scanning the tree
837 * waiting for IO to complete and xfssyncd never goes back to the idle
838 * state. Instead, return 0 to let the next scheduled background reclaim
839 * attempt to reclaim the inode again.
840 */
841 return 0;
842
777df5af
DC
843reclaim:
844 xfs_ifunlock(ip);
c8e20be0
DC
845 xfs_iunlock(ip, XFS_ILOCK_EXCL);
846 xfs_ireclaim(ip);
c854363e
DC
847 return error;
848
7a3be02b
DC
849}
850
851int
852xfs_reclaim_inodes(
853 xfs_mount_t *mp,
7a3be02b
DC
854 int mode)
855{
c8e20be0
DC
856 return xfs_inode_ag_iterator(mp, xfs_reclaim_inode, mode,
857 XFS_ICI_RECLAIM_TAG, 1);
fce08f2f 858}