xref: /openbmc/linux/fs/fs-writeback.c (revision b7a2441f)
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;
34901c03194SChristoph Hellwig 	unsigned dirty;
3501da177e4SLinus Torvalds 	int ret;
3511da177e4SLinus Torvalds 
352f758eeabSChristoph Hellwig 	assert_spin_locked(&wb->list_lock);
3530f1b1fd8SDave Chinner 	assert_spin_locked(&inode->i_lock);
3540f1b1fd8SDave Chinner 
35501c03194SChristoph Hellwig 	if (!atomic_read(&inode->i_count))
35601c03194SChristoph Hellwig 		WARN_ON(!(inode->i_state & (I_WILL_FREE|I_FREEING)));
35701c03194SChristoph Hellwig 	else
35801c03194SChristoph Hellwig 		WARN_ON(inode->i_state & I_WILL_FREE);
35901c03194SChristoph Hellwig 
36001c03194SChristoph Hellwig 	if (inode->i_state & I_SYNC) {
36101c03194SChristoph Hellwig 		/*
36201c03194SChristoph Hellwig 		 * If this inode is locked for writeback and we are not doing
36366f3b8e2SJens Axboe 		 * writeback-for-data-integrity, move it to b_more_io so that
36401c03194SChristoph Hellwig 		 * writeback can proceed with the other inodes on s_io.
36501c03194SChristoph Hellwig 		 *
36601c03194SChristoph Hellwig 		 * We'll have another go at writing back this inode when we
36766f3b8e2SJens Axboe 		 * completed a full scan of b_io.
36801c03194SChristoph Hellwig 		 */
369a9185b41SChristoph Hellwig 		if (wbc->sync_mode != WB_SYNC_ALL) {
370f758eeabSChristoph Hellwig 			requeue_io(inode, wb);
37101c03194SChristoph Hellwig 			return 0;
37201c03194SChristoph Hellwig 		}
37301c03194SChristoph Hellwig 
37401c03194SChristoph Hellwig 		/*
37501c03194SChristoph Hellwig 		 * It's a data-integrity sync.  We must wait.
37601c03194SChristoph Hellwig 		 */
377f758eeabSChristoph Hellwig 		inode_wait_for_writeback(inode, wb);
37801c03194SChristoph Hellwig 	}
37901c03194SChristoph Hellwig 
3801c0eeaf5SJoern Engel 	BUG_ON(inode->i_state & I_SYNC);
3811da177e4SLinus Torvalds 
3825547e8aaSDmitry Monakhov 	/* Set I_SYNC, reset I_DIRTY_PAGES */
3831c0eeaf5SJoern Engel 	inode->i_state |= I_SYNC;
3845547e8aaSDmitry Monakhov 	inode->i_state &= ~I_DIRTY_PAGES;
385250df6edSDave Chinner 	spin_unlock(&inode->i_lock);
386f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
3871da177e4SLinus Torvalds 
3881da177e4SLinus Torvalds 	ret = do_writepages(mapping, wbc);
3891da177e4SLinus Torvalds 
39026821ed4SChristoph Hellwig 	/*
39126821ed4SChristoph Hellwig 	 * Make sure to wait on the data before writing out the metadata.
39226821ed4SChristoph Hellwig 	 * This is important for filesystems that modify metadata on data
39326821ed4SChristoph Hellwig 	 * I/O completion.
39426821ed4SChristoph Hellwig 	 */
395a9185b41SChristoph Hellwig 	if (wbc->sync_mode == WB_SYNC_ALL) {
39626821ed4SChristoph Hellwig 		int err = filemap_fdatawait(mapping);
3971da177e4SLinus Torvalds 		if (ret == 0)
3981da177e4SLinus Torvalds 			ret = err;
3991da177e4SLinus Torvalds 	}
4001da177e4SLinus Torvalds 
4015547e8aaSDmitry Monakhov 	/*
4025547e8aaSDmitry Monakhov 	 * Some filesystems may redirty the inode during the writeback
4035547e8aaSDmitry Monakhov 	 * due to delalloc, clear dirty metadata flags right before
4045547e8aaSDmitry Monakhov 	 * write_inode()
4055547e8aaSDmitry Monakhov 	 */
406250df6edSDave Chinner 	spin_lock(&inode->i_lock);
4075547e8aaSDmitry Monakhov 	dirty = inode->i_state & I_DIRTY;
4085547e8aaSDmitry Monakhov 	inode->i_state &= ~(I_DIRTY_SYNC | I_DIRTY_DATASYNC);
409250df6edSDave Chinner 	spin_unlock(&inode->i_lock);
41026821ed4SChristoph Hellwig 	/* Don't write the inode if only I_DIRTY_PAGES was set */
41126821ed4SChristoph Hellwig 	if (dirty & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
412a9185b41SChristoph Hellwig 		int err = write_inode(inode, wbc);
4131da177e4SLinus Torvalds 		if (ret == 0)
4141da177e4SLinus Torvalds 			ret = err;
4151da177e4SLinus Torvalds 	}
4161da177e4SLinus Torvalds 
417f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
418250df6edSDave Chinner 	spin_lock(&inode->i_lock);
4191c0eeaf5SJoern Engel 	inode->i_state &= ~I_SYNC;
420a4ffdde6SAl Viro 	if (!(inode->i_state & I_FREEING)) {
42194c3dcbbSWu Fengguang 		/*
42294c3dcbbSWu Fengguang 		 * Sync livelock prevention. Each inode is tagged and synced in
42394c3dcbbSWu Fengguang 		 * one shot. If still dirty, it will be redirty_tail()'ed below.
42494c3dcbbSWu Fengguang 		 * Update the dirty time to prevent enqueue and sync it again.
42594c3dcbbSWu Fengguang 		 */
42694c3dcbbSWu Fengguang 		if ((inode->i_state & I_DIRTY) &&
42794c3dcbbSWu Fengguang 		    (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages))
42894c3dcbbSWu Fengguang 			inode->dirtied_when = jiffies;
42994c3dcbbSWu Fengguang 
43023539afcSWu Fengguang 		if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) {
4311da177e4SLinus Torvalds 			/*
4321da177e4SLinus Torvalds 			 * We didn't write back all the pages.  nfs_writepages()
433a50aeb40SWu Fengguang 			 * sometimes bales out without doing anything.
4341da177e4SLinus Torvalds 			 */
4351da177e4SLinus Torvalds 			inode->i_state |= I_DIRTY_PAGES;
4368bc3be27SFengguang Wu 			if (wbc->nr_to_write <= 0) {
4378bc3be27SFengguang Wu 				/*
4388bc3be27SFengguang Wu 				 * slice used up: queue for next turn
4398bc3be27SFengguang Wu 				 */
440f758eeabSChristoph Hellwig 				requeue_io(inode, wb);
4411da177e4SLinus Torvalds 			} else {
4421da177e4SLinus Torvalds 				/*
443a50aeb40SWu Fengguang 				 * Writeback blocked by something other than
444a50aeb40SWu Fengguang 				 * congestion. Delay the inode for some time to
445a50aeb40SWu Fengguang 				 * avoid spinning on the CPU (100% iowait)
446a50aeb40SWu Fengguang 				 * retrying writeback of the dirty page/inode
447a50aeb40SWu Fengguang 				 * that cannot be performed immediately.
4488bc3be27SFengguang Wu 				 */
449f758eeabSChristoph Hellwig 				redirty_tail(inode, wb);
4508bc3be27SFengguang Wu 			}
45123539afcSWu Fengguang 		} else if (inode->i_state & I_DIRTY) {
45223539afcSWu Fengguang 			/*
45323539afcSWu Fengguang 			 * Filesystems can dirty the inode during writeback
45423539afcSWu Fengguang 			 * operations, such as delayed allocation during
45523539afcSWu Fengguang 			 * submission or metadata updates after data IO
45623539afcSWu Fengguang 			 * completion.
45723539afcSWu Fengguang 			 */
458f758eeabSChristoph Hellwig 			redirty_tail(inode, wb);
4591da177e4SLinus Torvalds 		} else {
4601da177e4SLinus Torvalds 			/*
4619e38d86fSNick Piggin 			 * The inode is clean.  At this point we either have
4629e38d86fSNick Piggin 			 * a reference to the inode or it's on it's way out.
4639e38d86fSNick Piggin 			 * No need to add it back to the LRU.
4641da177e4SLinus Torvalds 			 */
4657ccf19a8SNick Piggin 			list_del_init(&inode->i_wb_list);
466cb9bd115SWu Fengguang 			wbc->inodes_written++;
4671da177e4SLinus Torvalds 		}
4681da177e4SLinus Torvalds 	}
4691c0eeaf5SJoern Engel 	inode_sync_complete(inode);
4701da177e4SLinus Torvalds 	return ret;
4711da177e4SLinus Torvalds }
4721da177e4SLinus Torvalds 
47303ba3782SJens Axboe /*
474d19de7edSChristoph Hellwig  * For background writeback the caller does not have the sb pinned
47503ba3782SJens Axboe  * before calling writeback. So make sure that we do pin it, so it doesn't
47603ba3782SJens Axboe  * go away while we are writing inodes from it.
47703ba3782SJens Axboe  */
478d19de7edSChristoph Hellwig static bool pin_sb_for_writeback(struct super_block *sb)
4791da177e4SLinus Torvalds {
48003ba3782SJens Axboe 	spin_lock(&sb_lock);
48129cb4859SChristoph Hellwig 	if (list_empty(&sb->s_instances)) {
48203ba3782SJens Axboe 		spin_unlock(&sb_lock);
48329cb4859SChristoph Hellwig 		return false;
48403ba3782SJens Axboe 	}
48529cb4859SChristoph Hellwig 
48629cb4859SChristoph Hellwig 	sb->s_count++;
48729cb4859SChristoph Hellwig 	spin_unlock(&sb_lock);
48829cb4859SChristoph Hellwig 
48929cb4859SChristoph Hellwig 	if (down_read_trylock(&sb->s_umount)) {
49029cb4859SChristoph Hellwig 		if (sb->s_root)
49129cb4859SChristoph Hellwig 			return true;
49203ba3782SJens Axboe 		up_read(&sb->s_umount);
49303ba3782SJens Axboe 	}
49429cb4859SChristoph Hellwig 
49529cb4859SChristoph Hellwig 	put_super(sb);
496d19de7edSChristoph Hellwig 	return false;
49703ba3782SJens Axboe }
49803ba3782SJens Axboe 
499f11c9c5cSEdward Shishkin /*
500f11c9c5cSEdward Shishkin  * Write a portion of b_io inodes which belong to @sb.
501edadfb10SChristoph Hellwig  *
502edadfb10SChristoph Hellwig  * If @only_this_sb is true, then find and write all such
503f11c9c5cSEdward Shishkin  * inodes. Otherwise write only ones which go sequentially
504f11c9c5cSEdward Shishkin  * in reverse order.
505edadfb10SChristoph Hellwig  *
506f11c9c5cSEdward Shishkin  * Return 1, if the caller writeback routine should be
507f11c9c5cSEdward Shishkin  * interrupted. Otherwise return 0.
508f11c9c5cSEdward Shishkin  */
509edadfb10SChristoph Hellwig static int writeback_sb_inodes(struct super_block *sb, struct bdi_writeback *wb,
510edadfb10SChristoph Hellwig 		struct writeback_control *wbc, bool only_this_sb)
51103ba3782SJens Axboe {
51203ba3782SJens Axboe 	while (!list_empty(&wb->b_io)) {
513f11c9c5cSEdward Shishkin 		long pages_skipped;
5147ccf19a8SNick Piggin 		struct inode *inode = wb_inode(wb->b_io.prev);
515edadfb10SChristoph Hellwig 
516edadfb10SChristoph Hellwig 		if (inode->i_sb != sb) {
517edadfb10SChristoph Hellwig 			if (only_this_sb) {
518edadfb10SChristoph Hellwig 				/*
519edadfb10SChristoph Hellwig 				 * We only want to write back data for this
520edadfb10SChristoph Hellwig 				 * superblock, move all inodes not belonging
521edadfb10SChristoph Hellwig 				 * to it back onto the dirty list.
522edadfb10SChristoph Hellwig 				 */
523f758eeabSChristoph Hellwig 				redirty_tail(inode, wb);
52466f3b8e2SJens Axboe 				continue;
52566f3b8e2SJens Axboe 			}
526edadfb10SChristoph Hellwig 
527edadfb10SChristoph Hellwig 			/*
528edadfb10SChristoph Hellwig 			 * The inode belongs to a different superblock.
529edadfb10SChristoph Hellwig 			 * Bounce back to the caller to unpin this and
530edadfb10SChristoph Hellwig 			 * pin the next superblock.
531edadfb10SChristoph Hellwig 			 */
532f11c9c5cSEdward Shishkin 			return 0;
533edadfb10SChristoph Hellwig 		}
534edadfb10SChristoph Hellwig 
5359843b76aSChristoph Hellwig 		/*
5369843b76aSChristoph Hellwig 		 * Don't bother with new inodes or inodes beeing freed, first
5379843b76aSChristoph Hellwig 		 * kind does not need peridic writeout yet, and for the latter
5389843b76aSChristoph Hellwig 		 * kind writeout is handled by the freer.
5399843b76aSChristoph Hellwig 		 */
540250df6edSDave Chinner 		spin_lock(&inode->i_lock);
5419843b76aSChristoph Hellwig 		if (inode->i_state & (I_NEW | I_FREEING | I_WILL_FREE)) {
542250df6edSDave Chinner 			spin_unlock(&inode->i_lock);
543f758eeabSChristoph Hellwig 			requeue_io(inode, wb);
5447ef0d737SNick Piggin 			continue;
5457ef0d737SNick Piggin 		}
5469843b76aSChristoph Hellwig 
5471da177e4SLinus Torvalds 		__iget(inode);
548250df6edSDave Chinner 
5491da177e4SLinus Torvalds 		pages_skipped = wbc->pages_skipped;
550f758eeabSChristoph Hellwig 		writeback_single_inode(inode, wb, wbc);
5511da177e4SLinus Torvalds 		if (wbc->pages_skipped != pages_skipped) {
5521da177e4SLinus Torvalds 			/*
5531da177e4SLinus Torvalds 			 * writeback is not making progress due to locked
5541da177e4SLinus Torvalds 			 * buffers.  Skip this inode for now.
5551da177e4SLinus Torvalds 			 */
556f758eeabSChristoph Hellwig 			redirty_tail(inode, wb);
5571da177e4SLinus Torvalds 		}
5580f1b1fd8SDave Chinner 		spin_unlock(&inode->i_lock);
559f758eeabSChristoph Hellwig 		spin_unlock(&wb->list_lock);
5601da177e4SLinus Torvalds 		iput(inode);
5614ffc8444SOGAWA Hirofumi 		cond_resched();
562f758eeabSChristoph Hellwig 		spin_lock(&wb->list_lock);
563b7a2441fSWu Fengguang 		if (wbc->nr_to_write <= 0)
564f11c9c5cSEdward Shishkin 			return 1;
5651da177e4SLinus Torvalds 	}
566f11c9c5cSEdward Shishkin 	/* b_io is empty */
567f11c9c5cSEdward Shishkin 	return 1;
568f11c9c5cSEdward Shishkin }
56938f21977SNick Piggin 
570e8dfc305SWu Fengguang static void __writeback_inodes_wb(struct bdi_writeback *wb,
571f11c9c5cSEdward Shishkin 				  struct writeback_control *wbc)
572f11c9c5cSEdward Shishkin {
573f11c9c5cSEdward Shishkin 	int ret = 0;
5749ecc2738SJens Axboe 
575f11c9c5cSEdward Shishkin 	while (!list_empty(&wb->b_io)) {
5767ccf19a8SNick Piggin 		struct inode *inode = wb_inode(wb->b_io.prev);
577f11c9c5cSEdward Shishkin 		struct super_block *sb = inode->i_sb;
578f11c9c5cSEdward Shishkin 
579334132aeSChristoph Hellwig 		if (!pin_sb_for_writeback(sb)) {
580f758eeabSChristoph Hellwig 			requeue_io(inode, wb);
581d19de7edSChristoph Hellwig 			continue;
582334132aeSChristoph Hellwig 		}
583edadfb10SChristoph Hellwig 		ret = writeback_sb_inodes(sb, wb, wbc, false);
584d19de7edSChristoph Hellwig 		drop_super(sb);
585f11c9c5cSEdward Shishkin 
586f11c9c5cSEdward Shishkin 		if (ret)
587f11c9c5cSEdward Shishkin 			break;
588f11c9c5cSEdward Shishkin 	}
58966f3b8e2SJens Axboe 	/* Leave any unwritten inodes on b_io */
59066f3b8e2SJens Axboe }
59166f3b8e2SJens Axboe 
592e8dfc305SWu Fengguang void writeback_inodes_wb(struct bdi_writeback *wb,
593e8dfc305SWu Fengguang 		struct writeback_control *wbc)
594edadfb10SChristoph Hellwig {
595f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
596424b351fSWu Fengguang 	if (list_empty(&wb->b_io))
597edadfb10SChristoph Hellwig 		queue_io(wb, wbc->older_than_this);
598e8dfc305SWu Fengguang 	__writeback_inodes_wb(wb, wbc);
599f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
600edadfb10SChristoph Hellwig }
601edadfb10SChristoph Hellwig 
60203ba3782SJens Axboe /*
60303ba3782SJens Axboe  * The maximum number of pages to writeout in a single bdi flush/kupdate
60403ba3782SJens Axboe  * operation.  We do this so we don't hold I_SYNC against an inode for
60503ba3782SJens Axboe  * enormous amounts of time, which would block a userspace task which has
60603ba3782SJens Axboe  * been forced to throttle against that inode.  Also, the code reevaluates
60703ba3782SJens Axboe  * the dirty each time it has written this many pages.
60803ba3782SJens Axboe  */
60903ba3782SJens Axboe #define MAX_WRITEBACK_PAGES     1024
61003ba3782SJens Axboe 
61103ba3782SJens Axboe static inline bool over_bground_thresh(void)
61203ba3782SJens Axboe {
61303ba3782SJens Axboe 	unsigned long background_thresh, dirty_thresh;
61403ba3782SJens Axboe 
61516c4042fSWu Fengguang 	global_dirty_limits(&background_thresh, &dirty_thresh);
61603ba3782SJens Axboe 
61703ba3782SJens Axboe 	return (global_page_state(NR_FILE_DIRTY) +
6184cbec4c8SWu Fengguang 		global_page_state(NR_UNSTABLE_NFS) > background_thresh);
61903ba3782SJens Axboe }
62003ba3782SJens Axboe 
62103ba3782SJens Axboe /*
62203ba3782SJens Axboe  * Explicit flushing or periodic writeback of "old" data.
62303ba3782SJens Axboe  *
62403ba3782SJens Axboe  * Define "old": the first time one of an inode's pages is dirtied, we mark the
62503ba3782SJens Axboe  * dirtying-time in the inode's address_space.  So this periodic writeback code
62603ba3782SJens Axboe  * just walks the superblock inode list, writing back any inodes which are
62703ba3782SJens Axboe  * older than a specific point in time.
62803ba3782SJens Axboe  *
62903ba3782SJens Axboe  * Try to run once per dirty_writeback_interval.  But if a writeback event
63003ba3782SJens Axboe  * takes longer than a dirty_writeback_interval interval, then leave a
63103ba3782SJens Axboe  * one-second gap.
63203ba3782SJens Axboe  *
63303ba3782SJens Axboe  * older_than_this takes precedence over nr_to_write.  So we'll only write back
63403ba3782SJens Axboe  * all dirty pages if they are all attached to "old" mappings.
63503ba3782SJens Axboe  */
636c4a77a6cSJens Axboe static long wb_writeback(struct bdi_writeback *wb,
63783ba7b07SChristoph Hellwig 			 struct wb_writeback_work *work)
63803ba3782SJens Axboe {
63903ba3782SJens Axboe 	struct writeback_control wbc = {
64083ba7b07SChristoph Hellwig 		.sync_mode		= work->sync_mode,
6416e6938b6SWu Fengguang 		.tagged_writepages	= work->tagged_writepages,
64203ba3782SJens Axboe 		.older_than_this	= NULL,
64383ba7b07SChristoph Hellwig 		.for_kupdate		= work->for_kupdate,
64483ba7b07SChristoph Hellwig 		.for_background		= work->for_background,
64583ba7b07SChristoph Hellwig 		.range_cyclic		= work->range_cyclic,
64603ba3782SJens Axboe 	};
64703ba3782SJens Axboe 	unsigned long oldest_jif;
64803ba3782SJens Axboe 	long wrote = 0;
6496e6938b6SWu Fengguang 	long write_chunk = MAX_WRITEBACK_PAGES;
650a5989bdcSJan Kara 	struct inode *inode;
65103ba3782SJens Axboe 
652c4a77a6cSJens Axboe 	if (!wbc.range_cyclic) {
653c4a77a6cSJens Axboe 		wbc.range_start = 0;
654c4a77a6cSJens Axboe 		wbc.range_end = LLONG_MAX;
655c4a77a6cSJens Axboe 	}
65603ba3782SJens Axboe 
657b9543dacSJan Kara 	/*
658b9543dacSJan Kara 	 * WB_SYNC_ALL mode does livelock avoidance by syncing dirty
659b9543dacSJan Kara 	 * inodes/pages in one big loop. Setting wbc.nr_to_write=LONG_MAX
660b9543dacSJan Kara 	 * here avoids calling into writeback_inodes_wb() more than once.
661b9543dacSJan Kara 	 *
662b9543dacSJan Kara 	 * The intended call sequence for WB_SYNC_ALL writeback is:
663b9543dacSJan Kara 	 *
664b9543dacSJan Kara 	 *      wb_writeback()
665e8dfc305SWu Fengguang 	 *          writeback_sb_inodes()       <== called only once
666b9543dacSJan Kara 	 *              write_cache_pages()     <== called once for each inode
667b9543dacSJan Kara 	 *                   (quickly) tag currently dirty pages
668b9543dacSJan Kara 	 *                   (maybe slowly) sync all tagged pages
669b9543dacSJan Kara 	 */
6706e6938b6SWu Fengguang 	if (wbc.sync_mode == WB_SYNC_ALL || wbc.tagged_writepages)
671b9543dacSJan Kara 		write_chunk = LONG_MAX;
672b9543dacSJan Kara 
673e185dda8SWu Fengguang 	oldest_jif = jiffies;
674e185dda8SWu Fengguang 	wbc.older_than_this = &oldest_jif;
675e185dda8SWu Fengguang 
676e8dfc305SWu Fengguang 	spin_lock(&wb->list_lock);
67703ba3782SJens Axboe 	for (;;) {
67803ba3782SJens Axboe 		/*
679d3ddec76SWu Fengguang 		 * Stop writeback when nr_pages has been consumed
68003ba3782SJens Axboe 		 */
68183ba7b07SChristoph Hellwig 		if (work->nr_pages <= 0)
68203ba3782SJens Axboe 			break;
68303ba3782SJens Axboe 
68403ba3782SJens Axboe 		/*
685aa373cf5SJan Kara 		 * Background writeout and kupdate-style writeback may
686aa373cf5SJan Kara 		 * run forever. Stop them if there is other work to do
687aa373cf5SJan Kara 		 * so that e.g. sync can proceed. They'll be restarted
688aa373cf5SJan Kara 		 * after the other works are all done.
689aa373cf5SJan Kara 		 */
690aa373cf5SJan Kara 		if ((work->for_background || work->for_kupdate) &&
691aa373cf5SJan Kara 		    !list_empty(&wb->bdi->work_list))
692aa373cf5SJan Kara 			break;
693aa373cf5SJan Kara 
694aa373cf5SJan Kara 		/*
695d3ddec76SWu Fengguang 		 * For background writeout, stop when we are below the
696d3ddec76SWu Fengguang 		 * background dirty threshold
69703ba3782SJens Axboe 		 */
69883ba7b07SChristoph Hellwig 		if (work->for_background && !over_bground_thresh())
69903ba3782SJens Axboe 			break;
70003ba3782SJens Axboe 
701ba9aa839SWu Fengguang 		if (work->for_kupdate) {
702ba9aa839SWu Fengguang 			oldest_jif = jiffies -
703ba9aa839SWu Fengguang 				msecs_to_jiffies(dirty_expire_interval * 10);
704ba9aa839SWu Fengguang 			wbc.older_than_this = &oldest_jif;
705ba9aa839SWu Fengguang 		}
706ba9aa839SWu Fengguang 
707b9543dacSJan Kara 		wbc.nr_to_write = write_chunk;
70803ba3782SJens Axboe 		wbc.pages_skipped = 0;
709cb9bd115SWu Fengguang 		wbc.inodes_written = 0;
710028c2dd1SDave Chinner 
711028c2dd1SDave Chinner 		trace_wbc_writeback_start(&wbc, wb->bdi);
712e8dfc305SWu Fengguang 		if (list_empty(&wb->b_io))
713e8dfc305SWu Fengguang 			queue_io(wb, wbc.older_than_this);
71483ba7b07SChristoph Hellwig 		if (work->sb)
715e8dfc305SWu Fengguang 			writeback_sb_inodes(work->sb, wb, &wbc, true);
716edadfb10SChristoph Hellwig 		else
717e8dfc305SWu Fengguang 			__writeback_inodes_wb(wb, &wbc);
718028c2dd1SDave Chinner 		trace_wbc_writeback_written(&wbc, wb->bdi);
719028c2dd1SDave Chinner 
720b9543dacSJan Kara 		work->nr_pages -= write_chunk - wbc.nr_to_write;
721b9543dacSJan Kara 		wrote += write_chunk - wbc.nr_to_write;
72203ba3782SJens Axboe 
72303ba3782SJens Axboe 		/*
724e6fb6da2SWu Fengguang 		 * Did we write something? Try for more
725e6fb6da2SWu Fengguang 		 *
726e6fb6da2SWu Fengguang 		 * Dirty inodes are moved to b_io for writeback in batches.
727e6fb6da2SWu Fengguang 		 * The completion of the current batch does not necessarily
728e6fb6da2SWu Fengguang 		 * mean the overall work is done. So we keep looping as long
729e6fb6da2SWu Fengguang 		 * as made some progress on cleaning pages or inodes.
73003ba3782SJens Axboe 		 */
731e6fb6da2SWu Fengguang 		if (wbc.nr_to_write < write_chunk)
73271fd05a8SJens Axboe 			continue;
733cb9bd115SWu Fengguang 		if (wbc.inodes_written)
734cb9bd115SWu Fengguang 			continue;
73571fd05a8SJens Axboe 		/*
736e6fb6da2SWu Fengguang 		 * No more inodes for IO, bail
73771fd05a8SJens Axboe 		 */
738b7a2441fSWu Fengguang 		if (list_empty(&wb->b_more_io))
73971fd05a8SJens Axboe 			break;
74071fd05a8SJens Axboe 		/*
741a5989bdcSJan Kara 		 * Nothing written. Wait for some inode to
742a5989bdcSJan Kara 		 * become available for writeback. Otherwise
743a5989bdcSJan Kara 		 * we'll just busyloop.
744a5989bdcSJan Kara 		 */
745a5989bdcSJan Kara 		if (!list_empty(&wb->b_more_io))  {
7467ccf19a8SNick Piggin 			inode = wb_inode(wb->b_more_io.prev);
747028c2dd1SDave Chinner 			trace_wbc_writeback_wait(&wbc, wb->bdi);
748250df6edSDave Chinner 			spin_lock(&inode->i_lock);
749f758eeabSChristoph Hellwig 			inode_wait_for_writeback(inode, wb);
750250df6edSDave Chinner 			spin_unlock(&inode->i_lock);
751a5989bdcSJan Kara 		}
75203ba3782SJens Axboe 	}
753e8dfc305SWu Fengguang 	spin_unlock(&wb->list_lock);
75403ba3782SJens Axboe 
75503ba3782SJens Axboe 	return wrote;
75603ba3782SJens Axboe }
75703ba3782SJens Axboe 
75803ba3782SJens Axboe /*
75983ba7b07SChristoph Hellwig  * Return the next wb_writeback_work struct that hasn't been processed yet.
76003ba3782SJens Axboe  */
76183ba7b07SChristoph Hellwig static struct wb_writeback_work *
76208852b6dSMinchan Kim get_next_work_item(struct backing_dev_info *bdi)
76303ba3782SJens Axboe {
76483ba7b07SChristoph Hellwig 	struct wb_writeback_work *work = NULL;
76503ba3782SJens Axboe 
7666467716aSArtem Bityutskiy 	spin_lock_bh(&bdi->wb_lock);
76783ba7b07SChristoph Hellwig 	if (!list_empty(&bdi->work_list)) {
76883ba7b07SChristoph Hellwig 		work = list_entry(bdi->work_list.next,
76983ba7b07SChristoph Hellwig 				  struct wb_writeback_work, list);
77083ba7b07SChristoph Hellwig 		list_del_init(&work->list);
77103ba3782SJens Axboe 	}
7726467716aSArtem Bityutskiy 	spin_unlock_bh(&bdi->wb_lock);
77383ba7b07SChristoph Hellwig 	return work;
77403ba3782SJens Axboe }
77503ba3782SJens Axboe 
776cdf01dd5SLinus Torvalds /*
777cdf01dd5SLinus Torvalds  * Add in the number of potentially dirty inodes, because each inode
778cdf01dd5SLinus Torvalds  * write can dirty pagecache in the underlying blockdev.
779cdf01dd5SLinus Torvalds  */
780cdf01dd5SLinus Torvalds static unsigned long get_nr_dirty_pages(void)
781cdf01dd5SLinus Torvalds {
782cdf01dd5SLinus Torvalds 	return global_page_state(NR_FILE_DIRTY) +
783cdf01dd5SLinus Torvalds 		global_page_state(NR_UNSTABLE_NFS) +
784cdf01dd5SLinus Torvalds 		get_nr_dirty_inodes();
785cdf01dd5SLinus Torvalds }
786cdf01dd5SLinus Torvalds 
7876585027aSJan Kara static long wb_check_background_flush(struct bdi_writeback *wb)
7886585027aSJan Kara {
7896585027aSJan Kara 	if (over_bground_thresh()) {
7906585027aSJan Kara 
7916585027aSJan Kara 		struct wb_writeback_work work = {
7926585027aSJan Kara 			.nr_pages	= LONG_MAX,
7936585027aSJan Kara 			.sync_mode	= WB_SYNC_NONE,
7946585027aSJan Kara 			.for_background	= 1,
7956585027aSJan Kara 			.range_cyclic	= 1,
7966585027aSJan Kara 		};
7976585027aSJan Kara 
7986585027aSJan Kara 		return wb_writeback(wb, &work);
7996585027aSJan Kara 	}
8006585027aSJan Kara 
8016585027aSJan Kara 	return 0;
8026585027aSJan Kara }
8036585027aSJan Kara 
80403ba3782SJens Axboe static long wb_check_old_data_flush(struct bdi_writeback *wb)
80503ba3782SJens Axboe {
80603ba3782SJens Axboe 	unsigned long expired;
80703ba3782SJens Axboe 	long nr_pages;
80803ba3782SJens Axboe 
80969b62d01SJens Axboe 	/*
81069b62d01SJens Axboe 	 * When set to zero, disable periodic writeback
81169b62d01SJens Axboe 	 */
81269b62d01SJens Axboe 	if (!dirty_writeback_interval)
81369b62d01SJens Axboe 		return 0;
81469b62d01SJens Axboe 
81503ba3782SJens Axboe 	expired = wb->last_old_flush +
81603ba3782SJens Axboe 			msecs_to_jiffies(dirty_writeback_interval * 10);
81703ba3782SJens Axboe 	if (time_before(jiffies, expired))
81803ba3782SJens Axboe 		return 0;
81903ba3782SJens Axboe 
82003ba3782SJens Axboe 	wb->last_old_flush = jiffies;
821cdf01dd5SLinus Torvalds 	nr_pages = get_nr_dirty_pages();
82203ba3782SJens Axboe 
823c4a77a6cSJens Axboe 	if (nr_pages) {
82483ba7b07SChristoph Hellwig 		struct wb_writeback_work work = {
825c4a77a6cSJens Axboe 			.nr_pages	= nr_pages,
826c4a77a6cSJens Axboe 			.sync_mode	= WB_SYNC_NONE,
827c4a77a6cSJens Axboe 			.for_kupdate	= 1,
828c4a77a6cSJens Axboe 			.range_cyclic	= 1,
829c4a77a6cSJens Axboe 		};
830c4a77a6cSJens Axboe 
83183ba7b07SChristoph Hellwig 		return wb_writeback(wb, &work);
832c4a77a6cSJens Axboe 	}
83303ba3782SJens Axboe 
83403ba3782SJens Axboe 	return 0;
83503ba3782SJens Axboe }
83603ba3782SJens Axboe 
83703ba3782SJens Axboe /*
83803ba3782SJens Axboe  * Retrieve work items and do the writeback they describe
83903ba3782SJens Axboe  */
84003ba3782SJens Axboe long wb_do_writeback(struct bdi_writeback *wb, int force_wait)
84103ba3782SJens Axboe {
84203ba3782SJens Axboe 	struct backing_dev_info *bdi = wb->bdi;
84383ba7b07SChristoph Hellwig 	struct wb_writeback_work *work;
844c4a77a6cSJens Axboe 	long wrote = 0;
84503ba3782SJens Axboe 
84681d73a32SJan Kara 	set_bit(BDI_writeback_running, &wb->bdi->state);
84708852b6dSMinchan Kim 	while ((work = get_next_work_item(bdi)) != NULL) {
84803ba3782SJens Axboe 		/*
84903ba3782SJens Axboe 		 * Override sync mode, in case we must wait for completion
85083ba7b07SChristoph Hellwig 		 * because this thread is exiting now.
85103ba3782SJens Axboe 		 */
85203ba3782SJens Axboe 		if (force_wait)
85383ba7b07SChristoph Hellwig 			work->sync_mode = WB_SYNC_ALL;
85483ba7b07SChristoph Hellwig 
855455b2864SDave Chinner 		trace_writeback_exec(bdi, work);
856455b2864SDave Chinner 
85783ba7b07SChristoph Hellwig 		wrote += wb_writeback(wb, work);
85803ba3782SJens Axboe 
85903ba3782SJens Axboe 		/*
86083ba7b07SChristoph Hellwig 		 * Notify the caller of completion if this is a synchronous
86183ba7b07SChristoph Hellwig 		 * work item, otherwise just free it.
86203ba3782SJens Axboe 		 */
86383ba7b07SChristoph Hellwig 		if (work->done)
86483ba7b07SChristoph Hellwig 			complete(work->done);
86583ba7b07SChristoph Hellwig 		else
86683ba7b07SChristoph Hellwig 			kfree(work);
86703ba3782SJens Axboe 	}
86803ba3782SJens Axboe 
86903ba3782SJens Axboe 	/*
87003ba3782SJens Axboe 	 * Check for periodic writeback, kupdated() style
87103ba3782SJens Axboe 	 */
87203ba3782SJens Axboe 	wrote += wb_check_old_data_flush(wb);
8736585027aSJan Kara 	wrote += wb_check_background_flush(wb);
87481d73a32SJan Kara 	clear_bit(BDI_writeback_running, &wb->bdi->state);
87503ba3782SJens Axboe 
87603ba3782SJens Axboe 	return wrote;
87703ba3782SJens Axboe }
87803ba3782SJens Axboe 
87903ba3782SJens Axboe /*
88003ba3782SJens Axboe  * Handle writeback of dirty data for the device backed by this bdi. Also
88103ba3782SJens Axboe  * wakes up periodically and does kupdated style flushing.
88203ba3782SJens Axboe  */
88308243900SChristoph Hellwig int bdi_writeback_thread(void *data)
88403ba3782SJens Axboe {
88508243900SChristoph Hellwig 	struct bdi_writeback *wb = data;
88608243900SChristoph Hellwig 	struct backing_dev_info *bdi = wb->bdi;
88703ba3782SJens Axboe 	long pages_written;
88803ba3782SJens Axboe 
889766f9164SPeter Zijlstra 	current->flags |= PF_SWAPWRITE;
89008243900SChristoph Hellwig 	set_freezable();
891ecd58403SArtem Bityutskiy 	wb->last_active = jiffies;
89203ba3782SJens Axboe 
89303ba3782SJens Axboe 	/*
89408243900SChristoph Hellwig 	 * Our parent may run at a different priority, just set us to normal
89503ba3782SJens Axboe 	 */
89608243900SChristoph Hellwig 	set_user_nice(current, 0);
89708243900SChristoph Hellwig 
898455b2864SDave Chinner 	trace_writeback_thread_start(bdi);
899455b2864SDave Chinner 
90003ba3782SJens Axboe 	while (!kthread_should_stop()) {
9016467716aSArtem Bityutskiy 		/*
9026467716aSArtem Bityutskiy 		 * Remove own delayed wake-up timer, since we are already awake
9036467716aSArtem Bityutskiy 		 * and we'll take care of the preriodic write-back.
9046467716aSArtem Bityutskiy 		 */
9056467716aSArtem Bityutskiy 		del_timer(&wb->wakeup_timer);
9066467716aSArtem Bityutskiy 
90703ba3782SJens Axboe 		pages_written = wb_do_writeback(wb, 0);
90803ba3782SJens Axboe 
909455b2864SDave Chinner 		trace_writeback_pages_written(pages_written);
910455b2864SDave Chinner 
91103ba3782SJens Axboe 		if (pages_written)
912ecd58403SArtem Bityutskiy 			wb->last_active = jiffies;
91303ba3782SJens Axboe 
914297252c8SArtem Bityutskiy 		set_current_state(TASK_INTERRUPTIBLE);
915b76b4014SJ. Bruce Fields 		if (!list_empty(&bdi->work_list) || kthread_should_stop()) {
916297252c8SArtem Bityutskiy 			__set_current_state(TASK_RUNNING);
917297252c8SArtem Bityutskiy 			continue;
91803ba3782SJens Axboe 		}
91903ba3782SJens Axboe 
920253c34e9SArtem Bityutskiy 		if (wb_has_dirty_io(wb) && dirty_writeback_interval)
921fff5b85aSArtem Bityutskiy 			schedule_timeout(msecs_to_jiffies(dirty_writeback_interval * 10));
922253c34e9SArtem Bityutskiy 		else {
923253c34e9SArtem Bityutskiy 			/*
924253c34e9SArtem Bityutskiy 			 * We have nothing to do, so can go sleep without any
925253c34e9SArtem Bityutskiy 			 * timeout and save power. When a work is queued or
926253c34e9SArtem Bityutskiy 			 * something is made dirty - we will be woken up.
927253c34e9SArtem Bityutskiy 			 */
92869b62d01SJens Axboe 			schedule();
929f9eadbbdSJens Axboe 		}
93069b62d01SJens Axboe 
93103ba3782SJens Axboe 		try_to_freeze();
93203ba3782SJens Axboe 	}
93303ba3782SJens Axboe 
934fff5b85aSArtem Bityutskiy 	/* Flush any work that raced with us exiting */
93508243900SChristoph Hellwig 	if (!list_empty(&bdi->work_list))
93608243900SChristoph Hellwig 		wb_do_writeback(wb, 1);
937455b2864SDave Chinner 
938455b2864SDave Chinner 	trace_writeback_thread_stop(bdi);
93903ba3782SJens Axboe 	return 0;
94003ba3782SJens Axboe }
94103ba3782SJens Axboe 
94208243900SChristoph Hellwig 
94303ba3782SJens Axboe /*
94403ba3782SJens Axboe  * Start writeback of `nr_pages' pages.  If `nr_pages' is zero, write back
94503ba3782SJens Axboe  * the whole world.
94603ba3782SJens Axboe  */
94703ba3782SJens Axboe void wakeup_flusher_threads(long nr_pages)
94803ba3782SJens Axboe {
949b8c2f347SChristoph Hellwig 	struct backing_dev_info *bdi;
950b8c2f347SChristoph Hellwig 
95183ba7b07SChristoph Hellwig 	if (!nr_pages) {
95283ba7b07SChristoph Hellwig 		nr_pages = global_page_state(NR_FILE_DIRTY) +
95303ba3782SJens Axboe 				global_page_state(NR_UNSTABLE_NFS);
954b8c2f347SChristoph Hellwig 	}
955b8c2f347SChristoph Hellwig 
956b8c2f347SChristoph Hellwig 	rcu_read_lock();
957b8c2f347SChristoph Hellwig 	list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) {
958b8c2f347SChristoph Hellwig 		if (!bdi_has_dirty_io(bdi))
959b8c2f347SChristoph Hellwig 			continue;
9606585027aSJan Kara 		__bdi_start_writeback(bdi, nr_pages, false);
961b8c2f347SChristoph Hellwig 	}
962b8c2f347SChristoph Hellwig 	rcu_read_unlock();
96303ba3782SJens Axboe }
96403ba3782SJens Axboe 
96503ba3782SJens Axboe static noinline void block_dump___mark_inode_dirty(struct inode *inode)
96603ba3782SJens Axboe {
96703ba3782SJens Axboe 	if (inode->i_ino || strcmp(inode->i_sb->s_id, "bdev")) {
96803ba3782SJens Axboe 		struct dentry *dentry;
96903ba3782SJens Axboe 		const char *name = "?";
97003ba3782SJens Axboe 
97103ba3782SJens Axboe 		dentry = d_find_alias(inode);
97203ba3782SJens Axboe 		if (dentry) {
97303ba3782SJens Axboe 			spin_lock(&dentry->d_lock);
97403ba3782SJens Axboe 			name = (const char *) dentry->d_name.name;
97503ba3782SJens Axboe 		}
97603ba3782SJens Axboe 		printk(KERN_DEBUG
97703ba3782SJens Axboe 		       "%s(%d): dirtied inode %lu (%s) on %s\n",
97803ba3782SJens Axboe 		       current->comm, task_pid_nr(current), inode->i_ino,
97903ba3782SJens Axboe 		       name, inode->i_sb->s_id);
98003ba3782SJens Axboe 		if (dentry) {
98103ba3782SJens Axboe 			spin_unlock(&dentry->d_lock);
98203ba3782SJens Axboe 			dput(dentry);
98303ba3782SJens Axboe 		}
98403ba3782SJens Axboe 	}
98503ba3782SJens Axboe }
98603ba3782SJens Axboe 
98703ba3782SJens Axboe /**
98803ba3782SJens Axboe  *	__mark_inode_dirty -	internal function
98903ba3782SJens Axboe  *	@inode: inode to mark
99003ba3782SJens Axboe  *	@flags: what kind of dirty (i.e. I_DIRTY_SYNC)
99103ba3782SJens Axboe  *	Mark an inode as dirty. Callers should use mark_inode_dirty or
99203ba3782SJens Axboe  *  	mark_inode_dirty_sync.
99303ba3782SJens Axboe  *
99403ba3782SJens Axboe  * Put the inode on the super block's dirty list.
99503ba3782SJens Axboe  *
99603ba3782SJens Axboe  * CAREFUL! We mark it dirty unconditionally, but move it onto the
99703ba3782SJens Axboe  * dirty list only if it is hashed or if it refers to a blockdev.
99803ba3782SJens Axboe  * If it was not hashed, it will never be added to the dirty list
99903ba3782SJens Axboe  * even if it is later hashed, as it will have been marked dirty already.
100003ba3782SJens Axboe  *
100103ba3782SJens Axboe  * In short, make sure you hash any inodes _before_ you start marking
100203ba3782SJens Axboe  * them dirty.
100303ba3782SJens Axboe  *
100403ba3782SJens Axboe  * Note that for blockdevs, inode->dirtied_when represents the dirtying time of
100503ba3782SJens Axboe  * the block-special inode (/dev/hda1) itself.  And the ->dirtied_when field of
100603ba3782SJens Axboe  * the kernel-internal blockdev inode represents the dirtying time of the
100703ba3782SJens Axboe  * blockdev's pages.  This is why for I_DIRTY_PAGES we always use
100803ba3782SJens Axboe  * page->mapping->host, so the page-dirtying time is recorded in the internal
100903ba3782SJens Axboe  * blockdev inode.
101003ba3782SJens Axboe  */
101103ba3782SJens Axboe void __mark_inode_dirty(struct inode *inode, int flags)
101203ba3782SJens Axboe {
101303ba3782SJens Axboe 	struct super_block *sb = inode->i_sb;
1014253c34e9SArtem Bityutskiy 	struct backing_dev_info *bdi = NULL;
101503ba3782SJens Axboe 
101603ba3782SJens Axboe 	/*
101703ba3782SJens Axboe 	 * Don't do this for I_DIRTY_PAGES - that doesn't actually
101803ba3782SJens Axboe 	 * dirty the inode itself
101903ba3782SJens Axboe 	 */
102003ba3782SJens Axboe 	if (flags & (I_DIRTY_SYNC | I_DIRTY_DATASYNC)) {
102103ba3782SJens Axboe 		if (sb->s_op->dirty_inode)
1022aa385729SChristoph Hellwig 			sb->s_op->dirty_inode(inode, flags);
102303ba3782SJens Axboe 	}
102403ba3782SJens Axboe 
102503ba3782SJens Axboe 	/*
102603ba3782SJens Axboe 	 * make sure that changes are seen by all cpus before we test i_state
102703ba3782SJens Axboe 	 * -- mikulas
102803ba3782SJens Axboe 	 */
102903ba3782SJens Axboe 	smp_mb();
103003ba3782SJens Axboe 
103103ba3782SJens Axboe 	/* avoid the locking if we can */
103203ba3782SJens Axboe 	if ((inode->i_state & flags) == flags)
103303ba3782SJens Axboe 		return;
103403ba3782SJens Axboe 
103503ba3782SJens Axboe 	if (unlikely(block_dump))
103603ba3782SJens Axboe 		block_dump___mark_inode_dirty(inode);
103703ba3782SJens Axboe 
1038250df6edSDave Chinner 	spin_lock(&inode->i_lock);
103903ba3782SJens Axboe 	if ((inode->i_state & flags) != flags) {
104003ba3782SJens Axboe 		const int was_dirty = inode->i_state & I_DIRTY;
104103ba3782SJens Axboe 
104203ba3782SJens Axboe 		inode->i_state |= flags;
104303ba3782SJens Axboe 
104403ba3782SJens Axboe 		/*
104503ba3782SJens Axboe 		 * If the inode is being synced, just update its dirty state.
104603ba3782SJens Axboe 		 * The unlocker will place the inode on the appropriate
104703ba3782SJens Axboe 		 * superblock list, based upon its state.
104803ba3782SJens Axboe 		 */
104903ba3782SJens Axboe 		if (inode->i_state & I_SYNC)
1050250df6edSDave Chinner 			goto out_unlock_inode;
105103ba3782SJens Axboe 
105203ba3782SJens Axboe 		/*
105303ba3782SJens Axboe 		 * Only add valid (hashed) inodes to the superblock's
105403ba3782SJens Axboe 		 * dirty list.  Add blockdev inodes as well.
105503ba3782SJens Axboe 		 */
105603ba3782SJens Axboe 		if (!S_ISBLK(inode->i_mode)) {
10571d3382cbSAl Viro 			if (inode_unhashed(inode))
1058250df6edSDave Chinner 				goto out_unlock_inode;
105903ba3782SJens Axboe 		}
1060a4ffdde6SAl Viro 		if (inode->i_state & I_FREEING)
1061250df6edSDave Chinner 			goto out_unlock_inode;
106203ba3782SJens Axboe 
106303ba3782SJens Axboe 		/*
106403ba3782SJens Axboe 		 * If the inode was already on b_dirty/b_io/b_more_io, don't
106503ba3782SJens Axboe 		 * reposition it (that would break b_dirty time-ordering).
106603ba3782SJens Axboe 		 */
106703ba3782SJens Axboe 		if (!was_dirty) {
1068a66979abSDave Chinner 			bool wakeup_bdi = false;
1069253c34e9SArtem Bityutskiy 			bdi = inode_to_bdi(inode);
1070500b067cSJens Axboe 
1071253c34e9SArtem Bityutskiy 			if (bdi_cap_writeback_dirty(bdi)) {
1072253c34e9SArtem Bityutskiy 				WARN(!test_bit(BDI_registered, &bdi->state),
1073253c34e9SArtem Bityutskiy 				     "bdi-%s not registered\n", bdi->name);
1074253c34e9SArtem Bityutskiy 
1075253c34e9SArtem Bityutskiy 				/*
1076253c34e9SArtem Bityutskiy 				 * If this is the first dirty inode for this
1077253c34e9SArtem Bityutskiy 				 * bdi, we have to wake-up the corresponding
1078253c34e9SArtem Bityutskiy 				 * bdi thread to make sure background
1079253c34e9SArtem Bityutskiy 				 * write-back happens later.
1080253c34e9SArtem Bityutskiy 				 */
1081253c34e9SArtem Bityutskiy 				if (!wb_has_dirty_io(&bdi->wb))
1082253c34e9SArtem Bityutskiy 					wakeup_bdi = true;
1083500b067cSJens Axboe 			}
108403ba3782SJens Axboe 
1085a66979abSDave Chinner 			spin_unlock(&inode->i_lock);
1086f758eeabSChristoph Hellwig 			spin_lock(&bdi->wb.list_lock);
108703ba3782SJens Axboe 			inode->dirtied_when = jiffies;
10887ccf19a8SNick Piggin 			list_move(&inode->i_wb_list, &bdi->wb.b_dirty);
1089f758eeabSChristoph Hellwig 			spin_unlock(&bdi->wb.list_lock);
1090253c34e9SArtem Bityutskiy 
1091253c34e9SArtem Bityutskiy 			if (wakeup_bdi)
10926467716aSArtem Bityutskiy 				bdi_wakeup_thread_delayed(bdi);
1093a66979abSDave Chinner 			return;
1094a66979abSDave Chinner 		}
1095a66979abSDave Chinner 	}
1096a66979abSDave Chinner out_unlock_inode:
1097a66979abSDave Chinner 	spin_unlock(&inode->i_lock);
1098a66979abSDave Chinner 
109903ba3782SJens Axboe }
110003ba3782SJens Axboe EXPORT_SYMBOL(__mark_inode_dirty);
110103ba3782SJens Axboe 
110266f3b8e2SJens Axboe /*
110366f3b8e2SJens Axboe  * Write out a superblock's list of dirty inodes.  A wait will be performed
110466f3b8e2SJens Axboe  * upon no inodes, all inodes or the final one, depending upon sync_mode.
110566f3b8e2SJens Axboe  *
110666f3b8e2SJens Axboe  * If older_than_this is non-NULL, then only write out inodes which
110766f3b8e2SJens Axboe  * had their first dirtying at a time earlier than *older_than_this.
110866f3b8e2SJens Axboe  *
110966f3b8e2SJens Axboe  * If `bdi' is non-zero then we're being asked to writeback a specific queue.
111066f3b8e2SJens Axboe  * This function assumes that the blockdev superblock's inodes are backed by
111166f3b8e2SJens Axboe  * a variety of queues, so all inodes are searched.  For other superblocks,
111266f3b8e2SJens Axboe  * assume that all inodes are backed by the same queue.
111366f3b8e2SJens Axboe  *
111466f3b8e2SJens Axboe  * The inodes to be written are parked on bdi->b_io.  They are moved back onto
111566f3b8e2SJens Axboe  * bdi->b_dirty as they are selected for writing.  This way, none can be missed
111666f3b8e2SJens Axboe  * on the writer throttling path, and we get decent balancing between many
111766f3b8e2SJens Axboe  * throttled threads: we don't want them all piling up on inode_sync_wait.
111866f3b8e2SJens Axboe  */
1119b6e51316SJens Axboe static void wait_sb_inodes(struct super_block *sb)
112066f3b8e2SJens Axboe {
112138f21977SNick Piggin 	struct inode *inode, *old_inode = NULL;
112238f21977SNick Piggin 
112303ba3782SJens Axboe 	/*
112403ba3782SJens Axboe 	 * We need to be protected against the filesystem going from
112503ba3782SJens Axboe 	 * r/o to r/w or vice versa.
112603ba3782SJens Axboe 	 */
1127b6e51316SJens Axboe 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
112803ba3782SJens Axboe 
112955fa6091SDave Chinner 	spin_lock(&inode_sb_list_lock);
113066f3b8e2SJens Axboe 
113138f21977SNick Piggin 	/*
113238f21977SNick Piggin 	 * Data integrity sync. Must wait for all pages under writeback,
113338f21977SNick Piggin 	 * because there may have been pages dirtied before our sync
113438f21977SNick Piggin 	 * call, but which had writeout started before we write it out.
113538f21977SNick Piggin 	 * In which case, the inode may not be on the dirty list, but
113638f21977SNick Piggin 	 * we still have to wait for that writeout.
113738f21977SNick Piggin 	 */
1138b6e51316SJens Axboe 	list_for_each_entry(inode, &sb->s_inodes, i_sb_list) {
1139250df6edSDave Chinner 		struct address_space *mapping = inode->i_mapping;
114038f21977SNick Piggin 
1141250df6edSDave Chinner 		spin_lock(&inode->i_lock);
1142250df6edSDave Chinner 		if ((inode->i_state & (I_FREEING|I_WILL_FREE|I_NEW)) ||
1143250df6edSDave Chinner 		    (mapping->nrpages == 0)) {
1144250df6edSDave Chinner 			spin_unlock(&inode->i_lock);
114538f21977SNick Piggin 			continue;
1146250df6edSDave Chinner 		}
114738f21977SNick Piggin 		__iget(inode);
1148250df6edSDave Chinner 		spin_unlock(&inode->i_lock);
114955fa6091SDave Chinner 		spin_unlock(&inode_sb_list_lock);
115055fa6091SDave Chinner 
115138f21977SNick Piggin 		/*
115255fa6091SDave Chinner 		 * We hold a reference to 'inode' so it couldn't have been
115355fa6091SDave Chinner 		 * removed from s_inodes list while we dropped the
115455fa6091SDave Chinner 		 * inode_sb_list_lock.  We cannot iput the inode now as we can
115555fa6091SDave Chinner 		 * be holding the last reference and we cannot iput it under
115655fa6091SDave Chinner 		 * inode_sb_list_lock. So we keep the reference and iput it
115755fa6091SDave Chinner 		 * later.
115838f21977SNick Piggin 		 */
115938f21977SNick Piggin 		iput(old_inode);
116038f21977SNick Piggin 		old_inode = inode;
116138f21977SNick Piggin 
116238f21977SNick Piggin 		filemap_fdatawait(mapping);
116338f21977SNick Piggin 
116438f21977SNick Piggin 		cond_resched();
116538f21977SNick Piggin 
116655fa6091SDave Chinner 		spin_lock(&inode_sb_list_lock);
116738f21977SNick Piggin 	}
116855fa6091SDave Chinner 	spin_unlock(&inode_sb_list_lock);
116938f21977SNick Piggin 	iput(old_inode);
117066f3b8e2SJens Axboe }
11711da177e4SLinus Torvalds 
1172d8a8559cSJens Axboe /**
11733259f8beSChris Mason  * writeback_inodes_sb_nr -	writeback dirty inodes from given super_block
1174d8a8559cSJens Axboe  * @sb: the superblock
11753259f8beSChris Mason  * @nr: the number of pages to write
11761da177e4SLinus Torvalds  *
1177d8a8559cSJens Axboe  * Start writeback on some inodes on this super_block. No guarantees are made
1178d8a8559cSJens Axboe  * on how many (if any) will be written, and this function does not wait
11793259f8beSChris Mason  * for IO completion of submitted IO.
11801da177e4SLinus Torvalds  */
11813259f8beSChris Mason void writeback_inodes_sb_nr(struct super_block *sb, unsigned long nr)
11821da177e4SLinus Torvalds {
118383ba7b07SChristoph Hellwig 	DECLARE_COMPLETION_ONSTACK(done);
118483ba7b07SChristoph Hellwig 	struct wb_writeback_work work = {
11853c4d7165SChristoph Hellwig 		.sb			= sb,
11863c4d7165SChristoph Hellwig 		.sync_mode		= WB_SYNC_NONE,
11876e6938b6SWu Fengguang 		.tagged_writepages	= 1,
118883ba7b07SChristoph Hellwig 		.done			= &done,
11893259f8beSChris Mason 		.nr_pages		= nr,
11903c4d7165SChristoph Hellwig 	};
11910e3c9a22SJens Axboe 
1192cf37e972SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
119383ba7b07SChristoph Hellwig 	bdi_queue_work(sb->s_bdi, &work);
119483ba7b07SChristoph Hellwig 	wait_for_completion(&done);
11951da177e4SLinus Torvalds }
11963259f8beSChris Mason EXPORT_SYMBOL(writeback_inodes_sb_nr);
11973259f8beSChris Mason 
11983259f8beSChris Mason /**
11993259f8beSChris Mason  * writeback_inodes_sb	-	writeback dirty inodes from given super_block
12003259f8beSChris Mason  * @sb: the superblock
12013259f8beSChris Mason  *
12023259f8beSChris Mason  * Start writeback on some inodes on this super_block. No guarantees are made
12033259f8beSChris Mason  * on how many (if any) will be written, and this function does not wait
12043259f8beSChris Mason  * for IO completion of submitted IO.
12053259f8beSChris Mason  */
12063259f8beSChris Mason void writeback_inodes_sb(struct super_block *sb)
12073259f8beSChris Mason {
1208925d169fSLinus Torvalds 	return writeback_inodes_sb_nr(sb, get_nr_dirty_pages());
12093259f8beSChris Mason }
1210d8a8559cSJens Axboe EXPORT_SYMBOL(writeback_inodes_sb);
1211d8a8559cSJens Axboe 
1212d8a8559cSJens Axboe /**
121317bd55d0SEric Sandeen  * writeback_inodes_sb_if_idle	-	start writeback if none underway
121417bd55d0SEric Sandeen  * @sb: the superblock
121517bd55d0SEric Sandeen  *
121617bd55d0SEric Sandeen  * Invoke writeback_inodes_sb if no writeback is currently underway.
121717bd55d0SEric Sandeen  * Returns 1 if writeback was started, 0 if not.
121817bd55d0SEric Sandeen  */
121917bd55d0SEric Sandeen int writeback_inodes_sb_if_idle(struct super_block *sb)
122017bd55d0SEric Sandeen {
122117bd55d0SEric Sandeen 	if (!writeback_in_progress(sb->s_bdi)) {
1222cf37e972SChristoph Hellwig 		down_read(&sb->s_umount);
122317bd55d0SEric Sandeen 		writeback_inodes_sb(sb);
1224cf37e972SChristoph Hellwig 		up_read(&sb->s_umount);
122517bd55d0SEric Sandeen 		return 1;
122617bd55d0SEric Sandeen 	} else
122717bd55d0SEric Sandeen 		return 0;
122817bd55d0SEric Sandeen }
122917bd55d0SEric Sandeen EXPORT_SYMBOL(writeback_inodes_sb_if_idle);
123017bd55d0SEric Sandeen 
123117bd55d0SEric Sandeen /**
12323259f8beSChris Mason  * writeback_inodes_sb_if_idle	-	start writeback if none underway
12333259f8beSChris Mason  * @sb: the superblock
12343259f8beSChris Mason  * @nr: the number of pages to write
12353259f8beSChris Mason  *
12363259f8beSChris Mason  * Invoke writeback_inodes_sb if no writeback is currently underway.
12373259f8beSChris Mason  * Returns 1 if writeback was started, 0 if not.
12383259f8beSChris Mason  */
12393259f8beSChris Mason int writeback_inodes_sb_nr_if_idle(struct super_block *sb,
12403259f8beSChris Mason 				   unsigned long nr)
12413259f8beSChris Mason {
12423259f8beSChris Mason 	if (!writeback_in_progress(sb->s_bdi)) {
12433259f8beSChris Mason 		down_read(&sb->s_umount);
12443259f8beSChris Mason 		writeback_inodes_sb_nr(sb, nr);
12453259f8beSChris Mason 		up_read(&sb->s_umount);
12463259f8beSChris Mason 		return 1;
12473259f8beSChris Mason 	} else
12483259f8beSChris Mason 		return 0;
12493259f8beSChris Mason }
12503259f8beSChris Mason EXPORT_SYMBOL(writeback_inodes_sb_nr_if_idle);
12513259f8beSChris Mason 
12523259f8beSChris Mason /**
1253d8a8559cSJens Axboe  * sync_inodes_sb	-	sync sb inode pages
1254d8a8559cSJens Axboe  * @sb: the superblock
1255d8a8559cSJens Axboe  *
1256d8a8559cSJens Axboe  * This function writes and waits on any dirty inode belonging to this
1257cb9ef8d5SStefan Hajnoczi  * super_block.
1258d8a8559cSJens Axboe  */
1259b6e51316SJens Axboe void sync_inodes_sb(struct super_block *sb)
1260d8a8559cSJens Axboe {
126183ba7b07SChristoph Hellwig 	DECLARE_COMPLETION_ONSTACK(done);
126283ba7b07SChristoph Hellwig 	struct wb_writeback_work work = {
12633c4d7165SChristoph Hellwig 		.sb		= sb,
12643c4d7165SChristoph Hellwig 		.sync_mode	= WB_SYNC_ALL,
12653c4d7165SChristoph Hellwig 		.nr_pages	= LONG_MAX,
12663c4d7165SChristoph Hellwig 		.range_cyclic	= 0,
126783ba7b07SChristoph Hellwig 		.done		= &done,
12683c4d7165SChristoph Hellwig 	};
12693c4d7165SChristoph Hellwig 
1270cf37e972SChristoph Hellwig 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
1271cf37e972SChristoph Hellwig 
127283ba7b07SChristoph Hellwig 	bdi_queue_work(sb->s_bdi, &work);
127383ba7b07SChristoph Hellwig 	wait_for_completion(&done);
127483ba7b07SChristoph Hellwig 
1275b6e51316SJens Axboe 	wait_sb_inodes(sb);
1276d8a8559cSJens Axboe }
1277d8a8559cSJens Axboe EXPORT_SYMBOL(sync_inodes_sb);
12781da177e4SLinus Torvalds 
12791da177e4SLinus Torvalds /**
12801da177e4SLinus Torvalds  * write_inode_now	-	write an inode to disk
12811da177e4SLinus Torvalds  * @inode: inode to write to disk
12821da177e4SLinus Torvalds  * @sync: whether the write should be synchronous or not
12831da177e4SLinus Torvalds  *
12847f04c26dSAndrea Arcangeli  * This function commits an inode to disk immediately if it is dirty. This is
12857f04c26dSAndrea Arcangeli  * primarily needed by knfsd.
12867f04c26dSAndrea Arcangeli  *
12877f04c26dSAndrea Arcangeli  * The caller must either have a ref on the inode or must have set I_WILL_FREE.
12881da177e4SLinus Torvalds  */
12891da177e4SLinus Torvalds int write_inode_now(struct inode *inode, int sync)
12901da177e4SLinus Torvalds {
1291f758eeabSChristoph Hellwig 	struct bdi_writeback *wb = &inode_to_bdi(inode)->wb;
12921da177e4SLinus Torvalds 	int ret;
12931da177e4SLinus Torvalds 	struct writeback_control wbc = {
12941da177e4SLinus Torvalds 		.nr_to_write = LONG_MAX,
129518914b18SMike Galbraith 		.sync_mode = sync ? WB_SYNC_ALL : WB_SYNC_NONE,
1296111ebb6eSOGAWA Hirofumi 		.range_start = 0,
1297111ebb6eSOGAWA Hirofumi 		.range_end = LLONG_MAX,
12981da177e4SLinus Torvalds 	};
12991da177e4SLinus Torvalds 
13001da177e4SLinus Torvalds 	if (!mapping_cap_writeback_dirty(inode->i_mapping))
130149364ce2SAndrew Morton 		wbc.nr_to_write = 0;
13021da177e4SLinus Torvalds 
13031da177e4SLinus Torvalds 	might_sleep();
1304f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
13050f1b1fd8SDave Chinner 	spin_lock(&inode->i_lock);
1306f758eeabSChristoph Hellwig 	ret = writeback_single_inode(inode, wb, &wbc);
13070f1b1fd8SDave Chinner 	spin_unlock(&inode->i_lock);
1308f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
13091da177e4SLinus Torvalds 	if (sync)
13101c0eeaf5SJoern Engel 		inode_sync_wait(inode);
13111da177e4SLinus Torvalds 	return ret;
13121da177e4SLinus Torvalds }
13131da177e4SLinus Torvalds EXPORT_SYMBOL(write_inode_now);
13141da177e4SLinus Torvalds 
13151da177e4SLinus Torvalds /**
13161da177e4SLinus Torvalds  * sync_inode - write an inode and its pages to disk.
13171da177e4SLinus Torvalds  * @inode: the inode to sync
13181da177e4SLinus Torvalds  * @wbc: controls the writeback mode
13191da177e4SLinus Torvalds  *
13201da177e4SLinus Torvalds  * sync_inode() will write an inode and its pages to disk.  It will also
13211da177e4SLinus Torvalds  * correctly update the inode on its superblock's dirty inode lists and will
13221da177e4SLinus Torvalds  * update inode->i_state.
13231da177e4SLinus Torvalds  *
13241da177e4SLinus Torvalds  * The caller must have a ref on the inode.
13251da177e4SLinus Torvalds  */
13261da177e4SLinus Torvalds int sync_inode(struct inode *inode, struct writeback_control *wbc)
13271da177e4SLinus Torvalds {
1328f758eeabSChristoph Hellwig 	struct bdi_writeback *wb = &inode_to_bdi(inode)->wb;
13291da177e4SLinus Torvalds 	int ret;
13301da177e4SLinus Torvalds 
1331f758eeabSChristoph Hellwig 	spin_lock(&wb->list_lock);
13320f1b1fd8SDave Chinner 	spin_lock(&inode->i_lock);
1333f758eeabSChristoph Hellwig 	ret = writeback_single_inode(inode, wb, wbc);
13340f1b1fd8SDave Chinner 	spin_unlock(&inode->i_lock);
1335f758eeabSChristoph Hellwig 	spin_unlock(&wb->list_lock);
13361da177e4SLinus Torvalds 	return ret;
13371da177e4SLinus Torvalds }
13381da177e4SLinus Torvalds EXPORT_SYMBOL(sync_inode);
1339c3765016SChristoph Hellwig 
1340c3765016SChristoph Hellwig /**
1341c691b9d9SAndrew Morton  * sync_inode_metadata - write an inode to disk
1342c3765016SChristoph Hellwig  * @inode: the inode to sync
1343c3765016SChristoph Hellwig  * @wait: wait for I/O to complete.
1344c3765016SChristoph Hellwig  *
1345c691b9d9SAndrew Morton  * Write an inode to disk and adjust its dirty state after completion.
1346c3765016SChristoph Hellwig  *
1347c3765016SChristoph Hellwig  * Note: only writes the actual inode, no associated data or other metadata.
1348c3765016SChristoph Hellwig  */
1349c3765016SChristoph Hellwig int sync_inode_metadata(struct inode *inode, int wait)
1350c3765016SChristoph Hellwig {
1351c3765016SChristoph Hellwig 	struct writeback_control wbc = {
1352c3765016SChristoph Hellwig 		.sync_mode = wait ? WB_SYNC_ALL : WB_SYNC_NONE,
1353c3765016SChristoph Hellwig 		.nr_to_write = 0, /* metadata-only */
1354c3765016SChristoph Hellwig 	};
1355c3765016SChristoph Hellwig 
1356c3765016SChristoph Hellwig 	return sync_inode(inode, &wbc);
1357c3765016SChristoph Hellwig }
1358c3765016SChristoph Hellwig EXPORT_SYMBOL(sync_inode_metadata);
1359