xref: /linux/fs/fs-writeback.c (revision 74554251dfc9374ebf1a9dfc54d6745d56bb9265)
1 // SPDX-License-Identifier: GPL-2.0-only
2 /*
3  * fs/fs-writeback.c
4  *
5  * Copyright (C) 2002, Linus Torvalds.
6  *
7  * Contains all the functions related to writing back and waiting
8  * upon dirty inodes against superblocks, and writing back dirty
9  * pages against inodes.  ie: data writeback.  Writeout of the
10  * inode itself is not handled here.
11  *
12  * 10Apr2002	Andrew Morton
13  *		Split out of fs/inode.c
14  *		Additions for address_space-based writeback
15  */
16 
17 #include <linux/sched/sysctl.h>
18 #include <linux/kernel.h>
19 #include <linux/export.h>
20 #include <linux/spinlock.h>
21 #include <linux/slab.h>
22 #include <linux/sched.h>
23 #include <linux/fs.h>
24 #include <linux/mm.h>
25 #include <linux/pagemap.h>
26 #include <linux/kthread.h>
27 #include <linux/writeback.h>
28 #include <linux/blkdev.h>
29 #include <linux/backing-dev.h>
30 #include <linux/tracepoint.h>
31 #include <linux/device.h>
32 #include <linux/memcontrol.h>
33 #include "internal.h"
34 
35 /*
36  * Passed into wb_writeback(), essentially a subset of writeback_control
37  */
38 struct wb_writeback_work {
39 	long nr_pages;
40 	struct super_block *sb;
41 	enum writeback_sync_modes sync_mode;
42 	unsigned int tagged_writepages:1;
43 	unsigned int for_kupdate:1;
44 	unsigned int range_cyclic:1;
45 	unsigned int for_background:1;
46 	unsigned int for_sync:1;	/* sync(2) WB_SYNC_ALL writeback */
47 	unsigned int auto_free:1;	/* free on completion */
48 	enum wb_reason reason;		/* why was writeback initiated? */
49 
50 	struct list_head list;		/* pending work list */
51 	struct wb_completion *done;	/* set if the caller waits */
52 };
53 
54 /*
55  * If an inode is constantly having its pages dirtied, but then the
56  * updates stop dirtytime_expire_interval seconds in the past, it's
57  * possible for the worst case time between when an inode has its
58  * timestamps updated and when they finally get written out to be two
59  * dirtytime_expire_intervals.  We set the default to 12 hours (in
60  * seconds), which means most of the time inodes will have their
61  * timestamps written to disk after 12 hours, but in the worst case a
62  * few inodes might not their timestamps updated for 24 hours.
63  */
64 static unsigned int dirtytime_expire_interval = 12 * 60 * 60;
65 
66 static inline struct inode *wb_inode(struct list_head *head)
67 {
68 	return list_entry(head, struct inode, i_io_list);
69 }
70 
71 /*
72  * Include the creation of the trace points after defining the
73  * wb_writeback_work structure and inline functions so that the definition
74  * remains local to this file.
75  */
76 #define CREATE_TRACE_POINTS
77 #include <trace/events/writeback.h>
78 
79 EXPORT_TRACEPOINT_SYMBOL_GPL(wbc_writepage);
80 
81 static bool wb_io_lists_populated(struct bdi_writeback *wb)
82 {
83 	if (wb_has_dirty_io(wb)) {
84 		return false;
85 	} else {
86 		set_bit(WB_has_dirty_io, &wb->state);
87 		WARN_ON_ONCE(!wb->avg_write_bandwidth);
88 		atomic_long_add(wb->avg_write_bandwidth,
89 				&wb->bdi->tot_write_bandwidth);
90 		return true;
91 	}
92 }
93 
94 static void wb_io_lists_depopulated(struct bdi_writeback *wb)
95 {
96 	if (wb_has_dirty_io(wb) && list_empty(&wb->b_dirty) &&
97 	    list_empty(&wb->b_io) && list_empty(&wb->b_more_io)) {
98 		clear_bit(WB_has_dirty_io, &wb->state);
99 		WARN_ON_ONCE(atomic_long_sub_return(wb->avg_write_bandwidth,
100 					&wb->bdi->tot_write_bandwidth) < 0);
101 	}
102 }
103 
104 /**
105  * inode_io_list_move_locked - move an inode onto a bdi_writeback IO list
106  * @inode: inode to be moved
107  * @wb: target bdi_writeback
108  * @head: one of @wb->b_{dirty|io|more_io|dirty_time}
109  *
110  * Move @inode->i_io_list to @list of @wb and set %WB_has_dirty_io.
111  * Returns %true if @inode is the first occupant of the !dirty_time IO
112  * lists; otherwise, %false.
113  */
114 static bool inode_io_list_move_locked(struct inode *inode,
115 				      struct bdi_writeback *wb,
116 				      struct list_head *head)
117 {
118 	assert_spin_locked(&wb->list_lock);
119 	assert_spin_locked(&inode->i_lock);
120 	WARN_ON_ONCE(inode_state_read(inode) & I_FREEING);
121 
122 	list_move(&inode->i_io_list, head);
123 
124 	/* dirty_time doesn't count as dirty_io until expiration */
125 	if (head != &wb->b_dirty_time)
126 		return wb_io_lists_populated(wb);
127 
128 	wb_io_lists_depopulated(wb);
129 	return false;
130 }
131 
132 static void wb_wakeup(struct bdi_writeback *wb)
133 {
134 	spin_lock_irq(&wb->work_lock);
135 	if (test_bit(WB_registered, &wb->state))
136 		mod_delayed_work(bdi_wq, &wb->dwork, 0);
137 	spin_unlock_irq(&wb->work_lock);
138 }
139 
140 /*
141  * This function is used when the first inode for this wb is marked dirty. It
142  * wakes-up the corresponding bdi thread which should then take care of the
143  * periodic background write-out of dirty inodes. Since the write-out would
144  * starts only 'dirty_writeback_interval' centisecs from now anyway, we just
145  * set up a timer which wakes the bdi thread up later.
146  *
147  * Note, we wouldn't bother setting up the timer, but this function is on the
148  * fast-path (used by '__mark_inode_dirty()'), so we save few context switches
149  * by delaying the wake-up.
150  *
151  * We have to be careful not to postpone flush work if it is scheduled for
152  * earlier. Thus we use queue_delayed_work().
153  */
154 static void wb_wakeup_delayed(struct bdi_writeback *wb)
155 {
156 	unsigned long timeout;
157 
158 	timeout = msecs_to_jiffies(dirty_writeback_interval * 10);
159 	spin_lock_irq(&wb->work_lock);
160 	if (test_bit(WB_registered, &wb->state))
161 		queue_delayed_work(bdi_wq, &wb->dwork, timeout);
162 	spin_unlock_irq(&wb->work_lock);
163 }
164 
165 static void finish_writeback_work(struct wb_writeback_work *work)
166 {
167 	struct wb_completion *done = work->done;
168 
169 	if (work->auto_free)
170 		kfree(work);
171 	if (done) {
172 		wait_queue_head_t *waitq = done->waitq;
173 
174 		/* @done can't be accessed after the following dec */
175 		if (atomic_dec_and_test(&done->cnt))
176 			wake_up_all(waitq);
177 	}
178 }
179 
180 static void wb_queue_work(struct bdi_writeback *wb,
181 			  struct wb_writeback_work *work)
182 {
183 	trace_writeback_queue(wb, work);
184 
185 	if (work->done)
186 		atomic_inc(&work->done->cnt);
187 
188 	spin_lock_irq(&wb->work_lock);
189 
190 	if (test_bit(WB_registered, &wb->state)) {
191 		list_add_tail(&work->list, &wb->work_list);
192 		mod_delayed_work(bdi_wq, &wb->dwork, 0);
193 	} else
194 		finish_writeback_work(work);
195 
196 	spin_unlock_irq(&wb->work_lock);
197 }
198 
199 static bool wb_wait_for_completion_cb(struct wb_completion *done)
200 {
201 	unsigned long waited_secs = (jiffies - done->wait_start) / HZ;
202 
203 	done->progress_stamp = jiffies;
204 	if (waited_secs > sysctl_hung_task_timeout_secs)
205 		pr_info("INFO: The task %s:%d has been waiting for writeback "
206 			"completion for more than %lu seconds.",
207 			current->comm, current->pid, waited_secs);
208 
209 	return !atomic_read(&done->cnt);
210 }
211 
212 /**
213  * wb_wait_for_completion - wait for completion of bdi_writeback_works
214  * @done: target wb_completion
215  *
216  * Wait for one or more work items issued to @bdi with their ->done field
217  * set to @done, which should have been initialized with
218  * DEFINE_WB_COMPLETION().  This function returns after all such work items
219  * are completed.  Work items which are waited upon aren't freed
220  * automatically on completion.
221  */
222 void wb_wait_for_completion(struct wb_completion *done)
223 {
224 	done->wait_start = jiffies;
225 	atomic_dec(&done->cnt);		/* put down the initial count */
226 	wait_event(*done->waitq, wb_wait_for_completion_cb(done));
227 }
228 
229 #ifdef CONFIG_CGROUP_WRITEBACK
230 
231 /*
232  * Parameters for foreign inode detection, see wbc_detach_inode() to see
233  * how they're used.
234  *
235  * These paramters are inherently heuristical as the detection target
236  * itself is fuzzy.  All we want to do is detaching an inode from the
237  * current owner if it's being written to by some other cgroups too much.
238  *
239  * The current cgroup writeback is built on the assumption that multiple
240  * cgroups writing to the same inode concurrently is very rare and a mode
241  * of operation which isn't well supported.  As such, the goal is not
242  * taking too long when a different cgroup takes over an inode while
243  * avoiding too aggressive flip-flops from occasional foreign writes.
244  *
245  * We record, very roughly, 2s worth of IO time history and if more than
246  * half of that is foreign, trigger the switch.  The recording is quantized
247  * to 16 slots.  To avoid tiny writes from swinging the decision too much,
248  * writes smaller than 1/8 of avg size are ignored.
249  */
250 #define WB_FRN_TIME_SHIFT	13	/* 1s = 2^13, upto 8 secs w/ 16bit */
251 #define WB_FRN_TIME_AVG_SHIFT	3	/* avg = avg * 7/8 + new * 1/8 */
252 #define WB_FRN_TIME_CUT_DIV	8	/* ignore rounds < avg / 8 */
253 #define WB_FRN_TIME_PERIOD	(2 * (1 << WB_FRN_TIME_SHIFT))	/* 2s */
254 
255 #define WB_FRN_HIST_SLOTS	16	/* inode->i_wb_frn_history is 16bit */
256 #define WB_FRN_HIST_UNIT	(WB_FRN_TIME_PERIOD / WB_FRN_HIST_SLOTS)
257 					/* each slot's duration is 2s / 16 */
258 #define WB_FRN_HIST_THR_SLOTS	(WB_FRN_HIST_SLOTS / 2)
259 					/* if foreign slots >= 8, switch */
260 #define WB_FRN_HIST_MAX_SLOTS	(WB_FRN_HIST_THR_SLOTS / 2 + 1)
261 					/* one round can affect upto 5 slots */
262 #define WB_FRN_MAX_IN_FLIGHT	1024	/* don't queue too many concurrently */
263 
264 /*
265  * Maximum inodes per isw.  A specific value has been chosen to make
266  * struct inode_switch_wbs_context fit into 1024 bytes kmalloc.
267  */
268 #define WB_MAX_INODES_PER_ISW  ((1024UL - sizeof(struct inode_switch_wbs_context)) \
269                                 / sizeof(struct inode *))
270 
271 static atomic_t isw_nr_in_flight = ATOMIC_INIT(0);
272 static struct workqueue_struct *isw_wq;
273 
274 void __inode_attach_wb(struct inode *inode, struct folio *folio)
275 {
276 	struct backing_dev_info *bdi = inode_to_bdi(inode);
277 	struct bdi_writeback *wb = NULL;
278 
279 	if (inode_cgwb_enabled(inode)) {
280 		struct cgroup_subsys_state *memcg_css;
281 
282 		if (folio) {
283 			memcg_css = mem_cgroup_css_from_folio(folio);
284 			wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC);
285 		} else {
286 			/* must pin memcg_css, see wb_get_create() */
287 			memcg_css = task_get_css(current, memory_cgrp_id);
288 			wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC);
289 			css_put(memcg_css);
290 		}
291 	}
292 
293 	if (!wb)
294 		wb = &bdi->wb;
295 
296 	/*
297 	 * There may be multiple instances of this function racing to
298 	 * update the same inode.  Use cmpxchg() to tell the winner.
299 	 */
300 	if (unlikely(cmpxchg(&inode->i_wb, NULL, wb)))
301 		wb_put(wb);
302 }
303 
304 /**
305  * inode_cgwb_move_to_attached - put the inode onto wb->b_attached list
306  * @inode: inode of interest with i_lock held
307  * @wb: target bdi_writeback
308  *
309  * Remove the inode from wb's io lists and if necessarily put onto b_attached
310  * list.  Only inodes attached to cgwb's are kept on this list.
311  */
312 static void inode_cgwb_move_to_attached(struct inode *inode,
313 					struct bdi_writeback *wb)
314 {
315 	assert_spin_locked(&wb->list_lock);
316 	assert_spin_locked(&inode->i_lock);
317 	WARN_ON_ONCE(inode_state_read(inode) & I_FREEING);
318 
319 	inode_state_clear(inode, I_SYNC_QUEUED);
320 	if (wb != &wb->bdi->wb)
321 		list_move(&inode->i_io_list, &wb->b_attached);
322 	else
323 		list_del_init(&inode->i_io_list);
324 	wb_io_lists_depopulated(wb);
325 }
326 
327 /**
328  * locked_inode_to_wb_and_lock_list - determine a locked inode's wb and lock it
329  * @inode: inode of interest with i_lock held
330  *
331  * Returns @inode's wb with its list_lock held.  @inode->i_lock must be
332  * held on entry and is released on return.  The returned wb is guaranteed
333  * to stay @inode's associated wb until its list_lock is released.
334  */
335 static struct bdi_writeback *
336 locked_inode_to_wb_and_lock_list(struct inode *inode)
337 	__releases(&inode->i_lock)
338 	__acquires(&wb->list_lock)
339 {
340 	while (true) {
341 		struct bdi_writeback *wb = inode_to_wb(inode);
342 
343 		/*
344 		 * inode_to_wb() association is protected by both
345 		 * @inode->i_lock and @wb->list_lock but list_lock nests
346 		 * outside i_lock.  Drop i_lock and verify that the
347 		 * association hasn't changed after acquiring list_lock.
348 		 */
349 		wb_get(wb);
350 		spin_unlock(&inode->i_lock);
351 		spin_lock(&wb->list_lock);
352 
353 		/* i_wb may have changed inbetween, can't use inode_to_wb() */
354 		if (likely(wb == inode->i_wb)) {
355 			wb_put(wb);	/* @inode already has ref */
356 			return wb;
357 		}
358 
359 		spin_unlock(&wb->list_lock);
360 		wb_put(wb);
361 		cpu_relax();
362 		spin_lock(&inode->i_lock);
363 	}
364 }
365 
366 /**
367  * inode_to_wb_and_lock_list - determine an inode's wb and lock it
368  * @inode: inode of interest
369  *
370  * Same as locked_inode_to_wb_and_lock_list() but @inode->i_lock isn't held
371  * on entry.
372  */
373 static struct bdi_writeback *inode_to_wb_and_lock_list(struct inode *inode)
374 	__acquires(&wb->list_lock)
375 {
376 	spin_lock(&inode->i_lock);
377 	return locked_inode_to_wb_and_lock_list(inode);
378 }
379 
380 struct inode_switch_wbs_context {
381 	/* List of queued switching contexts for the wb */
382 	struct llist_node	list;
383 
384 	/*
385 	 * Multiple inodes can be switched at once.  The switching procedure
386 	 * consists of two parts, separated by a RCU grace period.  To make
387 	 * sure that the second part is executed for each inode gone through
388 	 * the first part, all inode pointers are placed into a NULL-terminated
389 	 * array embedded into struct inode_switch_wbs_context.  Otherwise
390 	 * an inode could be left in a non-consistent state.
391 	 */
392 	struct inode		*inodes[];
393 };
394 
395 static void bdi_down_write_wb_switch_rwsem(struct backing_dev_info *bdi)
396 {
397 	down_write(&bdi->wb_switch_rwsem);
398 }
399 
400 static void bdi_up_write_wb_switch_rwsem(struct backing_dev_info *bdi)
401 {
402 	up_write(&bdi->wb_switch_rwsem);
403 }
404 
405 static bool inode_do_switch_wbs(struct inode *inode,
406 				struct bdi_writeback *old_wb,
407 				struct bdi_writeback *new_wb)
408 {
409 	struct address_space *mapping = inode->i_mapping;
410 	XA_STATE(xas, &mapping->i_pages, 0);
411 	struct folio *folio;
412 	bool switched = false;
413 
414 	spin_lock(&inode->i_lock);
415 	xa_lock_irq(&mapping->i_pages);
416 
417 	/*
418 	 * Once I_FREEING or I_WILL_FREE are visible under i_lock, the eviction
419 	 * path owns the inode and we shouldn't modify ->i_io_list.
420 	 */
421 	if (unlikely(inode_state_read(inode) & (I_FREEING | I_WILL_FREE)))
422 		goto skip_switch;
423 
424 	trace_inode_switch_wbs(inode, old_wb, new_wb);
425 
426 	/*
427 	 * Count and transfer stats.  Note that PAGECACHE_TAG_DIRTY points
428 	 * to possibly dirty folios while PAGECACHE_TAG_WRITEBACK points to
429 	 * folios actually under writeback.
430 	 */
431 	xas_for_each_marked(&xas, folio, ULONG_MAX, PAGECACHE_TAG_DIRTY) {
432 		if (folio_test_dirty(folio)) {
433 			long nr = folio_nr_pages(folio);
434 			wb_stat_mod(old_wb, WB_RECLAIMABLE, -nr);
435 			wb_stat_mod(new_wb, WB_RECLAIMABLE, nr);
436 		}
437 	}
438 
439 	xas_set(&xas, 0);
440 	xas_for_each_marked(&xas, folio, ULONG_MAX, PAGECACHE_TAG_WRITEBACK) {
441 		long nr = folio_nr_pages(folio);
442 		WARN_ON_ONCE(!folio_test_writeback(folio));
443 		wb_stat_mod(old_wb, WB_WRITEBACK, -nr);
444 		wb_stat_mod(new_wb, WB_WRITEBACK, nr);
445 	}
446 
447 	if (mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK)) {
448 		atomic_dec(&old_wb->writeback_inodes);
449 		atomic_inc(&new_wb->writeback_inodes);
450 	}
451 
452 	wb_get(new_wb);
453 
454 	/*
455 	 * Transfer to @new_wb's IO list if necessary.  If the @inode is dirty,
456 	 * the specific list @inode was on is ignored and the @inode is put on
457 	 * ->b_dirty which is always correct including from ->b_dirty_time.
458 	 * If the @inode was clean, it means it was on the b_attached list, so
459 	 * move it onto the b_attached list of @new_wb.
460 	 */
461 	if (!list_empty(&inode->i_io_list)) {
462 		inode->i_wb = new_wb;
463 
464 		if (inode_state_read(inode) & I_DIRTY_ALL) {
465 			/*
466 			 * We need to keep b_dirty list sorted by
467 			 * dirtied_time_when. However properly sorting the
468 			 * inode in the list gets too expensive when switching
469 			 * many inodes. So just attach inode at the end of the
470 			 * dirty list and clobber the dirtied_time_when.
471 			 */
472 			inode->dirtied_time_when = jiffies;
473 			inode_io_list_move_locked(inode, new_wb,
474 						  &new_wb->b_dirty);
475 		} else {
476 			inode_cgwb_move_to_attached(inode, new_wb);
477 		}
478 	} else {
479 		inode->i_wb = new_wb;
480 	}
481 
482 	/* ->i_wb_frn updates may race wbc_detach_inode() but doesn't matter */
483 	inode->i_wb_frn_winner = 0;
484 	inode->i_wb_frn_avg_time = 0;
485 	inode->i_wb_frn_history = 0;
486 	switched = true;
487 skip_switch:
488 	/*
489 	 * Paired with an acquire fence in unlocked_inode_to_wb_begin() and
490 	 * ensures that the new wb is visible if they see !I_WB_SWITCH.
491 	 */
492 	smp_wmb();
493 	inode_state_clear(inode, I_WB_SWITCH);
494 
495 	xa_unlock_irq(&mapping->i_pages);
496 	spin_unlock(&inode->i_lock);
497 
498 	return switched;
499 }
500 
501 static void process_inode_switch_wbs(struct bdi_writeback *new_wb,
502 				     struct inode_switch_wbs_context *isw)
503 {
504 	struct backing_dev_info *bdi = inode_to_bdi(isw->inodes[0]);
505 	struct bdi_writeback *old_wb = isw->inodes[0]->i_wb;
506 	unsigned long nr_switched = 0;
507 	struct inode **inodep;
508 
509 	/*
510 	 * If @inode switches cgwb membership while sync_inodes_sb() is
511 	 * being issued, sync_inodes_sb() might miss it.  Synchronize.
512 	 */
513 	down_read(&bdi->wb_switch_rwsem);
514 
515 	inodep = isw->inodes;
516 	/*
517 	 * By the time control reaches here, RCU grace period has passed
518 	 * since I_WB_SWITCH assertion and all wb stat update transactions
519 	 * between unlocked_inode_to_wb_begin/end() are guaranteed to be
520 	 * synchronizing against the i_pages lock.
521 	 *
522 	 * Grabbing old_wb->list_lock, inode->i_lock and the i_pages lock
523 	 * gives us exclusion against all wb related operations on @inode
524 	 * including IO list manipulations and stat updates.
525 	 */
526 relock:
527 	if (old_wb < new_wb) {
528 		spin_lock(&old_wb->list_lock);
529 		spin_lock_nested(&new_wb->list_lock, SINGLE_DEPTH_NESTING);
530 	} else {
531 		spin_lock(&new_wb->list_lock);
532 		spin_lock_nested(&old_wb->list_lock, SINGLE_DEPTH_NESTING);
533 	}
534 
535 	while (*inodep) {
536 		WARN_ON_ONCE((*inodep)->i_wb != old_wb);
537 		if (inode_do_switch_wbs(*inodep, old_wb, new_wb))
538 			nr_switched++;
539 		inodep++;
540 		if (*inodep && need_resched()) {
541 			spin_unlock(&new_wb->list_lock);
542 			spin_unlock(&old_wb->list_lock);
543 			cond_resched();
544 			goto relock;
545 		}
546 	}
547 
548 	spin_unlock(&new_wb->list_lock);
549 	spin_unlock(&old_wb->list_lock);
550 
551 	up_read(&bdi->wb_switch_rwsem);
552 
553 	if (nr_switched) {
554 		wb_wakeup(new_wb);
555 		wb_put_many(old_wb, nr_switched);
556 	}
557 
558 	for (inodep = isw->inodes; *inodep; inodep++)
559 		iput(*inodep);
560 	wb_put(new_wb);
561 	kfree(isw);
562 	atomic_dec(&isw_nr_in_flight);
563 }
564 
565 void inode_switch_wbs_work_fn(struct work_struct *work)
566 {
567 	struct bdi_writeback *new_wb = container_of(work, struct bdi_writeback,
568 						    switch_work);
569 	struct inode_switch_wbs_context *isw, *next_isw;
570 	struct llist_node *list;
571 
572 	/*
573 	 * Grab out reference to wb so that it cannot get freed under us
574 	 * after we process all the isw items.
575 	 */
576 	wb_get(new_wb);
577 	while (1) {
578 		list = llist_del_all(&new_wb->switch_wbs_ctxs);
579 		/* Nothing to do? */
580 		if (!list)
581 			break;
582 		/*
583 		 * In addition to synchronizing among switchers, I_WB_SWITCH
584 		 * tells the RCU protected stat update paths to grab the i_page
585 		 * lock so that stat transfer can synchronize against them.
586 		 * Let's continue after I_WB_SWITCH is guaranteed to be
587 		 * visible.
588 		 */
589 		synchronize_rcu();
590 
591 		llist_for_each_entry_safe(isw, next_isw, list, list)
592 			process_inode_switch_wbs(new_wb, isw);
593 	}
594 	wb_put(new_wb);
595 }
596 
597 static bool inode_prepare_wbs_switch(struct inode *inode,
598 				     struct bdi_writeback *new_wb)
599 {
600 	/*
601 	 * Paired with smp_mb() in cgroup_writeback_umount().
602 	 * isw_nr_in_flight must be increased before checking SB_ACTIVE and
603 	 * grabbing an inode, otherwise isw_nr_in_flight can be observed as 0
604 	 * in cgroup_writeback_umount() and the isw_wq will be not flushed.
605 	 */
606 	smp_mb();
607 
608 	if (IS_DAX(inode))
609 		return false;
610 
611 	/* while holding I_WB_SWITCH, no one else can update the association */
612 	spin_lock(&inode->i_lock);
613 	if (!(inode->i_sb->s_flags & SB_ACTIVE) ||
614 	    inode_state_read(inode) & (I_WB_SWITCH | I_FREEING | I_WILL_FREE) ||
615 	    inode_to_wb(inode) == new_wb) {
616 		spin_unlock(&inode->i_lock);
617 		return false;
618 	}
619 	inode_state_set(inode, I_WB_SWITCH);
620 	__iget(inode);
621 	spin_unlock(&inode->i_lock);
622 
623 	return true;
624 }
625 
626 static void wb_queue_isw(struct bdi_writeback *wb,
627 			 struct inode_switch_wbs_context *isw)
628 {
629 	if (llist_add(&isw->list, &wb->switch_wbs_ctxs))
630 		queue_work(isw_wq, &wb->switch_work);
631 }
632 
633 /**
634  * inode_switch_wbs - change the wb association of an inode
635  * @inode: target inode
636  * @new_wb_id: ID of the new wb
637  *
638  * Switch @inode's wb association to the wb identified by @new_wb_id.  The
639  * switching is performed asynchronously and may fail silently.
640  */
641 static void inode_switch_wbs(struct inode *inode, int new_wb_id)
642 {
643 	struct backing_dev_info *bdi = inode_to_bdi(inode);
644 	struct cgroup_subsys_state *memcg_css;
645 	struct inode_switch_wbs_context *isw;
646 	struct bdi_writeback *new_wb = NULL;
647 
648 	/* noop if seems to be already in progress */
649 	if (inode_state_read_once(inode) & I_WB_SWITCH)
650 		return;
651 
652 	/* avoid queueing a new switch if too many are already in flight */
653 	if (atomic_read(&isw_nr_in_flight) > WB_FRN_MAX_IN_FLIGHT)
654 		return;
655 
656 	isw = kzalloc(struct_size(isw, inodes, 2), GFP_ATOMIC);
657 	if (!isw)
658 		return;
659 
660 	atomic_inc(&isw_nr_in_flight);
661 
662 	/* find and pin the new wb */
663 	rcu_read_lock();
664 	memcg_css = css_from_id(new_wb_id, &memory_cgrp_subsys);
665 	if (memcg_css && !css_tryget(memcg_css))
666 		memcg_css = NULL;
667 	rcu_read_unlock();
668 	if (!memcg_css)
669 		goto out_free;
670 
671 	new_wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC);
672 	css_put(memcg_css);
673 	if (!new_wb)
674 		goto out_free;
675 
676 	if (!inode_prepare_wbs_switch(inode, new_wb))
677 		goto out_free;
678 
679 	isw->inodes[0] = inode;
680 
681 	trace_inode_switch_wbs_queue(inode->i_wb, new_wb, 1);
682 	wb_queue_isw(new_wb, isw);
683 	return;
684 
685 out_free:
686 	atomic_dec(&isw_nr_in_flight);
687 	if (new_wb)
688 		wb_put(new_wb);
689 	kfree(isw);
690 }
691 
692 static bool isw_prepare_wbs_switch(struct bdi_writeback *new_wb,
693 				   struct inode_switch_wbs_context *isw,
694 				   struct list_head *list, int *nr)
695 {
696 	struct inode *inode;
697 
698 	list_for_each_entry(inode, list, i_io_list) {
699 		if (!inode_prepare_wbs_switch(inode, new_wb))
700 			continue;
701 
702 		isw->inodes[*nr] = inode;
703 		(*nr)++;
704 
705 		if (*nr >= WB_MAX_INODES_PER_ISW - 1)
706 			return true;
707 	}
708 	return false;
709 }
710 
711 /**
712  * cleanup_offline_cgwb - detach associated inodes
713  * @wb: target wb
714  *
715  * Switch all inodes attached to @wb to a nearest living ancestor's wb in order
716  * to eventually release the dying @wb.  Returns %true if not all inodes were
717  * switched and the function has to be restarted.
718  */
719 bool cleanup_offline_cgwb(struct bdi_writeback *wb)
720 {
721 	struct cgroup_subsys_state *memcg_css;
722 	struct inode_switch_wbs_context *isw;
723 	struct bdi_writeback *new_wb;
724 	int nr;
725 	bool restart = false;
726 
727 	isw = kzalloc(struct_size(isw, inodes, WB_MAX_INODES_PER_ISW),
728 		      GFP_KERNEL);
729 	if (!isw)
730 		return restart;
731 
732 	atomic_inc(&isw_nr_in_flight);
733 
734 	for (memcg_css = wb->memcg_css->parent; memcg_css;
735 	     memcg_css = memcg_css->parent) {
736 		new_wb = wb_get_create(wb->bdi, memcg_css, GFP_KERNEL);
737 		if (new_wb)
738 			break;
739 	}
740 	if (unlikely(!new_wb))
741 		new_wb = &wb->bdi->wb; /* wb_get() is noop for bdi's wb */
742 
743 	nr = 0;
744 	spin_lock(&wb->list_lock);
745 	/*
746 	 * In addition to the inodes that have completed writeback, also switch
747 	 * cgwbs for those inodes only with dirty timestamps. Otherwise, those
748 	 * inodes won't be written back for a long time when lazytime is
749 	 * enabled, and thus pinning the dying cgwbs. It won't break the
750 	 * bandwidth restrictions, as writeback of inode metadata is not
751 	 * accounted for.
752 	 */
753 	restart = isw_prepare_wbs_switch(new_wb, isw, &wb->b_attached, &nr);
754 	if (!restart)
755 		restart = isw_prepare_wbs_switch(new_wb, isw, &wb->b_dirty_time,
756 						 &nr);
757 	spin_unlock(&wb->list_lock);
758 
759 	/* no attached inodes? bail out */
760 	if (nr == 0) {
761 		atomic_dec(&isw_nr_in_flight);
762 		wb_put(new_wb);
763 		kfree(isw);
764 		return restart;
765 	}
766 
767 	trace_inode_switch_wbs_queue(wb, new_wb, nr);
768 	wb_queue_isw(new_wb, isw);
769 
770 	return restart;
771 }
772 
773 /**
774  * wbc_attach_and_unlock_inode - associate wbc with target inode and unlock it
775  * @wbc: writeback_control of interest
776  * @inode: target inode
777  *
778  * @inode is locked and about to be written back under the control of @wbc.
779  * Record @inode's writeback context into @wbc and unlock the i_lock.  On
780  * writeback completion, wbc_detach_inode() should be called.  This is used
781  * to track the cgroup writeback context.
782  */
783 static void wbc_attach_and_unlock_inode(struct writeback_control *wbc,
784 		struct inode *inode)
785 	__releases(&inode->i_lock)
786 {
787 	if (!inode_cgwb_enabled(inode)) {
788 		spin_unlock(&inode->i_lock);
789 		return;
790 	}
791 
792 	wbc->wb = inode_to_wb(inode);
793 	wbc->inode = inode;
794 
795 	wbc->wb_id = wbc->wb->memcg_css->id;
796 	wbc->wb_lcand_id = inode->i_wb_frn_winner;
797 	wbc->wb_tcand_id = 0;
798 	wbc->wb_bytes = 0;
799 	wbc->wb_lcand_bytes = 0;
800 	wbc->wb_tcand_bytes = 0;
801 
802 	wb_get(wbc->wb);
803 	spin_unlock(&inode->i_lock);
804 
805 	/*
806 	 * A dying wb indicates that either the blkcg associated with the
807 	 * memcg changed or the associated memcg is dying.  In the first
808 	 * case, a replacement wb should already be available and we should
809 	 * refresh the wb immediately.  In the second case, trying to
810 	 * refresh will keep failing.
811 	 */
812 	if (unlikely(wb_dying(wbc->wb) && !css_is_dying(wbc->wb->memcg_css)))
813 		inode_switch_wbs(inode, wbc->wb_id);
814 }
815 
816 /**
817  * wbc_attach_fdatawrite_inode - associate wbc and inode for fdatawrite
818  * @wbc: writeback_control of interest
819  * @inode: target inode
820  *
821  * This function is to be used by filemap_writeback(), which is an alternative
822  * entry point into writeback code, and first ensures @inode is associated with
823  * a bdi_writeback and attaches it to @wbc.
824  */
825 void wbc_attach_fdatawrite_inode(struct writeback_control *wbc,
826 		struct inode *inode)
827 {
828 	spin_lock(&inode->i_lock);
829 	inode_attach_wb(inode, NULL);
830 	wbc_attach_and_unlock_inode(wbc, inode);
831 }
832 EXPORT_SYMBOL_GPL(wbc_attach_fdatawrite_inode);
833 
834 /**
835  * wbc_detach_inode - disassociate wbc from inode and perform foreign detection
836  * @wbc: writeback_control of the just finished writeback
837  *
838  * To be called after a writeback attempt of an inode finishes and undoes
839  * wbc_attach_and_unlock_inode().  Can be called under any context.
840  *
841  * As concurrent write sharing of an inode is expected to be very rare and
842  * memcg only tracks page ownership on first-use basis severely confining
843  * the usefulness of such sharing, cgroup writeback tracks ownership
844  * per-inode.  While the support for concurrent write sharing of an inode
845  * is deemed unnecessary, an inode being written to by different cgroups at
846  * different points in time is a lot more common, and, more importantly,
847  * charging only by first-use can too readily lead to grossly incorrect
848  * behaviors (single foreign page can lead to gigabytes of writeback to be
849  * incorrectly attributed).
850  *
851  * To resolve this issue, cgroup writeback detects the majority dirtier of
852  * an inode and transfers the ownership to it.  To avoid unnecessary
853  * oscillation, the detection mechanism keeps track of history and gives
854  * out the switch verdict only if the foreign usage pattern is stable over
855  * a certain amount of time and/or writeback attempts.
856  *
857  * On each writeback attempt, @wbc tries to detect the majority writer
858  * using Boyer-Moore majority vote algorithm.  In addition to the byte
859  * count from the majority voting, it also counts the bytes written for the
860  * current wb and the last round's winner wb (max of last round's current
861  * wb, the winner from two rounds ago, and the last round's majority
862  * candidate).  Keeping track of the historical winner helps the algorithm
863  * to semi-reliably detect the most active writer even when it's not the
864  * absolute majority.
865  *
866  * Once the winner of the round is determined, whether the winner is
867  * foreign or not and how much IO time the round consumed is recorded in
868  * inode->i_wb_frn_history.  If the amount of recorded foreign IO time is
869  * over a certain threshold, the switch verdict is given.
870  */
871 void wbc_detach_inode(struct writeback_control *wbc)
872 {
873 	struct bdi_writeback *wb = wbc->wb;
874 	struct inode *inode = wbc->inode;
875 	unsigned long avg_time, max_bytes, max_time;
876 	u16 history;
877 	int max_id;
878 
879 	if (!wb)
880 		return;
881 
882 	history = inode->i_wb_frn_history;
883 	avg_time = inode->i_wb_frn_avg_time;
884 
885 	/* pick the winner of this round */
886 	if (wbc->wb_bytes >= wbc->wb_lcand_bytes &&
887 	    wbc->wb_bytes >= wbc->wb_tcand_bytes) {
888 		max_id = wbc->wb_id;
889 		max_bytes = wbc->wb_bytes;
890 	} else if (wbc->wb_lcand_bytes >= wbc->wb_tcand_bytes) {
891 		max_id = wbc->wb_lcand_id;
892 		max_bytes = wbc->wb_lcand_bytes;
893 	} else {
894 		max_id = wbc->wb_tcand_id;
895 		max_bytes = wbc->wb_tcand_bytes;
896 	}
897 
898 	/*
899 	 * Calculate the amount of IO time the winner consumed and fold it
900 	 * into the running average kept per inode.  If the consumed IO
901 	 * time is lower than avag / WB_FRN_TIME_CUT_DIV, ignore it for
902 	 * deciding whether to switch or not.  This is to prevent one-off
903 	 * small dirtiers from skewing the verdict.
904 	 */
905 	max_time = DIV_ROUND_UP((max_bytes >> PAGE_SHIFT) << WB_FRN_TIME_SHIFT,
906 				wb->avg_write_bandwidth);
907 	if (avg_time)
908 		avg_time += (max_time >> WB_FRN_TIME_AVG_SHIFT) -
909 			    (avg_time >> WB_FRN_TIME_AVG_SHIFT);
910 	else
911 		avg_time = max_time;	/* immediate catch up on first run */
912 
913 	if (max_time >= avg_time / WB_FRN_TIME_CUT_DIV) {
914 		int slots;
915 
916 		/*
917 		 * The switch verdict is reached if foreign wb's consume
918 		 * more than a certain proportion of IO time in a
919 		 * WB_FRN_TIME_PERIOD.  This is loosely tracked by 16 slot
920 		 * history mask where each bit represents one sixteenth of
921 		 * the period.  Determine the number of slots to shift into
922 		 * history from @max_time.
923 		 */
924 		slots = min(DIV_ROUND_UP(max_time, WB_FRN_HIST_UNIT),
925 			    (unsigned long)WB_FRN_HIST_MAX_SLOTS);
926 		history <<= slots;
927 		if (wbc->wb_id != max_id)
928 			history |= (1U << slots) - 1;
929 
930 		if (history)
931 			trace_inode_foreign_history(inode, wbc, history);
932 
933 		/*
934 		 * Switch if the current wb isn't the consistent winner.
935 		 * If there are multiple closely competing dirtiers, the
936 		 * inode may switch across them repeatedly over time, which
937 		 * is okay.  The main goal is avoiding keeping an inode on
938 		 * the wrong wb for an extended period of time.
939 		 */
940 		if (hweight16(history) > WB_FRN_HIST_THR_SLOTS)
941 			inode_switch_wbs(inode, max_id);
942 	}
943 
944 	/*
945 	 * Multiple instances of this function may race to update the
946 	 * following fields but we don't mind occassional inaccuracies.
947 	 */
948 	inode->i_wb_frn_winner = max_id;
949 	inode->i_wb_frn_avg_time = min(avg_time, (unsigned long)U16_MAX);
950 	inode->i_wb_frn_history = history;
951 
952 	wb_put(wbc->wb);
953 	wbc->wb = NULL;
954 }
955 EXPORT_SYMBOL_GPL(wbc_detach_inode);
956 
957 /**
958  * wbc_account_cgroup_owner - account writeback to update inode cgroup ownership
959  * @wbc: writeback_control of the writeback in progress
960  * @folio: folio being written out
961  * @bytes: number of bytes being written out
962  *
963  * @bytes from @folio are about to written out during the writeback
964  * controlled by @wbc.  Keep the book for foreign inode detection.  See
965  * wbc_detach_inode().
966  */
967 void wbc_account_cgroup_owner(struct writeback_control *wbc, struct folio *folio,
968 			      size_t bytes)
969 {
970 	struct cgroup_subsys_state *css;
971 	int id;
972 
973 	/*
974 	 * pageout() path doesn't attach @wbc to the inode being written
975 	 * out.  This is intentional as we don't want the function to block
976 	 * behind a slow cgroup.  Ultimately, we want pageout() to kick off
977 	 * regular writeback instead of writing things out itself.
978 	 */
979 	if (!wbc->wb || wbc->no_cgroup_owner)
980 		return;
981 
982 	css = mem_cgroup_css_from_folio(folio);
983 	/* dead cgroups shouldn't contribute to inode ownership arbitration */
984 	if (!(css->flags & CSS_ONLINE))
985 		return;
986 
987 	id = css->id;
988 
989 	if (id == wbc->wb_id) {
990 		wbc->wb_bytes += bytes;
991 		return;
992 	}
993 
994 	if (id == wbc->wb_lcand_id)
995 		wbc->wb_lcand_bytes += bytes;
996 
997 	/* Boyer-Moore majority vote algorithm */
998 	if (!wbc->wb_tcand_bytes)
999 		wbc->wb_tcand_id = id;
1000 	if (id == wbc->wb_tcand_id)
1001 		wbc->wb_tcand_bytes += bytes;
1002 	else
1003 		wbc->wb_tcand_bytes -= min(bytes, wbc->wb_tcand_bytes);
1004 }
1005 EXPORT_SYMBOL_GPL(wbc_account_cgroup_owner);
1006 
1007 /**
1008  * wb_split_bdi_pages - split nr_pages to write according to bandwidth
1009  * @wb: target bdi_writeback to split @nr_pages to
1010  * @nr_pages: number of pages to write for the whole bdi
1011  *
1012  * Split @wb's portion of @nr_pages according to @wb's write bandwidth in
1013  * relation to the total write bandwidth of all wb's w/ dirty inodes on
1014  * @wb->bdi.
1015  */
1016 static long wb_split_bdi_pages(struct bdi_writeback *wb, long nr_pages)
1017 {
1018 	unsigned long this_bw = wb->avg_write_bandwidth;
1019 	unsigned long tot_bw = atomic_long_read(&wb->bdi->tot_write_bandwidth);
1020 
1021 	if (nr_pages == LONG_MAX)
1022 		return LONG_MAX;
1023 
1024 	/*
1025 	 * This may be called on clean wb's and proportional distribution
1026 	 * may not make sense, just use the original @nr_pages in those
1027 	 * cases.  In general, we wanna err on the side of writing more.
1028 	 */
1029 	if (!tot_bw || this_bw >= tot_bw)
1030 		return nr_pages;
1031 	else
1032 		return DIV_ROUND_UP_ULL((u64)nr_pages * this_bw, tot_bw);
1033 }
1034 
1035 /**
1036  * bdi_split_work_to_wbs - split a wb_writeback_work to all wb's of a bdi
1037  * @bdi: target backing_dev_info
1038  * @base_work: wb_writeback_work to issue
1039  * @skip_if_busy: skip wb's which already have writeback in progress
1040  *
1041  * Split and issue @base_work to all wb's (bdi_writeback's) of @bdi which
1042  * have dirty inodes.  If @base_work->nr_page isn't %LONG_MAX, it's
1043  * distributed to the busy wbs according to each wb's proportion in the
1044  * total active write bandwidth of @bdi.
1045  */
1046 static void bdi_split_work_to_wbs(struct backing_dev_info *bdi,
1047 				  struct wb_writeback_work *base_work,
1048 				  bool skip_if_busy)
1049 {
1050 	struct bdi_writeback *last_wb = NULL;
1051 	struct bdi_writeback *wb = list_entry(&bdi->wb_list,
1052 					      struct bdi_writeback, bdi_node);
1053 
1054 	might_sleep();
1055 restart:
1056 	rcu_read_lock();
1057 	list_for_each_entry_continue_rcu(wb, &bdi->wb_list, bdi_node) {
1058 		DEFINE_WB_COMPLETION(fallback_work_done, bdi);
1059 		struct wb_writeback_work fallback_work;
1060 		struct wb_writeback_work *work;
1061 		long nr_pages;
1062 
1063 		if (last_wb) {
1064 			wb_put(last_wb);
1065 			last_wb = NULL;
1066 		}
1067 
1068 		/* SYNC_ALL writes out I_DIRTY_TIME too */
1069 		if (!wb_has_dirty_io(wb) &&
1070 		    (base_work->sync_mode == WB_SYNC_NONE ||
1071 		     list_empty(&wb->b_dirty_time)))
1072 			continue;
1073 		if (skip_if_busy && writeback_in_progress(wb))
1074 			continue;
1075 
1076 		nr_pages = wb_split_bdi_pages(wb, base_work->nr_pages);
1077 
1078 		work = kmalloc(sizeof(*work), GFP_ATOMIC);
1079 		if (work) {
1080 			*work = *base_work;
1081 			work->nr_pages = nr_pages;
1082 			work->auto_free = 1;
1083 			wb_queue_work(wb, work);
1084 			continue;
1085 		}
1086 
1087 		/*
1088 		 * If wb_tryget fails, the wb has been shutdown, skip it.
1089 		 *
1090 		 * Pin @wb so that it stays on @bdi->wb_list.  This allows
1091 		 * continuing iteration from @wb after dropping and
1092 		 * regrabbing rcu read lock.
1093 		 */
1094 		if (!wb_tryget(wb))
1095 			continue;
1096 
1097 		/* alloc failed, execute synchronously using on-stack fallback */
1098 		work = &fallback_work;
1099 		*work = *base_work;
1100 		work->nr_pages = nr_pages;
1101 		work->auto_free = 0;
1102 		work->done = &fallback_work_done;
1103 
1104 		wb_queue_work(wb, work);
1105 		last_wb = wb;
1106 
1107 		rcu_read_unlock();
1108 		wb_wait_for_completion(&fallback_work_done);
1109 		goto restart;
1110 	}
1111 	rcu_read_unlock();
1112 
1113 	if (last_wb)
1114 		wb_put(last_wb);
1115 }
1116 
1117 /**
1118  * cgroup_writeback_by_id - initiate cgroup writeback from bdi and memcg IDs
1119  * @bdi_id: target bdi id
1120  * @memcg_id: target memcg css id
1121  * @reason: reason why some writeback work initiated
1122  * @done: target wb_completion
1123  *
1124  * Initiate flush of the bdi_writeback identified by @bdi_id and @memcg_id
1125  * with the specified parameters.
1126  */
1127 int cgroup_writeback_by_id(u64 bdi_id, int memcg_id,
1128 			   enum wb_reason reason, struct wb_completion *done)
1129 {
1130 	struct backing_dev_info *bdi;
1131 	struct cgroup_subsys_state *memcg_css;
1132 	struct bdi_writeback *wb;
1133 	struct wb_writeback_work *work;
1134 	unsigned long dirty;
1135 	int ret;
1136 
1137 	/* lookup bdi and memcg */
1138 	bdi = bdi_get_by_id(bdi_id);
1139 	if (!bdi)
1140 		return -ENOENT;
1141 
1142 	rcu_read_lock();
1143 	memcg_css = css_from_id(memcg_id, &memory_cgrp_subsys);
1144 	if (memcg_css && !css_tryget(memcg_css))
1145 		memcg_css = NULL;
1146 	rcu_read_unlock();
1147 	if (!memcg_css) {
1148 		ret = -ENOENT;
1149 		goto out_bdi_put;
1150 	}
1151 
1152 	/*
1153 	 * And find the associated wb.  If the wb isn't there already
1154 	 * there's nothing to flush, don't create one.
1155 	 */
1156 	wb = wb_get_lookup(bdi, memcg_css);
1157 	if (!wb) {
1158 		ret = -ENOENT;
1159 		goto out_css_put;
1160 	}
1161 
1162 	/*
1163 	 * The caller is attempting to write out most of
1164 	 * the currently dirty pages.  Let's take the current dirty page
1165 	 * count and inflate it by 25% which should be large enough to
1166 	 * flush out most dirty pages while avoiding getting livelocked by
1167 	 * concurrent dirtiers.
1168 	 *
1169 	 * BTW the memcg stats are flushed periodically and this is best-effort
1170 	 * estimation, so some potential error is ok.
1171 	 */
1172 	dirty = memcg_page_state(mem_cgroup_from_css(memcg_css), NR_FILE_DIRTY);
1173 	dirty = dirty * 10 / 8;
1174 
1175 	/* issue the writeback work */
1176 	work = kzalloc(sizeof(*work), GFP_NOWAIT);
1177 	if (work) {
1178 		work->nr_pages = dirty;
1179 		work->sync_mode = WB_SYNC_NONE;
1180 		work->range_cyclic = 1;
1181 		work->reason = reason;
1182 		work->done = done;
1183 		work->auto_free = 1;
1184 		wb_queue_work(wb, work);
1185 		ret = 0;
1186 	} else {
1187 		ret = -ENOMEM;
1188 	}
1189 
1190 	wb_put(wb);
1191 out_css_put:
1192 	css_put(memcg_css);
1193 out_bdi_put:
1194 	bdi_put(bdi);
1195 	return ret;
1196 }
1197 
1198 /**
1199  * cgroup_writeback_umount - flush inode wb switches for umount
1200  * @sb: target super_block
1201  *
1202  * This function is called when a super_block is about to be destroyed and
1203  * flushes in-flight inode wb switches.  An inode wb switch goes through
1204  * RCU and then workqueue, so the two need to be flushed in order to ensure
1205  * that all previously scheduled switches are finished.  As wb switches are
1206  * rare occurrences and synchronize_rcu() can take a while, perform
1207  * flushing iff wb switches are in flight.
1208  */
1209 void cgroup_writeback_umount(struct super_block *sb)
1210 {
1211 
1212 	if (!(sb->s_bdi->capabilities & BDI_CAP_WRITEBACK))
1213 		return;
1214 
1215 	/*
1216 	 * SB_ACTIVE should be reliably cleared before checking
1217 	 * isw_nr_in_flight, see generic_shutdown_super().
1218 	 */
1219 	smp_mb();
1220 
1221 	if (atomic_read(&isw_nr_in_flight)) {
1222 		/*
1223 		 * Use rcu_barrier() to wait for all pending callbacks to
1224 		 * ensure that all in-flight wb switches are in the workqueue.
1225 		 */
1226 		rcu_barrier();
1227 		flush_workqueue(isw_wq);
1228 	}
1229 }
1230 
1231 static int __init cgroup_writeback_init(void)
1232 {
1233 	isw_wq = alloc_workqueue("inode_switch_wbs", WQ_PERCPU, 0);
1234 	if (!isw_wq)
1235 		return -ENOMEM;
1236 	return 0;
1237 }
1238 fs_initcall(cgroup_writeback_init);
1239 
1240 #else	/* CONFIG_CGROUP_WRITEBACK */
1241 
1242 static void bdi_down_write_wb_switch_rwsem(struct backing_dev_info *bdi) { }
1243 static void bdi_up_write_wb_switch_rwsem(struct backing_dev_info *bdi) { }
1244 
1245 static void inode_cgwb_move_to_attached(struct inode *inode,
1246 					struct bdi_writeback *wb)
1247 {
1248 	assert_spin_locked(&wb->list_lock);
1249 	assert_spin_locked(&inode->i_lock);
1250 	WARN_ON_ONCE(inode_state_read(inode) & I_FREEING);
1251 
1252 	inode_state_clear(inode, I_SYNC_QUEUED);
1253 	list_del_init(&inode->i_io_list);
1254 	wb_io_lists_depopulated(wb);
1255 }
1256 
1257 static struct bdi_writeback *
1258 locked_inode_to_wb_and_lock_list(struct inode *inode)
1259 	__releases(&inode->i_lock)
1260 	__acquires(&wb->list_lock)
1261 {
1262 	struct bdi_writeback *wb = inode_to_wb(inode);
1263 
1264 	spin_unlock(&inode->i_lock);
1265 	spin_lock(&wb->list_lock);
1266 	return wb;
1267 }
1268 
1269 static struct bdi_writeback *inode_to_wb_and_lock_list(struct inode *inode)
1270 	__acquires(&wb->list_lock)
1271 {
1272 	struct bdi_writeback *wb = inode_to_wb(inode);
1273 
1274 	spin_lock(&wb->list_lock);
1275 	return wb;
1276 }
1277 
1278 static long wb_split_bdi_pages(struct bdi_writeback *wb, long nr_pages)
1279 {
1280 	return nr_pages;
1281 }
1282 
1283 static void bdi_split_work_to_wbs(struct backing_dev_info *bdi,
1284 				  struct wb_writeback_work *base_work,
1285 				  bool skip_if_busy)
1286 {
1287 	might_sleep();
1288 
1289 	if (!skip_if_busy || !writeback_in_progress(&bdi->wb)) {
1290 		base_work->auto_free = 0;
1291 		wb_queue_work(&bdi->wb, base_work);
1292 	}
1293 }
1294 
1295 static inline void wbc_attach_and_unlock_inode(struct writeback_control *wbc,
1296 					       struct inode *inode)
1297 	__releases(&inode->i_lock)
1298 {
1299 	spin_unlock(&inode->i_lock);
1300 }
1301 
1302 #endif	/* CONFIG_CGROUP_WRITEBACK */
1303 
1304 /*
1305  * Add in the number of potentially dirty inodes, because each inode
1306  * write can dirty pagecache in the underlying blockdev.
1307  */
1308 static unsigned long get_nr_dirty_pages(void)
1309 {
1310 	return global_node_page_state(NR_FILE_DIRTY) +
1311 		get_nr_dirty_inodes();
1312 }
1313 
1314 static void wb_start_writeback(struct bdi_writeback *wb, enum wb_reason reason)
1315 {
1316 	if (!wb_has_dirty_io(wb))
1317 		return;
1318 
1319 	/*
1320 	 * All callers of this function want to start writeback of all
1321 	 * dirty pages. Places like vmscan can call this at a very
1322 	 * high frequency, causing pointless allocations of tons of
1323 	 * work items and keeping the flusher threads busy retrieving
1324 	 * that work. Ensure that we only allow one of them pending and
1325 	 * inflight at the time.
1326 	 */
1327 	if (test_bit(WB_start_all, &wb->state) ||
1328 	    test_and_set_bit(WB_start_all, &wb->state))
1329 		return;
1330 
1331 	wb->start_all_reason = reason;
1332 	wb_wakeup(wb);
1333 }
1334 
1335 /**
1336  * wb_start_background_writeback - start background writeback
1337  * @wb: bdi_writback to write from
1338  *
1339  * Description:
1340  *   This makes sure WB_SYNC_NONE background writeback happens. When
1341  *   this function returns, it is only guaranteed that for given wb
1342  *   some IO is happening if we are over background dirty threshold.
1343  *   Caller need not hold sb s_umount semaphore.
1344  */
1345 void wb_start_background_writeback(struct bdi_writeback *wb)
1346 {
1347 	/*
1348 	 * We just wake up the flusher thread. It will perform background
1349 	 * writeback as soon as there is no other work to do.
1350 	 */
1351 	trace_writeback_wake_background(wb);
1352 	wb_wakeup(wb);
1353 }
1354 
1355 /*
1356  * Remove the inode from the writeback list it is on.
1357  */
1358 void inode_io_list_del(struct inode *inode)
1359 {
1360 	struct bdi_writeback *wb;
1361 
1362 	/*
1363 	 * FIXME: ext4 can call here from ext4_evict_inode() after evict() already
1364 	 * unlinked the inode.
1365 	 */
1366 	if (list_empty_careful(&inode->i_io_list))
1367 		return;
1368 
1369 	wb = inode_to_wb_and_lock_list(inode);
1370 	spin_lock(&inode->i_lock);
1371 
1372 	inode_state_clear(inode, I_SYNC_QUEUED);
1373 	list_del_init(&inode->i_io_list);
1374 	wb_io_lists_depopulated(wb);
1375 
1376 	spin_unlock(&inode->i_lock);
1377 	spin_unlock(&wb->list_lock);
1378 }
1379 EXPORT_SYMBOL(inode_io_list_del);
1380 
1381 /*
1382  * mark an inode as under writeback on the sb
1383  */
1384 void sb_mark_inode_writeback(struct inode *inode)
1385 {
1386 	struct super_block *sb = inode->i_sb;
1387 	unsigned long flags;
1388 
1389 	if (list_empty(&inode->i_wb_list)) {
1390 		spin_lock_irqsave(&sb->s_inode_wblist_lock, flags);
1391 		if (list_empty(&inode->i_wb_list)) {
1392 			list_add_tail(&inode->i_wb_list, &sb->s_inodes_wb);
1393 			trace_sb_mark_inode_writeback(inode);
1394 		}
1395 		spin_unlock_irqrestore(&sb->s_inode_wblist_lock, flags);
1396 	}
1397 }
1398 
1399 /*
1400  * clear an inode as under writeback on the sb
1401  */
1402 void sb_clear_inode_writeback(struct inode *inode)
1403 {
1404 	struct super_block *sb = inode->i_sb;
1405 	unsigned long flags;
1406 
1407 	if (!list_empty(&inode->i_wb_list)) {
1408 		spin_lock_irqsave(&sb->s_inode_wblist_lock, flags);
1409 		if (!list_empty(&inode->i_wb_list)) {
1410 			list_del_init(&inode->i_wb_list);
1411 			trace_sb_clear_inode_writeback(inode);
1412 		}
1413 		spin_unlock_irqrestore(&sb->s_inode_wblist_lock, flags);
1414 	}
1415 }
1416 
1417 /*
1418  * Redirty an inode: set its when-it-was dirtied timestamp and move it to the
1419  * furthest end of its superblock's dirty-inode list.
1420  *
1421  * Before stamping the inode's ->dirtied_when, we check to see whether it is
1422  * already the most-recently-dirtied inode on the b_dirty list.  If that is
1423  * the case then the inode must have been redirtied while it was being written
1424  * out and we don't reset its dirtied_when.
1425  */
1426 static void redirty_tail_locked(struct inode *inode, struct bdi_writeback *wb)
1427 {
1428 	assert_spin_locked(&inode->i_lock);
1429 
1430 	inode_state_clear(inode, I_SYNC_QUEUED);
1431 	/*
1432 	 * When the inode is being freed just don't bother with dirty list
1433 	 * tracking. Flush worker will ignore this inode anyway and it will
1434 	 * trigger assertions in inode_io_list_move_locked().
1435 	 */
1436 	if (inode_state_read(inode) & I_FREEING) {
1437 		list_del_init(&inode->i_io_list);
1438 		wb_io_lists_depopulated(wb);
1439 		return;
1440 	}
1441 	if (!list_empty(&wb->b_dirty)) {
1442 		struct inode *tail;
1443 
1444 		tail = wb_inode(wb->b_dirty.next);
1445 		if (time_before(inode->dirtied_when, tail->dirtied_when))
1446 			inode->dirtied_when = jiffies;
1447 	}
1448 	inode_io_list_move_locked(inode, wb, &wb->b_dirty);
1449 }
1450 
1451 static void redirty_tail(struct inode *inode, struct bdi_writeback *wb)
1452 {
1453 	spin_lock(&inode->i_lock);
1454 	redirty_tail_locked(inode, wb);
1455 	spin_unlock(&inode->i_lock);
1456 }
1457 
1458 /*
1459  * requeue inode for re-scanning after bdi->b_io list is exhausted.
1460  */
1461 static void requeue_io(struct inode *inode, struct bdi_writeback *wb)
1462 {
1463 	inode_io_list_move_locked(inode, wb, &wb->b_more_io);
1464 }
1465 
1466 static void inode_sync_complete(struct inode *inode)
1467 {
1468 	assert_spin_locked(&inode->i_lock);
1469 
1470 	inode_state_clear(inode, I_SYNC);
1471 	/* If inode is clean an unused, put it into LRU now... */
1472 	inode_lru_list_add(inode);
1473 	/* Called with inode->i_lock which ensures memory ordering. */
1474 	inode_wake_up_bit(inode, __I_SYNC);
1475 }
1476 
1477 static bool inode_dirtied_after(struct inode *inode, unsigned long t)
1478 {
1479 	bool ret = time_after(inode->dirtied_when, t);
1480 #ifndef CONFIG_64BIT
1481 	/*
1482 	 * For inodes being constantly redirtied, dirtied_when can get stuck.
1483 	 * It _appears_ to be in the future, but is actually in distant past.
1484 	 * This test is necessary to prevent such wrapped-around relative times
1485 	 * from permanently stopping the whole bdi writeback.
1486 	 */
1487 	ret = ret && time_before_eq(inode->dirtied_when, jiffies);
1488 #endif
1489 	return ret;
1490 }
1491 
1492 /*
1493  * Move expired (dirtied before dirtied_before) dirty inodes from
1494  * @delaying_queue to @dispatch_queue.
1495  */
1496 static int move_expired_inodes(struct list_head *delaying_queue,
1497 			       struct list_head *dispatch_queue,
1498 			       unsigned long dirtied_before)
1499 {
1500 	LIST_HEAD(tmp);
1501 	struct list_head *pos, *node;
1502 	struct super_block *sb = NULL;
1503 	struct inode *inode;
1504 	int do_sb_sort = 0;
1505 	int moved = 0;
1506 
1507 	while (!list_empty(delaying_queue)) {
1508 		inode = wb_inode(delaying_queue->prev);
1509 		if (inode_dirtied_after(inode, dirtied_before))
1510 			break;
1511 		spin_lock(&inode->i_lock);
1512 		list_move(&inode->i_io_list, &tmp);
1513 		moved++;
1514 		inode_state_set(inode, I_SYNC_QUEUED);
1515 		spin_unlock(&inode->i_lock);
1516 		if (sb_is_blkdev_sb(inode->i_sb))
1517 			continue;
1518 		if (sb && sb != inode->i_sb)
1519 			do_sb_sort = 1;
1520 		sb = inode->i_sb;
1521 	}
1522 
1523 	/* just one sb in list, splice to dispatch_queue and we're done */
1524 	if (!do_sb_sort) {
1525 		list_splice(&tmp, dispatch_queue);
1526 		goto out;
1527 	}
1528 
1529 	/*
1530 	 * Although inode's i_io_list is moved from 'tmp' to 'dispatch_queue',
1531 	 * we don't take inode->i_lock here because it is just a pointless overhead.
1532 	 * Inode is already marked as I_SYNC_QUEUED so writeback list handling is
1533 	 * fully under our control.
1534 	 */
1535 	while (!list_empty(&tmp)) {
1536 		sb = wb_inode(tmp.prev)->i_sb;
1537 		list_for_each_prev_safe(pos, node, &tmp) {
1538 			inode = wb_inode(pos);
1539 			if (inode->i_sb == sb)
1540 				list_move(&inode->i_io_list, dispatch_queue);
1541 		}
1542 	}
1543 out:
1544 	return moved;
1545 }
1546 
1547 /*
1548  * Queue all expired dirty inodes for io, eldest first.
1549  * Before
1550  *         newly dirtied     b_dirty    b_io    b_more_io
1551  *         =============>    gf         edc     BA
1552  * After
1553  *         newly dirtied     b_dirty    b_io    b_more_io
1554  *         =============>    g          fBAedc
1555  *                                           |
1556  *                                           +--> dequeue for IO
1557  */
1558 static void queue_io(struct bdi_writeback *wb, struct wb_writeback_work *work,
1559 		     unsigned long dirtied_before)
1560 {
1561 	int moved;
1562 	unsigned long time_expire_jif = dirtied_before;
1563 
1564 	assert_spin_locked(&wb->list_lock);
1565 	list_splice_init(&wb->b_more_io, &wb->b_io);
1566 	moved = move_expired_inodes(&wb->b_dirty, &wb->b_io, dirtied_before);
1567 	if (!work->for_sync)
1568 		time_expire_jif = jiffies - dirtytime_expire_interval * HZ;
1569 	moved += move_expired_inodes(&wb->b_dirty_time, &wb->b_io,
1570 				     time_expire_jif);
1571 	if (moved)
1572 		wb_io_lists_populated(wb);
1573 	trace_writeback_queue_io(wb, work, dirtied_before, moved);
1574 }
1575 
1576 static int write_inode(struct inode *inode, struct writeback_control *wbc)
1577 {
1578 	int ret;
1579 
1580 	if (inode->i_sb->s_op->write_inode && !is_bad_inode(inode)) {
1581 		trace_writeback_write_inode_start(inode, wbc);
1582 		ret = inode->i_sb->s_op->write_inode(inode, wbc);
1583 		trace_writeback_write_inode(inode, wbc);
1584 		return ret;
1585 	}
1586 	return 0;
1587 }
1588 
1589 /*
1590  * Wait for writeback on an inode to complete. Called with i_lock held.
1591  * Caller must make sure inode cannot go away when we drop i_lock.
1592  */
1593 void inode_wait_for_writeback(struct inode *inode)
1594 {
1595 	struct wait_bit_queue_entry wqe;
1596 	struct wait_queue_head *wq_head;
1597 
1598 	assert_spin_locked(&inode->i_lock);
1599 
1600 	if (!(inode_state_read(inode) & I_SYNC))
1601 		return;
1602 
1603 	wq_head = inode_bit_waitqueue(&wqe, inode, __I_SYNC);
1604 	for (;;) {
1605 		prepare_to_wait_event(wq_head, &wqe.wq_entry, TASK_UNINTERRUPTIBLE);
1606 		/* Checking I_SYNC with inode->i_lock guarantees memory ordering. */
1607 		if (!(inode_state_read(inode) & I_SYNC))
1608 			break;
1609 		spin_unlock(&inode->i_lock);
1610 		schedule();
1611 		spin_lock(&inode->i_lock);
1612 	}
1613 	finish_wait(wq_head, &wqe.wq_entry);
1614 }
1615 
1616 /*
1617  * Sleep until I_SYNC is cleared. This function must be called with i_lock
1618  * held and drops it. It is aimed for callers not holding any inode reference
1619  * so once i_lock is dropped, inode can go away.
1620  */
1621 static void inode_sleep_on_writeback(struct inode *inode)
1622 	__releases(inode->i_lock)
1623 {
1624 	struct wait_bit_queue_entry wqe;
1625 	struct wait_queue_head *wq_head;
1626 	bool sleep;
1627 
1628 	assert_spin_locked(&inode->i_lock);
1629 
1630 	wq_head = inode_bit_waitqueue(&wqe, inode, __I_SYNC);
1631 	prepare_to_wait_event(wq_head, &wqe.wq_entry, TASK_UNINTERRUPTIBLE);
1632 	/* Checking I_SYNC with inode->i_lock guarantees memory ordering. */
1633 	sleep = !!(inode_state_read(inode) & I_SYNC);
1634 	spin_unlock(&inode->i_lock);
1635 	if (sleep)
1636 		schedule();
1637 	finish_wait(wq_head, &wqe.wq_entry);
1638 }
1639 
1640 /*
1641  * Find proper writeback list for the inode depending on its current state and
1642  * possibly also change of its state while we were doing writeback.  Here we
1643  * handle things such as livelock prevention or fairness of writeback among
1644  * inodes. This function can be called only by flusher thread - noone else
1645  * processes all inodes in writeback lists and requeueing inodes behind flusher
1646  * thread's back can have unexpected consequences.
1647  */
1648 static void requeue_inode(struct inode *inode, struct bdi_writeback *wb,
1649 			  struct writeback_control *wbc,
1650 			  unsigned long dirtied_before)
1651 {
1652 	if (inode_state_read(inode) & I_FREEING)
1653 		return;
1654 
1655 	/*
1656 	 * Sync livelock prevention. Each inode is tagged and synced in one
1657 	 * shot. If still dirty, it will be redirty_tail()'ed below.  Update
1658 	 * the dirty time to prevent enqueue and sync it again.
1659 	 */
1660 	if ((inode_state_read(inode) & I_DIRTY) &&
1661 	    (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages))
1662 		inode->dirtied_when = jiffies;
1663 
1664 	if (wbc->pages_skipped) {
1665 		/*
1666 		 * Writeback is not making progress due to locked buffers.
1667 		 * Skip this inode for now. Although having skipped pages
1668 		 * is odd for clean inodes, it can happen for some
1669 		 * filesystems so handle that gracefully.
1670 		 */
1671 		if (inode_state_read(inode) & I_DIRTY_ALL)
1672 			redirty_tail_locked(inode, wb);
1673 		else
1674 			inode_cgwb_move_to_attached(inode, wb);
1675 		return;
1676 	}
1677 
1678 	if (mapping_tagged(inode->i_mapping, PAGECACHE_TAG_DIRTY)) {
1679 		/*
1680 		 * We didn't write back all the pages.  nfs_writepages()
1681 		 * sometimes bales out without doing anything.
1682 		 */
1683 		if (wbc->nr_to_write <= 0 &&
1684 		    !inode_dirtied_after(inode, dirtied_before)) {
1685 			/* Slice used up. Queue for next turn. */
1686 			requeue_io(inode, wb);
1687 		} else {
1688 			/*
1689 			 * Writeback blocked by something other than
1690 			 * congestion. Delay the inode for some time to
1691 			 * avoid spinning on the CPU (100% iowait)
1692 			 * retrying writeback of the dirty page/inode
1693 			 * that cannot be performed immediately.
1694 			 */
1695 			redirty_tail_locked(inode, wb);
1696 		}
1697 	} else if (inode_state_read(inode) & I_DIRTY) {
1698 		/*
1699 		 * Filesystems can dirty the inode during writeback operations,
1700 		 * such as delayed allocation during submission or metadata
1701 		 * updates after data IO completion.
1702 		 */
1703 		redirty_tail_locked(inode, wb);
1704 	} else if (inode_state_read(inode) & I_DIRTY_TIME) {
1705 		inode->dirtied_when = jiffies;
1706 		inode_io_list_move_locked(inode, wb, &wb->b_dirty_time);
1707 		inode_state_clear(inode, I_SYNC_QUEUED);
1708 	} else {
1709 		/* The inode is clean. Remove from writeback lists. */
1710 		inode_cgwb_move_to_attached(inode, wb);
1711 	}
1712 }
1713 
1714 bool sync_lazytime(struct inode *inode)
1715 {
1716 	if (!(inode_state_read_once(inode) & I_DIRTY_TIME))
1717 		return false;
1718 
1719 	trace_writeback_lazytime(inode);
1720 	if (inode->i_op->sync_lazytime)
1721 		inode->i_op->sync_lazytime(inode);
1722 	else
1723 		mark_inode_dirty_sync(inode);
1724 	return true;
1725 }
1726 
1727 /*
1728  * Write out an inode and its dirty pages (or some of its dirty pages, depending
1729  * on @wbc->nr_to_write), and clear the relevant dirty flags from i_state.
1730  *
1731  * This doesn't remove the inode from the writeback list it is on, except
1732  * potentially to move it from b_dirty_time to b_dirty due to timestamp
1733  * expiration.  The caller is otherwise responsible for writeback list handling.
1734  *
1735  * The caller is also responsible for setting the I_SYNC flag beforehand and
1736  * calling inode_sync_complete() to clear it afterwards.
1737  */
1738 static int
1739 __writeback_single_inode(struct inode *inode, struct writeback_control *wbc)
1740 {
1741 	struct address_space *mapping = inode->i_mapping;
1742 	long nr_to_write = wbc->nr_to_write;
1743 	unsigned dirty;
1744 	int ret;
1745 
1746 	WARN_ON(!(inode_state_read_once(inode) & I_SYNC));
1747 
1748 	trace_writeback_single_inode_start(inode, wbc, nr_to_write);
1749 
1750 	ret = do_writepages(mapping, wbc);
1751 
1752 	/*
1753 	 * Make sure to wait on the data before writing out the metadata.
1754 	 * This is important for filesystems that modify metadata on data
1755 	 * I/O completion. We don't do it for sync(2) writeback because it has a
1756 	 * separate, external IO completion path and ->sync_fs for guaranteeing
1757 	 * inode metadata is written back correctly.
1758 	 */
1759 	if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) {
1760 		int err = filemap_fdatawait(mapping);
1761 		if (ret == 0)
1762 			ret = err;
1763 	}
1764 
1765 	/*
1766 	 * For data integrity writeback, or when the dirty interval expired,
1767 	 * ask the file system to propagata lazy timestamp updates into real
1768 	 * dirty state.
1769 	 */
1770 	if ((inode_state_read_once(inode) & I_DIRTY_TIME) &&
1771 	    (wbc->sync_mode == WB_SYNC_ALL ||
1772 	     time_after(jiffies, inode->dirtied_time_when +
1773 			dirtytime_expire_interval * HZ)))
1774 		sync_lazytime(inode);
1775 
1776 	/*
1777 	 * Get and clear the dirty flags from i_state.  This needs to be done
1778 	 * after calling writepages because some filesystems may redirty the
1779 	 * inode during writepages due to delalloc.  It also needs to be done
1780 	 * after handling timestamp expiration, as that may dirty the inode too.
1781 	 */
1782 	spin_lock(&inode->i_lock);
1783 	dirty = inode_state_read(inode) & I_DIRTY;
1784 	inode_state_clear(inode, dirty);
1785 
1786 	/*
1787 	 * Paired with smp_mb() in __mark_inode_dirty().  This allows
1788 	 * __mark_inode_dirty() to test i_state without grabbing i_lock -
1789 	 * either they see the I_DIRTY bits cleared or we see the dirtied
1790 	 * inode.
1791 	 *
1792 	 * I_DIRTY_PAGES is always cleared together above even if @mapping
1793 	 * still has dirty pages.  The flag is reinstated after smp_mb() if
1794 	 * necessary.  This guarantees that either __mark_inode_dirty()
1795 	 * sees clear I_DIRTY_PAGES or we see PAGECACHE_TAG_DIRTY.
1796 	 */
1797 	smp_mb();
1798 
1799 	if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY))
1800 		inode_state_set(inode, I_DIRTY_PAGES);
1801 	else if (unlikely(inode_state_read(inode) & I_PINNING_NETFS_WB)) {
1802 		if (!(inode_state_read(inode) & I_DIRTY_PAGES)) {
1803 			inode_state_clear(inode, I_PINNING_NETFS_WB);
1804 			wbc->unpinned_netfs_wb = true;
1805 			dirty |= I_PINNING_NETFS_WB; /* Cause write_inode */
1806 		}
1807 	}
1808 
1809 	spin_unlock(&inode->i_lock);
1810 
1811 	/* Don't write the inode if only I_DIRTY_PAGES was set */
1812 	if (dirty & ~I_DIRTY_PAGES) {
1813 		int err = write_inode(inode, wbc);
1814 		if (ret == 0)
1815 			ret = err;
1816 	}
1817 	wbc->unpinned_netfs_wb = false;
1818 	trace_writeback_single_inode(inode, wbc, nr_to_write);
1819 	return ret;
1820 }
1821 
1822 /*
1823  * Write out an inode's dirty data and metadata on-demand, i.e. separately from
1824  * the regular batched writeback done by the flusher threads in
1825  * writeback_sb_inodes().  @wbc controls various aspects of the write, such as
1826  * whether it is a data-integrity sync (%WB_SYNC_ALL) or not (%WB_SYNC_NONE).
1827  *
1828  * To prevent the inode from going away, either the caller must have a reference
1829  * to the inode, or the inode must have I_WILL_FREE or I_FREEING set.
1830  */
1831 static int writeback_single_inode(struct inode *inode,
1832 				  struct writeback_control *wbc)
1833 {
1834 	struct bdi_writeback *wb;
1835 	int ret = 0;
1836 
1837 	spin_lock(&inode->i_lock);
1838 	if (!icount_read(inode))
1839 		WARN_ON(!(inode_state_read(inode) & (I_WILL_FREE | I_FREEING)));
1840 	else
1841 		WARN_ON(inode_state_read(inode) & I_WILL_FREE);
1842 
1843 	if (inode_state_read(inode) & I_SYNC) {
1844 		/*
1845 		 * Writeback is already running on the inode.  For WB_SYNC_NONE,
1846 		 * that's enough and we can just return.  For WB_SYNC_ALL, we
1847 		 * must wait for the existing writeback to complete, then do
1848 		 * writeback again if there's anything left.
1849 		 */
1850 		if (wbc->sync_mode != WB_SYNC_ALL)
1851 			goto out;
1852 		inode_wait_for_writeback(inode);
1853 	}
1854 	WARN_ON(inode_state_read(inode) & I_SYNC);
1855 	/*
1856 	 * If the inode is already fully clean, then there's nothing to do.
1857 	 *
1858 	 * For data-integrity syncs we also need to check whether any pages are
1859 	 * still under writeback, e.g. due to prior WB_SYNC_NONE writeback.  If
1860 	 * there are any such pages, we'll need to wait for them.
1861 	 */
1862 	if (!(inode_state_read(inode) & I_DIRTY_ALL) &&
1863 	    (wbc->sync_mode != WB_SYNC_ALL ||
1864 	     !mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK)))
1865 		goto out;
1866 	inode_state_set(inode, I_SYNC);
1867 	wbc_attach_and_unlock_inode(wbc, inode);
1868 
1869 	ret = __writeback_single_inode(inode, wbc);
1870 
1871 	wbc_detach_inode(wbc);
1872 
1873 	wb = inode_to_wb_and_lock_list(inode);
1874 	spin_lock(&inode->i_lock);
1875 	/*
1876 	 * If the inode is freeing, its i_io_list shoudn't be updated
1877 	 * as it can be finally deleted at this moment.
1878 	 */
1879 	if (!(inode_state_read(inode) & I_FREEING)) {
1880 		/*
1881 		 * If the inode is now fully clean, then it can be safely
1882 		 * removed from its writeback list (if any). Otherwise the
1883 		 * flusher threads are responsible for the writeback lists.
1884 		 */
1885 		if (!(inode_state_read(inode) & I_DIRTY_ALL))
1886 			inode_cgwb_move_to_attached(inode, wb);
1887 		else if (!(inode_state_read(inode) & I_SYNC_QUEUED)) {
1888 			if ((inode_state_read(inode) & I_DIRTY))
1889 				redirty_tail_locked(inode, wb);
1890 			else if (inode_state_read(inode) & I_DIRTY_TIME) {
1891 				inode->dirtied_when = jiffies;
1892 				inode_io_list_move_locked(inode,
1893 							  wb,
1894 							  &wb->b_dirty_time);
1895 			}
1896 		}
1897 	}
1898 
1899 	spin_unlock(&wb->list_lock);
1900 	inode_sync_complete(inode);
1901 out:
1902 	spin_unlock(&inode->i_lock);
1903 	return ret;
1904 }
1905 
1906 static long writeback_chunk_size(struct super_block *sb,
1907 		struct bdi_writeback *wb, struct wb_writeback_work *work)
1908 {
1909 	long pages;
1910 
1911 	/*
1912 	 * WB_SYNC_ALL mode does livelock avoidance by syncing dirty
1913 	 * inodes/pages in one big loop. Setting wbc.nr_to_write=LONG_MAX
1914 	 * here avoids calling into writeback_inodes_wb() more than once.
1915 	 *
1916 	 * The intended call sequence for WB_SYNC_ALL writeback is:
1917 	 *
1918 	 *      wb_writeback()
1919 	 *          writeback_sb_inodes()       <== called only once
1920 	 *              write_cache_pages()     <== called once for each inode
1921 	 *                   (quickly) tag currently dirty pages
1922 	 *                   (maybe slowly) sync all tagged pages
1923 	 */
1924 	if (work->sync_mode == WB_SYNC_ALL || work->tagged_writepages)
1925 		return LONG_MAX;
1926 
1927 	pages = min(wb->avg_write_bandwidth / 2,
1928 		    global_wb_domain.dirty_limit / DIRTY_SCOPE);
1929 	pages = min(pages, work->nr_pages);
1930 	return round_down(pages + sb->s_min_writeback_pages,
1931 			sb->s_min_writeback_pages);
1932 }
1933 
1934 /*
1935  * Write a portion of b_io inodes which belong to @sb.
1936  *
1937  * Return the number of pages and/or inodes written.
1938  *
1939  * NOTE! This is called with wb->list_lock held, and will
1940  * unlock and relock that for each inode it ends up doing
1941  * IO for.
1942  */
1943 static long writeback_sb_inodes(struct super_block *sb,
1944 				struct bdi_writeback *wb,
1945 				struct wb_writeback_work *work)
1946 {
1947 	struct writeback_control wbc = {
1948 		.sync_mode		= work->sync_mode,
1949 		.tagged_writepages	= work->tagged_writepages,
1950 		.for_kupdate		= work->for_kupdate,
1951 		.for_background		= work->for_background,
1952 		.for_sync		= work->for_sync,
1953 		.range_cyclic		= work->range_cyclic,
1954 		.range_start		= 0,
1955 		.range_end		= LLONG_MAX,
1956 	};
1957 	unsigned long start_time = jiffies;
1958 	long write_chunk;
1959 	long total_wrote = 0;  /* count both pages and inodes */
1960 	unsigned long dirtied_before = jiffies;
1961 
1962 	if (work->for_kupdate)
1963 		dirtied_before = jiffies -
1964 			msecs_to_jiffies(dirty_expire_interval * 10);
1965 
1966 	while (!list_empty(&wb->b_io)) {
1967 		struct inode *inode = wb_inode(wb->b_io.prev);
1968 		struct bdi_writeback *tmp_wb;
1969 		long wrote;
1970 
1971 		if (inode->i_sb != sb) {
1972 			if (work->sb) {
1973 				/*
1974 				 * We only want to write back data for this
1975 				 * superblock, move all inodes not belonging
1976 				 * to it back onto the dirty list.
1977 				 */
1978 				redirty_tail(inode, wb);
1979 				continue;
1980 			}
1981 
1982 			/*
1983 			 * The inode belongs to a different superblock.
1984 			 * Bounce back to the caller to unpin this and
1985 			 * pin the next superblock.
1986 			 */
1987 			break;
1988 		}
1989 
1990 		/*
1991 		 * Don't bother with new inodes or inodes being freed, first
1992 		 * kind does not need periodic writeout yet, and for the latter
1993 		 * kind writeout is handled by the freer.
1994 		 */
1995 		spin_lock(&inode->i_lock);
1996 		if (inode_state_read(inode) & (I_NEW | I_FREEING | I_WILL_FREE)) {
1997 			redirty_tail_locked(inode, wb);
1998 			spin_unlock(&inode->i_lock);
1999 			continue;
2000 		}
2001 		if ((inode_state_read(inode) & I_SYNC) && wbc.sync_mode != WB_SYNC_ALL) {
2002 			/*
2003 			 * If this inode is locked for writeback and we are not
2004 			 * doing writeback-for-data-integrity, move it to
2005 			 * b_more_io so that writeback can proceed with the
2006 			 * other inodes on s_io.
2007 			 *
2008 			 * We'll have another go at writing back this inode
2009 			 * when we completed a full scan of b_io.
2010 			 */
2011 			requeue_io(inode, wb);
2012 			spin_unlock(&inode->i_lock);
2013 			trace_writeback_sb_inodes_requeue(inode);
2014 			continue;
2015 		}
2016 		spin_unlock(&wb->list_lock);
2017 
2018 		/*
2019 		 * We already requeued the inode if it had I_SYNC set and we
2020 		 * are doing WB_SYNC_NONE writeback. So this catches only the
2021 		 * WB_SYNC_ALL case.
2022 		 */
2023 		if (inode_state_read(inode) & I_SYNC) {
2024 			/* Wait for I_SYNC. This function drops i_lock... */
2025 			inode_sleep_on_writeback(inode);
2026 			/* Inode may be gone, start again */
2027 			spin_lock(&wb->list_lock);
2028 			continue;
2029 		}
2030 		inode_state_set(inode, I_SYNC);
2031 		wbc_attach_and_unlock_inode(&wbc, inode);
2032 
2033 		write_chunk = writeback_chunk_size(inode->i_sb, wb, work);
2034 		wbc.nr_to_write = write_chunk;
2035 		wbc.pages_skipped = 0;
2036 
2037 		/*
2038 		 * We use I_SYNC to pin the inode in memory. While it is set
2039 		 * evict_inode() will wait so the inode cannot be freed.
2040 		 */
2041 		__writeback_single_inode(inode, &wbc);
2042 
2043 		/* Report progress to inform the hung task detector of the progress. */
2044 		if (work->done && work->done->progress_stamp &&
2045 		   (jiffies - work->done->progress_stamp) > HZ *
2046 		   sysctl_hung_task_timeout_secs / 2)
2047 			wake_up_all(work->done->waitq);
2048 
2049 		wbc_detach_inode(&wbc);
2050 		work->nr_pages -= write_chunk - wbc.nr_to_write;
2051 		wrote = write_chunk - wbc.nr_to_write - wbc.pages_skipped;
2052 		wrote = wrote < 0 ? 0 : wrote;
2053 		total_wrote += wrote;
2054 
2055 		if (need_resched()) {
2056 			/*
2057 			 * We're trying to balance between building up a nice
2058 			 * long list of IOs to improve our merge rate, and
2059 			 * getting those IOs out quickly for anyone throttling
2060 			 * in balance_dirty_pages().  cond_resched() doesn't
2061 			 * unplug, so get our IOs out the door before we
2062 			 * give up the CPU.
2063 			 */
2064 			blk_flush_plug(current->plug, false);
2065 			cond_resched();
2066 		}
2067 
2068 		/*
2069 		 * Requeue @inode if still dirty.  Be careful as @inode may
2070 		 * have been switched to another wb in the meantime.
2071 		 */
2072 		tmp_wb = inode_to_wb_and_lock_list(inode);
2073 		spin_lock(&inode->i_lock);
2074 		if (!(inode_state_read(inode) & I_DIRTY_ALL))
2075 			total_wrote++;
2076 		requeue_inode(inode, tmp_wb, &wbc, dirtied_before);
2077 		inode_sync_complete(inode);
2078 		spin_unlock(&inode->i_lock);
2079 
2080 		if (unlikely(tmp_wb != wb)) {
2081 			spin_unlock(&tmp_wb->list_lock);
2082 			spin_lock(&wb->list_lock);
2083 		}
2084 
2085 		/*
2086 		 * bail out to wb_writeback() often enough to check
2087 		 * background threshold and other termination conditions.
2088 		 */
2089 		if (total_wrote) {
2090 			if (time_is_before_jiffies(start_time + HZ / 10UL))
2091 				break;
2092 			if (work->nr_pages <= 0)
2093 				break;
2094 		}
2095 	}
2096 	return total_wrote;
2097 }
2098 
2099 static long __writeback_inodes_wb(struct bdi_writeback *wb,
2100 				  struct wb_writeback_work *work)
2101 {
2102 	unsigned long start_time = jiffies;
2103 	long wrote = 0;
2104 
2105 	while (!list_empty(&wb->b_io)) {
2106 		struct inode *inode = wb_inode(wb->b_io.prev);
2107 		struct super_block *sb = inode->i_sb;
2108 
2109 		if (!super_trylock_shared(sb)) {
2110 			/*
2111 			 * super_trylock_shared() may fail consistently due to
2112 			 * s_umount being grabbed by someone else. Don't use
2113 			 * requeue_io() to avoid busy retrying the inode/sb.
2114 			 */
2115 			redirty_tail(inode, wb);
2116 			continue;
2117 		}
2118 		wrote += writeback_sb_inodes(sb, wb, work);
2119 		up_read(&sb->s_umount);
2120 
2121 		/* refer to the same tests at the end of writeback_sb_inodes */
2122 		if (wrote) {
2123 			if (time_is_before_jiffies(start_time + HZ / 10UL))
2124 				break;
2125 			if (work->nr_pages <= 0)
2126 				break;
2127 		}
2128 	}
2129 	/* Leave any unwritten inodes on b_io */
2130 	return wrote;
2131 }
2132 
2133 static long writeback_inodes_wb(struct bdi_writeback *wb, long nr_pages,
2134 				enum wb_reason reason)
2135 {
2136 	struct wb_writeback_work work = {
2137 		.nr_pages	= nr_pages,
2138 		.sync_mode	= WB_SYNC_NONE,
2139 		.range_cyclic	= 1,
2140 		.reason		= reason,
2141 	};
2142 	struct blk_plug plug;
2143 
2144 	blk_start_plug(&plug);
2145 	spin_lock(&wb->list_lock);
2146 	if (list_empty(&wb->b_io))
2147 		queue_io(wb, &work, jiffies);
2148 	__writeback_inodes_wb(wb, &work);
2149 	spin_unlock(&wb->list_lock);
2150 	blk_finish_plug(&plug);
2151 
2152 	return nr_pages - work.nr_pages;
2153 }
2154 
2155 /*
2156  * Explicit flushing or periodic writeback of "old" data.
2157  *
2158  * Define "old": the first time one of an inode's pages is dirtied, we mark the
2159  * dirtying-time in the inode's address_space.  So this periodic writeback code
2160  * just walks the superblock inode list, writing back any inodes which are
2161  * older than a specific point in time.
2162  *
2163  * Try to run once per dirty_writeback_interval.  But if a writeback event
2164  * takes longer than a dirty_writeback_interval interval, then leave a
2165  * one-second gap.
2166  *
2167  * dirtied_before takes precedence over nr_to_write.  So we'll only write back
2168  * all dirty pages if they are all attached to "old" mappings.
2169  */
2170 static long wb_writeback(struct bdi_writeback *wb,
2171 			 struct wb_writeback_work *work)
2172 {
2173 	long nr_pages = work->nr_pages;
2174 	unsigned long dirtied_before = jiffies;
2175 	struct inode *inode;
2176 	long progress;
2177 	struct blk_plug plug;
2178 	bool queued = false;
2179 
2180 	blk_start_plug(&plug);
2181 	for (;;) {
2182 		/*
2183 		 * Stop writeback when nr_pages has been consumed
2184 		 */
2185 		if (work->nr_pages <= 0)
2186 			break;
2187 
2188 		/*
2189 		 * Background writeout and kupdate-style writeback may
2190 		 * run forever. Stop them if there is other work to do
2191 		 * so that e.g. sync can proceed. They'll be restarted
2192 		 * after the other works are all done.
2193 		 */
2194 		if ((work->for_background || work->for_kupdate) &&
2195 		    !list_empty(&wb->work_list))
2196 			break;
2197 
2198 		/*
2199 		 * For background writeout, stop when we are below the
2200 		 * background dirty threshold
2201 		 */
2202 		if (work->for_background && !wb_over_bg_thresh(wb))
2203 			break;
2204 
2205 
2206 		spin_lock(&wb->list_lock);
2207 
2208 		trace_writeback_start(wb, work);
2209 		if (list_empty(&wb->b_io)) {
2210 			/*
2211 			 * Kupdate and background works are special and we want
2212 			 * to include all inodes that need writing. Livelock
2213 			 * avoidance is handled by these works yielding to any
2214 			 * other work so we are safe.
2215 			 */
2216 			if (work->for_kupdate) {
2217 				dirtied_before = jiffies -
2218 					msecs_to_jiffies(dirty_expire_interval *
2219 							 10);
2220 			} else if (work->for_background)
2221 				dirtied_before = jiffies;
2222 
2223 			queue_io(wb, work, dirtied_before);
2224 			queued = true;
2225 		}
2226 		if (work->sb)
2227 			progress = writeback_sb_inodes(work->sb, wb, work);
2228 		else
2229 			progress = __writeback_inodes_wb(wb, work);
2230 		trace_writeback_written(wb, work);
2231 
2232 		/*
2233 		 * Did we write something? Try for more
2234 		 *
2235 		 * Dirty inodes are moved to b_io for writeback in batches.
2236 		 * The completion of the current batch does not necessarily
2237 		 * mean the overall work is done. So we keep looping as long
2238 		 * as made some progress on cleaning pages or inodes.
2239 		 */
2240 		if (progress || !queued) {
2241 			spin_unlock(&wb->list_lock);
2242 			continue;
2243 		}
2244 
2245 		/*
2246 		 * No more inodes for IO, bail
2247 		 */
2248 		if (list_empty(&wb->b_more_io)) {
2249 			spin_unlock(&wb->list_lock);
2250 			break;
2251 		}
2252 
2253 		/*
2254 		 * Nothing written. Wait for some inode to
2255 		 * become available for writeback. Otherwise
2256 		 * we'll just busyloop.
2257 		 */
2258 		trace_writeback_wait(wb, work);
2259 		inode = wb_inode(wb->b_more_io.prev);
2260 		spin_lock(&inode->i_lock);
2261 		spin_unlock(&wb->list_lock);
2262 		/* This function drops i_lock... */
2263 		inode_sleep_on_writeback(inode);
2264 	}
2265 	blk_finish_plug(&plug);
2266 
2267 	return nr_pages - work->nr_pages;
2268 }
2269 
2270 /*
2271  * Return the next wb_writeback_work struct that hasn't been processed yet.
2272  */
2273 static struct wb_writeback_work *get_next_work_item(struct bdi_writeback *wb)
2274 {
2275 	struct wb_writeback_work *work = NULL;
2276 
2277 	spin_lock_irq(&wb->work_lock);
2278 	if (!list_empty(&wb->work_list)) {
2279 		work = list_entry(wb->work_list.next,
2280 				  struct wb_writeback_work, list);
2281 		list_del_init(&work->list);
2282 	}
2283 	spin_unlock_irq(&wb->work_lock);
2284 	return work;
2285 }
2286 
2287 static long wb_check_background_flush(struct bdi_writeback *wb)
2288 {
2289 	if (wb_over_bg_thresh(wb)) {
2290 
2291 		struct wb_writeback_work work = {
2292 			.nr_pages	= LONG_MAX,
2293 			.sync_mode	= WB_SYNC_NONE,
2294 			.for_background	= 1,
2295 			.range_cyclic	= 1,
2296 			.reason		= WB_REASON_BACKGROUND,
2297 		};
2298 
2299 		return wb_writeback(wb, &work);
2300 	}
2301 
2302 	return 0;
2303 }
2304 
2305 static long wb_check_old_data_flush(struct bdi_writeback *wb)
2306 {
2307 	unsigned long expired;
2308 	long nr_pages;
2309 
2310 	/*
2311 	 * When set to zero, disable periodic writeback
2312 	 */
2313 	if (!dirty_writeback_interval)
2314 		return 0;
2315 
2316 	expired = wb->last_old_flush +
2317 			msecs_to_jiffies(dirty_writeback_interval * 10);
2318 	if (time_before(jiffies, expired))
2319 		return 0;
2320 
2321 	wb->last_old_flush = jiffies;
2322 	nr_pages = get_nr_dirty_pages();
2323 
2324 	if (nr_pages) {
2325 		struct wb_writeback_work work = {
2326 			.nr_pages	= nr_pages,
2327 			.sync_mode	= WB_SYNC_NONE,
2328 			.for_kupdate	= 1,
2329 			.range_cyclic	= 1,
2330 			.reason		= WB_REASON_PERIODIC,
2331 		};
2332 
2333 		return wb_writeback(wb, &work);
2334 	}
2335 
2336 	return 0;
2337 }
2338 
2339 static long wb_check_start_all(struct bdi_writeback *wb)
2340 {
2341 	long nr_pages;
2342 
2343 	if (!test_bit(WB_start_all, &wb->state))
2344 		return 0;
2345 
2346 	nr_pages = get_nr_dirty_pages();
2347 	if (nr_pages) {
2348 		struct wb_writeback_work work = {
2349 			.nr_pages	= wb_split_bdi_pages(wb, nr_pages),
2350 			.sync_mode	= WB_SYNC_NONE,
2351 			.range_cyclic	= 1,
2352 			.reason		= wb->start_all_reason,
2353 		};
2354 
2355 		nr_pages = wb_writeback(wb, &work);
2356 	}
2357 
2358 	clear_bit(WB_start_all, &wb->state);
2359 	return nr_pages;
2360 }
2361 
2362 
2363 /*
2364  * Retrieve work items and do the writeback they describe
2365  */
2366 static long wb_do_writeback(struct bdi_writeback *wb)
2367 {
2368 	struct wb_writeback_work *work;
2369 	long wrote = 0;
2370 
2371 	set_bit(WB_writeback_running, &wb->state);
2372 	while ((work = get_next_work_item(wb)) != NULL) {
2373 		trace_writeback_exec(wb, work);
2374 		wrote += wb_writeback(wb, work);
2375 		finish_writeback_work(work);
2376 	}
2377 
2378 	/*
2379 	 * Check for a flush-everything request
2380 	 */
2381 	wrote += wb_check_start_all(wb);
2382 
2383 	/*
2384 	 * Check for periodic writeback, kupdated() style
2385 	 */
2386 	wrote += wb_check_old_data_flush(wb);
2387 	wrote += wb_check_background_flush(wb);
2388 	clear_bit(WB_writeback_running, &wb->state);
2389 
2390 	return wrote;
2391 }
2392 
2393 /*
2394  * Handle writeback of dirty data for the device backed by this bdi. Also
2395  * reschedules periodically and does kupdated style flushing.
2396  */
2397 void wb_workfn(struct work_struct *work)
2398 {
2399 	struct bdi_writeback *wb = container_of(to_delayed_work(work),
2400 						struct bdi_writeback, dwork);
2401 	long pages_written;
2402 
2403 	set_worker_desc("flush-%s", bdi_dev_name(wb->bdi));
2404 
2405 	if (likely(!current_is_workqueue_rescuer() ||
2406 		   !test_bit(WB_registered, &wb->state))) {
2407 		/*
2408 		 * The normal path.  Keep writing back @wb until its
2409 		 * work_list is empty.  Note that this path is also taken
2410 		 * if @wb is shutting down even when we're running off the
2411 		 * rescuer as work_list needs to be drained.
2412 		 */
2413 		do {
2414 			pages_written = wb_do_writeback(wb);
2415 			trace_writeback_pages_written(pages_written);
2416 		} while (!list_empty(&wb->work_list));
2417 	} else {
2418 		/*
2419 		 * bdi_wq can't get enough workers and we're running off
2420 		 * the emergency worker.  Don't hog it.  Hopefully, 1024 is
2421 		 * enough for efficient IO.
2422 		 */
2423 		pages_written = writeback_inodes_wb(wb, 1024,
2424 						    WB_REASON_FORKER_THREAD);
2425 		trace_writeback_pages_written(pages_written);
2426 	}
2427 
2428 	if (!list_empty(&wb->work_list))
2429 		wb_wakeup(wb);
2430 	else if (wb_has_dirty_io(wb) && dirty_writeback_interval)
2431 		wb_wakeup_delayed(wb);
2432 }
2433 
2434 /*
2435  * Start writeback of all dirty pages on this bdi.
2436  */
2437 static void __wakeup_flusher_threads_bdi(struct backing_dev_info *bdi,
2438 					 enum wb_reason reason)
2439 {
2440 	struct bdi_writeback *wb;
2441 
2442 	if (!bdi_has_dirty_io(bdi))
2443 		return;
2444 
2445 	list_for_each_entry_rcu(wb, &bdi->wb_list, bdi_node)
2446 		wb_start_writeback(wb, reason);
2447 }
2448 
2449 void wakeup_flusher_threads_bdi(struct backing_dev_info *bdi,
2450 				enum wb_reason reason)
2451 {
2452 	rcu_read_lock();
2453 	__wakeup_flusher_threads_bdi(bdi, reason);
2454 	rcu_read_unlock();
2455 }
2456 
2457 /*
2458  * Wakeup the flusher threads to start writeback of all currently dirty pages
2459  */
2460 void wakeup_flusher_threads(enum wb_reason reason)
2461 {
2462 	struct backing_dev_info *bdi;
2463 
2464 	/*
2465 	 * If we are expecting writeback progress we must submit plugged IO.
2466 	 */
2467 	blk_flush_plug(current->plug, true);
2468 
2469 	rcu_read_lock();
2470 	list_for_each_entry_rcu(bdi, &bdi_list, bdi_list)
2471 		__wakeup_flusher_threads_bdi(bdi, reason);
2472 	rcu_read_unlock();
2473 }
2474 
2475 /*
2476  * Wake up bdi's periodically to make sure dirtytime inodes gets
2477  * written back periodically.  We deliberately do *not* check the
2478  * b_dirtytime list in wb_has_dirty_io(), since this would cause the
2479  * kernel to be constantly waking up once there are any dirtytime
2480  * inodes on the system.  So instead we define a separate delayed work
2481  * function which gets called much more rarely.  (By default, only
2482  * once every 12 hours.)
2483  *
2484  * If there is any other write activity going on in the file system,
2485  * this function won't be necessary.  But if the only thing that has
2486  * happened on the file system is a dirtytime inode caused by an atime
2487  * update, we need this infrastructure below to make sure that inode
2488  * eventually gets pushed out to disk.
2489  */
2490 static void wakeup_dirtytime_writeback(struct work_struct *w);
2491 static DECLARE_DELAYED_WORK(dirtytime_work, wakeup_dirtytime_writeback);
2492 
2493 static void wakeup_dirtytime_writeback(struct work_struct *w)
2494 {
2495 	struct backing_dev_info *bdi;
2496 
2497 	rcu_read_lock();
2498 	list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) {
2499 		struct bdi_writeback *wb;
2500 
2501 		list_for_each_entry_rcu(wb, &bdi->wb_list, bdi_node)
2502 			if (!list_empty(&wb->b_dirty_time))
2503 				wb_wakeup(wb);
2504 	}
2505 	rcu_read_unlock();
2506 	if (dirtytime_expire_interval)
2507 		schedule_delayed_work(&dirtytime_work,
2508 				      round_jiffies_relative(dirtytime_expire_interval * HZ));
2509 }
2510 
2511 static int dirtytime_interval_handler(const struct ctl_table *table, int write,
2512 			       void *buffer, size_t *lenp, loff_t *ppos)
2513 {
2514 	int ret;
2515 
2516 	ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
2517 	if (ret == 0 && write) {
2518 		if (dirtytime_expire_interval)
2519 			mod_delayed_work(system_percpu_wq, &dirtytime_work, 0);
2520 		else
2521 			cancel_delayed_work_sync(&dirtytime_work);
2522 	}
2523 	return ret;
2524 }
2525 
2526 static const struct ctl_table vm_fs_writeback_table[] = {
2527 	{
2528 		.procname	= "dirtytime_expire_seconds",
2529 		.data		= &dirtytime_expire_interval,
2530 		.maxlen		= sizeof(dirtytime_expire_interval),
2531 		.mode		= 0644,
2532 		.proc_handler	= dirtytime_interval_handler,
2533 		.extra1		= SYSCTL_ZERO,
2534 	},
2535 };
2536 
2537 static int __init start_dirtytime_writeback(void)
2538 {
2539 	if (dirtytime_expire_interval)
2540 		schedule_delayed_work(&dirtytime_work,
2541 				      round_jiffies_relative(dirtytime_expire_interval * HZ));
2542 	register_sysctl_init("vm", vm_fs_writeback_table);
2543 	return 0;
2544 }
2545 __initcall(start_dirtytime_writeback);
2546 
2547 /**
2548  * __mark_inode_dirty -	internal function to mark an inode dirty
2549  *
2550  * @inode: inode to mark
2551  * @flags: what kind of dirty, e.g. I_DIRTY_SYNC.  This can be a combination of
2552  *	   multiple I_DIRTY_* flags, except that I_DIRTY_TIME can't be combined
2553  *	   with I_DIRTY_PAGES.
2554  *
2555  * Mark an inode as dirty.  We notify the filesystem, then update the inode's
2556  * dirty flags.  Then, if needed we add the inode to the appropriate dirty list.
2557  *
2558  * Most callers should use mark_inode_dirty() or mark_inode_dirty_sync()
2559  * instead of calling this directly.
2560  *
2561  * CAREFUL!  We only add the inode to the dirty list if it is hashed or if it
2562  * refers to a blockdev.  Unhashed inodes will never be added to the dirty list
2563  * even if they are later hashed, as they will have been marked dirty already.
2564  *
2565  * In short, ensure you hash any inodes _before_ you start marking them dirty.
2566  *
2567  * Note that for blockdevs, inode->dirtied_when represents the dirtying time of
2568  * the block-special inode (/dev/hda1) itself.  And the ->dirtied_when field of
2569  * the kernel-internal blockdev inode represents the dirtying time of the
2570  * blockdev's pages.  This is why for I_DIRTY_PAGES we always use
2571  * page->mapping->host, so the page-dirtying time is recorded in the internal
2572  * blockdev inode.
2573  */
2574 void __mark_inode_dirty(struct inode *inode, int flags)
2575 {
2576 	struct super_block *sb = inode->i_sb;
2577 	int dirtytime = 0;
2578 	struct bdi_writeback *wb = NULL;
2579 
2580 	trace_writeback_mark_inode_dirty(inode, flags);
2581 
2582 	if (flags & I_DIRTY_INODE) {
2583 		bool was_dirty_time = false;
2584 
2585 		/*
2586 		 * Inode timestamp update will piggback on this dirtying.
2587 		 * We tell ->dirty_inode callback that timestamps need to
2588 		 * be updated by setting I_DIRTY_TIME in flags.
2589 		 */
2590 		if (inode_state_read_once(inode) & I_DIRTY_TIME) {
2591 			spin_lock(&inode->i_lock);
2592 			if (inode_state_read(inode) & I_DIRTY_TIME) {
2593 				inode_state_clear(inode, I_DIRTY_TIME);
2594 				flags |= I_DIRTY_TIME;
2595 				was_dirty_time = true;
2596 			}
2597 			spin_unlock(&inode->i_lock);
2598 		}
2599 
2600 		/*
2601 		 * Notify the filesystem about the inode being dirtied, so that
2602 		 * (if needed) it can update on-disk fields and journal the
2603 		 * inode.  This is only needed when the inode itself is being
2604 		 * dirtied now.  I.e. it's only needed for I_DIRTY_INODE, not
2605 		 * for just I_DIRTY_PAGES or I_DIRTY_TIME.
2606 		 */
2607 		trace_writeback_dirty_inode_start(inode, flags);
2608 		if (sb->s_op->dirty_inode) {
2609 			sb->s_op->dirty_inode(inode,
2610 				flags & (I_DIRTY_INODE | I_DIRTY_TIME));
2611 		} else if (was_dirty_time && inode->i_op->sync_lazytime) {
2612 			inode->i_op->sync_lazytime(inode);
2613 		}
2614 		trace_writeback_dirty_inode(inode, flags);
2615 
2616 		/* I_DIRTY_INODE supersedes I_DIRTY_TIME. */
2617 		flags &= ~I_DIRTY_TIME;
2618 	} else {
2619 		/*
2620 		 * Else it's either I_DIRTY_PAGES, I_DIRTY_TIME, or nothing.
2621 		 * (We don't support setting both I_DIRTY_PAGES and I_DIRTY_TIME
2622 		 * in one call to __mark_inode_dirty().)
2623 		 */
2624 		dirtytime = flags & I_DIRTY_TIME;
2625 		WARN_ON_ONCE(dirtytime && flags != I_DIRTY_TIME);
2626 	}
2627 
2628 	/*
2629 	 * Paired with smp_mb() in __writeback_single_inode() for the
2630 	 * following lockless i_state test.  See there for details.
2631 	 */
2632 	smp_mb();
2633 
2634 	if ((inode_state_read_once(inode) & flags) == flags)
2635 		return;
2636 
2637 	spin_lock(&inode->i_lock);
2638 	if ((inode_state_read(inode) & flags) != flags) {
2639 		const int was_dirty = inode_state_read(inode) & I_DIRTY;
2640 
2641 		inode_attach_wb(inode, NULL);
2642 
2643 		inode_state_set(inode, flags);
2644 
2645 		/*
2646 		 * Grab inode's wb early because it requires dropping i_lock and we
2647 		 * need to make sure following checks happen atomically with dirty
2648 		 * list handling so that we don't move inodes under flush worker's
2649 		 * hands.
2650 		 */
2651 		if (!was_dirty) {
2652 			wb = locked_inode_to_wb_and_lock_list(inode);
2653 			spin_lock(&inode->i_lock);
2654 		}
2655 
2656 		/*
2657 		 * If the inode is queued for writeback by flush worker, just
2658 		 * update its dirty state. Once the flush worker is done with
2659 		 * the inode it will place it on the appropriate superblock
2660 		 * list, based upon its state.
2661 		 */
2662 		if (inode_state_read(inode) & I_SYNC_QUEUED)
2663 			goto out_unlock;
2664 
2665 		/*
2666 		 * Only add valid (hashed) inodes to the superblock's
2667 		 * dirty list.  Add blockdev inodes as well.
2668 		 */
2669 		if (!S_ISBLK(inode->i_mode)) {
2670 			if (inode_unhashed(inode))
2671 				goto out_unlock;
2672 		}
2673 		if (inode_state_read(inode) & I_FREEING)
2674 			goto out_unlock;
2675 
2676 		/*
2677 		 * If the inode was already on b_dirty/b_io/b_more_io, don't
2678 		 * reposition it (that would break b_dirty time-ordering).
2679 		 */
2680 		if (!was_dirty) {
2681 			struct list_head *dirty_list;
2682 			bool wakeup_bdi = false;
2683 
2684 			inode->dirtied_when = jiffies;
2685 			if (dirtytime)
2686 				inode->dirtied_time_when = jiffies;
2687 
2688 			if (inode_state_read(inode) & I_DIRTY)
2689 				dirty_list = &wb->b_dirty;
2690 			else
2691 				dirty_list = &wb->b_dirty_time;
2692 
2693 			wakeup_bdi = inode_io_list_move_locked(inode, wb,
2694 							       dirty_list);
2695 
2696 			/*
2697 			 * If this is the first dirty inode for this bdi,
2698 			 * we have to wake-up the corresponding bdi thread
2699 			 * to make sure background write-back happens
2700 			 * later.
2701 			 */
2702 			if (wakeup_bdi &&
2703 			    (wb->bdi->capabilities & BDI_CAP_WRITEBACK))
2704 				wb_wakeup_delayed(wb);
2705 
2706 			spin_unlock(&wb->list_lock);
2707 			spin_unlock(&inode->i_lock);
2708 			trace_writeback_dirty_inode_enqueue(inode);
2709 
2710 			return;
2711 		}
2712 	}
2713 out_unlock:
2714 	if (wb)
2715 		spin_unlock(&wb->list_lock);
2716 	spin_unlock(&inode->i_lock);
2717 }
2718 EXPORT_SYMBOL(__mark_inode_dirty);
2719 
2720 /*
2721  * The @s_sync_lock is used to serialise concurrent sync operations
2722  * to avoid lock contention problems with concurrent wait_sb_inodes() calls.
2723  * Concurrent callers will block on the s_sync_lock rather than doing contending
2724  * walks. The queueing maintains sync(2) required behaviour as all the IO that
2725  * has been issued up to the time this function is enter is guaranteed to be
2726  * completed by the time we have gained the lock and waited for all IO that is
2727  * in progress regardless of the order callers are granted the lock.
2728  */
2729 static void wait_sb_inodes(struct super_block *sb)
2730 {
2731 	LIST_HEAD(sync_list);
2732 
2733 	/*
2734 	 * We need to be protected against the filesystem going from
2735 	 * r/o to r/w or vice versa.
2736 	 */
2737 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
2738 
2739 	mutex_lock(&sb->s_sync_lock);
2740 
2741 	/*
2742 	 * Splice the writeback list onto a temporary list to avoid waiting on
2743 	 * inodes that have started writeback after this point.
2744 	 *
2745 	 * Use rcu_read_lock() to keep the inodes around until we have a
2746 	 * reference. s_inode_wblist_lock protects sb->s_inodes_wb as well as
2747 	 * the local list because inodes can be dropped from either by writeback
2748 	 * completion.
2749 	 */
2750 	rcu_read_lock();
2751 	spin_lock_irq(&sb->s_inode_wblist_lock);
2752 	list_splice_init(&sb->s_inodes_wb, &sync_list);
2753 
2754 	/*
2755 	 * Data integrity sync. Must wait for all pages under writeback, because
2756 	 * there may have been pages dirtied before our sync call, but which had
2757 	 * writeout started before we write it out.  In which case, the inode
2758 	 * may not be on the dirty list, but we still have to wait for that
2759 	 * writeout.
2760 	 */
2761 	while (!list_empty(&sync_list)) {
2762 		struct inode *inode = list_first_entry(&sync_list, struct inode,
2763 						       i_wb_list);
2764 		struct address_space *mapping = inode->i_mapping;
2765 
2766 		/*
2767 		 * Move each inode back to the wb list before we drop the lock
2768 		 * to preserve consistency between i_wb_list and the mapping
2769 		 * writeback tag. Writeback completion is responsible to remove
2770 		 * the inode from either list once the writeback tag is cleared.
2771 		 */
2772 		list_move_tail(&inode->i_wb_list, &sb->s_inodes_wb);
2773 
2774 		/*
2775 		 * The mapping can appear untagged while still on-list since we
2776 		 * do not have the mapping lock. Skip it here, wb completion
2777 		 * will remove it.
2778 		 *
2779 		 * If the mapping does not have data integrity semantics,
2780 		 * there's no need to wait for the writeout to complete, as the
2781 		 * mapping cannot guarantee that data is persistently stored.
2782 		 */
2783 		if (!mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK) ||
2784 		    mapping_no_data_integrity(mapping))
2785 			continue;
2786 
2787 		spin_unlock_irq(&sb->s_inode_wblist_lock);
2788 
2789 		spin_lock(&inode->i_lock);
2790 		if (inode_state_read(inode) & (I_FREEING | I_WILL_FREE | I_NEW)) {
2791 			spin_unlock(&inode->i_lock);
2792 
2793 			spin_lock_irq(&sb->s_inode_wblist_lock);
2794 			continue;
2795 		}
2796 		__iget(inode);
2797 		spin_unlock(&inode->i_lock);
2798 		rcu_read_unlock();
2799 
2800 		/*
2801 		 * We keep the error status of individual mapping so that
2802 		 * applications can catch the writeback error using fsync(2).
2803 		 * See filemap_fdatawait_keep_errors() for details.
2804 		 */
2805 		filemap_fdatawait_keep_errors(mapping);
2806 
2807 		cond_resched();
2808 
2809 		iput(inode);
2810 
2811 		rcu_read_lock();
2812 		spin_lock_irq(&sb->s_inode_wblist_lock);
2813 	}
2814 	spin_unlock_irq(&sb->s_inode_wblist_lock);
2815 	rcu_read_unlock();
2816 	mutex_unlock(&sb->s_sync_lock);
2817 }
2818 
2819 static void __writeback_inodes_sb_nr(struct super_block *sb, unsigned long nr,
2820 				     enum wb_reason reason, bool skip_if_busy)
2821 {
2822 	struct backing_dev_info *bdi = sb->s_bdi;
2823 	DEFINE_WB_COMPLETION(done, bdi);
2824 	struct wb_writeback_work work = {
2825 		.sb			= sb,
2826 		.sync_mode		= WB_SYNC_NONE,
2827 		.tagged_writepages	= 1,
2828 		.done			= &done,
2829 		.nr_pages		= nr,
2830 		.reason			= reason,
2831 	};
2832 
2833 	if (!bdi_has_dirty_io(bdi) || bdi == &noop_backing_dev_info)
2834 		return;
2835 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
2836 
2837 	bdi_split_work_to_wbs(sb->s_bdi, &work, skip_if_busy);
2838 	wb_wait_for_completion(&done);
2839 }
2840 
2841 /**
2842  * writeback_inodes_sb_nr -	writeback dirty inodes from given super_block
2843  * @sb: the superblock
2844  * @nr: the number of pages to write
2845  * @reason: reason why some writeback work initiated
2846  *
2847  * Start writeback on some inodes on this super_block. No guarantees are made
2848  * on how many (if any) will be written, and this function does not wait
2849  * for IO completion of submitted IO.
2850  */
2851 void writeback_inodes_sb_nr(struct super_block *sb,
2852 			    unsigned long nr,
2853 			    enum wb_reason reason)
2854 {
2855 	__writeback_inodes_sb_nr(sb, nr, reason, false);
2856 }
2857 EXPORT_SYMBOL(writeback_inodes_sb_nr);
2858 
2859 /**
2860  * writeback_inodes_sb	-	writeback dirty inodes from given super_block
2861  * @sb: the superblock
2862  * @reason: reason why some writeback work was initiated
2863  *
2864  * Start writeback on some inodes on this super_block. No guarantees are made
2865  * on how many (if any) will be written, and this function does not wait
2866  * for IO completion of submitted IO.
2867  */
2868 void writeback_inodes_sb(struct super_block *sb, enum wb_reason reason)
2869 {
2870 	writeback_inodes_sb_nr(sb, get_nr_dirty_pages(), reason);
2871 }
2872 EXPORT_SYMBOL(writeback_inodes_sb);
2873 
2874 /**
2875  * try_to_writeback_inodes_sb - try to start writeback if none underway
2876  * @sb: the superblock
2877  * @reason: reason why some writeback work was initiated
2878  *
2879  * Invoke __writeback_inodes_sb_nr if no writeback is currently underway.
2880  */
2881 void try_to_writeback_inodes_sb(struct super_block *sb, enum wb_reason reason)
2882 {
2883 	if (!down_read_trylock(&sb->s_umount))
2884 		return;
2885 
2886 	__writeback_inodes_sb_nr(sb, get_nr_dirty_pages(), reason, true);
2887 	up_read(&sb->s_umount);
2888 }
2889 EXPORT_SYMBOL(try_to_writeback_inodes_sb);
2890 
2891 /**
2892  * sync_inodes_sb	-	sync sb inode pages
2893  * @sb: the superblock
2894  *
2895  * This function writes and waits on any dirty inode belonging to this
2896  * super_block.
2897  */
2898 void sync_inodes_sb(struct super_block *sb)
2899 {
2900 	struct backing_dev_info *bdi = sb->s_bdi;
2901 	DEFINE_WB_COMPLETION(done, bdi);
2902 	struct wb_writeback_work work = {
2903 		.sb		= sb,
2904 		.sync_mode	= WB_SYNC_ALL,
2905 		.nr_pages	= LONG_MAX,
2906 		.range_cyclic	= 0,
2907 		.done		= &done,
2908 		.reason		= WB_REASON_SYNC,
2909 		.for_sync	= 1,
2910 	};
2911 
2912 	/*
2913 	 * Can't skip on !bdi_has_dirty() because we should wait for !dirty
2914 	 * inodes under writeback and I_DIRTY_TIME inodes ignored by
2915 	 * bdi_has_dirty() need to be written out too.
2916 	 */
2917 	if (bdi == &noop_backing_dev_info)
2918 		return;
2919 	WARN_ON(!rwsem_is_locked(&sb->s_umount));
2920 
2921 	/* protect against inode wb switch, see inode_switch_wbs_work_fn() */
2922 	bdi_down_write_wb_switch_rwsem(bdi);
2923 	bdi_split_work_to_wbs(bdi, &work, false);
2924 	wb_wait_for_completion(&done);
2925 	bdi_up_write_wb_switch_rwsem(bdi);
2926 
2927 	wait_sb_inodes(sb);
2928 }
2929 EXPORT_SYMBOL(sync_inodes_sb);
2930 
2931 /**
2932  * write_inode_now	-	write an inode to disk
2933  * @inode: inode to write to disk
2934  * @sync: whether the write should be synchronous or not
2935  *
2936  * This function commits an inode to disk immediately if it is dirty. This is
2937  * primarily needed by knfsd.
2938  *
2939  * The caller must either have a ref on the inode or must have set I_WILL_FREE.
2940  */
2941 int write_inode_now(struct inode *inode, int sync)
2942 {
2943 	struct writeback_control wbc = {
2944 		.nr_to_write = LONG_MAX,
2945 		.sync_mode = sync ? WB_SYNC_ALL : WB_SYNC_NONE,
2946 		.range_start = 0,
2947 		.range_end = LLONG_MAX,
2948 	};
2949 
2950 	if (!mapping_can_writeback(inode->i_mapping))
2951 		wbc.nr_to_write = 0;
2952 
2953 	might_sleep();
2954 	return writeback_single_inode(inode, &wbc);
2955 }
2956 EXPORT_SYMBOL(write_inode_now);
2957 
2958 /**
2959  * sync_inode_metadata - write an inode to disk
2960  * @inode: the inode to sync
2961  * @wait: wait for I/O to complete.
2962  *
2963  * Write an inode to disk and adjust its dirty state after completion.
2964  *
2965  * Note: only writes the actual inode, no associated data or other metadata.
2966  */
2967 int sync_inode_metadata(struct inode *inode, int wait)
2968 {
2969 	struct writeback_control wbc = {
2970 		.sync_mode = wait ? WB_SYNC_ALL : WB_SYNC_NONE,
2971 		.nr_to_write = 0, /* metadata-only */
2972 	};
2973 
2974 	return writeback_single_inode(inode, &wbc);
2975 }
2976 EXPORT_SYMBOL(sync_inode_metadata);
2977