xref: /openbmc/linux/fs/fs-writeback.c (revision 253c34e9)
11da177e4SLinus Torvalds /*
21da177e4SLinus Torvalds  * fs/fs-writeback.c
31da177e4SLinus Torvalds  *
41da177e4SLinus Torvalds  * Copyright (C) 2002, Linus Torvalds.
51da177e4SLinus Torvalds  *
61da177e4SLinus Torvalds  * Contains all the functions related to writing back and waiting
71da177e4SLinus Torvalds  * upon dirty inodes against superblocks, and writing back dirty
81da177e4SLinus Torvalds  * pages against inodes.  ie: data writeback.  Writeout of the
91da177e4SLinus Torvalds  * inode itself is not handled here.
101da177e4SLinus Torvalds  *
11e1f8e874SFrancois Cami  * 10Apr2002	Andrew Morton
121da177e4SLinus Torvalds  *		Split out of fs/inode.c
131da177e4SLinus Torvalds  *		Additions for address_space-based writeback
141da177e4SLinus Torvalds  */
151da177e4SLinus Torvalds 
161da177e4SLinus Torvalds #include <linux/kernel.h>
17f5ff8422SJens Axboe #include <linux/module.h>
181da177e4SLinus Torvalds #include <linux/spinlock.h>
195a0e3ad6STejun Heo #include <linux/slab.h>
201da177e4SLinus Torvalds #include <linux/sched.h>
211da177e4SLinus Torvalds #include <linux/fs.h>
221da177e4SLinus Torvalds #include <linux/mm.h>
2303ba3782SJens Axboe #include <linux/kthread.h>
2403ba3782SJens Axboe #include <linux/freezer.h>
251da177e4SLinus Torvalds #include <linux/writeback.h>
261da177e4SLinus Torvalds #include <linux/blkdev.h>
271da177e4SLinus Torvalds #include <linux/backing-dev.h>
281da177e4SLinus Torvalds #include <linux/buffer_head.h>
29455b2864SDave Chinner #include <linux/tracepoint.h>
3007f3f05cSDavid Howells #include "internal.h"
311da177e4SLinus Torvalds 
32d0bceac7SJens Axboe /*
33c4a77a6cSJens Axboe  * Passed into wb_writeback(), essentially a subset of writeback_control
34c4a77a6cSJens Axboe  */
3583ba7b07SChristoph Hellwig struct wb_writeback_work {
36c4a77a6cSJens Axboe 	long nr_pages;
37c4a77a6cSJens Axboe 	struct super_block *sb;
38c4a77a6cSJens Axboe 	enum writeback_sync_modes sync_mode;
3952957fe1SH Hartley Sweeten 	unsigned int for_kupdate:1;
4052957fe1SH Hartley Sweeten 	unsigned int range_cyclic:1;
4152957fe1SH Hartley Sweeten 	unsigned int for_background:1;
42c4a77a6cSJens Axboe 
438010c3b6SJens Axboe 	struct list_head list;		/* pending work list */
4483ba7b07SChristoph Hellwig 	struct completion *done;	/* set if the caller waits */
4503ba3782SJens Axboe };
4603ba3782SJens Axboe 
47455b2864SDave Chinner /*
48455b2864SDave Chinner  * Include the creation of the trace points after defining the
49455b2864SDave Chinner  * wb_writeback_work structure so that the definition remains local to this
50455b2864SDave Chinner  * file.
51455b2864SDave Chinner  */
52455b2864SDave Chinner #define CREATE_TRACE_POINTS
53455b2864SDave Chinner #include <trace/events/writeback.h>
54455b2864SDave Chinner 
55455b2864SDave Chinner #define inode_to_bdi(inode)	((inode)->i_mapping->backing_dev_info)
56455b2864SDave Chinner 
57455b2864SDave Chinner /*
58455b2864SDave Chinner  * We don't actually have pdflush, but this one is exported though /proc...
59455b2864SDave Chinner  */
60455b2864SDave Chinner int nr_pdflush_threads;
61455b2864SDave Chinner 
62f11b00f3SAdrian Bunk /**
63f11b00f3SAdrian Bunk  * writeback_in_progress - determine whether there is writeback in progress
64f11b00f3SAdrian Bunk  * @bdi: the device's backing_dev_info structure.
65f11b00f3SAdrian Bunk  *
6603ba3782SJens Axboe  * Determine whether there is writeback waiting to be handled against a
6703ba3782SJens Axboe  * backing device.
68f11b00f3SAdrian Bunk  */
69f11b00f3SAdrian Bunk int writeback_in_progress(struct backing_dev_info *bdi)
70f11b00f3SAdrian Bunk {
7103ba3782SJens Axboe 	return !list_empty(&bdi->work_list);
72f11b00f3SAdrian Bunk }
73f11b00f3SAdrian Bunk 
7483ba7b07SChristoph Hellwig static void bdi_queue_work(struct backing_dev_info *bdi,
7583ba7b07SChristoph Hellwig 		struct wb_writeback_work *work)
764195f73dSNick Piggin {
77455b2864SDave Chinner 	trace_writeback_queue(bdi, work);
78455b2864SDave Chinner 
7903ba3782SJens Axboe 	spin_lock(&bdi->wb_lock);
8083ba7b07SChristoph Hellwig 	list_add_tail(&work->list, &bdi->work_list);
81fff5b85aSArtem Bityutskiy 	if (bdi->wb.task) {
82fff5b85aSArtem Bityutskiy 		wake_up_process(bdi->wb.task);
83fff5b85aSArtem Bityutskiy 	} else {
841da177e4SLinus Torvalds 		/*
85fff5b85aSArtem Bityutskiy 		 * The bdi thread isn't there, wake up the forker thread which
86fff5b85aSArtem Bityutskiy 		 * will create and run it.
871da177e4SLinus Torvalds 		 */
88455b2864SDave Chinner 		trace_writeback_nothread(bdi, work);
8903ba3782SJens Axboe 		wake_up_process(default_backing_dev_info.wb.task);
901da177e4SLinus Torvalds 	}
91fff5b85aSArtem Bityutskiy 	spin_unlock(&bdi->wb_lock);
9203ba3782SJens Axboe }
931da177e4SLinus Torvalds 
9483ba7b07SChristoph Hellwig static void
9583ba7b07SChristoph Hellwig __bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages,
9683ba7b07SChristoph Hellwig 		bool range_cyclic, bool for_background)
971da177e4SLinus Torvalds {
9883ba7b07SChristoph Hellwig 	struct wb_writeback_work *work;
9903ba3782SJens Axboe 
100bcddc3f0SJens Axboe 	/*
101bcddc3f0SJens Axboe 	 * This is WB_SYNC_NONE writeback, so if allocation fails just
102bcddc3f0SJens Axboe 	 * wakeup the thread for old dirty data writeback
103bcddc3f0SJens Axboe 	 */
10483ba7b07SChristoph Hellwig 	work = kzalloc(sizeof(*work), GFP_ATOMIC);
10583ba7b07SChristoph Hellwig 	if (!work) {
106455b2864SDave Chinner 		if (bdi->wb.task) {
107455b2864SDave Chinner 			trace_writeback_nowork(bdi);
10883ba7b07SChristoph Hellwig 			wake_up_process(bdi->wb.task);
109455b2864SDave Chinner 		}
11083ba7b07SChristoph Hellwig 		return;
11183ba7b07SChristoph Hellwig 	}
11283ba7b07SChristoph Hellwig 
11383ba7b07SChristoph Hellwig 	work->sync_mode	= WB_SYNC_NONE;
11483ba7b07SChristoph Hellwig 	work->nr_pages	= nr_pages;
11583ba7b07SChristoph Hellwig 	work->range_cyclic = range_cyclic;
11683ba7b07SChristoph Hellwig 	work->for_background = for_background;
11783ba7b07SChristoph Hellwig 
118f11fcae8SJens Axboe 	bdi_queue_work(bdi, work);
11903ba3782SJens Axboe }
120b6e51316SJens Axboe 
121b6e51316SJens Axboe /**
122b6e51316SJens Axboe  * bdi_start_writeback - start writeback
123b6e51316SJens Axboe  * @bdi: the backing device to write from
124b6e51316SJens Axboe  * @nr_pages: the number of pages to write
125b6e51316SJens Axboe  *
126b6e51316SJens Axboe  * Description:
127b6e51316SJens Axboe  *   This does WB_SYNC_NONE opportunistic writeback. The IO is only
128b6e51316SJens Axboe  *   started when this function returns, we make no guarentees on
1290e3c9a22SJens Axboe  *   completion. Caller need not hold sb s_umount semaphore.
130b6e51316SJens Axboe  *
131b6e51316SJens Axboe  */
132c5444198SChristoph Hellwig void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages)
133b6e51316SJens Axboe {
13483ba7b07SChristoph Hellwig 	__bdi_start_writeback(bdi, nr_pages, true, false);
135d3ddec76SWu Fengguang }
136d3ddec76SWu Fengguang 
137c5444198SChristoph Hellwig /**
138c5444198SChristoph Hellwig  * bdi_start_background_writeback - start background writeback
139c5444198SChristoph Hellwig  * @bdi: the backing device to write from
140c5444198SChristoph Hellwig  *
141c5444198SChristoph Hellwig  * Description:
142c5444198SChristoph Hellwig  *   This does WB_SYNC_NONE background writeback. The IO is only
143c5444198SChristoph Hellwig  *   started when this function returns, we make no guarentees on
144c5444198SChristoph Hellwig  *   completion. Caller need not hold sb s_umount semaphore.
145c5444198SChristoph Hellwig  */
146c5444198SChristoph Hellwig void bdi_start_background_writeback(struct backing_dev_info *bdi)
147c5444198SChristoph Hellwig {
14883ba7b07SChristoph Hellwig 	__bdi_start_writeback(bdi, LONG_MAX, true, true);
1491da177e4SLinus Torvalds }
1501da177e4SLinus Torvalds 
1511da177e4SLinus Torvalds /*
1526610a0bcSAndrew Morton  * Redirty an inode: set its when-it-was dirtied timestamp and move it to the
1536610a0bcSAndrew Morton  * furthest end of its superblock's dirty-inode list.
1546610a0bcSAndrew Morton  *
1556610a0bcSAndrew Morton  * Before stamping the inode's ->dirtied_when, we check to see whether it is
15666f3b8e2SJens Axboe  * already the most-recently-dirtied inode on the b_dirty list.  If that is
1576610a0bcSAndrew Morton  * the case then the inode must have been redirtied while it was being written
1586610a0bcSAndrew Morton  * out and we don't reset its dirtied_when.
1596610a0bcSAndrew Morton  */
1606610a0bcSAndrew Morton static void redirty_tail(struct inode *inode)
1616610a0bcSAndrew Morton {
16203ba3782SJens Axboe 	struct bdi_writeback *wb = &inode_to_bdi(inode)->wb;
1636610a0bcSAndrew Morton 
16403ba3782SJens Axboe 	if (!list_empty(&wb->b_dirty)) {
16566f3b8e2SJens Axboe 		struct inode *tail;
1666610a0bcSAndrew Morton 
16703ba3782SJens Axboe 		tail = list_entry(wb->b_dirty.next, struct inode, i_list);
16866f3b8e2SJens Axboe 		if (time_before(inode->dirtied_when, tail->dirtied_when))
1696610a0bcSAndrew Morton 			inode->dirtied_when = jiffies;
1706610a0bcSAndrew Morton 	}
17103ba3782SJens Axboe 	list_move(&inode->i_list, &wb->b_dirty);
1726610a0bcSAndrew Morton }
1736610a0bcSAndrew Morton 
1746610a0bcSAndrew Morton /*
17566f3b8e2SJens Axboe  * requeue inode for re-scanning after bdi->b_io list is exhausted.
176c986d1e2SAndrew Morton  */
1770e0f4fc2SKen Chen static void requeue_io(struct inode *inode)
178c986d1e2SAndrew Morton {
17903ba3782SJens Axboe 	struct bdi_writeback *wb = &inode_to_bdi(inode)->wb;
18003ba3782SJens Axboe 
18103ba3782SJens Axboe 	list_move(&inode->i_list, &wb->b_more_io);
182c986d1e2SAndrew Morton }
183c986d1e2SAndrew Morton 
1841c0eeaf5SJoern Engel static void inode_sync_complete(struct inode *inode)
1851c0eeaf5SJoern Engel {
1861c0eeaf5SJoern Engel 	/*
1871c0eeaf5SJoern Engel 	 * Prevent speculative execution through spin_unlock(&inode_lock);
1881c0eeaf5SJoern Engel 	 */
1891c0eeaf5SJoern Engel 	smp_mb();
1901c0eeaf5SJoern Engel 	wake_up_bit(&inode->i_state, __I_SYNC);
1911c0eeaf5SJoern Engel }
1921c0eeaf5SJoern Engel 
193d2caa3c5SJeff Layton static bool inode_dirtied_after(struct inode *inode, unsigned long t)
194d2caa3c5SJeff Layton {
195d2caa3c5SJeff Layton 	bool ret = time_after(inode->dirtied_when, t);
196d2caa3c5SJeff Layton #ifndef CONFIG_64BIT
197d2caa3c5SJeff Layton 	/*
198d2caa3c5SJeff Layton 	 * For inodes being constantly redirtied, dirtied_when can get stuck.
199d2caa3c5SJeff Layton 	 * It _appears_ to be in the future, but is actually in distant past.
200d2caa3c5SJeff Layton 	 * This test is necessary to prevent such wrapped-around relative times
2015b0830cbSJens Axboe 	 * from permanently stopping the whole bdi writeback.
202d2caa3c5SJeff Layton 	 */
203d2caa3c5SJeff Layton 	ret = ret && time_before_eq(inode->dirtied_when, jiffies);
204d2caa3c5SJeff Layton #endif
205d2caa3c5SJeff Layton 	return ret;
206d2caa3c5SJeff Layton }
207d2caa3c5SJeff Layton 
208c986d1e2SAndrew Morton /*
2092c136579SFengguang Wu  * Move expired dirty inodes from @delaying_queue to @dispatch_queue.
2102c136579SFengguang Wu  */
2112c136579SFengguang Wu static void move_expired_inodes(struct list_head *delaying_queue,
2122c136579SFengguang Wu 			       struct list_head *dispatch_queue,
2132c136579SFengguang Wu 				unsigned long *older_than_this)
2142c136579SFengguang Wu {
2155c03449dSShaohua Li 	LIST_HEAD(tmp);
2165c03449dSShaohua Li 	struct list_head *pos, *node;
217cf137307SJens Axboe 	struct super_block *sb = NULL;
2185c03449dSShaohua Li 	struct inode *inode;
219cf137307SJens Axboe 	int do_sb_sort = 0;
2205c03449dSShaohua Li 
2212c136579SFengguang Wu 	while (!list_empty(delaying_queue)) {
2225c03449dSShaohua Li 		inode = list_entry(delaying_queue->prev, struct inode, i_list);
2232c136579SFengguang Wu 		if (older_than_this &&
224d2caa3c5SJeff Layton 		    inode_dirtied_after(inode, *older_than_this))
2252c136579SFengguang Wu 			break;
226cf137307SJens Axboe 		if (sb && sb != inode->i_sb)
227cf137307SJens Axboe 			do_sb_sort = 1;
228cf137307SJens Axboe 		sb = inode->i_sb;
2295c03449dSShaohua Li 		list_move(&inode->i_list, &tmp);
2305c03449dSShaohua Li 	}
2315c03449dSShaohua Li 
232cf137307SJens Axboe 	/* just one sb in list, splice to dispatch_queue and we're done */
233cf137307SJens Axboe 	if (!do_sb_sort) {
234cf137307SJens Axboe 		list_splice(&tmp, dispatch_queue);
235cf137307SJens Axboe 		return;
236cf137307SJens Axboe 	}
237cf137307SJens Axboe 
2385c03449dSShaohua Li 	/* Move inodes from one superblock together */
2395c03449dSShaohua Li 	while (!list_empty(&tmp)) {
2405c03449dSShaohua Li 		inode = list_entry(tmp.prev, struct inode, i_list);
2415c03449dSShaohua Li 		sb = inode->i_sb;
2425c03449dSShaohua Li 		list_for_each_prev_safe(pos, node, &tmp) {
2435c03449dSShaohua Li 			inode = list_entry(pos, struct inode, i_list);
2445c03449dSShaohua Li 			if (inode->i_sb == sb)
2452c136579SFengguang Wu 				list_move(&inode->i_list, dispatch_queue);
2462c136579SFengguang Wu 		}
2472c136579SFengguang Wu 	}
2485c03449dSShaohua Li }
2492c136579SFengguang Wu 
2502c136579SFengguang Wu /*
2512c136579SFengguang Wu  * Queue all expired dirty inodes for io, eldest first.
2522c136579SFengguang Wu  */
25303ba3782SJens Axboe static void queue_io(struct bdi_writeback *wb, unsigned long *older_than_this)
2542c136579SFengguang Wu {
25503ba3782SJens Axboe 	list_splice_init(&wb->b_more_io, wb->b_io.prev);
25603ba3782SJens Axboe 	move_expired_inodes(&wb->b_dirty, &wb->b_io, older_than_this);
25766f3b8e2SJens Axboe }
25866f3b8e2SJens Axboe 
259a9185b41SChristoph Hellwig static int write_inode(struct inode *inode, struct writeback_control *wbc)
26066f3b8e2SJens Axboe {
26103ba3782SJens Axboe 	if (inode->i_sb->s_op->write_inode && !is_bad_inode(inode))
262a9185b41SChristoph Hellwig 		return inode->i_sb->s_op->write_inode(inode, wbc);
26303ba3782SJens Axboe 	return 0;
26466f3b8e2SJens Axboe }
26508d8e974SFengguang Wu 
2662c136579SFengguang Wu /*
26701c03194SChristoph Hellwig  * Wait for writeback on an inode to complete.
26801c03194SChristoph Hellwig  */
26901c03194SChristoph Hellwig static void inode_wait_for_writeback(struct inode *inode)
27001c03194SChristoph Hellwig {
27101c03194SChristoph Hellwig 	DEFINE_WAIT_BIT(wq, &inode->i_state, __I_SYNC);
27201c03194SChristoph Hellwig 	wait_queue_head_t *wqh;
27301c03194SChristoph Hellwig 
27401c03194SChristoph Hellwig 	wqh = bit_waitqueue(&inode->i_state, __I_SYNC);
27558a9d3d8SRichard Kennedy 	 while (inode->i_state & I_SYNC) {
27601c03194SChristoph Hellwig 		spin_unlock(&inode_lock);
27701c03194SChristoph Hellwig 		__wait_on_bit(wqh, &wq, inode_wait, TASK_UNINTERRUPTIBLE);
27801c03194SChristoph Hellwig 		spin_lock(&inode_lock);
27958a9d3d8SRichard Kennedy 	}
28001c03194SChristoph Hellwig }
28101c03194SChristoph Hellwig 
28201c03194SChristoph Hellwig /*
28301c03194SChristoph Hellwig  * Write out an inode's dirty pages.  Called under inode_lock.  Either the
28401c03194SChristoph Hellwig  * caller has ref on the inode (either via __iget or via syscall against an fd)
28501c03194SChristoph Hellwig  * or the inode has I_WILL_FREE set (via generic_forget_inode)
28601c03194SChristoph Hellwig  *
2871da177e4SLinus Torvalds  * If `wait' is set, wait on the writeout.
2881da177e4SLinus Torvalds  *
2891da177e4SLinus Torvalds  * The whole writeout design is quite complex and fragile.  We want to avoid
2901da177e4SLinus Torvalds  * starvation of particular inodes when others are being redirtied, prevent
2911da177e4SLinus Torvalds  * livelocks, etc.
2921da177e4SLinus Torvalds  *
2931da177e4SLinus Torvalds  * Called under inode_lock.
2941da177e4SLinus Torvalds  */
2951da177e4SLinus Torvalds static int
29601c03194SChristoph Hellwig writeback_single_inode(struct inode *inode, struct writeback_control *wbc)
2971da177e4SLinus Torvalds {
2981da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
29901c03194SChristoph Hellwig 	unsigned dirty;
3001da177e4SLinus Torvalds 	int ret;
3011da177e4SLinus Torvalds 
30201c03194SChristoph Hellwig 	if (!atomic_read(&inode->i_count))
30301c03194SChristoph Hellwig 		WARN_ON(!(inode->i_state & (I_WILL_FREE|I_FREEING)));
30401c03194SChristoph Hellwig 	else
30501c03194SChristoph Hellwig 		WARN_ON(inode->i_state & I_WILL_FREE);
30601c03194SChristoph Hellwig 
30701c03194SChristoph Hellwig 	if (inode->i_state & I_SYNC) {
30801c03194SChristoph Hellwig 		/*
30901c03194SChristoph Hellwig 		 * If this inode is locked for writeback and we are not doing
31066f3b8e2SJens Axboe 		 * writeback-for-data-integrity, move it to b_more_io so that
31101c03194SChristoph Hellwig 		 * writeback can proceed with the other inodes on s_io.
31201c03194SChristoph Hellwig 		 *
31301c03194SChristoph Hellwig 		 * We'll have another go at writing back this inode when we
31466f3b8e2SJens Axboe 		 * completed a full scan of b_io.
31501c03194SChristoph Hellwig 		 */
316a9185b41SChristoph Hellwig 		if (wbc->sync_mode != WB_SYNC_ALL) {
31701c03194SChristoph Hellwig 			requeue_io(inode);
31801c03194SChristoph Hellwig 			return 0;
31901c03194SChristoph Hellwig 		}
32001c03194SChristoph Hellwig 
32101c03194SChristoph Hellwig 		/*
32201c03194SChristoph Hellwig 		 * It's a data-integrity sync.  We must wait.
32301c03194SChristoph Hellwig 		 */
32401c03194SChristoph Hellwig 		inode_wait_for_writeback(inode);
32501c03194SChristoph Hellwig 	}
32601c03194SChristoph Hellwig 
3271c0eeaf5SJoern Engel 	BUG_ON(inode->i_state & I_SYNC);
3281da177e4SLinus Torvalds 
3295547e8aaSDmitry Monakhov 	/* Set I_SYNC, reset I_DIRTY_PAGES */
3301c0eeaf5SJoern Engel 	inode->i_state |= I_SYNC;
3315547e8aaSDmitry Monakhov 	inode->i_state &= ~I_DIRTY_PAGES;
3321da177e4SLinus Torvalds 	spin_unlock(&inode_lock);
3331da177e4SLinus Torvalds 
3341da177e4SLinus Torvalds 	ret = do_writepages(mapping, wbc);
3351da177e4SLinus Torvalds 
33626821ed4SChristoph Hellwig 	/*
33726821ed4SChristoph Hellwig 	 * Make sure to wait on the data before writing out the metadata.
33826821ed4SChristoph Hellwig 	 * This is important for filesystems that modify metadata on data
33926821ed4SChristoph Hellwig 	 * I/O completion.
34026821ed4SChristoph Hellwig 	 */
341a9185b41SChristoph Hellwig 	if (wbc->sync_mode == WB_SYNC_ALL) {
34226821ed4SChristoph Hellwig 		int err = filemap_fdatawait(mapping);
3431da177e4SLinus Torvalds 		if (ret == 0)
3441da177e4SLinus Torvalds 			ret = err;
3451da177e4SLinus Torvalds 	}
3461da177e4SLinus Torvalds 
3475547e8aaSDmitry Monakhov 	/*
3485547e8aaSDmitry Monakhov 	 * Some filesystems may redirty the inode during the writeback
3495547e8aaSDmitry Monakhov 	 * due to delalloc, clear dirty metadata flags right before
3505547e8aaSDmitry Monakhov 	 * write_inode()
3515547e8aaSDmitry Monakhov 	 */
3525547e8aaSDmitry Monakhov 	spin_lock(&inode_lock);
3535547e8aaSDmitry Monakhov 	dirty = inode->i_state & I_DIRTY;
3545547e8aaSDmitry Monakhov 	inode->i_state &= ~(I_DIRTY_SYNC | I_DIRTY_DATASYNC);
3555547e8aaSDmitry Monakhov 	spin_unlock(&inode_lock);
35626821ed4SChristoph Hellwig 	/* Don't write the inode if only I_DIRTY_PAGES was set */
35726821ed4SChristoph Hellwig 	if (dirty & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
358a9185b41SChristoph Hellwig 		int err = write_inode(inode, wbc);
3591da177e4SLinus Torvalds 		if (ret == 0)
3601da177e4SLinus Torvalds 			ret = err;
3611da177e4SLinus Torvalds 	}
3621da177e4SLinus Torvalds 
3631da177e4SLinus Torvalds 	spin_lock(&inode_lock);
3641c0eeaf5SJoern Engel 	inode->i_state &= ~I_SYNC;
36584a89245SWu Fengguang 	if (!(inode->i_state & (I_FREEING | I_CLEAR))) {
366b3af9468SWu Fengguang 		if ((inode->i_state & I_DIRTY_PAGES) && wbc->for_kupdate) {
367ae1b7f7dSWu Fengguang 			/*
368b3af9468SWu Fengguang 			 * More pages get dirtied by a fast dirtier.
369b3af9468SWu Fengguang 			 */
370b3af9468SWu Fengguang 			goto select_queue;
371b3af9468SWu Fengguang 		} else if (inode->i_state & I_DIRTY) {
372b3af9468SWu Fengguang 			/*
373b3af9468SWu Fengguang 			 * At least XFS will redirty the inode during the
374b3af9468SWu Fengguang 			 * writeback (delalloc) and on io completion (isize).
375ae1b7f7dSWu Fengguang 			 */
376ae1b7f7dSWu Fengguang 			redirty_tail(inode);
377ae1b7f7dSWu Fengguang 		} else if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
3781da177e4SLinus Torvalds 			/*
3791da177e4SLinus Torvalds 			 * We didn't write back all the pages.  nfs_writepages()
3801da177e4SLinus Torvalds 			 * sometimes bales out without doing anything. Redirty
38166f3b8e2SJens Axboe 			 * the inode; Move it from b_io onto b_more_io/b_dirty.
3821b43ef91SAndrew Morton 			 */
3831b43ef91SAndrew Morton 			/*
3841b43ef91SAndrew Morton 			 * akpm: if the caller was the kupdate function we put
38566f3b8e2SJens Axboe 			 * this inode at the head of b_dirty so it gets first
3861b43ef91SAndrew Morton 			 * consideration.  Otherwise, move it to the tail, for
3871b43ef91SAndrew Morton 			 * the reasons described there.  I'm not really sure
3881b43ef91SAndrew Morton 			 * how much sense this makes.  Presumably I had a good
3891b43ef91SAndrew Morton 			 * reasons for doing it this way, and I'd rather not
3901b43ef91SAndrew Morton 			 * muck with it at present.
3911da177e4SLinus Torvalds 			 */
3921da177e4SLinus Torvalds 			if (wbc->for_kupdate) {
3931da177e4SLinus Torvalds 				/*
3942c136579SFengguang Wu 				 * For the kupdate function we move the inode
39566f3b8e2SJens Axboe 				 * to b_more_io so it will get more writeout as
3962c136579SFengguang Wu 				 * soon as the queue becomes uncongested.
3971da177e4SLinus Torvalds 				 */
3981da177e4SLinus Torvalds 				inode->i_state |= I_DIRTY_PAGES;
399b3af9468SWu Fengguang select_queue:
4008bc3be27SFengguang Wu 				if (wbc->nr_to_write <= 0) {
4018bc3be27SFengguang Wu 					/*
4028bc3be27SFengguang Wu 					 * slice used up: queue for next turn
4038bc3be27SFengguang Wu 					 */
4040e0f4fc2SKen Chen 					requeue_io(inode);
4051da177e4SLinus Torvalds 				} else {
4061da177e4SLinus Torvalds 					/*
4078bc3be27SFengguang Wu 					 * somehow blocked: retry later
4088bc3be27SFengguang Wu 					 */
4098bc3be27SFengguang Wu 					redirty_tail(inode);
4108bc3be27SFengguang Wu 				}
4118bc3be27SFengguang Wu 			} else {
4128bc3be27SFengguang Wu 				/*
4131da177e4SLinus Torvalds 				 * Otherwise fully redirty the inode so that
4141da177e4SLinus Torvalds 				 * other inodes on this superblock will get some
4151da177e4SLinus Torvalds 				 * writeout.  Otherwise heavy writing to one
4161da177e4SLinus Torvalds 				 * file would indefinitely suspend writeout of
4171da177e4SLinus Torvalds 				 * all the other files.
4181da177e4SLinus Torvalds 				 */
4191da177e4SLinus Torvalds 				inode->i_state |= I_DIRTY_PAGES;
4201b43ef91SAndrew Morton 				redirty_tail(inode);
4211da177e4SLinus Torvalds 			}
4221da177e4SLinus Torvalds 		} else if (atomic_read(&inode->i_count)) {
4231da177e4SLinus Torvalds 			/*
4241da177e4SLinus Torvalds 			 * The inode is clean, inuse
4251da177e4SLinus Torvalds 			 */
4261da177e4SLinus Torvalds 			list_move(&inode->i_list, &inode_in_use);
4271da177e4SLinus Torvalds 		} else {
4281da177e4SLinus Torvalds 			/*
4291da177e4SLinus Torvalds 			 * The inode is clean, unused
4301da177e4SLinus Torvalds 			 */
4311da177e4SLinus Torvalds 			list_move(&inode->i_list, &inode_unused);
4321da177e4SLinus Torvalds 		}
4331da177e4SLinus Torvalds 	}
4341c0eeaf5SJoern Engel 	inode_sync_complete(inode);
4351da177e4SLinus Torvalds 	return ret;
4361da177e4SLinus Torvalds }
4371da177e4SLinus Torvalds 
43803ba3782SJens Axboe /*
439d19de7edSChristoph Hellwig  * For background writeback the caller does not have the sb pinned
44003ba3782SJens Axboe  * before calling writeback. So make sure that we do pin it, so it doesn't
44103ba3782SJens Axboe  * go away while we are writing inodes from it.
44203ba3782SJens Axboe  */
443d19de7edSChristoph Hellwig static bool pin_sb_for_writeback(struct super_block *sb)
4441da177e4SLinus Torvalds {
44503ba3782SJens Axboe 	spin_lock(&sb_lock);
44629cb4859SChristoph Hellwig 	if (list_empty(&sb->s_instances)) {
44703ba3782SJens Axboe 		spin_unlock(&sb_lock);
44829cb4859SChristoph Hellwig 		return false;
44903ba3782SJens Axboe 	}
45029cb4859SChristoph Hellwig 
45129cb4859SChristoph Hellwig 	sb->s_count++;
45229cb4859SChristoph Hellwig 	spin_unlock(&sb_lock);
45329cb4859SChristoph Hellwig 
45429cb4859SChristoph Hellwig 	if (down_read_trylock(&sb->s_umount)) {
45529cb4859SChristoph Hellwig 		if (sb->s_root)
45629cb4859SChristoph Hellwig 			return true;
45703ba3782SJens Axboe 		up_read(&sb->s_umount);
45803ba3782SJens Axboe 	}
45929cb4859SChristoph Hellwig 
46029cb4859SChristoph Hellwig 	put_super(sb);
461d19de7edSChristoph Hellwig 	return false;
46203ba3782SJens Axboe }
46303ba3782SJens Axboe 
464f11c9c5cSEdward Shishkin /*
465f11c9c5cSEdward Shishkin  * Write a portion of b_io inodes which belong to @sb.
466edadfb10SChristoph Hellwig  *
467edadfb10SChristoph Hellwig  * If @only_this_sb is true, then find and write all such
468f11c9c5cSEdward Shishkin  * inodes. Otherwise write only ones which go sequentially
469f11c9c5cSEdward Shishkin  * in reverse order.
470edadfb10SChristoph Hellwig  *
471f11c9c5cSEdward Shishkin  * Return 1, if the caller writeback routine should be
472f11c9c5cSEdward Shishkin  * interrupted. Otherwise return 0.
473f11c9c5cSEdward Shishkin  */
474edadfb10SChristoph Hellwig static int writeback_sb_inodes(struct super_block *sb, struct bdi_writeback *wb,
475edadfb10SChristoph Hellwig 		struct writeback_control *wbc, bool only_this_sb)
47603ba3782SJens Axboe {
47703ba3782SJens Axboe 	while (!list_empty(&wb->b_io)) {
478f11c9c5cSEdward Shishkin 		long pages_skipped;
47903ba3782SJens Axboe 		struct inode *inode = list_entry(wb->b_io.prev,
4801da177e4SLinus Torvalds 						 struct inode, i_list);
481edadfb10SChristoph Hellwig 
482edadfb10SChristoph Hellwig 		if (inode->i_sb != sb) {
483edadfb10SChristoph Hellwig 			if (only_this_sb) {
484edadfb10SChristoph Hellwig 				/*
485edadfb10SChristoph Hellwig 				 * We only want to write back data for this
486edadfb10SChristoph Hellwig 				 * superblock, move all inodes not belonging
487edadfb10SChristoph Hellwig 				 * to it back onto the dirty list.
488edadfb10SChristoph Hellwig 				 */
48966f3b8e2SJens Axboe 				redirty_tail(inode);
49066f3b8e2SJens Axboe 				continue;
49166f3b8e2SJens Axboe 			}
492edadfb10SChristoph Hellwig 
493edadfb10SChristoph Hellwig 			/*
494edadfb10SChristoph Hellwig 			 * The inode belongs to a different superblock.
495edadfb10SChristoph Hellwig 			 * Bounce back to the caller to unpin this and
496edadfb10SChristoph Hellwig 			 * pin the next superblock.
497edadfb10SChristoph Hellwig 			 */
498f11c9c5cSEdward Shishkin 			return 0;
499edadfb10SChristoph Hellwig 		}
500edadfb10SChristoph Hellwig 
50184a89245SWu Fengguang 		if (inode->i_state & (I_NEW | I_WILL_FREE)) {
5027ef0d737SNick Piggin 			requeue_io(inode);
5037ef0d737SNick Piggin 			continue;
5047ef0d737SNick Piggin 		}
505d2caa3c5SJeff Layton 		/*
506d2caa3c5SJeff Layton 		 * Was this inode dirtied after sync_sb_inodes was called?
507d2caa3c5SJeff Layton 		 * This keeps sync from extra jobs and livelock.
508d2caa3c5SJeff Layton 		 */
509f11c9c5cSEdward Shishkin 		if (inode_dirtied_after(inode, wbc->wb_start))
510f11c9c5cSEdward Shishkin 			return 1;
5111da177e4SLinus Torvalds 
51284a89245SWu Fengguang 		BUG_ON(inode->i_state & (I_FREEING | I_CLEAR));
5131da177e4SLinus Torvalds 		__iget(inode);
5141da177e4SLinus Torvalds 		pages_skipped = wbc->pages_skipped;
51501c03194SChristoph Hellwig 		writeback_single_inode(inode, wbc);
5161da177e4SLinus Torvalds 		if (wbc->pages_skipped != pages_skipped) {
5171da177e4SLinus Torvalds 			/*
5181da177e4SLinus Torvalds 			 * writeback is not making progress due to locked
5191da177e4SLinus Torvalds 			 * buffers.  Skip this inode for now.
5201da177e4SLinus Torvalds 			 */
521f57b9b7bSAndrew Morton 			redirty_tail(inode);
5221da177e4SLinus Torvalds 		}
5231da177e4SLinus Torvalds 		spin_unlock(&inode_lock);
5241da177e4SLinus Torvalds 		iput(inode);
5254ffc8444SOGAWA Hirofumi 		cond_resched();
5261da177e4SLinus Torvalds 		spin_lock(&inode_lock);
5278bc3be27SFengguang Wu 		if (wbc->nr_to_write <= 0) {
5288bc3be27SFengguang Wu 			wbc->more_io = 1;
529f11c9c5cSEdward Shishkin 			return 1;
5301da177e4SLinus Torvalds 		}
53103ba3782SJens Axboe 		if (!list_empty(&wb->b_more_io))
5328bc3be27SFengguang Wu 			wbc->more_io = 1;
5338bc3be27SFengguang Wu 	}
534f11c9c5cSEdward Shishkin 	/* b_io is empty */
535f11c9c5cSEdward Shishkin 	return 1;
536f11c9c5cSEdward Shishkin }
53738f21977SNick Piggin 
5389c3a8ee8SChristoph Hellwig void writeback_inodes_wb(struct bdi_writeback *wb,
539f11c9c5cSEdward Shishkin 		struct writeback_control *wbc)
540f11c9c5cSEdward Shishkin {
541f11c9c5cSEdward Shishkin 	int ret = 0;
5429ecc2738SJens Axboe 
543f11c9c5cSEdward Shishkin 	wbc->wb_start = jiffies; /* livelock avoidance */
544f11c9c5cSEdward Shishkin 	spin_lock(&inode_lock);
545f11c9c5cSEdward Shishkin 	if (!wbc->for_kupdate || list_empty(&wb->b_io))
546f11c9c5cSEdward Shishkin 		queue_io(wb, wbc->older_than_this);
547f11c9c5cSEdward Shishkin 
548f11c9c5cSEdward Shishkin 	while (!list_empty(&wb->b_io)) {
549f11c9c5cSEdward Shishkin 		struct inode *inode = list_entry(wb->b_io.prev,
550f11c9c5cSEdward Shishkin 						 struct inode, i_list);
551f11c9c5cSEdward Shishkin 		struct super_block *sb = inode->i_sb;
552f11c9c5cSEdward Shishkin 
553334132aeSChristoph Hellwig 		if (!pin_sb_for_writeback(sb)) {
554334132aeSChristoph Hellwig 			requeue_io(inode);
555d19de7edSChristoph Hellwig 			continue;
556334132aeSChristoph Hellwig 		}
557edadfb10SChristoph Hellwig 		ret = writeback_sb_inodes(sb, wb, wbc, false);
558d19de7edSChristoph Hellwig 		drop_super(sb);
559f11c9c5cSEdward Shishkin 
560f11c9c5cSEdward Shishkin 		if (ret)
561f11c9c5cSEdward Shishkin 			break;
562f11c9c5cSEdward Shishkin 	}
56366f3b8e2SJens Axboe 	spin_unlock(&inode_lock);
56466f3b8e2SJens Axboe 	/* Leave any unwritten inodes on b_io */
56566f3b8e2SJens Axboe }
56666f3b8e2SJens Axboe 
567edadfb10SChristoph Hellwig static void __writeback_inodes_sb(struct super_block *sb,
568edadfb10SChristoph Hellwig 		struct bdi_writeback *wb, struct writeback_control *wbc)
569edadfb10SChristoph Hellwig {
570edadfb10SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
571edadfb10SChristoph Hellwig 
572edadfb10SChristoph Hellwig 	wbc->wb_start = jiffies; /* livelock avoidance */
573edadfb10SChristoph Hellwig 	spin_lock(&inode_lock);
574edadfb10SChristoph Hellwig 	if (!wbc->for_kupdate || list_empty(&wb->b_io))
575edadfb10SChristoph Hellwig 		queue_io(wb, wbc->older_than_this);
576edadfb10SChristoph Hellwig 	writeback_sb_inodes(sb, wb, wbc, true);
577edadfb10SChristoph Hellwig 	spin_unlock(&inode_lock);
578edadfb10SChristoph Hellwig }
579edadfb10SChristoph Hellwig 
58003ba3782SJens Axboe /*
58103ba3782SJens Axboe  * The maximum number of pages to writeout in a single bdi flush/kupdate
58203ba3782SJens Axboe  * operation.  We do this so we don't hold I_SYNC against an inode for
58303ba3782SJens Axboe  * enormous amounts of time, which would block a userspace task which has
58403ba3782SJens Axboe  * been forced to throttle against that inode.  Also, the code reevaluates
58503ba3782SJens Axboe  * the dirty each time it has written this many pages.
58603ba3782SJens Axboe  */
58703ba3782SJens Axboe #define MAX_WRITEBACK_PAGES     1024
58803ba3782SJens Axboe 
58903ba3782SJens Axboe static inline bool over_bground_thresh(void)
59003ba3782SJens Axboe {
59103ba3782SJens Axboe 	unsigned long background_thresh, dirty_thresh;
59203ba3782SJens Axboe 
59303ba3782SJens Axboe 	get_dirty_limits(&background_thresh, &dirty_thresh, NULL, NULL);
59403ba3782SJens Axboe 
59503ba3782SJens Axboe 	return (global_page_state(NR_FILE_DIRTY) +
59603ba3782SJens Axboe 		global_page_state(NR_UNSTABLE_NFS) >= background_thresh);
59703ba3782SJens Axboe }
59803ba3782SJens Axboe 
59903ba3782SJens Axboe /*
60003ba3782SJens Axboe  * Explicit flushing or periodic writeback of "old" data.
60103ba3782SJens Axboe  *
60203ba3782SJens Axboe  * Define "old": the first time one of an inode's pages is dirtied, we mark the
60303ba3782SJens Axboe  * dirtying-time in the inode's address_space.  So this periodic writeback code
60403ba3782SJens Axboe  * just walks the superblock inode list, writing back any inodes which are
60503ba3782SJens Axboe  * older than a specific point in time.
60603ba3782SJens Axboe  *
60703ba3782SJens Axboe  * Try to run once per dirty_writeback_interval.  But if a writeback event
60803ba3782SJens Axboe  * takes longer than a dirty_writeback_interval interval, then leave a
60903ba3782SJens Axboe  * one-second gap.
61003ba3782SJens Axboe  *
61103ba3782SJens Axboe  * older_than_this takes precedence over nr_to_write.  So we'll only write back
61203ba3782SJens Axboe  * all dirty pages if they are all attached to "old" mappings.
61303ba3782SJens Axboe  */
614c4a77a6cSJens Axboe static long wb_writeback(struct bdi_writeback *wb,
61583ba7b07SChristoph Hellwig 			 struct wb_writeback_work *work)
61603ba3782SJens Axboe {
61703ba3782SJens Axboe 	struct writeback_control wbc = {
61883ba7b07SChristoph Hellwig 		.sync_mode		= work->sync_mode,
61903ba3782SJens Axboe 		.older_than_this	= NULL,
62083ba7b07SChristoph Hellwig 		.for_kupdate		= work->for_kupdate,
62183ba7b07SChristoph Hellwig 		.for_background		= work->for_background,
62283ba7b07SChristoph Hellwig 		.range_cyclic		= work->range_cyclic,
62303ba3782SJens Axboe 	};
62403ba3782SJens Axboe 	unsigned long oldest_jif;
62503ba3782SJens Axboe 	long wrote = 0;
626a5989bdcSJan Kara 	struct inode *inode;
62703ba3782SJens Axboe 
62803ba3782SJens Axboe 	if (wbc.for_kupdate) {
62903ba3782SJens Axboe 		wbc.older_than_this = &oldest_jif;
63003ba3782SJens Axboe 		oldest_jif = jiffies -
63103ba3782SJens Axboe 				msecs_to_jiffies(dirty_expire_interval * 10);
63203ba3782SJens Axboe 	}
633c4a77a6cSJens Axboe 	if (!wbc.range_cyclic) {
634c4a77a6cSJens Axboe 		wbc.range_start = 0;
635c4a77a6cSJens Axboe 		wbc.range_end = LLONG_MAX;
636c4a77a6cSJens Axboe 	}
63703ba3782SJens Axboe 
63803ba3782SJens Axboe 	for (;;) {
63903ba3782SJens Axboe 		/*
640d3ddec76SWu Fengguang 		 * Stop writeback when nr_pages has been consumed
64103ba3782SJens Axboe 		 */
64283ba7b07SChristoph Hellwig 		if (work->nr_pages <= 0)
64303ba3782SJens Axboe 			break;
64403ba3782SJens Axboe 
64503ba3782SJens Axboe 		/*
646d3ddec76SWu Fengguang 		 * For background writeout, stop when we are below the
647d3ddec76SWu Fengguang 		 * background dirty threshold
64803ba3782SJens Axboe 		 */
64983ba7b07SChristoph Hellwig 		if (work->for_background && !over_bground_thresh())
65003ba3782SJens Axboe 			break;
65103ba3782SJens Axboe 
65203ba3782SJens Axboe 		wbc.more_io = 0;
65303ba3782SJens Axboe 		wbc.nr_to_write = MAX_WRITEBACK_PAGES;
65403ba3782SJens Axboe 		wbc.pages_skipped = 0;
655028c2dd1SDave Chinner 
656028c2dd1SDave Chinner 		trace_wbc_writeback_start(&wbc, wb->bdi);
65783ba7b07SChristoph Hellwig 		if (work->sb)
65883ba7b07SChristoph Hellwig 			__writeback_inodes_sb(work->sb, wb, &wbc);
659edadfb10SChristoph Hellwig 		else
66003ba3782SJens Axboe 			writeback_inodes_wb(wb, &wbc);
661028c2dd1SDave Chinner 		trace_wbc_writeback_written(&wbc, wb->bdi);
662028c2dd1SDave Chinner 
66383ba7b07SChristoph Hellwig 		work->nr_pages -= MAX_WRITEBACK_PAGES - wbc.nr_to_write;
66403ba3782SJens Axboe 		wrote += MAX_WRITEBACK_PAGES - wbc.nr_to_write;
66503ba3782SJens Axboe 
66603ba3782SJens Axboe 		/*
66771fd05a8SJens Axboe 		 * If we consumed everything, see if we have more
66803ba3782SJens Axboe 		 */
66971fd05a8SJens Axboe 		if (wbc.nr_to_write <= 0)
67071fd05a8SJens Axboe 			continue;
67171fd05a8SJens Axboe 		/*
67271fd05a8SJens Axboe 		 * Didn't write everything and we don't have more IO, bail
67371fd05a8SJens Axboe 		 */
67471fd05a8SJens Axboe 		if (!wbc.more_io)
67571fd05a8SJens Axboe 			break;
67671fd05a8SJens Axboe 		/*
67771fd05a8SJens Axboe 		 * Did we write something? Try for more
67871fd05a8SJens Axboe 		 */
679a5989bdcSJan Kara 		if (wbc.nr_to_write < MAX_WRITEBACK_PAGES)
68003ba3782SJens Axboe 			continue;
681a5989bdcSJan Kara 		/*
682a5989bdcSJan Kara 		 * Nothing written. Wait for some inode to
683a5989bdcSJan Kara 		 * become available for writeback. Otherwise
684a5989bdcSJan Kara 		 * we'll just busyloop.
685a5989bdcSJan Kara 		 */
686a5989bdcSJan Kara 		spin_lock(&inode_lock);
687a5989bdcSJan Kara 		if (!list_empty(&wb->b_more_io))  {
68871fd05a8SJens Axboe 			inode = list_entry(wb->b_more_io.prev,
689a5989bdcSJan Kara 						struct inode, i_list);
690028c2dd1SDave Chinner 			trace_wbc_writeback_wait(&wbc, wb->bdi);
691a5989bdcSJan Kara 			inode_wait_for_writeback(inode);
692a5989bdcSJan Kara 		}
693a5989bdcSJan Kara 		spin_unlock(&inode_lock);
69403ba3782SJens Axboe 	}
69503ba3782SJens Axboe 
69603ba3782SJens Axboe 	return wrote;
69703ba3782SJens Axboe }
69803ba3782SJens Axboe 
69903ba3782SJens Axboe /*
70083ba7b07SChristoph Hellwig  * Return the next wb_writeback_work struct that hasn't been processed yet.
70103ba3782SJens Axboe  */
70283ba7b07SChristoph Hellwig static struct wb_writeback_work *
70308852b6dSMinchan Kim get_next_work_item(struct backing_dev_info *bdi)
70403ba3782SJens Axboe {
70583ba7b07SChristoph Hellwig 	struct wb_writeback_work *work = NULL;
70603ba3782SJens Axboe 
70783ba7b07SChristoph Hellwig 	spin_lock(&bdi->wb_lock);
70883ba7b07SChristoph Hellwig 	if (!list_empty(&bdi->work_list)) {
70983ba7b07SChristoph Hellwig 		work = list_entry(bdi->work_list.next,
71083ba7b07SChristoph Hellwig 				  struct wb_writeback_work, list);
71183ba7b07SChristoph Hellwig 		list_del_init(&work->list);
71203ba3782SJens Axboe 	}
71383ba7b07SChristoph Hellwig 	spin_unlock(&bdi->wb_lock);
71483ba7b07SChristoph Hellwig 	return work;
71503ba3782SJens Axboe }
71603ba3782SJens Axboe 
71703ba3782SJens Axboe static long wb_check_old_data_flush(struct bdi_writeback *wb)
71803ba3782SJens Axboe {
71903ba3782SJens Axboe 	unsigned long expired;
72003ba3782SJens Axboe 	long nr_pages;
72103ba3782SJens Axboe 
72269b62d01SJens Axboe 	/*
72369b62d01SJens Axboe 	 * When set to zero, disable periodic writeback
72469b62d01SJens Axboe 	 */
72569b62d01SJens Axboe 	if (!dirty_writeback_interval)
72669b62d01SJens Axboe 		return 0;
72769b62d01SJens Axboe 
72803ba3782SJens Axboe 	expired = wb->last_old_flush +
72903ba3782SJens Axboe 			msecs_to_jiffies(dirty_writeback_interval * 10);
73003ba3782SJens Axboe 	if (time_before(jiffies, expired))
73103ba3782SJens Axboe 		return 0;
73203ba3782SJens Axboe 
73303ba3782SJens Axboe 	wb->last_old_flush = jiffies;
73403ba3782SJens Axboe 	nr_pages = global_page_state(NR_FILE_DIRTY) +
73503ba3782SJens Axboe 			global_page_state(NR_UNSTABLE_NFS) +
73603ba3782SJens Axboe 			(inodes_stat.nr_inodes - inodes_stat.nr_unused);
73703ba3782SJens Axboe 
738c4a77a6cSJens Axboe 	if (nr_pages) {
73983ba7b07SChristoph Hellwig 		struct wb_writeback_work work = {
740c4a77a6cSJens Axboe 			.nr_pages	= nr_pages,
741c4a77a6cSJens Axboe 			.sync_mode	= WB_SYNC_NONE,
742c4a77a6cSJens Axboe 			.for_kupdate	= 1,
743c4a77a6cSJens Axboe 			.range_cyclic	= 1,
744c4a77a6cSJens Axboe 		};
745c4a77a6cSJens Axboe 
74683ba7b07SChristoph Hellwig 		return wb_writeback(wb, &work);
747c4a77a6cSJens Axboe 	}
74803ba3782SJens Axboe 
74903ba3782SJens Axboe 	return 0;
75003ba3782SJens Axboe }
75103ba3782SJens Axboe 
75203ba3782SJens Axboe /*
75303ba3782SJens Axboe  * Retrieve work items and do the writeback they describe
75403ba3782SJens Axboe  */
75503ba3782SJens Axboe long wb_do_writeback(struct bdi_writeback *wb, int force_wait)
75603ba3782SJens Axboe {
75703ba3782SJens Axboe 	struct backing_dev_info *bdi = wb->bdi;
75883ba7b07SChristoph Hellwig 	struct wb_writeback_work *work;
759c4a77a6cSJens Axboe 	long wrote = 0;
76003ba3782SJens Axboe 
76108852b6dSMinchan Kim 	while ((work = get_next_work_item(bdi)) != NULL) {
76203ba3782SJens Axboe 		/*
76303ba3782SJens Axboe 		 * Override sync mode, in case we must wait for completion
76483ba7b07SChristoph Hellwig 		 * because this thread is exiting now.
76503ba3782SJens Axboe 		 */
76603ba3782SJens Axboe 		if (force_wait)
76783ba7b07SChristoph Hellwig 			work->sync_mode = WB_SYNC_ALL;
76883ba7b07SChristoph Hellwig 
769455b2864SDave Chinner 		trace_writeback_exec(bdi, work);
770455b2864SDave Chinner 
77183ba7b07SChristoph Hellwig 		wrote += wb_writeback(wb, work);
77203ba3782SJens Axboe 
77303ba3782SJens Axboe 		/*
77483ba7b07SChristoph Hellwig 		 * Notify the caller of completion if this is a synchronous
77583ba7b07SChristoph Hellwig 		 * work item, otherwise just free it.
77603ba3782SJens Axboe 		 */
77783ba7b07SChristoph Hellwig 		if (work->done)
77883ba7b07SChristoph Hellwig 			complete(work->done);
77983ba7b07SChristoph Hellwig 		else
78083ba7b07SChristoph Hellwig 			kfree(work);
78103ba3782SJens Axboe 	}
78203ba3782SJens Axboe 
78303ba3782SJens Axboe 	/*
78403ba3782SJens Axboe 	 * Check for periodic writeback, kupdated() style
78503ba3782SJens Axboe 	 */
78603ba3782SJens Axboe 	wrote += wb_check_old_data_flush(wb);
78703ba3782SJens Axboe 
78803ba3782SJens Axboe 	return wrote;
78903ba3782SJens Axboe }
79003ba3782SJens Axboe 
79103ba3782SJens Axboe /*
79203ba3782SJens Axboe  * Handle writeback of dirty data for the device backed by this bdi. Also
79303ba3782SJens Axboe  * wakes up periodically and does kupdated style flushing.
79403ba3782SJens Axboe  */
79508243900SChristoph Hellwig int bdi_writeback_thread(void *data)
79603ba3782SJens Axboe {
79708243900SChristoph Hellwig 	struct bdi_writeback *wb = data;
79808243900SChristoph Hellwig 	struct backing_dev_info *bdi = wb->bdi;
79903ba3782SJens Axboe 	long pages_written;
80003ba3782SJens Axboe 
80108243900SChristoph Hellwig 	current->flags |= PF_FLUSHER | PF_SWAPWRITE;
80208243900SChristoph Hellwig 	set_freezable();
803ecd58403SArtem Bityutskiy 	wb->last_active = jiffies;
80408243900SChristoph Hellwig 
80508243900SChristoph Hellwig 	/*
80608243900SChristoph Hellwig 	 * Our parent may run at a different priority, just set us to normal
80708243900SChristoph Hellwig 	 */
80808243900SChristoph Hellwig 	set_user_nice(current, 0);
80908243900SChristoph Hellwig 
810455b2864SDave Chinner 	trace_writeback_thread_start(bdi);
811455b2864SDave Chinner 
81203ba3782SJens Axboe 	while (!kthread_should_stop()) {
81303ba3782SJens Axboe 		pages_written = wb_do_writeback(wb, 0);
81403ba3782SJens Axboe 
815455b2864SDave Chinner 		trace_writeback_pages_written(pages_written);
816455b2864SDave Chinner 
81703ba3782SJens Axboe 		if (pages_written)
818ecd58403SArtem Bityutskiy 			wb->last_active = jiffies;
81903ba3782SJens Axboe 
820297252c8SArtem Bityutskiy 		set_current_state(TASK_INTERRUPTIBLE);
821297252c8SArtem Bityutskiy 		if (!list_empty(&bdi->work_list)) {
822297252c8SArtem Bityutskiy 			__set_current_state(TASK_RUNNING);
823297252c8SArtem Bityutskiy 			continue;
824297252c8SArtem Bityutskiy 		}
825297252c8SArtem Bityutskiy 
826253c34e9SArtem Bityutskiy 		if (wb_has_dirty_io(wb) && dirty_writeback_interval)
827fff5b85aSArtem Bityutskiy 			schedule_timeout(msecs_to_jiffies(dirty_writeback_interval * 10));
828253c34e9SArtem Bityutskiy 		else {
829253c34e9SArtem Bityutskiy 			/*
830253c34e9SArtem Bityutskiy 			 * We have nothing to do, so can go sleep without any
831253c34e9SArtem Bityutskiy 			 * timeout and save power. When a work is queued or
832253c34e9SArtem Bityutskiy 			 * something is made dirty - we will be woken up.
833253c34e9SArtem Bityutskiy 			 */
83469b62d01SJens Axboe 			schedule();
835253c34e9SArtem Bityutskiy 		}
83669b62d01SJens Axboe 
83703ba3782SJens Axboe 		try_to_freeze();
83803ba3782SJens Axboe 	}
83903ba3782SJens Axboe 
840fff5b85aSArtem Bityutskiy 	/* Flush any work that raced with us exiting */
84108243900SChristoph Hellwig 	if (!list_empty(&bdi->work_list))
84208243900SChristoph Hellwig 		wb_do_writeback(wb, 1);
843455b2864SDave Chinner 
844455b2864SDave Chinner 	trace_writeback_thread_stop(bdi);
84503ba3782SJens Axboe 	return 0;
84603ba3782SJens Axboe }
84703ba3782SJens Axboe 
84808243900SChristoph Hellwig 
84903ba3782SJens Axboe /*
85003ba3782SJens Axboe  * Start writeback of `nr_pages' pages.  If `nr_pages' is zero, write back
85103ba3782SJens Axboe  * the whole world.
85203ba3782SJens Axboe  */
85303ba3782SJens Axboe void wakeup_flusher_threads(long nr_pages)
85403ba3782SJens Axboe {
855b8c2f347SChristoph Hellwig 	struct backing_dev_info *bdi;
856b8c2f347SChristoph Hellwig 
85783ba7b07SChristoph Hellwig 	if (!nr_pages) {
85883ba7b07SChristoph Hellwig 		nr_pages = global_page_state(NR_FILE_DIRTY) +
85903ba3782SJens Axboe 				global_page_state(NR_UNSTABLE_NFS);
860b8c2f347SChristoph Hellwig 	}
861b8c2f347SChristoph Hellwig 
862b8c2f347SChristoph Hellwig 	rcu_read_lock();
863b8c2f347SChristoph Hellwig 	list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) {
864b8c2f347SChristoph Hellwig 		if (!bdi_has_dirty_io(bdi))
865b8c2f347SChristoph Hellwig 			continue;
86683ba7b07SChristoph Hellwig 		__bdi_start_writeback(bdi, nr_pages, false, false);
867b8c2f347SChristoph Hellwig 	}
868b8c2f347SChristoph Hellwig 	rcu_read_unlock();
86903ba3782SJens Axboe }
87003ba3782SJens Axboe 
871253c34e9SArtem Bityutskiy /*
872253c34e9SArtem Bityutskiy  * This function is used when the first inode for this bdi is marked dirty. It
873253c34e9SArtem Bityutskiy  * wakes-up the corresponding bdi thread which should then take care of the
874253c34e9SArtem Bityutskiy  * periodic background write-out of dirty inodes.
875253c34e9SArtem Bityutskiy  */
876253c34e9SArtem Bityutskiy static void wakeup_bdi_thread(struct backing_dev_info *bdi)
877253c34e9SArtem Bityutskiy {
878253c34e9SArtem Bityutskiy 	spin_lock(&bdi->wb_lock);
879253c34e9SArtem Bityutskiy 	if (bdi->wb.task)
880253c34e9SArtem Bityutskiy 		wake_up_process(bdi->wb.task);
881253c34e9SArtem Bityutskiy 	else
882253c34e9SArtem Bityutskiy 		/*
883253c34e9SArtem Bityutskiy 		 * When bdi tasks are inactive for long time, they are killed.
884253c34e9SArtem Bityutskiy 		 * In this case we have to wake-up the forker thread which
885253c34e9SArtem Bityutskiy 		 * should create and run the bdi thread.
886253c34e9SArtem Bityutskiy 		 */
887253c34e9SArtem Bityutskiy 		wake_up_process(default_backing_dev_info.wb.task);
888253c34e9SArtem Bityutskiy 	spin_unlock(&bdi->wb_lock);
889253c34e9SArtem Bityutskiy }
890253c34e9SArtem Bityutskiy 
89103ba3782SJens Axboe static noinline void block_dump___mark_inode_dirty(struct inode *inode)
89203ba3782SJens Axboe {
89303ba3782SJens Axboe 	if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) {
89403ba3782SJens Axboe 		struct dentry *dentry;
89503ba3782SJens Axboe 		const char *name = "?";
89603ba3782SJens Axboe 
89703ba3782SJens Axboe 		dentry = d_find_alias(inode);
89803ba3782SJens Axboe 		if (dentry) {
89903ba3782SJens Axboe 			spin_lock(&dentry->d_lock);
90003ba3782SJens Axboe 			name = (const char *) dentry->d_name.name;
90103ba3782SJens Axboe 		}
90203ba3782SJens Axboe 		printk(KERN_DEBUG
90303ba3782SJens Axboe 		       "%s(%d): dirtied inode %lu (%s) on %s\n",
90403ba3782SJens Axboe 		       current->comm, task_pid_nr(current), inode->i_ino,
90503ba3782SJens Axboe 		       name, inode->i_sb->s_id);
90603ba3782SJens Axboe 		if (dentry) {
90703ba3782SJens Axboe 			spin_unlock(&dentry->d_lock);
90803ba3782SJens Axboe 			dput(dentry);
90903ba3782SJens Axboe 		}
91003ba3782SJens Axboe 	}
91103ba3782SJens Axboe }
91203ba3782SJens Axboe 
91303ba3782SJens Axboe /**
91403ba3782SJens Axboe  *	__mark_inode_dirty -	internal function
91503ba3782SJens Axboe  *	@inode: inode to mark
91603ba3782SJens Axboe  *	@flags: what kind of dirty (i.e. I_DIRTY_SYNC)
91703ba3782SJens Axboe  *	Mark an inode as dirty. Callers should use mark_inode_dirty or
91803ba3782SJens Axboe  *  	mark_inode_dirty_sync.
91903ba3782SJens Axboe  *
92003ba3782SJens Axboe  * Put the inode on the super block's dirty list.
92103ba3782SJens Axboe  *
92203ba3782SJens Axboe  * CAREFUL! We mark it dirty unconditionally, but move it onto the
92303ba3782SJens Axboe  * dirty list only if it is hashed or if it refers to a blockdev.
92403ba3782SJens Axboe  * If it was not hashed, it will never be added to the dirty list
92503ba3782SJens Axboe  * even if it is later hashed, as it will have been marked dirty already.
92603ba3782SJens Axboe  *
92703ba3782SJens Axboe  * In short, make sure you hash any inodes _before_ you start marking
92803ba3782SJens Axboe  * them dirty.
92903ba3782SJens Axboe  *
93003ba3782SJens Axboe  * This function *must* be atomic for the I_DIRTY_PAGES case -
93103ba3782SJens Axboe  * set_page_dirty() is called under spinlock in several places.
93203ba3782SJens Axboe  *
93303ba3782SJens Axboe  * Note that for blockdevs, inode->dirtied_when represents the dirtying time of
93403ba3782SJens Axboe  * the block-special inode (/dev/hda1) itself.  And the ->dirtied_when field of
93503ba3782SJens Axboe  * the kernel-internal blockdev inode represents the dirtying time of the
93603ba3782SJens Axboe  * blockdev's pages.  This is why for I_DIRTY_PAGES we always use
93703ba3782SJens Axboe  * page->mapping->host, so the page-dirtying time is recorded in the internal
93803ba3782SJens Axboe  * blockdev inode.
93903ba3782SJens Axboe  */
94003ba3782SJens Axboe void __mark_inode_dirty(struct inode *inode, int flags)
94103ba3782SJens Axboe {
94203ba3782SJens Axboe 	struct super_block *sb = inode->i_sb;
943253c34e9SArtem Bityutskiy 	struct backing_dev_info *bdi = NULL;
944253c34e9SArtem Bityutskiy 	bool wakeup_bdi = false;
94503ba3782SJens Axboe 
94603ba3782SJens Axboe 	/*
94703ba3782SJens Axboe 	 * Don't do this for I_DIRTY_PAGES - that doesn't actually
94803ba3782SJens Axboe 	 * dirty the inode itself
94903ba3782SJens Axboe 	 */
95003ba3782SJens Axboe 	if (flags & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
95103ba3782SJens Axboe 		if (sb->s_op->dirty_inode)
95203ba3782SJens Axboe 			sb->s_op->dirty_inode(inode);
95303ba3782SJens Axboe 	}
95403ba3782SJens Axboe 
95503ba3782SJens Axboe 	/*
95603ba3782SJens Axboe 	 * make sure that changes are seen by all cpus before we test i_state
95703ba3782SJens Axboe 	 * -- mikulas
95803ba3782SJens Axboe 	 */
95903ba3782SJens Axboe 	smp_mb();
96003ba3782SJens Axboe 
96103ba3782SJens Axboe 	/* avoid the locking if we can */
96203ba3782SJens Axboe 	if ((inode->i_state & flags) == flags)
96303ba3782SJens Axboe 		return;
96403ba3782SJens Axboe 
96503ba3782SJens Axboe 	if (unlikely(block_dump))
96603ba3782SJens Axboe 		block_dump___mark_inode_dirty(inode);
96703ba3782SJens Axboe 
96803ba3782SJens Axboe 	spin_lock(&inode_lock);
96903ba3782SJens Axboe 	if ((inode->i_state & flags) != flags) {
97003ba3782SJens Axboe 		const int was_dirty = inode->i_state & I_DIRTY;
97103ba3782SJens Axboe 
97203ba3782SJens Axboe 		inode->i_state |= flags;
97303ba3782SJens Axboe 
97403ba3782SJens Axboe 		/*
97503ba3782SJens Axboe 		 * If the inode is being synced, just update its dirty state.
97603ba3782SJens Axboe 		 * The unlocker will place the inode on the appropriate
97703ba3782SJens Axboe 		 * superblock list, based upon its state.
97803ba3782SJens Axboe 		 */
97903ba3782SJens Axboe 		if (inode->i_state & I_SYNC)
98003ba3782SJens Axboe 			goto out;
98103ba3782SJens Axboe 
98203ba3782SJens Axboe 		/*
98303ba3782SJens Axboe 		 * Only add valid (hashed) inodes to the superblock's
98403ba3782SJens Axboe 		 * dirty list.  Add blockdev inodes as well.
98503ba3782SJens Axboe 		 */
98603ba3782SJens Axboe 		if (!S_ISBLK(inode->i_mode)) {
98703ba3782SJens Axboe 			if (hlist_unhashed(&inode->i_hash))
98803ba3782SJens Axboe 				goto out;
98903ba3782SJens Axboe 		}
99003ba3782SJens Axboe 		if (inode->i_state & (I_FREEING|I_CLEAR))
99103ba3782SJens Axboe 			goto out;
99203ba3782SJens Axboe 
99303ba3782SJens Axboe 		/*
99403ba3782SJens Axboe 		 * If the inode was already on b_dirty/b_io/b_more_io, don't
99503ba3782SJens Axboe 		 * reposition it (that would break b_dirty time-ordering).
99603ba3782SJens Axboe 		 */
99703ba3782SJens Axboe 		if (!was_dirty) {
998253c34e9SArtem Bityutskiy 			bdi = inode_to_bdi(inode);
999500b067cSJens Axboe 
1000253c34e9SArtem Bityutskiy 			if (bdi_cap_writeback_dirty(bdi)) {
1001253c34e9SArtem Bityutskiy 				WARN(!test_bit(BDI_registered, &bdi->state),
1002253c34e9SArtem Bityutskiy 				     "bdi-%s not registered\n", bdi->name);
1003253c34e9SArtem Bityutskiy 
1004253c34e9SArtem Bityutskiy 				/*
1005253c34e9SArtem Bityutskiy 				 * If this is the first dirty inode for this
1006253c34e9SArtem Bityutskiy 				 * bdi, we have to wake-up the corresponding
1007253c34e9SArtem Bityutskiy 				 * bdi thread to make sure background
1008253c34e9SArtem Bityutskiy 				 * write-back happens later.
1009253c34e9SArtem Bityutskiy 				 */
1010253c34e9SArtem Bityutskiy 				if (!wb_has_dirty_io(&bdi->wb))
1011253c34e9SArtem Bityutskiy 					wakeup_bdi = true;
1012500b067cSJens Axboe 			}
101303ba3782SJens Axboe 
101403ba3782SJens Axboe 			inode->dirtied_when = jiffies;
1015253c34e9SArtem Bityutskiy 			list_move(&inode->i_list, &bdi->wb.b_dirty);
101603ba3782SJens Axboe 		}
101703ba3782SJens Axboe 	}
101803ba3782SJens Axboe out:
101903ba3782SJens Axboe 	spin_unlock(&inode_lock);
1020253c34e9SArtem Bityutskiy 
1021253c34e9SArtem Bityutskiy 	if (wakeup_bdi)
1022253c34e9SArtem Bityutskiy 		wakeup_bdi_thread(bdi);
102303ba3782SJens Axboe }
102403ba3782SJens Axboe EXPORT_SYMBOL(__mark_inode_dirty);
102503ba3782SJens Axboe 
102666f3b8e2SJens Axboe /*
102766f3b8e2SJens Axboe  * Write out a superblock's list of dirty inodes.  A wait will be performed
102866f3b8e2SJens Axboe  * upon no inodes, all inodes or the final one, depending upon sync_mode.
102966f3b8e2SJens Axboe  *
103066f3b8e2SJens Axboe  * If older_than_this is non-NULL, then only write out inodes which
103166f3b8e2SJens Axboe  * had their first dirtying at a time earlier than *older_than_this.
103266f3b8e2SJens Axboe  *
103366f3b8e2SJens Axboe  * If `bdi' is non-zero then we're being asked to writeback a specific queue.
103466f3b8e2SJens Axboe  * This function assumes that the blockdev superblock's inodes are backed by
103566f3b8e2SJens Axboe  * a variety of queues, so all inodes are searched.  For other superblocks,
103666f3b8e2SJens Axboe  * assume that all inodes are backed by the same queue.
103766f3b8e2SJens Axboe  *
103866f3b8e2SJens Axboe  * The inodes to be written are parked on bdi->b_io.  They are moved back onto
103966f3b8e2SJens Axboe  * bdi->b_dirty as they are selected for writing.  This way, none can be missed
104066f3b8e2SJens Axboe  * on the writer throttling path, and we get decent balancing between many
104166f3b8e2SJens Axboe  * throttled threads: we don't want them all piling up on inode_sync_wait.
104266f3b8e2SJens Axboe  */
1043b6e51316SJens Axboe static void wait_sb_inodes(struct super_block *sb)
104466f3b8e2SJens Axboe {
104538f21977SNick Piggin 	struct inode *inode, *old_inode = NULL;
104638f21977SNick Piggin 
104703ba3782SJens Axboe 	/*
104803ba3782SJens Axboe 	 * We need to be protected against the filesystem going from
104903ba3782SJens Axboe 	 * r/o to r/w or vice versa.
105003ba3782SJens Axboe 	 */
1051b6e51316SJens Axboe 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
105203ba3782SJens Axboe 
105366f3b8e2SJens Axboe 	spin_lock(&inode_lock);
105466f3b8e2SJens Axboe 
105538f21977SNick Piggin 	/*
105638f21977SNick Piggin 	 * Data integrity sync. Must wait for all pages under writeback,
105738f21977SNick Piggin 	 * because there may have been pages dirtied before our sync
105838f21977SNick Piggin 	 * call, but which had writeout started before we write it out.
105938f21977SNick Piggin 	 * In which case, the inode may not be on the dirty list, but
106038f21977SNick Piggin 	 * we still have to wait for that writeout.
106138f21977SNick Piggin 	 */
1062b6e51316SJens Axboe 	list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
106338f21977SNick Piggin 		struct address_space *mapping;
106438f21977SNick Piggin 
106503ba3782SJens Axboe 		if (inode->i_state & (I_FREEING|I_CLEAR|I_WILL_FREE|I_NEW))
106638f21977SNick Piggin 			continue;
106738f21977SNick Piggin 		mapping = inode->i_mapping;
106838f21977SNick Piggin 		if (mapping->nrpages == 0)
106938f21977SNick Piggin 			continue;
107038f21977SNick Piggin 		__iget(inode);
1071ae8547b0SHans Reiser 		spin_unlock(&inode_lock);
107238f21977SNick Piggin 		/*
107338f21977SNick Piggin 		 * We hold a reference to 'inode' so it couldn't have
107438f21977SNick Piggin 		 * been removed from s_inodes list while we dropped the
107538f21977SNick Piggin 		 * inode_lock.  We cannot iput the inode now as we can
107638f21977SNick Piggin 		 * be holding the last reference and we cannot iput it
107738f21977SNick Piggin 		 * under inode_lock. So we keep the reference and iput
107838f21977SNick Piggin 		 * it later.
107938f21977SNick Piggin 		 */
108038f21977SNick Piggin 		iput(old_inode);
108138f21977SNick Piggin 		old_inode = inode;
108238f21977SNick Piggin 
108338f21977SNick Piggin 		filemap_fdatawait(mapping);
108438f21977SNick Piggin 
108538f21977SNick Piggin 		cond_resched();
108638f21977SNick Piggin 
108738f21977SNick Piggin 		spin_lock(&inode_lock);
108838f21977SNick Piggin 	}
108938f21977SNick Piggin 	spin_unlock(&inode_lock);
109038f21977SNick Piggin 	iput(old_inode);
109166f3b8e2SJens Axboe }
10921da177e4SLinus Torvalds 
1093d8a8559cSJens Axboe /**
1094d8a8559cSJens Axboe  * writeback_inodes_sb	-	writeback dirty inodes from given super_block
1095d8a8559cSJens Axboe  * @sb: the superblock
10961da177e4SLinus Torvalds  *
1097d8a8559cSJens Axboe  * Start writeback on some inodes on this super_block. No guarantees are made
1098d8a8559cSJens Axboe  * on how many (if any) will be written, and this function does not wait
1099d8a8559cSJens Axboe  * for IO completion of submitted IO. The number of pages submitted is
1100d8a8559cSJens Axboe  * returned.
11011da177e4SLinus Torvalds  */
1102b6e51316SJens Axboe void writeback_inodes_sb(struct super_block *sb)
11031da177e4SLinus Torvalds {
11040e3c9a22SJens Axboe 	unsigned long nr_dirty = global_page_state(NR_FILE_DIRTY);
11050e3c9a22SJens Axboe 	unsigned long nr_unstable = global_page_state(NR_UNSTABLE_NFS);
110683ba7b07SChristoph Hellwig 	DECLARE_COMPLETION_ONSTACK(done);
110783ba7b07SChristoph Hellwig 	struct wb_writeback_work work = {
11083c4d7165SChristoph Hellwig 		.sb		= sb,
11093c4d7165SChristoph Hellwig 		.sync_mode	= WB_SYNC_NONE,
111083ba7b07SChristoph Hellwig 		.done		= &done,
11113c4d7165SChristoph Hellwig 	};
11120e3c9a22SJens Axboe 
1113cf37e972SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
1114cf37e972SChristoph Hellwig 
111583ba7b07SChristoph Hellwig 	work.nr_pages = nr_dirty + nr_unstable +
11160e3c9a22SJens Axboe 			(inodes_stat.nr_inodes - inodes_stat.nr_unused);
11170e3c9a22SJens Axboe 
111883ba7b07SChristoph Hellwig 	bdi_queue_work(sb->s_bdi, &work);
111983ba7b07SChristoph Hellwig 	wait_for_completion(&done);
11201da177e4SLinus Torvalds }
1121d8a8559cSJens Axboe EXPORT_SYMBOL(writeback_inodes_sb);
1122d8a8559cSJens Axboe 
1123d8a8559cSJens Axboe /**
112417bd55d0SEric Sandeen  * writeback_inodes_sb_if_idle	-	start writeback if none underway
112517bd55d0SEric Sandeen  * @sb: the superblock
112617bd55d0SEric Sandeen  *
112717bd55d0SEric Sandeen  * Invoke writeback_inodes_sb if no writeback is currently underway.
112817bd55d0SEric Sandeen  * Returns 1 if writeback was started, 0 if not.
112917bd55d0SEric Sandeen  */
113017bd55d0SEric Sandeen int writeback_inodes_sb_if_idle(struct super_block *sb)
113117bd55d0SEric Sandeen {
113217bd55d0SEric Sandeen 	if (!writeback_in_progress(sb->s_bdi)) {
1133cf37e972SChristoph Hellwig 		down_read(&sb->s_umount);
113417bd55d0SEric Sandeen 		writeback_inodes_sb(sb);
1135cf37e972SChristoph Hellwig 		up_read(&sb->s_umount);
113617bd55d0SEric Sandeen 		return 1;
113717bd55d0SEric Sandeen 	} else
113817bd55d0SEric Sandeen 		return 0;
113917bd55d0SEric Sandeen }
114017bd55d0SEric Sandeen EXPORT_SYMBOL(writeback_inodes_sb_if_idle);
114117bd55d0SEric Sandeen 
114217bd55d0SEric Sandeen /**
1143d8a8559cSJens Axboe  * sync_inodes_sb	-	sync sb inode pages
1144d8a8559cSJens Axboe  * @sb: the superblock
1145d8a8559cSJens Axboe  *
1146d8a8559cSJens Axboe  * This function writes and waits on any dirty inode belonging to this
1147d8a8559cSJens Axboe  * super_block. The number of pages synced is returned.
1148d8a8559cSJens Axboe  */
1149b6e51316SJens Axboe void sync_inodes_sb(struct super_block *sb)
1150d8a8559cSJens Axboe {
115183ba7b07SChristoph Hellwig 	DECLARE_COMPLETION_ONSTACK(done);
115283ba7b07SChristoph Hellwig 	struct wb_writeback_work work = {
11533c4d7165SChristoph Hellwig 		.sb		= sb,
11543c4d7165SChristoph Hellwig 		.sync_mode	= WB_SYNC_ALL,
11553c4d7165SChristoph Hellwig 		.nr_pages	= LONG_MAX,
11563c4d7165SChristoph Hellwig 		.range_cyclic	= 0,
115783ba7b07SChristoph Hellwig 		.done		= &done,
11583c4d7165SChristoph Hellwig 	};
11593c4d7165SChristoph Hellwig 
1160cf37e972SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
1161cf37e972SChristoph Hellwig 
116283ba7b07SChristoph Hellwig 	bdi_queue_work(sb->s_bdi, &work);
116383ba7b07SChristoph Hellwig 	wait_for_completion(&done);
116483ba7b07SChristoph Hellwig 
1165b6e51316SJens Axboe 	wait_sb_inodes(sb);
1166d8a8559cSJens Axboe }
1167d8a8559cSJens Axboe EXPORT_SYMBOL(sync_inodes_sb);
11681da177e4SLinus Torvalds 
11691da177e4SLinus Torvalds /**
11701da177e4SLinus Torvalds  * write_inode_now	-	write an inode to disk
11711da177e4SLinus Torvalds  * @inode: inode to write to disk
11721da177e4SLinus Torvalds  * @sync: whether the write should be synchronous or not
11731da177e4SLinus Torvalds  *
11747f04c26dSAndrea Arcangeli  * This function commits an inode to disk immediately if it is dirty. This is
11757f04c26dSAndrea Arcangeli  * primarily needed by knfsd.
11767f04c26dSAndrea Arcangeli  *
11777f04c26dSAndrea Arcangeli  * The caller must either have a ref on the inode or must have set I_WILL_FREE.
11781da177e4SLinus Torvalds  */
11791da177e4SLinus Torvalds int write_inode_now(struct inode *inode, int sync)
11801da177e4SLinus Torvalds {
11811da177e4SLinus Torvalds 	int ret;
11821da177e4SLinus Torvalds 	struct writeback_control wbc = {
11831da177e4SLinus Torvalds 		.nr_to_write = LONG_MAX,
118418914b18SMike Galbraith 		.sync_mode = sync ? WB_SYNC_ALL : WB_SYNC_NONE,
1185111ebb6eSOGAWA Hirofumi 		.range_start = 0,
1186111ebb6eSOGAWA Hirofumi 		.range_end = LLONG_MAX,
11871da177e4SLinus Torvalds 	};
11881da177e4SLinus Torvalds 
11891da177e4SLinus Torvalds 	if (!mapping_cap_writeback_dirty(inode->i_mapping))
119049364ce2SAndrew Morton 		wbc.nr_to_write = 0;
11911da177e4SLinus Torvalds 
11921da177e4SLinus Torvalds 	might_sleep();
11931da177e4SLinus Torvalds 	spin_lock(&inode_lock);
119401c03194SChristoph Hellwig 	ret = writeback_single_inode(inode, &wbc);
11951da177e4SLinus Torvalds 	spin_unlock(&inode_lock);
11961da177e4SLinus Torvalds 	if (sync)
11971c0eeaf5SJoern Engel 		inode_sync_wait(inode);
11981da177e4SLinus Torvalds 	return ret;
11991da177e4SLinus Torvalds }
12001da177e4SLinus Torvalds EXPORT_SYMBOL(write_inode_now);
12011da177e4SLinus Torvalds 
12021da177e4SLinus Torvalds /**
12031da177e4SLinus Torvalds  * sync_inode - write an inode and its pages to disk.
12041da177e4SLinus Torvalds  * @inode: the inode to sync
12051da177e4SLinus Torvalds  * @wbc: controls the writeback mode
12061da177e4SLinus Torvalds  *
12071da177e4SLinus Torvalds  * sync_inode() will write an inode and its pages to disk.  It will also
12081da177e4SLinus Torvalds  * correctly update the inode on its superblock's dirty inode lists and will
12091da177e4SLinus Torvalds  * update inode->i_state.
12101da177e4SLinus Torvalds  *
12111da177e4SLinus Torvalds  * The caller must have a ref on the inode.
12121da177e4SLinus Torvalds  */
12131da177e4SLinus Torvalds int sync_inode(struct inode *inode, struct writeback_control *wbc)
12141da177e4SLinus Torvalds {
12151da177e4SLinus Torvalds 	int ret;
12161da177e4SLinus Torvalds 
12171da177e4SLinus Torvalds 	spin_lock(&inode_lock);
121801c03194SChristoph Hellwig 	ret = writeback_single_inode(inode, wbc);
12191da177e4SLinus Torvalds 	spin_unlock(&inode_lock);
12201da177e4SLinus Torvalds 	return ret;
12211da177e4SLinus Torvalds }
12221da177e4SLinus Torvalds EXPORT_SYMBOL(sync_inode);
1223