xref: /openbmc/linux/fs/fs-writeback.c (revision 251d6a47)
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;
396e6938b6SWu Fengguang 	unsigned int tagged_writepages:1;
4052957fe1SH Hartley Sweeten 	unsigned int for_kupdate:1;
4152957fe1SH Hartley Sweeten 	unsigned int range_cyclic:1;
4252957fe1SH Hartley Sweeten 	unsigned int for_background:1;
43c4a77a6cSJens Axboe 
448010c3b6SJens Axboe 	struct list_head list;		/* pending work list */
4583ba7b07SChristoph Hellwig 	struct completion *done;	/* set if the caller waits */
4603ba3782SJens Axboe };
4703ba3782SJens Axboe 
48455b2864SDave Chinner /*
49455b2864SDave Chinner  * Include the creation of the trace points after defining the
50455b2864SDave Chinner  * wb_writeback_work structure so that the definition remains local to this
51455b2864SDave Chinner  * file.
52455b2864SDave Chinner  */
53455b2864SDave Chinner #define CREATE_TRACE_POINTS
54455b2864SDave Chinner #include <trace/events/writeback.h>
55455b2864SDave Chinner 
56455b2864SDave Chinner /*
57455b2864SDave Chinner  * We don't actually have pdflush, but this one is exported though /proc...
58455b2864SDave Chinner  */
59455b2864SDave Chinner int nr_pdflush_threads;
60455b2864SDave Chinner 
61f11b00f3SAdrian Bunk /**
62f11b00f3SAdrian Bunk  * writeback_in_progress - determine whether there is writeback in progress
63f11b00f3SAdrian Bunk  * @bdi: the device's backing_dev_info structure.
64f11b00f3SAdrian Bunk  *
6503ba3782SJens Axboe  * Determine whether there is writeback waiting to be handled against a
6603ba3782SJens Axboe  * backing device.
67f11b00f3SAdrian Bunk  */
68f11b00f3SAdrian Bunk int writeback_in_progress(struct backing_dev_info *bdi)
69f11b00f3SAdrian Bunk {
7081d73a32SJan Kara 	return test_bit(BDI_writeback_running, &bdi->state);
71f11b00f3SAdrian Bunk }
72f11b00f3SAdrian Bunk 
73692ebd17SJan Kara static inline struct backing_dev_info *inode_to_bdi(struct inode *inode)
74692ebd17SJan Kara {
75692ebd17SJan Kara 	struct super_block *sb = inode->i_sb;
76692ebd17SJan Kara 
77aaead25bSChristoph Hellwig 	if (strcmp(sb->s_type->name, "bdev") == 0)
78aaead25bSChristoph Hellwig 		return inode->i_mapping->backing_dev_info;
79aaead25bSChristoph Hellwig 
80692ebd17SJan Kara 	return sb->s_bdi;
81692ebd17SJan Kara }
82692ebd17SJan Kara 
837ccf19a8SNick Piggin static inline struct inode *wb_inode(struct list_head *head)
847ccf19a8SNick Piggin {
857ccf19a8SNick Piggin 	return list_entry(head, struct inode, i_wb_list);
867ccf19a8SNick Piggin }
877ccf19a8SNick Piggin 
886585027aSJan Kara /* Wakeup flusher thread or forker thread to fork it. Requires bdi->wb_lock. */
896585027aSJan Kara static void bdi_wakeup_flusher(struct backing_dev_info *bdi)
904195f73dSNick Piggin {
91fff5b85aSArtem Bityutskiy 	if (bdi->wb.task) {
92fff5b85aSArtem Bityutskiy 		wake_up_process(bdi->wb.task);
93fff5b85aSArtem Bityutskiy 	} else {
941da177e4SLinus Torvalds 		/*
95fff5b85aSArtem Bityutskiy 		 * The bdi thread isn't there, wake up the forker thread which
96fff5b85aSArtem Bityutskiy 		 * will create and run it.
971da177e4SLinus Torvalds 		 */
9803ba3782SJens Axboe 		wake_up_process(default_backing_dev_info.wb.task);
991da177e4SLinus Torvalds 	}
1006585027aSJan Kara }
1016585027aSJan Kara 
1026585027aSJan Kara static void bdi_queue_work(struct backing_dev_info *bdi,
1036585027aSJan Kara 			   struct wb_writeback_work *work)
1046585027aSJan Kara {
1056585027aSJan Kara 	trace_writeback_queue(bdi, work);
1066585027aSJan Kara 
1076585027aSJan Kara 	spin_lock_bh(&bdi->wb_lock);
1086585027aSJan Kara 	list_add_tail(&work->list, &bdi->work_list);
1096585027aSJan Kara 	if (!bdi->wb.task)
1106585027aSJan Kara 		trace_writeback_nothread(bdi, work);
1116585027aSJan Kara 	bdi_wakeup_flusher(bdi);
1126467716aSArtem Bityutskiy 	spin_unlock_bh(&bdi->wb_lock);
11303ba3782SJens Axboe }
1141da177e4SLinus Torvalds 
11583ba7b07SChristoph Hellwig static void
11683ba7b07SChristoph Hellwig __bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages,
1176585027aSJan Kara 		      bool range_cyclic)
1181da177e4SLinus Torvalds {
11983ba7b07SChristoph Hellwig 	struct wb_writeback_work *work;
12003ba3782SJens Axboe 
121bcddc3f0SJens Axboe 	/*
122bcddc3f0SJens Axboe 	 * This is WB_SYNC_NONE writeback, so if allocation fails just
123bcddc3f0SJens Axboe 	 * wakeup the thread for old dirty data writeback
124bcddc3f0SJens Axboe 	 */
12583ba7b07SChristoph Hellwig 	work = kzalloc(sizeof(*work), GFP_ATOMIC);
12683ba7b07SChristoph Hellwig 	if (!work) {
127455b2864SDave Chinner 		if (bdi->wb.task) {
128455b2864SDave Chinner 			trace_writeback_nowork(bdi);
12983ba7b07SChristoph Hellwig 			wake_up_process(bdi->wb.task);
130455b2864SDave Chinner 		}
13183ba7b07SChristoph Hellwig 		return;
13283ba7b07SChristoph Hellwig 	}
13383ba7b07SChristoph Hellwig 
13483ba7b07SChristoph Hellwig 	work->sync_mode	= WB_SYNC_NONE;
13583ba7b07SChristoph Hellwig 	work->nr_pages	= nr_pages;
13683ba7b07SChristoph Hellwig 	work->range_cyclic = range_cyclic;
13783ba7b07SChristoph Hellwig 
138f11fcae8SJens Axboe 	bdi_queue_work(bdi, work);
13903ba3782SJens Axboe }
140b6e51316SJens Axboe 
141b6e51316SJens Axboe /**
142b6e51316SJens Axboe  * bdi_start_writeback - start writeback
143b6e51316SJens Axboe  * @bdi: the backing device to write from
144b6e51316SJens Axboe  * @nr_pages: the number of pages to write
145b6e51316SJens Axboe  *
146b6e51316SJens Axboe  * Description:
147b6e51316SJens Axboe  *   This does WB_SYNC_NONE opportunistic writeback. The IO is only
14825985edcSLucas De Marchi  *   started when this function returns, we make no guarantees on
1490e3c9a22SJens Axboe  *   completion. Caller need not hold sb s_umount semaphore.
150b6e51316SJens Axboe  *
151b6e51316SJens Axboe  */
152c5444198SChristoph Hellwig void bdi_start_writeback(struct backing_dev_info *bdi, long nr_pages)
153b6e51316SJens Axboe {
1546585027aSJan Kara 	__bdi_start_writeback(bdi, nr_pages, true);
155d3ddec76SWu Fengguang }
156d3ddec76SWu Fengguang 
157c5444198SChristoph Hellwig /**
158c5444198SChristoph Hellwig  * bdi_start_background_writeback - start background writeback
159c5444198SChristoph Hellwig  * @bdi: the backing device to write from
160c5444198SChristoph Hellwig  *
161c5444198SChristoph Hellwig  * Description:
1626585027aSJan Kara  *   This makes sure WB_SYNC_NONE background writeback happens. When
1636585027aSJan Kara  *   this function returns, it is only guaranteed that for given BDI
1646585027aSJan Kara  *   some IO is happening if we are over background dirty threshold.
1656585027aSJan Kara  *   Caller need not hold sb s_umount semaphore.
166c5444198SChristoph Hellwig  */
167c5444198SChristoph Hellwig void bdi_start_background_writeback(struct backing_dev_info *bdi)
168c5444198SChristoph Hellwig {
1696585027aSJan Kara 	/*
1706585027aSJan Kara 	 * We just wake up the flusher thread. It will perform background
1716585027aSJan Kara 	 * writeback as soon as there is no other work to do.
1726585027aSJan Kara 	 */
17371927e84SWu Fengguang 	trace_writeback_wake_background(bdi);
1746585027aSJan Kara 	spin_lock_bh(&bdi->wb_lock);
1756585027aSJan Kara 	bdi_wakeup_flusher(bdi);
1766585027aSJan Kara 	spin_unlock_bh(&bdi->wb_lock);
1771da177e4SLinus Torvalds }
1781da177e4SLinus Torvalds 
1791da177e4SLinus Torvalds /*
180a66979abSDave Chinner  * Remove the inode from the writeback list it is on.
181a66979abSDave Chinner  */
182a66979abSDave Chinner void inode_wb_list_del(struct inode *inode)
183a66979abSDave Chinner {
184f758eeabSChristoph Hellwig 	struct backing_dev_info *bdi = inode_to_bdi(inode);
185a66979abSDave Chinner 
186f758eeabSChristoph Hellwig 	spin_lock(&bdi->wb.list_lock);
187f758eeabSChristoph Hellwig 	list_del_init(&inode->i_wb_list);
188f758eeabSChristoph Hellwig 	spin_unlock(&bdi->wb.list_lock);
189f758eeabSChristoph Hellwig }
190a66979abSDave Chinner 
191a66979abSDave Chinner /*
1926610a0bcSAndrew Morton  * Redirty an inode: set its when-it-was dirtied timestamp and move it to the
1936610a0bcSAndrew Morton  * furthest end of its superblock's dirty-inode list.
1946610a0bcSAndrew Morton  *
1956610a0bcSAndrew Morton  * Before stamping the inode's ->dirtied_when, we check to see whether it is
19666f3b8e2SJens Axboe  * already the most-recently-dirtied inode on the b_dirty list.  If that is
1976610a0bcSAndrew Morton  * the case then the inode must have been redirtied while it was being written
1986610a0bcSAndrew Morton  * out and we don't reset its dirtied_when.
1996610a0bcSAndrew Morton  */
200f758eeabSChristoph Hellwig static void redirty_tail(struct inode *inode, struct bdi_writeback *wb)
2016610a0bcSAndrew Morton {
202f758eeabSChristoph Hellwig 	assert_spin_locked(&wb->list_lock);
20303ba3782SJens Axboe 	if (!list_empty(&wb->b_dirty)) {
20466f3b8e2SJens Axboe 		struct inode *tail;
2056610a0bcSAndrew Morton 
2067ccf19a8SNick Piggin 		tail = wb_inode(wb->b_dirty.next);
20766f3b8e2SJens Axboe 		if (time_before(inode->dirtied_when, tail->dirtied_when))
2086610a0bcSAndrew Morton 			inode->dirtied_when = jiffies;
2096610a0bcSAndrew Morton 	}
2107ccf19a8SNick Piggin 	list_move(&inode->i_wb_list, &wb->b_dirty);
2116610a0bcSAndrew Morton }
2126610a0bcSAndrew Morton 
2136610a0bcSAndrew Morton /*
21466f3b8e2SJens Axboe  * requeue inode for re-scanning after bdi->b_io list is exhausted.
215c986d1e2SAndrew Morton  */
216f758eeabSChristoph Hellwig static void requeue_io(struct inode *inode, struct bdi_writeback *wb)
217c986d1e2SAndrew Morton {
218f758eeabSChristoph Hellwig 	assert_spin_locked(&wb->list_lock);
2197ccf19a8SNick Piggin 	list_move(&inode->i_wb_list, &wb->b_more_io);
220c986d1e2SAndrew Morton }
221c986d1e2SAndrew Morton 
2221c0eeaf5SJoern Engel static void inode_sync_complete(struct inode *inode)
2231c0eeaf5SJoern Engel {
2241c0eeaf5SJoern Engel 	/*
225a66979abSDave Chinner 	 * Prevent speculative execution through
226f758eeabSChristoph Hellwig 	 * spin_unlock(&wb->list_lock);
2271c0eeaf5SJoern Engel 	 */
228a66979abSDave Chinner 
2291c0eeaf5SJoern Engel 	smp_mb();
2301c0eeaf5SJoern Engel 	wake_up_bit(&inode->i_state, __I_SYNC);
2311c0eeaf5SJoern Engel }
2321c0eeaf5SJoern Engel 
233d2caa3c5SJeff Layton static bool inode_dirtied_after(struct inode *inode, unsigned long t)
234d2caa3c5SJeff Layton {
235d2caa3c5SJeff Layton 	bool ret = time_after(inode->dirtied_when, t);
236d2caa3c5SJeff Layton #ifndef CONFIG_64BIT
237d2caa3c5SJeff Layton 	/*
238d2caa3c5SJeff Layton 	 * For inodes being constantly redirtied, dirtied_when can get stuck.
239d2caa3c5SJeff Layton 	 * It _appears_ to be in the future, but is actually in distant past.
240d2caa3c5SJeff Layton 	 * This test is necessary to prevent such wrapped-around relative times
2415b0830cbSJens Axboe 	 * from permanently stopping the whole bdi writeback.
242d2caa3c5SJeff Layton 	 */
243d2caa3c5SJeff Layton 	ret = ret && time_before_eq(inode->dirtied_when, jiffies);
244d2caa3c5SJeff Layton #endif
245d2caa3c5SJeff Layton 	return ret;
246d2caa3c5SJeff Layton }
247d2caa3c5SJeff Layton 
248c986d1e2SAndrew Morton /*
2492c136579SFengguang Wu  * Move expired dirty inodes from @delaying_queue to @dispatch_queue.
2502c136579SFengguang Wu  */
2512c136579SFengguang Wu static void move_expired_inodes(struct list_head *delaying_queue,
2522c136579SFengguang Wu 			       struct list_head *dispatch_queue,
2532c136579SFengguang Wu 				unsigned long *older_than_this)
2542c136579SFengguang Wu {
2555c03449dSShaohua Li 	LIST_HEAD(tmp);
2565c03449dSShaohua Li 	struct list_head *pos, *node;
257cf137307SJens Axboe 	struct super_block *sb = NULL;
2585c03449dSShaohua Li 	struct inode *inode;
259cf137307SJens Axboe 	int do_sb_sort = 0;
2605c03449dSShaohua Li 
2612c136579SFengguang Wu 	while (!list_empty(delaying_queue)) {
2627ccf19a8SNick Piggin 		inode = wb_inode(delaying_queue->prev);
2632c136579SFengguang Wu 		if (older_than_this &&
264d2caa3c5SJeff Layton 		    inode_dirtied_after(inode, *older_than_this))
2652c136579SFengguang Wu 			break;
266cf137307SJens Axboe 		if (sb && sb != inode->i_sb)
267cf137307SJens Axboe 			do_sb_sort = 1;
268cf137307SJens Axboe 		sb = inode->i_sb;
2697ccf19a8SNick Piggin 		list_move(&inode->i_wb_list, &tmp);
2705c03449dSShaohua Li 	}
2715c03449dSShaohua Li 
272cf137307SJens Axboe 	/* just one sb in list, splice to dispatch_queue and we're done */
273cf137307SJens Axboe 	if (!do_sb_sort) {
274cf137307SJens Axboe 		list_splice(&tmp, dispatch_queue);
275cf137307SJens Axboe 		return;
276cf137307SJens Axboe 	}
277cf137307SJens Axboe 
2785c03449dSShaohua Li 	/* Move inodes from one superblock together */
2795c03449dSShaohua Li 	while (!list_empty(&tmp)) {
2807ccf19a8SNick Piggin 		sb = wb_inode(tmp.prev)->i_sb;
2815c03449dSShaohua Li 		list_for_each_prev_safe(pos, node, &tmp) {
2827ccf19a8SNick Piggin 			inode = wb_inode(pos);
2835c03449dSShaohua Li 			if (inode->i_sb == sb)
2847ccf19a8SNick Piggin 				list_move(&inode->i_wb_list, dispatch_queue);
2852c136579SFengguang Wu 		}
2862c136579SFengguang Wu 	}
2875c03449dSShaohua Li }
2882c136579SFengguang Wu 
2892c136579SFengguang Wu /*
2902c136579SFengguang Wu  * Queue all expired dirty inodes for io, eldest first.
2914ea879b9SWu Fengguang  * Before
2924ea879b9SWu Fengguang  *         newly dirtied     b_dirty    b_io    b_more_io
2934ea879b9SWu Fengguang  *         =============>    gf         edc     BA
2944ea879b9SWu Fengguang  * After
2954ea879b9SWu Fengguang  *         newly dirtied     b_dirty    b_io    b_more_io
2964ea879b9SWu Fengguang  *         =============>    g          fBAedc
2974ea879b9SWu Fengguang  *                                           |
2984ea879b9SWu Fengguang  *                                           +--> dequeue for IO
2992c136579SFengguang Wu  */
30003ba3782SJens Axboe static void queue_io(struct bdi_writeback *wb, unsigned long *older_than_this)
3012c136579SFengguang Wu {
302f758eeabSChristoph Hellwig 	assert_spin_locked(&wb->list_lock);
3034ea879b9SWu Fengguang 	list_splice_init(&wb->b_more_io, &wb->b_io);
30403ba3782SJens Axboe 	move_expired_inodes(&wb->b_dirty, &wb->b_io, older_than_this);
30566f3b8e2SJens Axboe }
30666f3b8e2SJens Axboe 
307a9185b41SChristoph Hellwig static int write_inode(struct inode *inode, struct writeback_control *wbc)
30866f3b8e2SJens Axboe {
30903ba3782SJens Axboe 	if (inode->i_sb->s_op->write_inode && !is_bad_inode(inode))
310a9185b41SChristoph Hellwig 		return inode->i_sb->s_op->write_inode(inode, wbc);
31103ba3782SJens Axboe 	return 0;
31266f3b8e2SJens Axboe }
31308d8e974SFengguang Wu 
3142c136579SFengguang Wu /*
31501c03194SChristoph Hellwig  * Wait for writeback on an inode to complete.
31601c03194SChristoph Hellwig  */
317f758eeabSChristoph Hellwig static void inode_wait_for_writeback(struct inode *inode,
318f758eeabSChristoph Hellwig 				     struct bdi_writeback *wb)
31901c03194SChristoph Hellwig {
32001c03194SChristoph Hellwig 	DEFINE_WAIT_BIT(wq, &inode->i_state, __I_SYNC);
32101c03194SChristoph Hellwig 	wait_queue_head_t *wqh;
32201c03194SChristoph Hellwig 
32301c03194SChristoph Hellwig 	wqh = bit_waitqueue(&inode->i_state, __I_SYNC);
32458a9d3d8SRichard Kennedy 	while (inode->i_state & I_SYNC) {
325250df6edSDave Chinner 		spin_unlock(&inode->i_lock);
326f758eeabSChristoph Hellwig 		spin_unlock(&wb->list_lock);
32701c03194SChristoph Hellwig 		__wait_on_bit(wqh, &wq, inode_wait, TASK_UNINTERRUPTIBLE);
328f758eeabSChristoph Hellwig 		spin_lock(&wb->list_lock);
329250df6edSDave Chinner 		spin_lock(&inode->i_lock);
33058a9d3d8SRichard Kennedy 	}
33101c03194SChristoph Hellwig }
33201c03194SChristoph Hellwig 
33301c03194SChristoph Hellwig /*
334f758eeabSChristoph Hellwig  * Write out an inode's dirty pages.  Called under wb->list_lock and
3350f1b1fd8SDave Chinner  * inode->i_lock.  Either the caller has an active reference on the inode or
3360f1b1fd8SDave Chinner  * the inode has I_WILL_FREE set.
33701c03194SChristoph Hellwig  *
3381da177e4SLinus Torvalds  * If `wait' is set, wait on the writeout.
3391da177e4SLinus Torvalds  *
3401da177e4SLinus Torvalds  * The whole writeout design is quite complex and fragile.  We want to avoid
3411da177e4SLinus Torvalds  * starvation of particular inodes when others are being redirtied, prevent
3421da177e4SLinus Torvalds  * livelocks, etc.
3431da177e4SLinus Torvalds  */
3441da177e4SLinus Torvalds static int
345f758eeabSChristoph Hellwig writeback_single_inode(struct inode *inode, struct bdi_writeback *wb,
346f758eeabSChristoph Hellwig 		       struct writeback_control *wbc)
3471da177e4SLinus Torvalds {
3481da177e4SLinus Torvalds 	struct address_space *mapping = inode->i_mapping;
349251d6a47SWu Fengguang 	long nr_to_write = wbc->nr_to_write;
35001c03194SChristoph Hellwig 	unsigned dirty;
3511da177e4SLinus Torvalds 	int ret;
3521da177e4SLinus Torvalds 
353f758eeabSChristoph Hellwig 	assert_spin_locked(&wb->list_lock);
3540f1b1fd8SDave Chinner 	assert_spin_locked(&inode->i_lock);
3550f1b1fd8SDave Chinner 
35601c03194SChristoph Hellwig 	if (!atomic_read(&inode->i_count))
35701c03194SChristoph Hellwig 		WARN_ON(!(inode->i_state & (I_WILL_FREE|I_FREEING)));
35801c03194SChristoph Hellwig 	else
35901c03194SChristoph Hellwig 		WARN_ON(inode->i_state & I_WILL_FREE);
36001c03194SChristoph Hellwig 
36101c03194SChristoph Hellwig 	if (inode->i_state & I_SYNC) {
36201c03194SChristoph Hellwig 		/*
36301c03194SChristoph Hellwig 		 * If this inode is locked for writeback and we are not doing
36466f3b8e2SJens Axboe 		 * writeback-for-data-integrity, move it to b_more_io so that
36501c03194SChristoph Hellwig 		 * writeback can proceed with the other inodes on s_io.
36601c03194SChristoph Hellwig 		 *
36701c03194SChristoph Hellwig 		 * We'll have another go at writing back this inode when we
36866f3b8e2SJens Axboe 		 * completed a full scan of b_io.
36901c03194SChristoph Hellwig 		 */
370a9185b41SChristoph Hellwig 		if (wbc->sync_mode != WB_SYNC_ALL) {
371f758eeabSChristoph Hellwig 			requeue_io(inode, wb);
372251d6a47SWu Fengguang 			trace_writeback_single_inode_requeue(inode, wbc,
373251d6a47SWu Fengguang 							     nr_to_write);
37401c03194SChristoph Hellwig 			return 0;
37501c03194SChristoph Hellwig 		}
37601c03194SChristoph Hellwig 
37701c03194SChristoph Hellwig 		/*
37801c03194SChristoph Hellwig 		 * It's a data-integrity sync.  We must wait.
37901c03194SChristoph Hellwig 		 */
380f758eeabSChristoph Hellwig 		inode_wait_for_writeback(inode, wb);
38101c03194SChristoph Hellwig 	}
38201c03194SChristoph Hellwig 
3831c0eeaf5SJoern Engel 	BUG_ON(inode->i_state & I_SYNC);
3841da177e4SLinus Torvalds 
3855547e8aaSDmitry Monakhov 	/* Set I_SYNC, reset I_DIRTY_PAGES */
3861c0eeaf5SJoern Engel 	inode->i_state |= I_SYNC;
3875547e8aaSDmitry Monakhov 	inode->i_state &= ~I_DIRTY_PAGES;
388250df6edSDave Chinner 	spin_unlock(&inode->i_lock);
389f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
3901da177e4SLinus Torvalds 
3911da177e4SLinus Torvalds 	ret = do_writepages(mapping, wbc);
3921da177e4SLinus Torvalds 
39326821ed4SChristoph Hellwig 	/*
39426821ed4SChristoph Hellwig 	 * Make sure to wait on the data before writing out the metadata.
39526821ed4SChristoph Hellwig 	 * This is important for filesystems that modify metadata on data
39626821ed4SChristoph Hellwig 	 * I/O completion.
39726821ed4SChristoph Hellwig 	 */
398a9185b41SChristoph Hellwig 	if (wbc->sync_mode == WB_SYNC_ALL) {
39926821ed4SChristoph Hellwig 		int err = filemap_fdatawait(mapping);
4001da177e4SLinus Torvalds 		if (ret == 0)
4011da177e4SLinus Torvalds 			ret = err;
4021da177e4SLinus Torvalds 	}
4031da177e4SLinus Torvalds 
4045547e8aaSDmitry Monakhov 	/*
4055547e8aaSDmitry Monakhov 	 * Some filesystems may redirty the inode during the writeback
4065547e8aaSDmitry Monakhov 	 * due to delalloc, clear dirty metadata flags right before
4075547e8aaSDmitry Monakhov 	 * write_inode()
4085547e8aaSDmitry Monakhov 	 */
409250df6edSDave Chinner 	spin_lock(&inode->i_lock);
4105547e8aaSDmitry Monakhov 	dirty = inode->i_state & I_DIRTY;
4115547e8aaSDmitry Monakhov 	inode->i_state &= ~(I_DIRTY_SYNC | I_DIRTY_DATASYNC);
412250df6edSDave Chinner 	spin_unlock(&inode->i_lock);
41326821ed4SChristoph Hellwig 	/* Don't write the inode if only I_DIRTY_PAGES was set */
41426821ed4SChristoph Hellwig 	if (dirty & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
415a9185b41SChristoph Hellwig 		int err = write_inode(inode, wbc);
4161da177e4SLinus Torvalds 		if (ret == 0)
4171da177e4SLinus Torvalds 			ret = err;
4181da177e4SLinus Torvalds 	}
4191da177e4SLinus Torvalds 
420f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
421250df6edSDave Chinner 	spin_lock(&inode->i_lock);
4221c0eeaf5SJoern Engel 	inode->i_state &= ~I_SYNC;
423a4ffdde6SAl Viro 	if (!(inode->i_state & I_FREEING)) {
42494c3dcbbSWu Fengguang 		/*
42594c3dcbbSWu Fengguang 		 * Sync livelock prevention. Each inode is tagged and synced in
42694c3dcbbSWu Fengguang 		 * one shot. If still dirty, it will be redirty_tail()'ed below.
42794c3dcbbSWu Fengguang 		 * Update the dirty time to prevent enqueue and sync it again.
42894c3dcbbSWu Fengguang 		 */
42994c3dcbbSWu Fengguang 		if ((inode->i_state & I_DIRTY) &&
43094c3dcbbSWu Fengguang 		    (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages))
43194c3dcbbSWu Fengguang 			inode->dirtied_when = jiffies;
43294c3dcbbSWu Fengguang 
43323539afcSWu Fengguang 		if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
4341da177e4SLinus Torvalds 			/*
4351da177e4SLinus Torvalds 			 * We didn't write back all the pages.  nfs_writepages()
436a50aeb40SWu Fengguang 			 * sometimes bales out without doing anything.
4371da177e4SLinus Torvalds 			 */
4381da177e4SLinus Torvalds 			inode->i_state |= I_DIRTY_PAGES;
4398bc3be27SFengguang Wu 			if (wbc->nr_to_write <= 0) {
4408bc3be27SFengguang Wu 				/*
4418bc3be27SFengguang Wu 				 * slice used up: queue for next turn
4428bc3be27SFengguang Wu 				 */
443f758eeabSChristoph Hellwig 				requeue_io(inode, wb);
4441da177e4SLinus Torvalds 			} else {
4451da177e4SLinus Torvalds 				/*
446a50aeb40SWu Fengguang 				 * Writeback blocked by something other than
447a50aeb40SWu Fengguang 				 * congestion. Delay the inode for some time to
448a50aeb40SWu Fengguang 				 * avoid spinning on the CPU (100% iowait)
449a50aeb40SWu Fengguang 				 * retrying writeback of the dirty page/inode
450a50aeb40SWu Fengguang 				 * that cannot be performed immediately.
4518bc3be27SFengguang Wu 				 */
452f758eeabSChristoph Hellwig 				redirty_tail(inode, wb);
4538bc3be27SFengguang Wu 			}
45423539afcSWu Fengguang 		} else if (inode->i_state & I_DIRTY) {
45523539afcSWu Fengguang 			/*
45623539afcSWu Fengguang 			 * Filesystems can dirty the inode during writeback
45723539afcSWu Fengguang 			 * operations, such as delayed allocation during
45823539afcSWu Fengguang 			 * submission or metadata updates after data IO
45923539afcSWu Fengguang 			 * completion.
46023539afcSWu Fengguang 			 */
461f758eeabSChristoph Hellwig 			redirty_tail(inode, wb);
4621da177e4SLinus Torvalds 		} else {
4631da177e4SLinus Torvalds 			/*
4649e38d86fSNick Piggin 			 * The inode is clean.  At this point we either have
4659e38d86fSNick Piggin 			 * a reference to the inode or it's on it's way out.
4669e38d86fSNick Piggin 			 * No need to add it back to the LRU.
4671da177e4SLinus Torvalds 			 */
4687ccf19a8SNick Piggin 			list_del_init(&inode->i_wb_list);
469cb9bd115SWu Fengguang 			wbc->inodes_written++;
4701da177e4SLinus Torvalds 		}
4711da177e4SLinus Torvalds 	}
4721c0eeaf5SJoern Engel 	inode_sync_complete(inode);
473251d6a47SWu Fengguang 	trace_writeback_single_inode(inode, wbc, nr_to_write);
4741da177e4SLinus Torvalds 	return ret;
4751da177e4SLinus Torvalds }
4761da177e4SLinus Torvalds 
47703ba3782SJens Axboe /*
478d19de7edSChristoph Hellwig  * For background writeback the caller does not have the sb pinned
47903ba3782SJens Axboe  * before calling writeback. So make sure that we do pin it, so it doesn't
48003ba3782SJens Axboe  * go away while we are writing inodes from it.
48103ba3782SJens Axboe  */
482d19de7edSChristoph Hellwig static bool pin_sb_for_writeback(struct super_block *sb)
4831da177e4SLinus Torvalds {
48403ba3782SJens Axboe 	spin_lock(&sb_lock);
48529cb4859SChristoph Hellwig 	if (list_empty(&sb->s_instances)) {
48603ba3782SJens Axboe 		spin_unlock(&sb_lock);
48729cb4859SChristoph Hellwig 		return false;
48803ba3782SJens Axboe 	}
48929cb4859SChristoph Hellwig 
49029cb4859SChristoph Hellwig 	sb->s_count++;
49129cb4859SChristoph Hellwig 	spin_unlock(&sb_lock);
49229cb4859SChristoph Hellwig 
49329cb4859SChristoph Hellwig 	if (down_read_trylock(&sb->s_umount)) {
49429cb4859SChristoph Hellwig 		if (sb->s_root)
49529cb4859SChristoph Hellwig 			return true;
49603ba3782SJens Axboe 		up_read(&sb->s_umount);
49703ba3782SJens Axboe 	}
49829cb4859SChristoph Hellwig 
49929cb4859SChristoph Hellwig 	put_super(sb);
500d19de7edSChristoph Hellwig 	return false;
50103ba3782SJens Axboe }
50203ba3782SJens Axboe 
503f11c9c5cSEdward Shishkin /*
504f11c9c5cSEdward Shishkin  * Write a portion of b_io inodes which belong to @sb.
505edadfb10SChristoph Hellwig  *
506edadfb10SChristoph Hellwig  * If @only_this_sb is true, then find and write all such
507f11c9c5cSEdward Shishkin  * inodes. Otherwise write only ones which go sequentially
508f11c9c5cSEdward Shishkin  * in reverse order.
509edadfb10SChristoph Hellwig  *
510f11c9c5cSEdward Shishkin  * Return 1, if the caller writeback routine should be
511f11c9c5cSEdward Shishkin  * interrupted. Otherwise return 0.
512f11c9c5cSEdward Shishkin  */
513edadfb10SChristoph Hellwig static int writeback_sb_inodes(struct super_block *sb, struct bdi_writeback *wb,
514edadfb10SChristoph Hellwig 		struct writeback_control *wbc, bool only_this_sb)
51503ba3782SJens Axboe {
51603ba3782SJens Axboe 	while (!list_empty(&wb->b_io)) {
517f11c9c5cSEdward Shishkin 		long pages_skipped;
5187ccf19a8SNick Piggin 		struct inode *inode = wb_inode(wb->b_io.prev);
519edadfb10SChristoph Hellwig 
520edadfb10SChristoph Hellwig 		if (inode->i_sb != sb) {
521edadfb10SChristoph Hellwig 			if (only_this_sb) {
522edadfb10SChristoph Hellwig 				/*
523edadfb10SChristoph Hellwig 				 * We only want to write back data for this
524edadfb10SChristoph Hellwig 				 * superblock, move all inodes not belonging
525edadfb10SChristoph Hellwig 				 * to it back onto the dirty list.
526edadfb10SChristoph Hellwig 				 */
527f758eeabSChristoph Hellwig 				redirty_tail(inode, wb);
52866f3b8e2SJens Axboe 				continue;
52966f3b8e2SJens Axboe 			}
530edadfb10SChristoph Hellwig 
531edadfb10SChristoph Hellwig 			/*
532edadfb10SChristoph Hellwig 			 * The inode belongs to a different superblock.
533edadfb10SChristoph Hellwig 			 * Bounce back to the caller to unpin this and
534edadfb10SChristoph Hellwig 			 * pin the next superblock.
535edadfb10SChristoph Hellwig 			 */
536f11c9c5cSEdward Shishkin 			return 0;
537edadfb10SChristoph Hellwig 		}
538edadfb10SChristoph Hellwig 
5399843b76aSChristoph Hellwig 		/*
5409843b76aSChristoph Hellwig 		 * Don't bother with new inodes or inodes beeing freed, first
5419843b76aSChristoph Hellwig 		 * kind does not need peridic writeout yet, and for the latter
5429843b76aSChristoph Hellwig 		 * kind writeout is handled by the freer.
5439843b76aSChristoph Hellwig 		 */
544250df6edSDave Chinner 		spin_lock(&inode->i_lock);
5459843b76aSChristoph Hellwig 		if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
546250df6edSDave Chinner 			spin_unlock(&inode->i_lock);
547f758eeabSChristoph Hellwig 			requeue_io(inode, wb);
5487ef0d737SNick Piggin 			continue;
5497ef0d737SNick Piggin 		}
5509843b76aSChristoph Hellwig 
5511da177e4SLinus Torvalds 		__iget(inode);
552250df6edSDave Chinner 
5531da177e4SLinus Torvalds 		pages_skipped = wbc->pages_skipped;
554f758eeabSChristoph Hellwig 		writeback_single_inode(inode, wb, wbc);
5551da177e4SLinus Torvalds 		if (wbc->pages_skipped != pages_skipped) {
5561da177e4SLinus Torvalds 			/*
5571da177e4SLinus Torvalds 			 * writeback is not making progress due to locked
5581da177e4SLinus Torvalds 			 * buffers.  Skip this inode for now.
5591da177e4SLinus Torvalds 			 */
560f758eeabSChristoph Hellwig 			redirty_tail(inode, wb);
5611da177e4SLinus Torvalds 		}
5620f1b1fd8SDave Chinner 		spin_unlock(&inode->i_lock);
563f758eeabSChristoph Hellwig 		spin_unlock(&wb->list_lock);
5641da177e4SLinus Torvalds 		iput(inode);
5654ffc8444SOGAWA Hirofumi 		cond_resched();
566f758eeabSChristoph Hellwig 		spin_lock(&wb->list_lock);
567b7a2441fSWu Fengguang 		if (wbc->nr_to_write <= 0)
568f11c9c5cSEdward Shishkin 			return 1;
5691da177e4SLinus Torvalds 	}
570f11c9c5cSEdward Shishkin 	/* b_io is empty */
571f11c9c5cSEdward Shishkin 	return 1;
572f11c9c5cSEdward Shishkin }
57338f21977SNick Piggin 
574e8dfc305SWu Fengguang static void __writeback_inodes_wb(struct bdi_writeback *wb,
575f11c9c5cSEdward Shishkin 				  struct writeback_control *wbc)
576f11c9c5cSEdward Shishkin {
577f11c9c5cSEdward Shishkin 	int ret = 0;
5789ecc2738SJens Axboe 
579f11c9c5cSEdward Shishkin 	while (!list_empty(&wb->b_io)) {
5807ccf19a8SNick Piggin 		struct inode *inode = wb_inode(wb->b_io.prev);
581f11c9c5cSEdward Shishkin 		struct super_block *sb = inode->i_sb;
582f11c9c5cSEdward Shishkin 
583334132aeSChristoph Hellwig 		if (!pin_sb_for_writeback(sb)) {
584f758eeabSChristoph Hellwig 			requeue_io(inode, wb);
585d19de7edSChristoph Hellwig 			continue;
586334132aeSChristoph Hellwig 		}
587edadfb10SChristoph Hellwig 		ret = writeback_sb_inodes(sb, wb, wbc, false);
588d19de7edSChristoph Hellwig 		drop_super(sb);
589f11c9c5cSEdward Shishkin 
590f11c9c5cSEdward Shishkin 		if (ret)
591f11c9c5cSEdward Shishkin 			break;
592f11c9c5cSEdward Shishkin 	}
59366f3b8e2SJens Axboe 	/* Leave any unwritten inodes on b_io */
59466f3b8e2SJens Axboe }
59566f3b8e2SJens Axboe 
596e8dfc305SWu Fengguang void writeback_inodes_wb(struct bdi_writeback *wb,
597e8dfc305SWu Fengguang 		struct writeback_control *wbc)
598edadfb10SChristoph Hellwig {
599f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
600424b351fSWu Fengguang 	if (list_empty(&wb->b_io))
601edadfb10SChristoph Hellwig 		queue_io(wb, wbc->older_than_this);
602e8dfc305SWu Fengguang 	__writeback_inodes_wb(wb, wbc);
603f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
604edadfb10SChristoph Hellwig }
605edadfb10SChristoph Hellwig 
60603ba3782SJens Axboe /*
60703ba3782SJens Axboe  * The maximum number of pages to writeout in a single bdi flush/kupdate
60803ba3782SJens Axboe  * operation.  We do this so we don't hold I_SYNC against an inode for
60903ba3782SJens Axboe  * enormous amounts of time, which would block a userspace task which has
61003ba3782SJens Axboe  * been forced to throttle against that inode.  Also, the code reevaluates
61103ba3782SJens Axboe  * the dirty each time it has written this many pages.
61203ba3782SJens Axboe  */
61303ba3782SJens Axboe #define MAX_WRITEBACK_PAGES     1024
61403ba3782SJens Axboe 
61503ba3782SJens Axboe static inline bool over_bground_thresh(void)
61603ba3782SJens Axboe {
61703ba3782SJens Axboe 	unsigned long background_thresh, dirty_thresh;
61803ba3782SJens Axboe 
61916c4042fSWu Fengguang 	global_dirty_limits(&background_thresh, &dirty_thresh);
62003ba3782SJens Axboe 
62103ba3782SJens Axboe 	return (global_page_state(NR_FILE_DIRTY) +
6224cbec4c8SWu Fengguang 		global_page_state(NR_UNSTABLE_NFS) > background_thresh);
62303ba3782SJens Axboe }
62403ba3782SJens Axboe 
62503ba3782SJens Axboe /*
62603ba3782SJens Axboe  * Explicit flushing or periodic writeback of "old" data.
62703ba3782SJens Axboe  *
62803ba3782SJens Axboe  * Define "old": the first time one of an inode's pages is dirtied, we mark the
62903ba3782SJens Axboe  * dirtying-time in the inode's address_space.  So this periodic writeback code
63003ba3782SJens Axboe  * just walks the superblock inode list, writing back any inodes which are
63103ba3782SJens Axboe  * older than a specific point in time.
63203ba3782SJens Axboe  *
63303ba3782SJens Axboe  * Try to run once per dirty_writeback_interval.  But if a writeback event
63403ba3782SJens Axboe  * takes longer than a dirty_writeback_interval interval, then leave a
63503ba3782SJens Axboe  * one-second gap.
63603ba3782SJens Axboe  *
63703ba3782SJens Axboe  * older_than_this takes precedence over nr_to_write.  So we'll only write back
63803ba3782SJens Axboe  * all dirty pages if they are all attached to "old" mappings.
63903ba3782SJens Axboe  */
640c4a77a6cSJens Axboe static long wb_writeback(struct bdi_writeback *wb,
64183ba7b07SChristoph Hellwig 			 struct wb_writeback_work *work)
64203ba3782SJens Axboe {
64303ba3782SJens Axboe 	struct writeback_control wbc = {
64483ba7b07SChristoph Hellwig 		.sync_mode		= work->sync_mode,
6456e6938b6SWu Fengguang 		.tagged_writepages	= work->tagged_writepages,
64603ba3782SJens Axboe 		.older_than_this	= NULL,
64783ba7b07SChristoph Hellwig 		.for_kupdate		= work->for_kupdate,
64883ba7b07SChristoph Hellwig 		.for_background		= work->for_background,
64983ba7b07SChristoph Hellwig 		.range_cyclic		= work->range_cyclic,
65003ba3782SJens Axboe 	};
65103ba3782SJens Axboe 	unsigned long oldest_jif;
65203ba3782SJens Axboe 	long wrote = 0;
6536e6938b6SWu Fengguang 	long write_chunk = MAX_WRITEBACK_PAGES;
654a5989bdcSJan Kara 	struct inode *inode;
65503ba3782SJens Axboe 
656c4a77a6cSJens Axboe 	if (!wbc.range_cyclic) {
657c4a77a6cSJens Axboe 		wbc.range_start = 0;
658c4a77a6cSJens Axboe 		wbc.range_end = LLONG_MAX;
659c4a77a6cSJens Axboe 	}
66003ba3782SJens Axboe 
661b9543dacSJan Kara 	/*
662b9543dacSJan Kara 	 * WB_SYNC_ALL mode does livelock avoidance by syncing dirty
663b9543dacSJan Kara 	 * inodes/pages in one big loop. Setting wbc.nr_to_write=LONG_MAX
664b9543dacSJan Kara 	 * here avoids calling into writeback_inodes_wb() more than once.
665b9543dacSJan Kara 	 *
666b9543dacSJan Kara 	 * The intended call sequence for WB_SYNC_ALL writeback is:
667b9543dacSJan Kara 	 *
668b9543dacSJan Kara 	 *      wb_writeback()
669e8dfc305SWu Fengguang 	 *          writeback_sb_inodes()       <== called only once
670b9543dacSJan Kara 	 *              write_cache_pages()     <== called once for each inode
671b9543dacSJan Kara 	 *                   (quickly) tag currently dirty pages
672b9543dacSJan Kara 	 *                   (maybe slowly) sync all tagged pages
673b9543dacSJan Kara 	 */
6746e6938b6SWu Fengguang 	if (wbc.sync_mode == WB_SYNC_ALL || wbc.tagged_writepages)
675b9543dacSJan Kara 		write_chunk = LONG_MAX;
676b9543dacSJan Kara 
677e185dda8SWu Fengguang 	oldest_jif = jiffies;
678e185dda8SWu Fengguang 	wbc.older_than_this = &oldest_jif;
679e185dda8SWu Fengguang 
680e8dfc305SWu Fengguang 	spin_lock(&wb->list_lock);
68103ba3782SJens Axboe 	for (;;) {
68203ba3782SJens Axboe 		/*
683d3ddec76SWu Fengguang 		 * Stop writeback when nr_pages has been consumed
68403ba3782SJens Axboe 		 */
68583ba7b07SChristoph Hellwig 		if (work->nr_pages <= 0)
68603ba3782SJens Axboe 			break;
68703ba3782SJens Axboe 
68803ba3782SJens Axboe 		/*
689aa373cf5SJan Kara 		 * Background writeout and kupdate-style writeback may
690aa373cf5SJan Kara 		 * run forever. Stop them if there is other work to do
691aa373cf5SJan Kara 		 * so that e.g. sync can proceed. They'll be restarted
692aa373cf5SJan Kara 		 * after the other works are all done.
693aa373cf5SJan Kara 		 */
694aa373cf5SJan Kara 		if ((work->for_background || work->for_kupdate) &&
695aa373cf5SJan Kara 		    !list_empty(&wb->bdi->work_list))
696aa373cf5SJan Kara 			break;
697aa373cf5SJan Kara 
698aa373cf5SJan Kara 		/*
699d3ddec76SWu Fengguang 		 * For background writeout, stop when we are below the
700d3ddec76SWu Fengguang 		 * background dirty threshold
70103ba3782SJens Axboe 		 */
70283ba7b07SChristoph Hellwig 		if (work->for_background && !over_bground_thresh())
70303ba3782SJens Axboe 			break;
70403ba3782SJens Axboe 
705ba9aa839SWu Fengguang 		if (work->for_kupdate) {
706ba9aa839SWu Fengguang 			oldest_jif = jiffies -
707ba9aa839SWu Fengguang 				msecs_to_jiffies(dirty_expire_interval * 10);
708ba9aa839SWu Fengguang 			wbc.older_than_this = &oldest_jif;
709ba9aa839SWu Fengguang 		}
710ba9aa839SWu Fengguang 
711b9543dacSJan Kara 		wbc.nr_to_write = write_chunk;
71203ba3782SJens Axboe 		wbc.pages_skipped = 0;
713cb9bd115SWu Fengguang 		wbc.inodes_written = 0;
714028c2dd1SDave Chinner 
715028c2dd1SDave Chinner 		trace_wbc_writeback_start(&wbc, wb->bdi);
716e8dfc305SWu Fengguang 		if (list_empty(&wb->b_io))
717e8dfc305SWu Fengguang 			queue_io(wb, wbc.older_than_this);
71883ba7b07SChristoph Hellwig 		if (work->sb)
719e8dfc305SWu Fengguang 			writeback_sb_inodes(work->sb, wb, &wbc, true);
720edadfb10SChristoph Hellwig 		else
721e8dfc305SWu Fengguang 			__writeback_inodes_wb(wb, &wbc);
722028c2dd1SDave Chinner 		trace_wbc_writeback_written(&wbc, wb->bdi);
723028c2dd1SDave Chinner 
724b9543dacSJan Kara 		work->nr_pages -= write_chunk - wbc.nr_to_write;
725b9543dacSJan Kara 		wrote += write_chunk - wbc.nr_to_write;
72603ba3782SJens Axboe 
72703ba3782SJens Axboe 		/*
728e6fb6da2SWu Fengguang 		 * Did we write something? Try for more
729e6fb6da2SWu Fengguang 		 *
730e6fb6da2SWu Fengguang 		 * Dirty inodes are moved to b_io for writeback in batches.
731e6fb6da2SWu Fengguang 		 * The completion of the current batch does not necessarily
732e6fb6da2SWu Fengguang 		 * mean the overall work is done. So we keep looping as long
733e6fb6da2SWu Fengguang 		 * as made some progress on cleaning pages or inodes.
73403ba3782SJens Axboe 		 */
735e6fb6da2SWu Fengguang 		if (wbc.nr_to_write < write_chunk)
73671fd05a8SJens Axboe 			continue;
737cb9bd115SWu Fengguang 		if (wbc.inodes_written)
738cb9bd115SWu Fengguang 			continue;
73971fd05a8SJens Axboe 		/*
740e6fb6da2SWu Fengguang 		 * No more inodes for IO, bail
74171fd05a8SJens Axboe 		 */
742b7a2441fSWu Fengguang 		if (list_empty(&wb->b_more_io))
74371fd05a8SJens Axboe 			break;
74471fd05a8SJens Axboe 		/*
745a5989bdcSJan Kara 		 * Nothing written. Wait for some inode to
746a5989bdcSJan Kara 		 * become available for writeback. Otherwise
747a5989bdcSJan Kara 		 * we'll just busyloop.
748a5989bdcSJan Kara 		 */
749a5989bdcSJan Kara 		if (!list_empty(&wb->b_more_io))  {
7507ccf19a8SNick Piggin 			inode = wb_inode(wb->b_more_io.prev);
751028c2dd1SDave Chinner 			trace_wbc_writeback_wait(&wbc, wb->bdi);
752250df6edSDave Chinner 			spin_lock(&inode->i_lock);
753f758eeabSChristoph Hellwig 			inode_wait_for_writeback(inode, wb);
754250df6edSDave Chinner 			spin_unlock(&inode->i_lock);
755a5989bdcSJan Kara 		}
75603ba3782SJens Axboe 	}
757e8dfc305SWu Fengguang 	spin_unlock(&wb->list_lock);
75803ba3782SJens Axboe 
75903ba3782SJens Axboe 	return wrote;
76003ba3782SJens Axboe }
76103ba3782SJens Axboe 
76203ba3782SJens Axboe /*
76383ba7b07SChristoph Hellwig  * Return the next wb_writeback_work struct that hasn't been processed yet.
76403ba3782SJens Axboe  */
76583ba7b07SChristoph Hellwig static struct wb_writeback_work *
76608852b6dSMinchan Kim get_next_work_item(struct backing_dev_info *bdi)
76703ba3782SJens Axboe {
76883ba7b07SChristoph Hellwig 	struct wb_writeback_work *work = NULL;
76903ba3782SJens Axboe 
7706467716aSArtem Bityutskiy 	spin_lock_bh(&bdi->wb_lock);
77183ba7b07SChristoph Hellwig 	if (!list_empty(&bdi->work_list)) {
77283ba7b07SChristoph Hellwig 		work = list_entry(bdi->work_list.next,
77383ba7b07SChristoph Hellwig 				  struct wb_writeback_work, list);
77483ba7b07SChristoph Hellwig 		list_del_init(&work->list);
77503ba3782SJens Axboe 	}
7766467716aSArtem Bityutskiy 	spin_unlock_bh(&bdi->wb_lock);
77783ba7b07SChristoph Hellwig 	return work;
77803ba3782SJens Axboe }
77903ba3782SJens Axboe 
780cdf01dd5SLinus Torvalds /*
781cdf01dd5SLinus Torvalds  * Add in the number of potentially dirty inodes, because each inode
782cdf01dd5SLinus Torvalds  * write can dirty pagecache in the underlying blockdev.
783cdf01dd5SLinus Torvalds  */
784cdf01dd5SLinus Torvalds static unsigned long get_nr_dirty_pages(void)
785cdf01dd5SLinus Torvalds {
786cdf01dd5SLinus Torvalds 	return global_page_state(NR_FILE_DIRTY) +
787cdf01dd5SLinus Torvalds 		global_page_state(NR_UNSTABLE_NFS) +
788cdf01dd5SLinus Torvalds 		get_nr_dirty_inodes();
789cdf01dd5SLinus Torvalds }
790cdf01dd5SLinus Torvalds 
7916585027aSJan Kara static long wb_check_background_flush(struct bdi_writeback *wb)
7926585027aSJan Kara {
7936585027aSJan Kara 	if (over_bground_thresh()) {
7946585027aSJan Kara 
7956585027aSJan Kara 		struct wb_writeback_work work = {
7966585027aSJan Kara 			.nr_pages	= LONG_MAX,
7976585027aSJan Kara 			.sync_mode	= WB_SYNC_NONE,
7986585027aSJan Kara 			.for_background	= 1,
7996585027aSJan Kara 			.range_cyclic	= 1,
8006585027aSJan Kara 		};
8016585027aSJan Kara 
8026585027aSJan Kara 		return wb_writeback(wb, &work);
8036585027aSJan Kara 	}
8046585027aSJan Kara 
8056585027aSJan Kara 	return 0;
8066585027aSJan Kara }
8076585027aSJan Kara 
80803ba3782SJens Axboe static long wb_check_old_data_flush(struct bdi_writeback *wb)
80903ba3782SJens Axboe {
81003ba3782SJens Axboe 	unsigned long expired;
81103ba3782SJens Axboe 	long nr_pages;
81203ba3782SJens Axboe 
81369b62d01SJens Axboe 	/*
81469b62d01SJens Axboe 	 * When set to zero, disable periodic writeback
81569b62d01SJens Axboe 	 */
81669b62d01SJens Axboe 	if (!dirty_writeback_interval)
81769b62d01SJens Axboe 		return 0;
81869b62d01SJens Axboe 
81903ba3782SJens Axboe 	expired = wb->last_old_flush +
82003ba3782SJens Axboe 			msecs_to_jiffies(dirty_writeback_interval * 10);
82103ba3782SJens Axboe 	if (time_before(jiffies, expired))
82203ba3782SJens Axboe 		return 0;
82303ba3782SJens Axboe 
82403ba3782SJens Axboe 	wb->last_old_flush = jiffies;
825cdf01dd5SLinus Torvalds 	nr_pages = get_nr_dirty_pages();
82603ba3782SJens Axboe 
827c4a77a6cSJens Axboe 	if (nr_pages) {
82883ba7b07SChristoph Hellwig 		struct wb_writeback_work work = {
829c4a77a6cSJens Axboe 			.nr_pages	= nr_pages,
830c4a77a6cSJens Axboe 			.sync_mode	= WB_SYNC_NONE,
831c4a77a6cSJens Axboe 			.for_kupdate	= 1,
832c4a77a6cSJens Axboe 			.range_cyclic	= 1,
833c4a77a6cSJens Axboe 		};
834c4a77a6cSJens Axboe 
83583ba7b07SChristoph Hellwig 		return wb_writeback(wb, &work);
836c4a77a6cSJens Axboe 	}
83703ba3782SJens Axboe 
83803ba3782SJens Axboe 	return 0;
83903ba3782SJens Axboe }
84003ba3782SJens Axboe 
84103ba3782SJens Axboe /*
84203ba3782SJens Axboe  * Retrieve work items and do the writeback they describe
84303ba3782SJens Axboe  */
84403ba3782SJens Axboe long wb_do_writeback(struct bdi_writeback *wb, int force_wait)
84503ba3782SJens Axboe {
84603ba3782SJens Axboe 	struct backing_dev_info *bdi = wb->bdi;
84783ba7b07SChristoph Hellwig 	struct wb_writeback_work *work;
848c4a77a6cSJens Axboe 	long wrote = 0;
84903ba3782SJens Axboe 
85081d73a32SJan Kara 	set_bit(BDI_writeback_running, &wb->bdi->state);
85108852b6dSMinchan Kim 	while ((work = get_next_work_item(bdi)) != NULL) {
85203ba3782SJens Axboe 		/*
85303ba3782SJens Axboe 		 * Override sync mode, in case we must wait for completion
85483ba7b07SChristoph Hellwig 		 * because this thread is exiting now.
85503ba3782SJens Axboe 		 */
85603ba3782SJens Axboe 		if (force_wait)
85783ba7b07SChristoph Hellwig 			work->sync_mode = WB_SYNC_ALL;
85883ba7b07SChristoph Hellwig 
859455b2864SDave Chinner 		trace_writeback_exec(bdi, work);
860455b2864SDave Chinner 
86183ba7b07SChristoph Hellwig 		wrote += wb_writeback(wb, work);
86203ba3782SJens Axboe 
86303ba3782SJens Axboe 		/*
86483ba7b07SChristoph Hellwig 		 * Notify the caller of completion if this is a synchronous
86583ba7b07SChristoph Hellwig 		 * work item, otherwise just free it.
86603ba3782SJens Axboe 		 */
86783ba7b07SChristoph Hellwig 		if (work->done)
86883ba7b07SChristoph Hellwig 			complete(work->done);
86983ba7b07SChristoph Hellwig 		else
87083ba7b07SChristoph Hellwig 			kfree(work);
87103ba3782SJens Axboe 	}
87203ba3782SJens Axboe 
87303ba3782SJens Axboe 	/*
87403ba3782SJens Axboe 	 * Check for periodic writeback, kupdated() style
87503ba3782SJens Axboe 	 */
87603ba3782SJens Axboe 	wrote += wb_check_old_data_flush(wb);
8776585027aSJan Kara 	wrote += wb_check_background_flush(wb);
87881d73a32SJan Kara 	clear_bit(BDI_writeback_running, &wb->bdi->state);
87903ba3782SJens Axboe 
88003ba3782SJens Axboe 	return wrote;
88103ba3782SJens Axboe }
88203ba3782SJens Axboe 
88303ba3782SJens Axboe /*
88403ba3782SJens Axboe  * Handle writeback of dirty data for the device backed by this bdi. Also
88503ba3782SJens Axboe  * wakes up periodically and does kupdated style flushing.
88603ba3782SJens Axboe  */
88708243900SChristoph Hellwig int bdi_writeback_thread(void *data)
88803ba3782SJens Axboe {
88908243900SChristoph Hellwig 	struct bdi_writeback *wb = data;
89008243900SChristoph Hellwig 	struct backing_dev_info *bdi = wb->bdi;
89103ba3782SJens Axboe 	long pages_written;
89203ba3782SJens Axboe 
893766f9164SPeter Zijlstra 	current->flags |= PF_SWAPWRITE;
89408243900SChristoph Hellwig 	set_freezable();
895ecd58403SArtem Bityutskiy 	wb->last_active = jiffies;
89603ba3782SJens Axboe 
89703ba3782SJens Axboe 	/*
89808243900SChristoph Hellwig 	 * Our parent may run at a different priority, just set us to normal
89903ba3782SJens Axboe 	 */
90008243900SChristoph Hellwig 	set_user_nice(current, 0);
90108243900SChristoph Hellwig 
902455b2864SDave Chinner 	trace_writeback_thread_start(bdi);
903455b2864SDave Chinner 
90403ba3782SJens Axboe 	while (!kthread_should_stop()) {
9056467716aSArtem Bityutskiy 		/*
9066467716aSArtem Bityutskiy 		 * Remove own delayed wake-up timer, since we are already awake
9076467716aSArtem Bityutskiy 		 * and we'll take care of the preriodic write-back.
9086467716aSArtem Bityutskiy 		 */
9096467716aSArtem Bityutskiy 		del_timer(&wb->wakeup_timer);
9106467716aSArtem Bityutskiy 
91103ba3782SJens Axboe 		pages_written = wb_do_writeback(wb, 0);
91203ba3782SJens Axboe 
913455b2864SDave Chinner 		trace_writeback_pages_written(pages_written);
914455b2864SDave Chinner 
91503ba3782SJens Axboe 		if (pages_written)
916ecd58403SArtem Bityutskiy 			wb->last_active = jiffies;
91703ba3782SJens Axboe 
918297252c8SArtem Bityutskiy 		set_current_state(TASK_INTERRUPTIBLE);
919b76b4014SJ. Bruce Fields 		if (!list_empty(&bdi->work_list) || kthread_should_stop()) {
920297252c8SArtem Bityutskiy 			__set_current_state(TASK_RUNNING);
921297252c8SArtem Bityutskiy 			continue;
92203ba3782SJens Axboe 		}
92303ba3782SJens Axboe 
924253c34e9SArtem Bityutskiy 		if (wb_has_dirty_io(wb) && dirty_writeback_interval)
925fff5b85aSArtem Bityutskiy 			schedule_timeout(msecs_to_jiffies(dirty_writeback_interval * 10));
926253c34e9SArtem Bityutskiy 		else {
927253c34e9SArtem Bityutskiy 			/*
928253c34e9SArtem Bityutskiy 			 * We have nothing to do, so can go sleep without any
929253c34e9SArtem Bityutskiy 			 * timeout and save power. When a work is queued or
930253c34e9SArtem Bityutskiy 			 * something is made dirty - we will be woken up.
931253c34e9SArtem Bityutskiy 			 */
93269b62d01SJens Axboe 			schedule();
933f9eadbbdSJens Axboe 		}
93469b62d01SJens Axboe 
93503ba3782SJens Axboe 		try_to_freeze();
93603ba3782SJens Axboe 	}
93703ba3782SJens Axboe 
938fff5b85aSArtem Bityutskiy 	/* Flush any work that raced with us exiting */
93908243900SChristoph Hellwig 	if (!list_empty(&bdi->work_list))
94008243900SChristoph Hellwig 		wb_do_writeback(wb, 1);
941455b2864SDave Chinner 
942455b2864SDave Chinner 	trace_writeback_thread_stop(bdi);
94303ba3782SJens Axboe 	return 0;
94403ba3782SJens Axboe }
94503ba3782SJens Axboe 
94608243900SChristoph Hellwig 
94703ba3782SJens Axboe /*
94803ba3782SJens Axboe  * Start writeback of `nr_pages' pages.  If `nr_pages' is zero, write back
94903ba3782SJens Axboe  * the whole world.
95003ba3782SJens Axboe  */
95103ba3782SJens Axboe void wakeup_flusher_threads(long nr_pages)
95203ba3782SJens Axboe {
953b8c2f347SChristoph Hellwig 	struct backing_dev_info *bdi;
954b8c2f347SChristoph Hellwig 
95583ba7b07SChristoph Hellwig 	if (!nr_pages) {
95683ba7b07SChristoph Hellwig 		nr_pages = global_page_state(NR_FILE_DIRTY) +
95703ba3782SJens Axboe 				global_page_state(NR_UNSTABLE_NFS);
958b8c2f347SChristoph Hellwig 	}
959b8c2f347SChristoph Hellwig 
960b8c2f347SChristoph Hellwig 	rcu_read_lock();
961b8c2f347SChristoph Hellwig 	list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) {
962b8c2f347SChristoph Hellwig 		if (!bdi_has_dirty_io(bdi))
963b8c2f347SChristoph Hellwig 			continue;
9646585027aSJan Kara 		__bdi_start_writeback(bdi, nr_pages, false);
965b8c2f347SChristoph Hellwig 	}
966b8c2f347SChristoph Hellwig 	rcu_read_unlock();
96703ba3782SJens Axboe }
96803ba3782SJens Axboe 
96903ba3782SJens Axboe static noinline void block_dump___mark_inode_dirty(struct inode *inode)
97003ba3782SJens Axboe {
97103ba3782SJens Axboe 	if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) {
97203ba3782SJens Axboe 		struct dentry *dentry;
97303ba3782SJens Axboe 		const char *name = "?";
97403ba3782SJens Axboe 
97503ba3782SJens Axboe 		dentry = d_find_alias(inode);
97603ba3782SJens Axboe 		if (dentry) {
97703ba3782SJens Axboe 			spin_lock(&dentry->d_lock);
97803ba3782SJens Axboe 			name = (const char *) dentry->d_name.name;
97903ba3782SJens Axboe 		}
98003ba3782SJens Axboe 		printk(KERN_DEBUG
98103ba3782SJens Axboe 		       "%s(%d): dirtied inode %lu (%s) on %s\n",
98203ba3782SJens Axboe 		       current->comm, task_pid_nr(current), inode->i_ino,
98303ba3782SJens Axboe 		       name, inode->i_sb->s_id);
98403ba3782SJens Axboe 		if (dentry) {
98503ba3782SJens Axboe 			spin_unlock(&dentry->d_lock);
98603ba3782SJens Axboe 			dput(dentry);
98703ba3782SJens Axboe 		}
98803ba3782SJens Axboe 	}
98903ba3782SJens Axboe }
99003ba3782SJens Axboe 
99103ba3782SJens Axboe /**
99203ba3782SJens Axboe  *	__mark_inode_dirty -	internal function
99303ba3782SJens Axboe  *	@inode: inode to mark
99403ba3782SJens Axboe  *	@flags: what kind of dirty (i.e. I_DIRTY_SYNC)
99503ba3782SJens Axboe  *	Mark an inode as dirty. Callers should use mark_inode_dirty or
99603ba3782SJens Axboe  *  	mark_inode_dirty_sync.
99703ba3782SJens Axboe  *
99803ba3782SJens Axboe  * Put the inode on the super block's dirty list.
99903ba3782SJens Axboe  *
100003ba3782SJens Axboe  * CAREFUL! We mark it dirty unconditionally, but move it onto the
100103ba3782SJens Axboe  * dirty list only if it is hashed or if it refers to a blockdev.
100203ba3782SJens Axboe  * If it was not hashed, it will never be added to the dirty list
100303ba3782SJens Axboe  * even if it is later hashed, as it will have been marked dirty already.
100403ba3782SJens Axboe  *
100503ba3782SJens Axboe  * In short, make sure you hash any inodes _before_ you start marking
100603ba3782SJens Axboe  * them dirty.
100703ba3782SJens Axboe  *
100803ba3782SJens Axboe  * Note that for blockdevs, inode->dirtied_when represents the dirtying time of
100903ba3782SJens Axboe  * the block-special inode (/dev/hda1) itself.  And the ->dirtied_when field of
101003ba3782SJens Axboe  * the kernel-internal blockdev inode represents the dirtying time of the
101103ba3782SJens Axboe  * blockdev's pages.  This is why for I_DIRTY_PAGES we always use
101203ba3782SJens Axboe  * page->mapping->host, so the page-dirtying time is recorded in the internal
101303ba3782SJens Axboe  * blockdev inode.
101403ba3782SJens Axboe  */
101503ba3782SJens Axboe void __mark_inode_dirty(struct inode *inode, int flags)
101603ba3782SJens Axboe {
101703ba3782SJens Axboe 	struct super_block *sb = inode->i_sb;
1018253c34e9SArtem Bityutskiy 	struct backing_dev_info *bdi = NULL;
101903ba3782SJens Axboe 
102003ba3782SJens Axboe 	/*
102103ba3782SJens Axboe 	 * Don't do this for I_DIRTY_PAGES - that doesn't actually
102203ba3782SJens Axboe 	 * dirty the inode itself
102303ba3782SJens Axboe 	 */
102403ba3782SJens Axboe 	if (flags & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
102503ba3782SJens Axboe 		if (sb->s_op->dirty_inode)
1026aa385729SChristoph Hellwig 			sb->s_op->dirty_inode(inode, flags);
102703ba3782SJens Axboe 	}
102803ba3782SJens Axboe 
102903ba3782SJens Axboe 	/*
103003ba3782SJens Axboe 	 * make sure that changes are seen by all cpus before we test i_state
103103ba3782SJens Axboe 	 * -- mikulas
103203ba3782SJens Axboe 	 */
103303ba3782SJens Axboe 	smp_mb();
103403ba3782SJens Axboe 
103503ba3782SJens Axboe 	/* avoid the locking if we can */
103603ba3782SJens Axboe 	if ((inode->i_state & flags) == flags)
103703ba3782SJens Axboe 		return;
103803ba3782SJens Axboe 
103903ba3782SJens Axboe 	if (unlikely(block_dump))
104003ba3782SJens Axboe 		block_dump___mark_inode_dirty(inode);
104103ba3782SJens Axboe 
1042250df6edSDave Chinner 	spin_lock(&inode->i_lock);
104303ba3782SJens Axboe 	if ((inode->i_state & flags) != flags) {
104403ba3782SJens Axboe 		const int was_dirty = inode->i_state & I_DIRTY;
104503ba3782SJens Axboe 
104603ba3782SJens Axboe 		inode->i_state |= flags;
104703ba3782SJens Axboe 
104803ba3782SJens Axboe 		/*
104903ba3782SJens Axboe 		 * If the inode is being synced, just update its dirty state.
105003ba3782SJens Axboe 		 * The unlocker will place the inode on the appropriate
105103ba3782SJens Axboe 		 * superblock list, based upon its state.
105203ba3782SJens Axboe 		 */
105303ba3782SJens Axboe 		if (inode->i_state & I_SYNC)
1054250df6edSDave Chinner 			goto out_unlock_inode;
105503ba3782SJens Axboe 
105603ba3782SJens Axboe 		/*
105703ba3782SJens Axboe 		 * Only add valid (hashed) inodes to the superblock's
105803ba3782SJens Axboe 		 * dirty list.  Add blockdev inodes as well.
105903ba3782SJens Axboe 		 */
106003ba3782SJens Axboe 		if (!S_ISBLK(inode->i_mode)) {
10611d3382cbSAl Viro 			if (inode_unhashed(inode))
1062250df6edSDave Chinner 				goto out_unlock_inode;
106303ba3782SJens Axboe 		}
1064a4ffdde6SAl Viro 		if (inode->i_state & I_FREEING)
1065250df6edSDave Chinner 			goto out_unlock_inode;
106603ba3782SJens Axboe 
106703ba3782SJens Axboe 		/*
106803ba3782SJens Axboe 		 * If the inode was already on b_dirty/b_io/b_more_io, don't
106903ba3782SJens Axboe 		 * reposition it (that would break b_dirty time-ordering).
107003ba3782SJens Axboe 		 */
107103ba3782SJens Axboe 		if (!was_dirty) {
1072a66979abSDave Chinner 			bool wakeup_bdi = false;
1073253c34e9SArtem Bityutskiy 			bdi = inode_to_bdi(inode);
1074500b067cSJens Axboe 
1075253c34e9SArtem Bityutskiy 			if (bdi_cap_writeback_dirty(bdi)) {
1076253c34e9SArtem Bityutskiy 				WARN(!test_bit(BDI_registered, &bdi->state),
1077253c34e9SArtem Bityutskiy 				     "bdi-%s not registered\n", bdi->name);
1078253c34e9SArtem Bityutskiy 
1079253c34e9SArtem Bityutskiy 				/*
1080253c34e9SArtem Bityutskiy 				 * If this is the first dirty inode for this
1081253c34e9SArtem Bityutskiy 				 * bdi, we have to wake-up the corresponding
1082253c34e9SArtem Bityutskiy 				 * bdi thread to make sure background
1083253c34e9SArtem Bityutskiy 				 * write-back happens later.
1084253c34e9SArtem Bityutskiy 				 */
1085253c34e9SArtem Bityutskiy 				if (!wb_has_dirty_io(&bdi->wb))
1086253c34e9SArtem Bityutskiy 					wakeup_bdi = true;
1087500b067cSJens Axboe 			}
108803ba3782SJens Axboe 
1089a66979abSDave Chinner 			spin_unlock(&inode->i_lock);
1090f758eeabSChristoph Hellwig 			spin_lock(&bdi->wb.list_lock);
109103ba3782SJens Axboe 			inode->dirtied_when = jiffies;
10927ccf19a8SNick Piggin 			list_move(&inode->i_wb_list, &bdi->wb.b_dirty);
1093f758eeabSChristoph Hellwig 			spin_unlock(&bdi->wb.list_lock);
1094253c34e9SArtem Bityutskiy 
1095253c34e9SArtem Bityutskiy 			if (wakeup_bdi)
10966467716aSArtem Bityutskiy 				bdi_wakeup_thread_delayed(bdi);
1097a66979abSDave Chinner 			return;
1098a66979abSDave Chinner 		}
1099a66979abSDave Chinner 	}
1100a66979abSDave Chinner out_unlock_inode:
1101a66979abSDave Chinner 	spin_unlock(&inode->i_lock);
1102a66979abSDave Chinner 
110303ba3782SJens Axboe }
110403ba3782SJens Axboe EXPORT_SYMBOL(__mark_inode_dirty);
110503ba3782SJens Axboe 
110666f3b8e2SJens Axboe /*
110766f3b8e2SJens Axboe  * Write out a superblock's list of dirty inodes.  A wait will be performed
110866f3b8e2SJens Axboe  * upon no inodes, all inodes or the final one, depending upon sync_mode.
110966f3b8e2SJens Axboe  *
111066f3b8e2SJens Axboe  * If older_than_this is non-NULL, then only write out inodes which
111166f3b8e2SJens Axboe  * had their first dirtying at a time earlier than *older_than_this.
111266f3b8e2SJens Axboe  *
111366f3b8e2SJens Axboe  * If `bdi' is non-zero then we're being asked to writeback a specific queue.
111466f3b8e2SJens Axboe  * This function assumes that the blockdev superblock's inodes are backed by
111566f3b8e2SJens Axboe  * a variety of queues, so all inodes are searched.  For other superblocks,
111666f3b8e2SJens Axboe  * assume that all inodes are backed by the same queue.
111766f3b8e2SJens Axboe  *
111866f3b8e2SJens Axboe  * The inodes to be written are parked on bdi->b_io.  They are moved back onto
111966f3b8e2SJens Axboe  * bdi->b_dirty as they are selected for writing.  This way, none can be missed
112066f3b8e2SJens Axboe  * on the writer throttling path, and we get decent balancing between many
112166f3b8e2SJens Axboe  * throttled threads: we don't want them all piling up on inode_sync_wait.
112266f3b8e2SJens Axboe  */
1123b6e51316SJens Axboe static void wait_sb_inodes(struct super_block *sb)
112466f3b8e2SJens Axboe {
112538f21977SNick Piggin 	struct inode *inode, *old_inode = NULL;
112638f21977SNick Piggin 
112703ba3782SJens Axboe 	/*
112803ba3782SJens Axboe 	 * We need to be protected against the filesystem going from
112903ba3782SJens Axboe 	 * r/o to r/w or vice versa.
113003ba3782SJens Axboe 	 */
1131b6e51316SJens Axboe 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
113203ba3782SJens Axboe 
113355fa6091SDave Chinner 	spin_lock(&inode_sb_list_lock);
113466f3b8e2SJens Axboe 
113538f21977SNick Piggin 	/*
113638f21977SNick Piggin 	 * Data integrity sync. Must wait for all pages under writeback,
113738f21977SNick Piggin 	 * because there may have been pages dirtied before our sync
113838f21977SNick Piggin 	 * call, but which had writeout started before we write it out.
113938f21977SNick Piggin 	 * In which case, the inode may not be on the dirty list, but
114038f21977SNick Piggin 	 * we still have to wait for that writeout.
114138f21977SNick Piggin 	 */
1142b6e51316SJens Axboe 	list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
1143250df6edSDave Chinner 		struct address_space *mapping = inode->i_mapping;
114438f21977SNick Piggin 
1145250df6edSDave Chinner 		spin_lock(&inode->i_lock);
1146250df6edSDave Chinner 		if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) ||
1147250df6edSDave Chinner 		    (mapping->nrpages == 0)) {
1148250df6edSDave Chinner 			spin_unlock(&inode->i_lock);
114938f21977SNick Piggin 			continue;
1150250df6edSDave Chinner 		}
115138f21977SNick Piggin 		__iget(inode);
1152250df6edSDave Chinner 		spin_unlock(&inode->i_lock);
115355fa6091SDave Chinner 		spin_unlock(&inode_sb_list_lock);
115455fa6091SDave Chinner 
115538f21977SNick Piggin 		/*
115655fa6091SDave Chinner 		 * We hold a reference to 'inode' so it couldn't have been
115755fa6091SDave Chinner 		 * removed from s_inodes list while we dropped the
115855fa6091SDave Chinner 		 * inode_sb_list_lock.  We cannot iput the inode now as we can
115955fa6091SDave Chinner 		 * be holding the last reference and we cannot iput it under
116055fa6091SDave Chinner 		 * inode_sb_list_lock. So we keep the reference and iput it
116155fa6091SDave Chinner 		 * later.
116238f21977SNick Piggin 		 */
116338f21977SNick Piggin 		iput(old_inode);
116438f21977SNick Piggin 		old_inode = inode;
116538f21977SNick Piggin 
116638f21977SNick Piggin 		filemap_fdatawait(mapping);
116738f21977SNick Piggin 
116838f21977SNick Piggin 		cond_resched();
116938f21977SNick Piggin 
117055fa6091SDave Chinner 		spin_lock(&inode_sb_list_lock);
117138f21977SNick Piggin 	}
117255fa6091SDave Chinner 	spin_unlock(&inode_sb_list_lock);
117338f21977SNick Piggin 	iput(old_inode);
117466f3b8e2SJens Axboe }
11751da177e4SLinus Torvalds 
1176d8a8559cSJens Axboe /**
11773259f8beSChris Mason  * writeback_inodes_sb_nr -	writeback dirty inodes from given super_block
1178d8a8559cSJens Axboe  * @sb: the superblock
11793259f8beSChris Mason  * @nr: the number of pages to write
11801da177e4SLinus Torvalds  *
1181d8a8559cSJens Axboe  * Start writeback on some inodes on this super_block. No guarantees are made
1182d8a8559cSJens Axboe  * on how many (if any) will be written, and this function does not wait
11833259f8beSChris Mason  * for IO completion of submitted IO.
11841da177e4SLinus Torvalds  */
11853259f8beSChris Mason void writeback_inodes_sb_nr(struct super_block *sb, unsigned long nr)
11861da177e4SLinus Torvalds {
118783ba7b07SChristoph Hellwig 	DECLARE_COMPLETION_ONSTACK(done);
118883ba7b07SChristoph Hellwig 	struct wb_writeback_work work = {
11893c4d7165SChristoph Hellwig 		.sb			= sb,
11903c4d7165SChristoph Hellwig 		.sync_mode		= WB_SYNC_NONE,
11916e6938b6SWu Fengguang 		.tagged_writepages	= 1,
119283ba7b07SChristoph Hellwig 		.done			= &done,
11933259f8beSChris Mason 		.nr_pages		= nr,
11943c4d7165SChristoph Hellwig 	};
11950e3c9a22SJens Axboe 
1196cf37e972SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
119783ba7b07SChristoph Hellwig 	bdi_queue_work(sb->s_bdi, &work);
119883ba7b07SChristoph Hellwig 	wait_for_completion(&done);
11991da177e4SLinus Torvalds }
12003259f8beSChris Mason EXPORT_SYMBOL(writeback_inodes_sb_nr);
12013259f8beSChris Mason 
12023259f8beSChris Mason /**
12033259f8beSChris Mason  * writeback_inodes_sb	-	writeback dirty inodes from given super_block
12043259f8beSChris Mason  * @sb: the superblock
12053259f8beSChris Mason  *
12063259f8beSChris Mason  * Start writeback on some inodes on this super_block. No guarantees are made
12073259f8beSChris Mason  * on how many (if any) will be written, and this function does not wait
12083259f8beSChris Mason  * for IO completion of submitted IO.
12093259f8beSChris Mason  */
12103259f8beSChris Mason void writeback_inodes_sb(struct super_block *sb)
12113259f8beSChris Mason {
1212925d169fSLinus Torvalds 	return writeback_inodes_sb_nr(sb, get_nr_dirty_pages());
12133259f8beSChris Mason }
1214d8a8559cSJens Axboe EXPORT_SYMBOL(writeback_inodes_sb);
1215d8a8559cSJens Axboe 
1216d8a8559cSJens Axboe /**
121717bd55d0SEric Sandeen  * writeback_inodes_sb_if_idle	-	start writeback if none underway
121817bd55d0SEric Sandeen  * @sb: the superblock
121917bd55d0SEric Sandeen  *
122017bd55d0SEric Sandeen  * Invoke writeback_inodes_sb if no writeback is currently underway.
122117bd55d0SEric Sandeen  * Returns 1 if writeback was started, 0 if not.
122217bd55d0SEric Sandeen  */
122317bd55d0SEric Sandeen int writeback_inodes_sb_if_idle(struct super_block *sb)
122417bd55d0SEric Sandeen {
122517bd55d0SEric Sandeen 	if (!writeback_in_progress(sb->s_bdi)) {
1226cf37e972SChristoph Hellwig 		down_read(&sb->s_umount);
122717bd55d0SEric Sandeen 		writeback_inodes_sb(sb);
1228cf37e972SChristoph Hellwig 		up_read(&sb->s_umount);
122917bd55d0SEric Sandeen 		return 1;
123017bd55d0SEric Sandeen 	} else
123117bd55d0SEric Sandeen 		return 0;
123217bd55d0SEric Sandeen }
123317bd55d0SEric Sandeen EXPORT_SYMBOL(writeback_inodes_sb_if_idle);
123417bd55d0SEric Sandeen 
123517bd55d0SEric Sandeen /**
12363259f8beSChris Mason  * writeback_inodes_sb_if_idle	-	start writeback if none underway
12373259f8beSChris Mason  * @sb: the superblock
12383259f8beSChris Mason  * @nr: the number of pages to write
12393259f8beSChris Mason  *
12403259f8beSChris Mason  * Invoke writeback_inodes_sb if no writeback is currently underway.
12413259f8beSChris Mason  * Returns 1 if writeback was started, 0 if not.
12423259f8beSChris Mason  */
12433259f8beSChris Mason int writeback_inodes_sb_nr_if_idle(struct super_block *sb,
12443259f8beSChris Mason 				   unsigned long nr)
12453259f8beSChris Mason {
12463259f8beSChris Mason 	if (!writeback_in_progress(sb->s_bdi)) {
12473259f8beSChris Mason 		down_read(&sb->s_umount);
12483259f8beSChris Mason 		writeback_inodes_sb_nr(sb, nr);
12493259f8beSChris Mason 		up_read(&sb->s_umount);
12503259f8beSChris Mason 		return 1;
12513259f8beSChris Mason 	} else
12523259f8beSChris Mason 		return 0;
12533259f8beSChris Mason }
12543259f8beSChris Mason EXPORT_SYMBOL(writeback_inodes_sb_nr_if_idle);
12553259f8beSChris Mason 
12563259f8beSChris Mason /**
1257d8a8559cSJens Axboe  * sync_inodes_sb	-	sync sb inode pages
1258d8a8559cSJens Axboe  * @sb: the superblock
1259d8a8559cSJens Axboe  *
1260d8a8559cSJens Axboe  * This function writes and waits on any dirty inode belonging to this
1261cb9ef8d5SStefan Hajnoczi  * super_block.
1262d8a8559cSJens Axboe  */
1263b6e51316SJens Axboe void sync_inodes_sb(struct super_block *sb)
1264d8a8559cSJens Axboe {
126583ba7b07SChristoph Hellwig 	DECLARE_COMPLETION_ONSTACK(done);
126683ba7b07SChristoph Hellwig 	struct wb_writeback_work work = {
12673c4d7165SChristoph Hellwig 		.sb		= sb,
12683c4d7165SChristoph Hellwig 		.sync_mode	= WB_SYNC_ALL,
12693c4d7165SChristoph Hellwig 		.nr_pages	= LONG_MAX,
12703c4d7165SChristoph Hellwig 		.range_cyclic	= 0,
127183ba7b07SChristoph Hellwig 		.done		= &done,
12723c4d7165SChristoph Hellwig 	};
12733c4d7165SChristoph Hellwig 
1274cf37e972SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
1275cf37e972SChristoph Hellwig 
127683ba7b07SChristoph Hellwig 	bdi_queue_work(sb->s_bdi, &work);
127783ba7b07SChristoph Hellwig 	wait_for_completion(&done);
127883ba7b07SChristoph Hellwig 
1279b6e51316SJens Axboe 	wait_sb_inodes(sb);
1280d8a8559cSJens Axboe }
1281d8a8559cSJens Axboe EXPORT_SYMBOL(sync_inodes_sb);
12821da177e4SLinus Torvalds 
12831da177e4SLinus Torvalds /**
12841da177e4SLinus Torvalds  * write_inode_now	-	write an inode to disk
12851da177e4SLinus Torvalds  * @inode: inode to write to disk
12861da177e4SLinus Torvalds  * @sync: whether the write should be synchronous or not
12871da177e4SLinus Torvalds  *
12887f04c26dSAndrea Arcangeli  * This function commits an inode to disk immediately if it is dirty. This is
12897f04c26dSAndrea Arcangeli  * primarily needed by knfsd.
12907f04c26dSAndrea Arcangeli  *
12917f04c26dSAndrea Arcangeli  * The caller must either have a ref on the inode or must have set I_WILL_FREE.
12921da177e4SLinus Torvalds  */
12931da177e4SLinus Torvalds int write_inode_now(struct inode *inode, int sync)
12941da177e4SLinus Torvalds {
1295f758eeabSChristoph Hellwig 	struct bdi_writeback *wb = &inode_to_bdi(inode)->wb;
12961da177e4SLinus Torvalds 	int ret;
12971da177e4SLinus Torvalds 	struct writeback_control wbc = {
12981da177e4SLinus Torvalds 		.nr_to_write = LONG_MAX,
129918914b18SMike Galbraith 		.sync_mode = sync ? WB_SYNC_ALL : WB_SYNC_NONE,
1300111ebb6eSOGAWA Hirofumi 		.range_start = 0,
1301111ebb6eSOGAWA Hirofumi 		.range_end = LLONG_MAX,
13021da177e4SLinus Torvalds 	};
13031da177e4SLinus Torvalds 
13041da177e4SLinus Torvalds 	if (!mapping_cap_writeback_dirty(inode->i_mapping))
130549364ce2SAndrew Morton 		wbc.nr_to_write = 0;
13061da177e4SLinus Torvalds 
13071da177e4SLinus Torvalds 	might_sleep();
1308f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
13090f1b1fd8SDave Chinner 	spin_lock(&inode->i_lock);
1310f758eeabSChristoph Hellwig 	ret = writeback_single_inode(inode, wb, &wbc);
13110f1b1fd8SDave Chinner 	spin_unlock(&inode->i_lock);
1312f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
13131da177e4SLinus Torvalds 	if (sync)
13141c0eeaf5SJoern Engel 		inode_sync_wait(inode);
13151da177e4SLinus Torvalds 	return ret;
13161da177e4SLinus Torvalds }
13171da177e4SLinus Torvalds EXPORT_SYMBOL(write_inode_now);
13181da177e4SLinus Torvalds 
13191da177e4SLinus Torvalds /**
13201da177e4SLinus Torvalds  * sync_inode - write an inode and its pages to disk.
13211da177e4SLinus Torvalds  * @inode: the inode to sync
13221da177e4SLinus Torvalds  * @wbc: controls the writeback mode
13231da177e4SLinus Torvalds  *
13241da177e4SLinus Torvalds  * sync_inode() will write an inode and its pages to disk.  It will also
13251da177e4SLinus Torvalds  * correctly update the inode on its superblock's dirty inode lists and will
13261da177e4SLinus Torvalds  * update inode->i_state.
13271da177e4SLinus Torvalds  *
13281da177e4SLinus Torvalds  * The caller must have a ref on the inode.
13291da177e4SLinus Torvalds  */
13301da177e4SLinus Torvalds int sync_inode(struct inode *inode, struct writeback_control *wbc)
13311da177e4SLinus Torvalds {
1332f758eeabSChristoph Hellwig 	struct bdi_writeback *wb = &inode_to_bdi(inode)->wb;
13331da177e4SLinus Torvalds 	int ret;
13341da177e4SLinus Torvalds 
1335f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
13360f1b1fd8SDave Chinner 	spin_lock(&inode->i_lock);
1337f758eeabSChristoph Hellwig 	ret = writeback_single_inode(inode, wb, wbc);
13380f1b1fd8SDave Chinner 	spin_unlock(&inode->i_lock);
1339f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
13401da177e4SLinus Torvalds 	return ret;
13411da177e4SLinus Torvalds }
13421da177e4SLinus Torvalds EXPORT_SYMBOL(sync_inode);
1343c3765016SChristoph Hellwig 
1344c3765016SChristoph Hellwig /**
1345c691b9d9SAndrew Morton  * sync_inode_metadata - write an inode to disk
1346c3765016SChristoph Hellwig  * @inode: the inode to sync
1347c3765016SChristoph Hellwig  * @wait: wait for I/O to complete.
1348c3765016SChristoph Hellwig  *
1349c691b9d9SAndrew Morton  * Write an inode to disk and adjust its dirty state after completion.
1350c3765016SChristoph Hellwig  *
1351c3765016SChristoph Hellwig  * Note: only writes the actual inode, no associated data or other metadata.
1352c3765016SChristoph Hellwig  */
1353c3765016SChristoph Hellwig int sync_inode_metadata(struct inode *inode, int wait)
1354c3765016SChristoph Hellwig {
1355c3765016SChristoph Hellwig 	struct writeback_control wbc = {
1356c3765016SChristoph Hellwig 		.sync_mode = wait ? WB_SYNC_ALL : WB_SYNC_NONE,
1357c3765016SChristoph Hellwig 		.nr_to_write = 0, /* metadata-only */
1358c3765016SChristoph Hellwig 	};
1359c3765016SChristoph Hellwig 
1360c3765016SChristoph Hellwig 	return sync_inode(inode, &wbc);
1361c3765016SChristoph Hellwig }
1362c3765016SChristoph Hellwig EXPORT_SYMBOL(sync_inode_metadata);
1363