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 timeout = sysctl_hung_task_timeout_secs; 202 unsigned long waited_secs = (jiffies - done->wait_start) / HZ; 203 204 done->progress_stamp = jiffies; 205 if (timeout && (waited_secs > timeout)) 206 pr_info("INFO: The task %s:%d has been waiting for writeback " 207 "completion for more than %lu seconds.", 208 current->comm, current->pid, waited_secs); 209 210 return !atomic_read(&done->cnt); 211 } 212 213 /** 214 * wb_wait_for_completion - wait for completion of bdi_writeback_works 215 * @done: target wb_completion 216 * 217 * Wait for one or more work items issued to @bdi with their ->done field 218 * set to @done, which should have been initialized with 219 * DEFINE_WB_COMPLETION(). This function returns after all such work items 220 * are completed. Work items which are waited upon aren't freed 221 * automatically on completion. 222 */ 223 void wb_wait_for_completion(struct wb_completion *done) 224 { 225 done->wait_start = jiffies; 226 atomic_dec(&done->cnt); /* put down the initial count */ 227 wait_event(*done->waitq, wb_wait_for_completion_cb(done)); 228 } 229 230 #ifdef CONFIG_CGROUP_WRITEBACK 231 232 /* 233 * Parameters for foreign inode detection, see wbc_detach_inode() to see 234 * how they're used. 235 * 236 * These paramters are inherently heuristical as the detection target 237 * itself is fuzzy. All we want to do is detaching an inode from the 238 * current owner if it's being written to by some other cgroups too much. 239 * 240 * The current cgroup writeback is built on the assumption that multiple 241 * cgroups writing to the same inode concurrently is very rare and a mode 242 * of operation which isn't well supported. As such, the goal is not 243 * taking too long when a different cgroup takes over an inode while 244 * avoiding too aggressive flip-flops from occasional foreign writes. 245 * 246 * We record, very roughly, 2s worth of IO time history and if more than 247 * half of that is foreign, trigger the switch. The recording is quantized 248 * to 16 slots. To avoid tiny writes from swinging the decision too much, 249 * writes smaller than 1/8 of avg size are ignored. 250 */ 251 #define WB_FRN_TIME_SHIFT 13 /* 1s = 2^13, upto 8 secs w/ 16bit */ 252 #define WB_FRN_TIME_AVG_SHIFT 3 /* avg = avg * 7/8 + new * 1/8 */ 253 #define WB_FRN_TIME_CUT_DIV 8 /* ignore rounds < avg / 8 */ 254 #define WB_FRN_TIME_PERIOD (2 * (1 << WB_FRN_TIME_SHIFT)) /* 2s */ 255 256 #define WB_FRN_HIST_SLOTS 16 /* inode->i_wb_frn_history is 16bit */ 257 #define WB_FRN_HIST_UNIT (WB_FRN_TIME_PERIOD / WB_FRN_HIST_SLOTS) 258 /* each slot's duration is 2s / 16 */ 259 #define WB_FRN_HIST_THR_SLOTS (WB_FRN_HIST_SLOTS / 2) 260 /* if foreign slots >= 8, switch */ 261 #define WB_FRN_HIST_MAX_SLOTS (WB_FRN_HIST_THR_SLOTS / 2 + 1) 262 /* one round can affect upto 5 slots */ 263 #define WB_FRN_MAX_IN_FLIGHT 1024 /* don't queue too many concurrently */ 264 265 /* 266 * Maximum inodes per isw. A specific value has been chosen to make 267 * struct inode_switch_wbs_context fit into 1024 bytes kmalloc. 268 */ 269 #define WB_MAX_INODES_PER_ISW ((1024UL - sizeof(struct inode_switch_wbs_context)) \ 270 / sizeof(struct inode *)) 271 272 static atomic_t isw_nr_in_flight = ATOMIC_INIT(0); 273 static struct workqueue_struct *isw_wq; 274 275 void __inode_attach_wb(struct inode *inode, struct folio *folio) 276 { 277 struct backing_dev_info *bdi = inode_to_bdi(inode); 278 struct bdi_writeback *wb = NULL; 279 280 if (inode_cgwb_enabled(inode)) { 281 struct cgroup_subsys_state *memcg_css; 282 283 if (folio) { 284 memcg_css = mem_cgroup_css_from_folio(folio); 285 wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC); 286 } else { 287 /* must pin memcg_css, see wb_get_create() */ 288 memcg_css = task_get_css(current, memory_cgrp_id); 289 wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC); 290 css_put(memcg_css); 291 } 292 } 293 294 if (!wb) 295 wb = &bdi->wb; 296 297 /* 298 * There may be multiple instances of this function racing to 299 * update the same inode. Use cmpxchg() to tell the winner. 300 */ 301 if (unlikely(cmpxchg(&inode->i_wb, NULL, wb))) 302 wb_put(wb); 303 } 304 305 /** 306 * inode_cgwb_move_to_attached - put the inode onto wb->b_attached list 307 * @inode: inode of interest with i_lock held 308 * @wb: target bdi_writeback 309 * 310 * Remove the inode from wb's io lists and if necessarily put onto b_attached 311 * list. Only inodes attached to cgwb's are kept on this list. 312 */ 313 static void inode_cgwb_move_to_attached(struct inode *inode, 314 struct bdi_writeback *wb) 315 { 316 assert_spin_locked(&wb->list_lock); 317 assert_spin_locked(&inode->i_lock); 318 WARN_ON_ONCE(inode_state_read(inode) & I_FREEING); 319 320 inode_state_clear(inode, I_SYNC_QUEUED); 321 if (wb != &wb->bdi->wb) 322 list_move(&inode->i_io_list, &wb->b_attached); 323 else 324 list_del_init(&inode->i_io_list); 325 wb_io_lists_depopulated(wb); 326 } 327 328 /** 329 * locked_inode_to_wb_and_lock_list - determine a locked inode's wb and lock it 330 * @inode: inode of interest with i_lock held 331 * 332 * Returns @inode's wb with its list_lock held. @inode->i_lock must be 333 * held on entry and is released on return. The returned wb is guaranteed 334 * to stay @inode's associated wb until its list_lock is released. 335 */ 336 static struct bdi_writeback * 337 locked_inode_to_wb_and_lock_list(struct inode *inode) 338 __releases(&inode->i_lock) 339 __acquires(&wb->list_lock) 340 { 341 while (true) { 342 struct bdi_writeback *wb = inode_to_wb(inode); 343 344 /* 345 * inode_to_wb() association is protected by both 346 * @inode->i_lock and @wb->list_lock but list_lock nests 347 * outside i_lock. Drop i_lock and verify that the 348 * association hasn't changed after acquiring list_lock. 349 */ 350 wb_get(wb); 351 spin_unlock(&inode->i_lock); 352 spin_lock(&wb->list_lock); 353 354 /* i_wb may have changed inbetween, can't use inode_to_wb() */ 355 if (likely(wb == inode->i_wb)) { 356 wb_put(wb); /* @inode already has ref */ 357 return wb; 358 } 359 360 spin_unlock(&wb->list_lock); 361 wb_put(wb); 362 cpu_relax(); 363 spin_lock(&inode->i_lock); 364 } 365 } 366 367 /** 368 * inode_to_wb_and_lock_list - determine an inode's wb and lock it 369 * @inode: inode of interest 370 * 371 * Same as locked_inode_to_wb_and_lock_list() but @inode->i_lock isn't held 372 * on entry. 373 */ 374 static struct bdi_writeback *inode_to_wb_and_lock_list(struct inode *inode) 375 __acquires(&wb->list_lock) 376 { 377 spin_lock(&inode->i_lock); 378 return locked_inode_to_wb_and_lock_list(inode); 379 } 380 381 struct inode_switch_wbs_context { 382 /* List of queued switching contexts for the wb */ 383 struct llist_node list; 384 385 /* 386 * Multiple inodes can be switched at once. The switching procedure 387 * consists of two parts, separated by a RCU grace period. To make 388 * sure that the second part is executed for each inode gone through 389 * the first part, all inode pointers are placed into a NULL-terminated 390 * array embedded into struct inode_switch_wbs_context. Otherwise 391 * an inode could be left in a non-consistent state. 392 */ 393 struct inode *inodes[]; 394 }; 395 396 static void bdi_down_write_wb_switch_rwsem(struct backing_dev_info *bdi) 397 { 398 down_write(&bdi->wb_switch_rwsem); 399 } 400 401 static void bdi_up_write_wb_switch_rwsem(struct backing_dev_info *bdi) 402 { 403 up_write(&bdi->wb_switch_rwsem); 404 } 405 406 static bool inode_do_switch_wbs(struct inode *inode, 407 struct bdi_writeback *old_wb, 408 struct bdi_writeback *new_wb) 409 { 410 struct address_space *mapping = inode->i_mapping; 411 XA_STATE(xas, &mapping->i_pages, 0); 412 struct folio *folio; 413 bool switched = false; 414 415 spin_lock(&inode->i_lock); 416 xa_lock_irq(&mapping->i_pages); 417 418 /* 419 * Once I_FREEING or I_WILL_FREE are visible under i_lock, the eviction 420 * path owns the inode and we shouldn't modify ->i_io_list. 421 */ 422 if (unlikely(inode_state_read(inode) & (I_FREEING | I_WILL_FREE))) 423 goto skip_switch; 424 425 trace_inode_switch_wbs(inode, old_wb, new_wb); 426 427 /* 428 * Count and transfer stats. Note that PAGECACHE_TAG_DIRTY points 429 * to possibly dirty folios while PAGECACHE_TAG_WRITEBACK points to 430 * folios actually under writeback. 431 */ 432 xas_for_each_marked(&xas, folio, ULONG_MAX, PAGECACHE_TAG_DIRTY) { 433 if (folio_test_dirty(folio)) { 434 long nr = folio_nr_pages(folio); 435 wb_stat_mod(old_wb, WB_RECLAIMABLE, -nr); 436 wb_stat_mod(new_wb, WB_RECLAIMABLE, nr); 437 } 438 } 439 440 xas_set(&xas, 0); 441 xas_for_each_marked(&xas, folio, ULONG_MAX, PAGECACHE_TAG_WRITEBACK) { 442 long nr = folio_nr_pages(folio); 443 WARN_ON_ONCE(!folio_test_writeback(folio)); 444 wb_stat_mod(old_wb, WB_WRITEBACK, -nr); 445 wb_stat_mod(new_wb, WB_WRITEBACK, nr); 446 } 447 448 if (mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK)) { 449 atomic_dec(&old_wb->writeback_inodes); 450 atomic_inc(&new_wb->writeback_inodes); 451 } 452 453 wb_get(new_wb); 454 455 /* 456 * Transfer to @new_wb's IO list if necessary. If the @inode is dirty, 457 * the specific list @inode was on is ignored and the @inode is put on 458 * ->b_dirty which is always correct including from ->b_dirty_time. 459 * If the @inode was clean, it means it was on the b_attached list, so 460 * move it onto the b_attached list of @new_wb. 461 */ 462 if (!list_empty(&inode->i_io_list)) { 463 inode->i_wb = new_wb; 464 465 if (inode_state_read(inode) & I_DIRTY_ALL) { 466 /* 467 * We need to keep b_dirty list sorted by 468 * dirtied_time_when. However properly sorting the 469 * inode in the list gets too expensive when switching 470 * many inodes. So just attach inode at the end of the 471 * dirty list and clobber the dirtied_time_when. 472 */ 473 inode->dirtied_time_when = jiffies; 474 inode_io_list_move_locked(inode, new_wb, 475 &new_wb->b_dirty); 476 } else { 477 inode_cgwb_move_to_attached(inode, new_wb); 478 } 479 } else { 480 inode->i_wb = new_wb; 481 } 482 483 /* ->i_wb_frn updates may race wbc_detach_inode() but doesn't matter */ 484 inode->i_wb_frn_winner = 0; 485 inode->i_wb_frn_avg_time = 0; 486 inode->i_wb_frn_history = 0; 487 switched = true; 488 skip_switch: 489 /* 490 * Paired with an acquire fence in unlocked_inode_to_wb_begin() and 491 * ensures that the new wb is visible if they see !I_WB_SWITCH. 492 */ 493 smp_wmb(); 494 inode_state_clear(inode, I_WB_SWITCH); 495 496 xa_unlock_irq(&mapping->i_pages); 497 spin_unlock(&inode->i_lock); 498 499 return switched; 500 } 501 502 static void process_inode_switch_wbs(struct bdi_writeback *new_wb, 503 struct inode_switch_wbs_context *isw) 504 { 505 struct backing_dev_info *bdi = inode_to_bdi(isw->inodes[0]); 506 struct bdi_writeback *old_wb = isw->inodes[0]->i_wb; 507 unsigned long nr_switched = 0; 508 struct inode **inodep; 509 510 /* 511 * If @inode switches cgwb membership while sync_inodes_sb() is 512 * being issued, sync_inodes_sb() might miss it. Synchronize. 513 */ 514 down_read(&bdi->wb_switch_rwsem); 515 516 inodep = isw->inodes; 517 /* 518 * By the time control reaches here, RCU grace period has passed 519 * since I_WB_SWITCH assertion and all wb stat update transactions 520 * between unlocked_inode_to_wb_begin/end() are guaranteed to be 521 * synchronizing against the i_pages lock. 522 * 523 * Grabbing old_wb->list_lock, inode->i_lock and the i_pages lock 524 * gives us exclusion against all wb related operations on @inode 525 * including IO list manipulations and stat updates. 526 */ 527 relock: 528 if (old_wb < new_wb) { 529 spin_lock(&old_wb->list_lock); 530 spin_lock_nested(&new_wb->list_lock, SINGLE_DEPTH_NESTING); 531 } else { 532 spin_lock(&new_wb->list_lock); 533 spin_lock_nested(&old_wb->list_lock, SINGLE_DEPTH_NESTING); 534 } 535 536 while (*inodep) { 537 WARN_ON_ONCE((*inodep)->i_wb != old_wb); 538 if (inode_do_switch_wbs(*inodep, old_wb, new_wb)) 539 nr_switched++; 540 inodep++; 541 if (*inodep && need_resched()) { 542 spin_unlock(&new_wb->list_lock); 543 spin_unlock(&old_wb->list_lock); 544 cond_resched(); 545 goto relock; 546 } 547 } 548 549 spin_unlock(&new_wb->list_lock); 550 spin_unlock(&old_wb->list_lock); 551 552 up_read(&bdi->wb_switch_rwsem); 553 554 if (nr_switched) { 555 wb_wakeup(new_wb); 556 wb_put_many(old_wb, nr_switched); 557 } 558 559 for (inodep = isw->inodes; *inodep; inodep++) 560 iput(*inodep); 561 wb_put(new_wb); 562 kfree(isw); 563 atomic_dec(&isw_nr_in_flight); 564 } 565 566 void inode_switch_wbs_work_fn(struct work_struct *work) 567 { 568 struct bdi_writeback *new_wb = container_of(work, struct bdi_writeback, 569 switch_work); 570 struct inode_switch_wbs_context *isw, *next_isw; 571 struct llist_node *list; 572 573 /* 574 * Grab out reference to wb so that it cannot get freed under us 575 * after we process all the isw items. 576 */ 577 wb_get(new_wb); 578 while (1) { 579 list = llist_del_all(&new_wb->switch_wbs_ctxs); 580 /* Nothing to do? */ 581 if (!list) 582 break; 583 /* 584 * In addition to synchronizing among switchers, I_WB_SWITCH 585 * tells the RCU protected stat update paths to grab the i_page 586 * lock so that stat transfer can synchronize against them. 587 * Let's continue after I_WB_SWITCH is guaranteed to be 588 * visible. 589 */ 590 synchronize_rcu(); 591 592 llist_for_each_entry_safe(isw, next_isw, list, list) 593 process_inode_switch_wbs(new_wb, isw); 594 } 595 wb_put(new_wb); 596 } 597 598 static bool inode_prepare_wbs_switch(struct inode *inode, 599 struct bdi_writeback *new_wb) 600 { 601 /* 602 * Paired with smp_mb() in cgroup_writeback_umount(). 603 * isw_nr_in_flight must be increased before checking SB_ACTIVE and 604 * grabbing an inode, otherwise isw_nr_in_flight can be observed as 0 605 * in cgroup_writeback_umount() and the isw_wq will be not flushed. 606 */ 607 smp_mb(); 608 609 if (IS_DAX(inode)) 610 return false; 611 612 /* while holding I_WB_SWITCH, no one else can update the association */ 613 spin_lock(&inode->i_lock); 614 if (!(inode->i_sb->s_flags & SB_ACTIVE) || 615 inode_state_read(inode) & (I_WB_SWITCH | I_FREEING | I_WILL_FREE) || 616 inode_to_wb(inode) == new_wb) { 617 spin_unlock(&inode->i_lock); 618 return false; 619 } 620 inode_state_set(inode, I_WB_SWITCH); 621 __iget(inode); 622 spin_unlock(&inode->i_lock); 623 624 return true; 625 } 626 627 static void wb_queue_isw(struct bdi_writeback *wb, 628 struct inode_switch_wbs_context *isw) 629 { 630 if (llist_add(&isw->list, &wb->switch_wbs_ctxs)) 631 queue_work(isw_wq, &wb->switch_work); 632 } 633 634 /** 635 * inode_switch_wbs - change the wb association of an inode 636 * @inode: target inode 637 * @new_wb_id: ID of the new wb 638 * 639 * Switch @inode's wb association to the wb identified by @new_wb_id. The 640 * switching is performed asynchronously and may fail silently. 641 */ 642 static void inode_switch_wbs(struct inode *inode, int new_wb_id) 643 { 644 struct backing_dev_info *bdi = inode_to_bdi(inode); 645 struct cgroup_subsys_state *memcg_css; 646 struct inode_switch_wbs_context *isw; 647 struct bdi_writeback *new_wb = NULL; 648 649 /* noop if seems to be already in progress */ 650 if (inode_state_read_once(inode) & I_WB_SWITCH) 651 return; 652 653 /* avoid queueing a new switch if too many are already in flight */ 654 if (atomic_read(&isw_nr_in_flight) > WB_FRN_MAX_IN_FLIGHT) 655 return; 656 657 isw = kzalloc_flex(*isw, inodes, 2, GFP_ATOMIC); 658 if (!isw) 659 return; 660 661 atomic_inc(&isw_nr_in_flight); 662 663 /* find and pin the new wb */ 664 rcu_read_lock(); 665 memcg_css = css_from_id(new_wb_id, &memory_cgrp_subsys); 666 if (memcg_css && !css_tryget(memcg_css)) 667 memcg_css = NULL; 668 rcu_read_unlock(); 669 if (!memcg_css) 670 goto out_free; 671 672 new_wb = wb_get_create(bdi, memcg_css, GFP_ATOMIC); 673 css_put(memcg_css); 674 if (!new_wb) 675 goto out_free; 676 677 if (!inode_prepare_wbs_switch(inode, new_wb)) 678 goto out_free; 679 680 isw->inodes[0] = inode; 681 682 trace_inode_switch_wbs_queue(inode->i_wb, new_wb, 1); 683 wb_queue_isw(new_wb, isw); 684 return; 685 686 out_free: 687 atomic_dec(&isw_nr_in_flight); 688 if (new_wb) 689 wb_put(new_wb); 690 kfree(isw); 691 } 692 693 static bool isw_prepare_wbs_switch(struct bdi_writeback *new_wb, 694 struct inode_switch_wbs_context *isw, 695 struct list_head *list, int *nr) 696 { 697 struct inode *inode; 698 699 list_for_each_entry(inode, list, i_io_list) { 700 if (!inode_prepare_wbs_switch(inode, new_wb)) 701 continue; 702 703 isw->inodes[*nr] = inode; 704 (*nr)++; 705 706 if (*nr >= WB_MAX_INODES_PER_ISW - 1) 707 return true; 708 } 709 return false; 710 } 711 712 /** 713 * cleanup_offline_cgwb - detach associated inodes 714 * @wb: target wb 715 * 716 * Switch all inodes attached to @wb to a nearest living ancestor's wb in order 717 * to eventually release the dying @wb. Returns %true if not all inodes were 718 * switched and the function has to be restarted. 719 */ 720 bool cleanup_offline_cgwb(struct bdi_writeback *wb) 721 { 722 struct cgroup_subsys_state *memcg_css; 723 struct inode_switch_wbs_context *isw; 724 struct bdi_writeback *new_wb; 725 int nr; 726 bool restart = false; 727 728 isw = kzalloc_flex(*isw, inodes, WB_MAX_INODES_PER_ISW); 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_is_online(css)) 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_obj(*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_obj(*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 static bool __sync_lazytime(struct inode *inode) 1715 { 1716 spin_lock(&inode->i_lock); 1717 if (!(inode_state_read(inode) & I_DIRTY_TIME)) { 1718 spin_unlock(&inode->i_lock); 1719 return false; 1720 } 1721 inode_state_clear(inode, I_DIRTY_TIME); 1722 spin_unlock(&inode->i_lock); 1723 inode->i_op->sync_lazytime(inode); 1724 return true; 1725 } 1726 1727 bool sync_lazytime(struct inode *inode) 1728 { 1729 if (!(inode_state_read_once(inode) & I_DIRTY_TIME)) 1730 return false; 1731 1732 trace_writeback_lazytime(inode); 1733 if (inode->i_op->sync_lazytime) 1734 return __sync_lazytime(inode); 1735 mark_inode_dirty_sync(inode); 1736 return true; 1737 } 1738 1739 /* 1740 * Write out an inode and its dirty pages (or some of its dirty pages, depending 1741 * on @wbc->nr_to_write), and clear the relevant dirty flags from i_state. 1742 * 1743 * This doesn't remove the inode from the writeback list it is on, except 1744 * potentially to move it from b_dirty_time to b_dirty due to timestamp 1745 * expiration. The caller is otherwise responsible for writeback list handling. 1746 * 1747 * The caller is also responsible for setting the I_SYNC flag beforehand and 1748 * calling inode_sync_complete() to clear it afterwards. 1749 */ 1750 static int 1751 __writeback_single_inode(struct inode *inode, struct writeback_control *wbc) 1752 { 1753 struct address_space *mapping = inode->i_mapping; 1754 long nr_to_write = wbc->nr_to_write; 1755 unsigned dirty; 1756 int ret; 1757 1758 WARN_ON(!(inode_state_read_once(inode) & I_SYNC)); 1759 1760 trace_writeback_single_inode_start(inode, wbc, nr_to_write); 1761 1762 ret = do_writepages(mapping, wbc); 1763 1764 /* 1765 * Make sure to wait on the data before writing out the metadata. 1766 * This is important for filesystems that modify metadata on data 1767 * I/O completion. We don't do it for sync(2) writeback because it has a 1768 * separate, external IO completion path and ->sync_fs for guaranteeing 1769 * inode metadata is written back correctly. 1770 */ 1771 if (wbc->sync_mode == WB_SYNC_ALL && !wbc->for_sync) { 1772 int err = filemap_fdatawait(mapping); 1773 if (ret == 0) 1774 ret = err; 1775 } 1776 1777 /* 1778 * For data integrity writeback, or when the dirty interval expired, 1779 * ask the file system to propagata lazy timestamp updates into real 1780 * dirty state. 1781 */ 1782 if ((inode_state_read_once(inode) & I_DIRTY_TIME) && 1783 (wbc->sync_mode == WB_SYNC_ALL || 1784 time_after(jiffies, inode->dirtied_time_when + 1785 dirtytime_expire_interval * HZ))) 1786 sync_lazytime(inode); 1787 1788 /* 1789 * Get and clear the dirty flags from i_state. This needs to be done 1790 * after calling writepages because some filesystems may redirty the 1791 * inode during writepages due to delalloc. It also needs to be done 1792 * after handling timestamp expiration, as that may dirty the inode too. 1793 */ 1794 spin_lock(&inode->i_lock); 1795 dirty = inode_state_read(inode) & I_DIRTY; 1796 inode_state_clear(inode, dirty); 1797 1798 /* 1799 * Paired with smp_mb() in __mark_inode_dirty(). This allows 1800 * __mark_inode_dirty() to test i_state without grabbing i_lock - 1801 * either they see the I_DIRTY bits cleared or we see the dirtied 1802 * inode. 1803 * 1804 * I_DIRTY_PAGES is always cleared together above even if @mapping 1805 * still has dirty pages. The flag is reinstated after smp_mb() if 1806 * necessary. This guarantees that either __mark_inode_dirty() 1807 * sees clear I_DIRTY_PAGES or we see PAGECACHE_TAG_DIRTY. 1808 */ 1809 smp_mb(); 1810 1811 if (mapping_tagged(mapping, PAGECACHE_TAG_DIRTY)) 1812 inode_state_set(inode, I_DIRTY_PAGES); 1813 else if (unlikely(inode_state_read(inode) & I_PINNING_NETFS_WB)) { 1814 if (!(inode_state_read(inode) & I_DIRTY_PAGES)) { 1815 inode_state_clear(inode, I_PINNING_NETFS_WB); 1816 wbc->unpinned_netfs_wb = true; 1817 dirty |= I_PINNING_NETFS_WB; /* Cause write_inode */ 1818 } 1819 } 1820 1821 spin_unlock(&inode->i_lock); 1822 1823 /* Don't write the inode if only I_DIRTY_PAGES was set */ 1824 if (dirty & ~I_DIRTY_PAGES) { 1825 int err = write_inode(inode, wbc); 1826 if (ret == 0) 1827 ret = err; 1828 } 1829 wbc->unpinned_netfs_wb = false; 1830 trace_writeback_single_inode(inode, wbc, nr_to_write); 1831 return ret; 1832 } 1833 1834 /* 1835 * Write out an inode's dirty data and metadata on-demand, i.e. separately from 1836 * the regular batched writeback done by the flusher threads in 1837 * writeback_sb_inodes(). @wbc controls various aspects of the write, such as 1838 * whether it is a data-integrity sync (%WB_SYNC_ALL) or not (%WB_SYNC_NONE). 1839 * 1840 * To prevent the inode from going away, either the caller must have a reference 1841 * to the inode, or the inode must have I_WILL_FREE or I_FREEING set. 1842 */ 1843 static int writeback_single_inode(struct inode *inode, 1844 struct writeback_control *wbc) 1845 { 1846 struct bdi_writeback *wb; 1847 int ret = 0; 1848 1849 spin_lock(&inode->i_lock); 1850 if (!icount_read(inode)) 1851 WARN_ON(!(inode_state_read(inode) & (I_WILL_FREE | I_FREEING))); 1852 else 1853 WARN_ON(inode_state_read(inode) & I_WILL_FREE); 1854 1855 if (inode_state_read(inode) & I_SYNC) { 1856 /* 1857 * Writeback is already running on the inode. For WB_SYNC_NONE, 1858 * that's enough and we can just return. For WB_SYNC_ALL, we 1859 * must wait for the existing writeback to complete, then do 1860 * writeback again if there's anything left. 1861 */ 1862 if (wbc->sync_mode != WB_SYNC_ALL) 1863 goto out; 1864 inode_wait_for_writeback(inode); 1865 } 1866 WARN_ON(inode_state_read(inode) & I_SYNC); 1867 /* 1868 * If the inode is already fully clean, then there's nothing to do. 1869 * 1870 * For data-integrity syncs we also need to check whether any pages are 1871 * still under writeback, e.g. due to prior WB_SYNC_NONE writeback. If 1872 * there are any such pages, we'll need to wait for them. 1873 */ 1874 if (!(inode_state_read(inode) & I_DIRTY_ALL) && 1875 (wbc->sync_mode != WB_SYNC_ALL || 1876 !mapping_tagged(inode->i_mapping, PAGECACHE_TAG_WRITEBACK))) 1877 goto out; 1878 inode_state_set(inode, I_SYNC); 1879 wbc_attach_and_unlock_inode(wbc, inode); 1880 1881 ret = __writeback_single_inode(inode, wbc); 1882 1883 wbc_detach_inode(wbc); 1884 1885 wb = inode_to_wb_and_lock_list(inode); 1886 spin_lock(&inode->i_lock); 1887 /* 1888 * If the inode is freeing, its i_io_list shoudn't be updated 1889 * as it can be finally deleted at this moment. 1890 */ 1891 if (!(inode_state_read(inode) & I_FREEING)) { 1892 /* 1893 * If the inode is now fully clean, then it can be safely 1894 * removed from its writeback list (if any). Otherwise the 1895 * flusher threads are responsible for the writeback lists. 1896 */ 1897 if (!(inode_state_read(inode) & I_DIRTY_ALL)) 1898 inode_cgwb_move_to_attached(inode, wb); 1899 else if (!(inode_state_read(inode) & I_SYNC_QUEUED)) { 1900 if ((inode_state_read(inode) & I_DIRTY)) 1901 redirty_tail_locked(inode, wb); 1902 else if (inode_state_read(inode) & I_DIRTY_TIME) { 1903 inode->dirtied_when = jiffies; 1904 inode_io_list_move_locked(inode, 1905 wb, 1906 &wb->b_dirty_time); 1907 } 1908 } 1909 } 1910 1911 spin_unlock(&wb->list_lock); 1912 inode_sync_complete(inode); 1913 out: 1914 spin_unlock(&inode->i_lock); 1915 return ret; 1916 } 1917 1918 static long writeback_chunk_size(struct super_block *sb, 1919 struct bdi_writeback *wb, struct wb_writeback_work *work) 1920 { 1921 long pages; 1922 1923 /* 1924 * WB_SYNC_ALL mode does livelock avoidance by syncing dirty 1925 * inodes/pages in one big loop. Setting wbc.nr_to_write=LONG_MAX 1926 * here avoids calling into writeback_inodes_wb() more than once. 1927 * 1928 * The intended call sequence for WB_SYNC_ALL writeback is: 1929 * 1930 * wb_writeback() 1931 * writeback_sb_inodes() <== called only once 1932 * write_cache_pages() <== called once for each inode 1933 * (quickly) tag currently dirty pages 1934 * (maybe slowly) sync all tagged pages 1935 */ 1936 if (work->sync_mode == WB_SYNC_ALL || work->tagged_writepages) 1937 return LONG_MAX; 1938 1939 pages = min(wb->avg_write_bandwidth / 2, 1940 global_wb_domain.dirty_limit / DIRTY_SCOPE); 1941 pages = min(pages, work->nr_pages); 1942 return round_down(pages + sb->s_min_writeback_pages, 1943 sb->s_min_writeback_pages); 1944 } 1945 1946 /* 1947 * Write a portion of b_io inodes which belong to @sb. 1948 * 1949 * Return the number of pages and/or inodes written. 1950 * 1951 * NOTE! This is called with wb->list_lock held, and will 1952 * unlock and relock that for each inode it ends up doing 1953 * IO for. 1954 */ 1955 static long writeback_sb_inodes(struct super_block *sb, 1956 struct bdi_writeback *wb, 1957 struct wb_writeback_work *work) 1958 { 1959 struct writeback_control wbc = { 1960 .sync_mode = work->sync_mode, 1961 .tagged_writepages = work->tagged_writepages, 1962 .for_kupdate = work->for_kupdate, 1963 .for_background = work->for_background, 1964 .for_sync = work->for_sync, 1965 .range_cyclic = work->range_cyclic, 1966 .range_start = 0, 1967 .range_end = LLONG_MAX, 1968 }; 1969 unsigned long start_time = jiffies; 1970 unsigned long timeout = sysctl_hung_task_timeout_secs; 1971 long write_chunk; 1972 long total_wrote = 0; /* count both pages and inodes */ 1973 unsigned long dirtied_before = jiffies; 1974 1975 if (work->for_kupdate) 1976 dirtied_before = jiffies - 1977 msecs_to_jiffies(dirty_expire_interval * 10); 1978 1979 while (!list_empty(&wb->b_io)) { 1980 struct inode *inode = wb_inode(wb->b_io.prev); 1981 struct bdi_writeback *tmp_wb; 1982 long wrote; 1983 1984 if (inode->i_sb != sb) { 1985 if (work->sb) { 1986 /* 1987 * We only want to write back data for this 1988 * superblock, move all inodes not belonging 1989 * to it back onto the dirty list. 1990 */ 1991 redirty_tail(inode, wb); 1992 continue; 1993 } 1994 1995 /* 1996 * The inode belongs to a different superblock. 1997 * Bounce back to the caller to unpin this and 1998 * pin the next superblock. 1999 */ 2000 break; 2001 } 2002 2003 /* 2004 * Don't bother with new inodes or inodes being freed, first 2005 * kind does not need periodic writeout yet, and for the latter 2006 * kind writeout is handled by the freer. 2007 */ 2008 spin_lock(&inode->i_lock); 2009 if (inode_state_read(inode) & (I_NEW | I_FREEING | I_WILL_FREE)) { 2010 redirty_tail_locked(inode, wb); 2011 spin_unlock(&inode->i_lock); 2012 continue; 2013 } 2014 if ((inode_state_read(inode) & I_SYNC) && wbc.sync_mode != WB_SYNC_ALL) { 2015 /* 2016 * If this inode is locked for writeback and we are not 2017 * doing writeback-for-data-integrity, move it to 2018 * b_more_io so that writeback can proceed with the 2019 * other inodes on s_io. 2020 * 2021 * We'll have another go at writing back this inode 2022 * when we completed a full scan of b_io. 2023 */ 2024 requeue_io(inode, wb); 2025 spin_unlock(&inode->i_lock); 2026 trace_writeback_sb_inodes_requeue(inode); 2027 continue; 2028 } 2029 spin_unlock(&wb->list_lock); 2030 2031 /* 2032 * We already requeued the inode if it had I_SYNC set and we 2033 * are doing WB_SYNC_NONE writeback. So this catches only the 2034 * WB_SYNC_ALL case. 2035 */ 2036 if (inode_state_read(inode) & I_SYNC) { 2037 /* Wait for I_SYNC. This function drops i_lock... */ 2038 inode_sleep_on_writeback(inode); 2039 /* Inode may be gone, start again */ 2040 spin_lock(&wb->list_lock); 2041 continue; 2042 } 2043 inode_state_set(inode, I_SYNC); 2044 wbc_attach_and_unlock_inode(&wbc, inode); 2045 2046 write_chunk = writeback_chunk_size(inode->i_sb, wb, work); 2047 wbc.nr_to_write = write_chunk; 2048 wbc.pages_skipped = 0; 2049 2050 /* 2051 * We use I_SYNC to pin the inode in memory. While it is set 2052 * evict_inode() will wait so the inode cannot be freed. 2053 */ 2054 __writeback_single_inode(inode, &wbc); 2055 2056 /* Report progress to inform the hung task detector of the progress. */ 2057 if (work->done && work->done->progress_stamp && timeout && 2058 (jiffies - work->done->progress_stamp) > HZ * timeout / 2) 2059 wake_up_all(work->done->waitq); 2060 2061 wbc_detach_inode(&wbc); 2062 work->nr_pages -= write_chunk - wbc.nr_to_write; 2063 wrote = write_chunk - wbc.nr_to_write - wbc.pages_skipped; 2064 wrote = wrote < 0 ? 0 : wrote; 2065 total_wrote += wrote; 2066 2067 if (need_resched()) { 2068 /* 2069 * We're trying to balance between building up a nice 2070 * long list of IOs to improve our merge rate, and 2071 * getting those IOs out quickly for anyone throttling 2072 * in balance_dirty_pages(). cond_resched() doesn't 2073 * unplug, so get our IOs out the door before we 2074 * give up the CPU. 2075 */ 2076 blk_flush_plug(current->plug, false); 2077 cond_resched(); 2078 } 2079 2080 /* 2081 * Requeue @inode if still dirty. Be careful as @inode may 2082 * have been switched to another wb in the meantime. 2083 */ 2084 tmp_wb = inode_to_wb_and_lock_list(inode); 2085 spin_lock(&inode->i_lock); 2086 if (!(inode_state_read(inode) & I_DIRTY_ALL)) 2087 total_wrote++; 2088 requeue_inode(inode, tmp_wb, &wbc, dirtied_before); 2089 inode_sync_complete(inode); 2090 spin_unlock(&inode->i_lock); 2091 2092 if (unlikely(tmp_wb != wb)) { 2093 spin_unlock(&tmp_wb->list_lock); 2094 spin_lock(&wb->list_lock); 2095 } 2096 2097 /* 2098 * bail out to wb_writeback() often enough to check 2099 * background threshold and other termination conditions. 2100 */ 2101 if (total_wrote) { 2102 if (time_is_before_jiffies(start_time + HZ / 10UL)) 2103 break; 2104 if (work->nr_pages <= 0) 2105 break; 2106 } 2107 } 2108 return total_wrote; 2109 } 2110 2111 static long __writeback_inodes_wb(struct bdi_writeback *wb, 2112 struct wb_writeback_work *work) 2113 { 2114 unsigned long start_time = jiffies; 2115 long wrote = 0; 2116 2117 while (!list_empty(&wb->b_io)) { 2118 struct inode *inode = wb_inode(wb->b_io.prev); 2119 struct super_block *sb = inode->i_sb; 2120 2121 if (!super_trylock_shared(sb)) { 2122 /* 2123 * super_trylock_shared() may fail consistently due to 2124 * s_umount being grabbed by someone else. Don't use 2125 * requeue_io() to avoid busy retrying the inode/sb. 2126 */ 2127 redirty_tail(inode, wb); 2128 continue; 2129 } 2130 wrote += writeback_sb_inodes(sb, wb, work); 2131 up_read(&sb->s_umount); 2132 2133 /* refer to the same tests at the end of writeback_sb_inodes */ 2134 if (wrote) { 2135 if (time_is_before_jiffies(start_time + HZ / 10UL)) 2136 break; 2137 if (work->nr_pages <= 0) 2138 break; 2139 } 2140 } 2141 /* Leave any unwritten inodes on b_io */ 2142 return wrote; 2143 } 2144 2145 static long writeback_inodes_wb(struct bdi_writeback *wb, long nr_pages, 2146 enum wb_reason reason) 2147 { 2148 struct wb_writeback_work work = { 2149 .nr_pages = nr_pages, 2150 .sync_mode = WB_SYNC_NONE, 2151 .range_cyclic = 1, 2152 .reason = reason, 2153 }; 2154 struct blk_plug plug; 2155 2156 blk_start_plug(&plug); 2157 spin_lock(&wb->list_lock); 2158 if (list_empty(&wb->b_io)) 2159 queue_io(wb, &work, jiffies); 2160 __writeback_inodes_wb(wb, &work); 2161 spin_unlock(&wb->list_lock); 2162 blk_finish_plug(&plug); 2163 2164 return nr_pages - work.nr_pages; 2165 } 2166 2167 /* 2168 * Explicit flushing or periodic writeback of "old" data. 2169 * 2170 * Define "old": the first time one of an inode's pages is dirtied, we mark the 2171 * dirtying-time in the inode's address_space. So this periodic writeback code 2172 * just walks the superblock inode list, writing back any inodes which are 2173 * older than a specific point in time. 2174 * 2175 * Try to run once per dirty_writeback_interval. But if a writeback event 2176 * takes longer than a dirty_writeback_interval interval, then leave a 2177 * one-second gap. 2178 * 2179 * dirtied_before takes precedence over nr_to_write. So we'll only write back 2180 * all dirty pages if they are all attached to "old" mappings. 2181 */ 2182 static long wb_writeback(struct bdi_writeback *wb, 2183 struct wb_writeback_work *work) 2184 { 2185 long nr_pages = work->nr_pages; 2186 unsigned long dirtied_before = jiffies; 2187 struct inode *inode; 2188 long progress; 2189 struct blk_plug plug; 2190 bool queued = false; 2191 2192 blk_start_plug(&plug); 2193 for (;;) { 2194 /* 2195 * Stop writeback when nr_pages has been consumed 2196 */ 2197 if (work->nr_pages <= 0) 2198 break; 2199 2200 /* 2201 * Background writeout and kupdate-style writeback may 2202 * run forever. Stop them if there is other work to do 2203 * so that e.g. sync can proceed. They'll be restarted 2204 * after the other works are all done. 2205 */ 2206 if ((work->for_background || work->for_kupdate) && 2207 !list_empty(&wb->work_list)) 2208 break; 2209 2210 /* 2211 * For background writeout, stop when we are below the 2212 * background dirty threshold 2213 */ 2214 if (work->for_background && !wb_over_bg_thresh(wb)) 2215 break; 2216 2217 2218 spin_lock(&wb->list_lock); 2219 2220 trace_writeback_start(wb, work); 2221 if (list_empty(&wb->b_io)) { 2222 /* 2223 * Kupdate and background works are special and we want 2224 * to include all inodes that need writing. Livelock 2225 * avoidance is handled by these works yielding to any 2226 * other work so we are safe. 2227 */ 2228 if (work->for_kupdate) { 2229 dirtied_before = jiffies - 2230 msecs_to_jiffies(dirty_expire_interval * 2231 10); 2232 } else if (work->for_background) 2233 dirtied_before = jiffies; 2234 2235 queue_io(wb, work, dirtied_before); 2236 queued = true; 2237 } 2238 if (work->sb) 2239 progress = writeback_sb_inodes(work->sb, wb, work); 2240 else 2241 progress = __writeback_inodes_wb(wb, work); 2242 trace_writeback_written(wb, work); 2243 2244 /* 2245 * Did we write something? Try for more 2246 * 2247 * Dirty inodes are moved to b_io for writeback in batches. 2248 * The completion of the current batch does not necessarily 2249 * mean the overall work is done. So we keep looping as long 2250 * as made some progress on cleaning pages or inodes. 2251 */ 2252 if (progress || !queued) { 2253 spin_unlock(&wb->list_lock); 2254 continue; 2255 } 2256 2257 /* 2258 * No more inodes for IO, bail 2259 */ 2260 if (list_empty(&wb->b_more_io)) { 2261 spin_unlock(&wb->list_lock); 2262 break; 2263 } 2264 2265 /* 2266 * Nothing written. Wait for some inode to 2267 * become available for writeback. Otherwise 2268 * we'll just busyloop. 2269 */ 2270 trace_writeback_wait(wb, work); 2271 inode = wb_inode(wb->b_more_io.prev); 2272 spin_lock(&inode->i_lock); 2273 spin_unlock(&wb->list_lock); 2274 /* This function drops i_lock... */ 2275 inode_sleep_on_writeback(inode); 2276 } 2277 blk_finish_plug(&plug); 2278 2279 return nr_pages - work->nr_pages; 2280 } 2281 2282 /* 2283 * Return the next wb_writeback_work struct that hasn't been processed yet. 2284 */ 2285 static struct wb_writeback_work *get_next_work_item(struct bdi_writeback *wb) 2286 { 2287 struct wb_writeback_work *work = NULL; 2288 2289 spin_lock_irq(&wb->work_lock); 2290 if (!list_empty(&wb->work_list)) { 2291 work = list_entry(wb->work_list.next, 2292 struct wb_writeback_work, list); 2293 list_del_init(&work->list); 2294 } 2295 spin_unlock_irq(&wb->work_lock); 2296 return work; 2297 } 2298 2299 static long wb_check_background_flush(struct bdi_writeback *wb) 2300 { 2301 if (wb_over_bg_thresh(wb)) { 2302 2303 struct wb_writeback_work work = { 2304 .nr_pages = LONG_MAX, 2305 .sync_mode = WB_SYNC_NONE, 2306 .for_background = 1, 2307 .range_cyclic = 1, 2308 .reason = WB_REASON_BACKGROUND, 2309 }; 2310 2311 return wb_writeback(wb, &work); 2312 } 2313 2314 return 0; 2315 } 2316 2317 static long wb_check_old_data_flush(struct bdi_writeback *wb) 2318 { 2319 unsigned long expired; 2320 long nr_pages; 2321 2322 /* 2323 * When set to zero, disable periodic writeback 2324 */ 2325 if (!dirty_writeback_interval) 2326 return 0; 2327 2328 expired = wb->last_old_flush + 2329 msecs_to_jiffies(dirty_writeback_interval * 10); 2330 if (time_before(jiffies, expired)) 2331 return 0; 2332 2333 wb->last_old_flush = jiffies; 2334 nr_pages = get_nr_dirty_pages(); 2335 2336 if (nr_pages) { 2337 struct wb_writeback_work work = { 2338 .nr_pages = nr_pages, 2339 .sync_mode = WB_SYNC_NONE, 2340 .for_kupdate = 1, 2341 .range_cyclic = 1, 2342 .reason = WB_REASON_PERIODIC, 2343 }; 2344 2345 return wb_writeback(wb, &work); 2346 } 2347 2348 return 0; 2349 } 2350 2351 static long wb_check_start_all(struct bdi_writeback *wb) 2352 { 2353 long nr_pages; 2354 2355 if (!test_bit(WB_start_all, &wb->state)) 2356 return 0; 2357 2358 nr_pages = get_nr_dirty_pages(); 2359 if (nr_pages) { 2360 struct wb_writeback_work work = { 2361 .nr_pages = wb_split_bdi_pages(wb, nr_pages), 2362 .sync_mode = WB_SYNC_NONE, 2363 .range_cyclic = 1, 2364 .reason = wb->start_all_reason, 2365 }; 2366 2367 nr_pages = wb_writeback(wb, &work); 2368 } 2369 2370 clear_bit(WB_start_all, &wb->state); 2371 return nr_pages; 2372 } 2373 2374 2375 /* 2376 * Retrieve work items and do the writeback they describe 2377 */ 2378 static long wb_do_writeback(struct bdi_writeback *wb) 2379 { 2380 struct wb_writeback_work *work; 2381 long wrote = 0; 2382 2383 set_bit(WB_writeback_running, &wb->state); 2384 while ((work = get_next_work_item(wb)) != NULL) { 2385 trace_writeback_exec(wb, work); 2386 wrote += wb_writeback(wb, work); 2387 finish_writeback_work(work); 2388 } 2389 2390 /* 2391 * Check for a flush-everything request 2392 */ 2393 wrote += wb_check_start_all(wb); 2394 2395 /* 2396 * Check for periodic writeback, kupdated() style 2397 */ 2398 wrote += wb_check_old_data_flush(wb); 2399 wrote += wb_check_background_flush(wb); 2400 clear_bit(WB_writeback_running, &wb->state); 2401 2402 return wrote; 2403 } 2404 2405 /* 2406 * Handle writeback of dirty data for the device backed by this bdi. Also 2407 * reschedules periodically and does kupdated style flushing. 2408 */ 2409 void wb_workfn(struct work_struct *work) 2410 { 2411 struct bdi_writeback *wb = container_of(to_delayed_work(work), 2412 struct bdi_writeback, dwork); 2413 long pages_written; 2414 2415 set_worker_desc("flush-%s", bdi_dev_name(wb->bdi)); 2416 2417 if (likely(!current_is_workqueue_rescuer() || 2418 !test_bit(WB_registered, &wb->state))) { 2419 /* 2420 * The normal path. Keep writing back @wb until its 2421 * work_list is empty. Note that this path is also taken 2422 * if @wb is shutting down even when we're running off the 2423 * rescuer as work_list needs to be drained. 2424 */ 2425 do { 2426 pages_written = wb_do_writeback(wb); 2427 trace_writeback_pages_written(pages_written); 2428 } while (!list_empty(&wb->work_list)); 2429 } else { 2430 /* 2431 * bdi_wq can't get enough workers and we're running off 2432 * the emergency worker. Don't hog it. Hopefully, 1024 is 2433 * enough for efficient IO. 2434 */ 2435 pages_written = writeback_inodes_wb(wb, 1024, 2436 WB_REASON_FORKER_THREAD); 2437 trace_writeback_pages_written(pages_written); 2438 } 2439 2440 if (!list_empty(&wb->work_list)) 2441 wb_wakeup(wb); 2442 else if (wb_has_dirty_io(wb) && dirty_writeback_interval) 2443 wb_wakeup_delayed(wb); 2444 } 2445 2446 /* 2447 * Start writeback of all dirty pages on this bdi. 2448 */ 2449 static void __wakeup_flusher_threads_bdi(struct backing_dev_info *bdi, 2450 enum wb_reason reason) 2451 { 2452 struct bdi_writeback *wb; 2453 2454 if (!bdi_has_dirty_io(bdi)) 2455 return; 2456 2457 list_for_each_entry_rcu(wb, &bdi->wb_list, bdi_node) 2458 wb_start_writeback(wb, reason); 2459 } 2460 2461 void wakeup_flusher_threads_bdi(struct backing_dev_info *bdi, 2462 enum wb_reason reason) 2463 { 2464 rcu_read_lock(); 2465 __wakeup_flusher_threads_bdi(bdi, reason); 2466 rcu_read_unlock(); 2467 } 2468 2469 /* 2470 * Wakeup the flusher threads to start writeback of all currently dirty pages 2471 */ 2472 void wakeup_flusher_threads(enum wb_reason reason) 2473 { 2474 struct backing_dev_info *bdi; 2475 2476 /* 2477 * If we are expecting writeback progress we must submit plugged IO. 2478 */ 2479 blk_flush_plug(current->plug, true); 2480 2481 rcu_read_lock(); 2482 list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) 2483 __wakeup_flusher_threads_bdi(bdi, reason); 2484 rcu_read_unlock(); 2485 } 2486 2487 /* 2488 * Wake up bdi's periodically to make sure dirtytime inodes gets 2489 * written back periodically. We deliberately do *not* check the 2490 * b_dirtytime list in wb_has_dirty_io(), since this would cause the 2491 * kernel to be constantly waking up once there are any dirtytime 2492 * inodes on the system. So instead we define a separate delayed work 2493 * function which gets called much more rarely. (By default, only 2494 * once every 12 hours.) 2495 * 2496 * If there is any other write activity going on in the file system, 2497 * this function won't be necessary. But if the only thing that has 2498 * happened on the file system is a dirtytime inode caused by an atime 2499 * update, we need this infrastructure below to make sure that inode 2500 * eventually gets pushed out to disk. 2501 */ 2502 static void wakeup_dirtytime_writeback(struct work_struct *w); 2503 static DECLARE_DELAYED_WORK(dirtytime_work, wakeup_dirtytime_writeback); 2504 2505 static void wakeup_dirtytime_writeback(struct work_struct *w) 2506 { 2507 struct backing_dev_info *bdi; 2508 2509 rcu_read_lock(); 2510 list_for_each_entry_rcu(bdi, &bdi_list, bdi_list) { 2511 struct bdi_writeback *wb; 2512 2513 list_for_each_entry_rcu(wb, &bdi->wb_list, bdi_node) 2514 if (!list_empty(&wb->b_dirty_time)) 2515 wb_wakeup(wb); 2516 } 2517 rcu_read_unlock(); 2518 if (dirtytime_expire_interval) 2519 schedule_delayed_work(&dirtytime_work, 2520 round_jiffies_relative(dirtytime_expire_interval * HZ)); 2521 } 2522 2523 static int dirtytime_interval_handler(const struct ctl_table *table, int write, 2524 void *buffer, size_t *lenp, loff_t *ppos) 2525 { 2526 int ret; 2527 2528 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos); 2529 if (ret == 0 && write) { 2530 if (dirtytime_expire_interval) 2531 mod_delayed_work(system_percpu_wq, &dirtytime_work, 0); 2532 else 2533 cancel_delayed_work_sync(&dirtytime_work); 2534 } 2535 return ret; 2536 } 2537 2538 static const struct ctl_table vm_fs_writeback_table[] = { 2539 { 2540 .procname = "dirtytime_expire_seconds", 2541 .data = &dirtytime_expire_interval, 2542 .maxlen = sizeof(dirtytime_expire_interval), 2543 .mode = 0644, 2544 .proc_handler = dirtytime_interval_handler, 2545 .extra1 = SYSCTL_ZERO, 2546 }, 2547 }; 2548 2549 static int __init start_dirtytime_writeback(void) 2550 { 2551 if (dirtytime_expire_interval) 2552 schedule_delayed_work(&dirtytime_work, 2553 round_jiffies_relative(dirtytime_expire_interval * HZ)); 2554 register_sysctl_init("vm", vm_fs_writeback_table); 2555 return 0; 2556 } 2557 __initcall(start_dirtytime_writeback); 2558 2559 /** 2560 * __mark_inode_dirty - internal function to mark an inode dirty 2561 * 2562 * @inode: inode to mark 2563 * @flags: what kind of dirty, e.g. I_DIRTY_SYNC. This can be a combination of 2564 * multiple I_DIRTY_* flags, except that I_DIRTY_TIME can't be combined 2565 * with I_DIRTY_PAGES. 2566 * 2567 * Mark an inode as dirty. We notify the filesystem, then update the inode's 2568 * dirty flags. Then, if needed we add the inode to the appropriate dirty list. 2569 * 2570 * Most callers should use mark_inode_dirty() or mark_inode_dirty_sync() 2571 * instead of calling this directly. 2572 * 2573 * CAREFUL! We only add the inode to the dirty list if it is hashed or if it 2574 * refers to a blockdev. Unhashed inodes will never be added to the dirty list 2575 * even if they are later hashed, as they will have been marked dirty already. 2576 * 2577 * In short, ensure you hash any inodes _before_ you start marking them dirty. 2578 * 2579 * Note that for blockdevs, inode->dirtied_when represents the dirtying time of 2580 * the block-special inode (/dev/hda1) itself. And the ->dirtied_when field of 2581 * the kernel-internal blockdev inode represents the dirtying time of the 2582 * blockdev's pages. This is why for I_DIRTY_PAGES we always use 2583 * page->mapping->host, so the page-dirtying time is recorded in the internal 2584 * blockdev inode. 2585 */ 2586 void __mark_inode_dirty(struct inode *inode, int flags) 2587 { 2588 struct super_block *sb = inode->i_sb; 2589 int dirtytime = 0; 2590 struct bdi_writeback *wb = NULL; 2591 2592 trace_writeback_mark_inode_dirty(inode, flags); 2593 2594 if (flags & I_DIRTY_INODE) { 2595 bool was_dirty_time = false; 2596 2597 /* 2598 * Inode timestamp update will piggback on this dirtying. 2599 * We tell ->dirty_inode callback that timestamps need to 2600 * be updated by setting I_DIRTY_TIME in flags. 2601 */ 2602 if (inode_state_read_once(inode) & I_DIRTY_TIME) { 2603 spin_lock(&inode->i_lock); 2604 if (inode_state_read(inode) & I_DIRTY_TIME) { 2605 inode_state_clear(inode, I_DIRTY_TIME); 2606 flags |= I_DIRTY_TIME; 2607 was_dirty_time = true; 2608 } 2609 spin_unlock(&inode->i_lock); 2610 } 2611 2612 /* 2613 * Notify the filesystem about the inode being dirtied, so that 2614 * (if needed) it can update on-disk fields and journal the 2615 * inode. This is only needed when the inode itself is being 2616 * dirtied now. I.e. it's only needed for I_DIRTY_INODE, not 2617 * for just I_DIRTY_PAGES or I_DIRTY_TIME. 2618 */ 2619 trace_writeback_dirty_inode_start(inode, flags); 2620 if (sb->s_op->dirty_inode) { 2621 sb->s_op->dirty_inode(inode, 2622 flags & (I_DIRTY_INODE | I_DIRTY_TIME)); 2623 } else if (was_dirty_time && inode->i_op->sync_lazytime) { 2624 inode->i_op->sync_lazytime(inode); 2625 } 2626 trace_writeback_dirty_inode(inode, flags); 2627 2628 /* I_DIRTY_INODE supersedes I_DIRTY_TIME. */ 2629 flags &= ~I_DIRTY_TIME; 2630 } else { 2631 /* 2632 * Else it's either I_DIRTY_PAGES, I_DIRTY_TIME, or nothing. 2633 * (We don't support setting both I_DIRTY_PAGES and I_DIRTY_TIME 2634 * in one call to __mark_inode_dirty().) 2635 */ 2636 dirtytime = flags & I_DIRTY_TIME; 2637 WARN_ON_ONCE(dirtytime && flags != I_DIRTY_TIME); 2638 } 2639 2640 /* 2641 * Paired with smp_mb() in __writeback_single_inode() for the 2642 * following lockless i_state test. See there for details. 2643 */ 2644 smp_mb(); 2645 2646 if ((inode_state_read_once(inode) & flags) == flags) 2647 return; 2648 2649 spin_lock(&inode->i_lock); 2650 if ((inode_state_read(inode) & flags) != flags) { 2651 const int was_dirty = inode_state_read(inode) & I_DIRTY; 2652 2653 inode_attach_wb(inode, NULL); 2654 2655 inode_state_set(inode, flags); 2656 2657 /* 2658 * Grab inode's wb early because it requires dropping i_lock and we 2659 * need to make sure following checks happen atomically with dirty 2660 * list handling so that we don't move inodes under flush worker's 2661 * hands. 2662 */ 2663 if (!was_dirty) { 2664 wb = locked_inode_to_wb_and_lock_list(inode); 2665 spin_lock(&inode->i_lock); 2666 } 2667 2668 /* 2669 * If the inode is queued for writeback by flush worker, just 2670 * update its dirty state. Once the flush worker is done with 2671 * the inode it will place it on the appropriate superblock 2672 * list, based upon its state. 2673 */ 2674 if (inode_state_read(inode) & I_SYNC_QUEUED) 2675 goto out_unlock; 2676 2677 /* 2678 * Only add valid (hashed) inodes to the superblock's 2679 * dirty list. Add blockdev inodes as well. 2680 */ 2681 if (!S_ISBLK(inode->i_mode)) { 2682 if (inode_unhashed(inode)) 2683 goto out_unlock; 2684 } 2685 if (inode_state_read(inode) & I_FREEING) 2686 goto out_unlock; 2687 2688 /* 2689 * If the inode was already on b_dirty/b_io/b_more_io, don't 2690 * reposition it (that would break b_dirty time-ordering). 2691 */ 2692 if (!was_dirty) { 2693 struct list_head *dirty_list; 2694 bool wakeup_bdi = false; 2695 2696 inode->dirtied_when = jiffies; 2697 if (dirtytime) 2698 inode->dirtied_time_when = jiffies; 2699 2700 if (inode_state_read(inode) & I_DIRTY) 2701 dirty_list = &wb->b_dirty; 2702 else 2703 dirty_list = &wb->b_dirty_time; 2704 2705 wakeup_bdi = inode_io_list_move_locked(inode, wb, 2706 dirty_list); 2707 2708 /* 2709 * If this is the first dirty inode for this bdi, 2710 * we have to wake-up the corresponding bdi thread 2711 * to make sure background write-back happens 2712 * later. 2713 */ 2714 if (wakeup_bdi && 2715 (wb->bdi->capabilities & BDI_CAP_WRITEBACK)) 2716 wb_wakeup_delayed(wb); 2717 2718 spin_unlock(&wb->list_lock); 2719 spin_unlock(&inode->i_lock); 2720 trace_writeback_dirty_inode_enqueue(inode); 2721 2722 return; 2723 } 2724 } 2725 out_unlock: 2726 if (wb) 2727 spin_unlock(&wb->list_lock); 2728 spin_unlock(&inode->i_lock); 2729 } 2730 EXPORT_SYMBOL(__mark_inode_dirty); 2731 2732 /* 2733 * The @s_sync_lock is used to serialise concurrent sync operations 2734 * to avoid lock contention problems with concurrent wait_sb_inodes() calls. 2735 * Concurrent callers will block on the s_sync_lock rather than doing contending 2736 * walks. The queueing maintains sync(2) required behaviour as all the IO that 2737 * has been issued up to the time this function is enter is guaranteed to be 2738 * completed by the time we have gained the lock and waited for all IO that is 2739 * in progress regardless of the order callers are granted the lock. 2740 */ 2741 static void wait_sb_inodes(struct super_block *sb) 2742 { 2743 LIST_HEAD(sync_list); 2744 2745 /* 2746 * We need to be protected against the filesystem going from 2747 * r/o to r/w or vice versa. 2748 */ 2749 WARN_ON(!rwsem_is_locked(&sb->s_umount)); 2750 2751 mutex_lock(&sb->s_sync_lock); 2752 2753 /* 2754 * Splice the writeback list onto a temporary list to avoid waiting on 2755 * inodes that have started writeback after this point. 2756 * 2757 * Use rcu_read_lock() to keep the inodes around until we have a 2758 * reference. s_inode_wblist_lock protects sb->s_inodes_wb as well as 2759 * the local list because inodes can be dropped from either by writeback 2760 * completion. 2761 */ 2762 rcu_read_lock(); 2763 spin_lock_irq(&sb->s_inode_wblist_lock); 2764 list_splice_init(&sb->s_inodes_wb, &sync_list); 2765 2766 /* 2767 * Data integrity sync. Must wait for all pages under writeback, because 2768 * there may have been pages dirtied before our sync call, but which had 2769 * writeout started before we write it out. In which case, the inode 2770 * may not be on the dirty list, but we still have to wait for that 2771 * writeout. 2772 */ 2773 while (!list_empty(&sync_list)) { 2774 struct inode *inode = list_first_entry(&sync_list, struct inode, 2775 i_wb_list); 2776 struct address_space *mapping = inode->i_mapping; 2777 2778 /* 2779 * Move each inode back to the wb list before we drop the lock 2780 * to preserve consistency between i_wb_list and the mapping 2781 * writeback tag. Writeback completion is responsible to remove 2782 * the inode from either list once the writeback tag is cleared. 2783 */ 2784 list_move_tail(&inode->i_wb_list, &sb->s_inodes_wb); 2785 2786 /* 2787 * The mapping can appear untagged while still on-list since we 2788 * do not have the mapping lock. Skip it here, wb completion 2789 * will remove it. 2790 */ 2791 if (!mapping_tagged(mapping, PAGECACHE_TAG_WRITEBACK)) 2792 continue; 2793 2794 spin_unlock_irq(&sb->s_inode_wblist_lock); 2795 2796 spin_lock(&inode->i_lock); 2797 if (inode_state_read(inode) & (I_FREEING | I_WILL_FREE | I_NEW)) { 2798 spin_unlock(&inode->i_lock); 2799 2800 spin_lock_irq(&sb->s_inode_wblist_lock); 2801 continue; 2802 } 2803 __iget(inode); 2804 spin_unlock(&inode->i_lock); 2805 rcu_read_unlock(); 2806 2807 /* 2808 * We keep the error status of individual mapping so that 2809 * applications can catch the writeback error using fsync(2). 2810 * See filemap_fdatawait_keep_errors() for details. 2811 */ 2812 filemap_fdatawait_keep_errors(mapping); 2813 2814 cond_resched(); 2815 2816 iput(inode); 2817 2818 rcu_read_lock(); 2819 spin_lock_irq(&sb->s_inode_wblist_lock); 2820 } 2821 spin_unlock_irq(&sb->s_inode_wblist_lock); 2822 rcu_read_unlock(); 2823 mutex_unlock(&sb->s_sync_lock); 2824 } 2825 2826 static void __writeback_inodes_sb_nr(struct super_block *sb, unsigned long nr, 2827 enum wb_reason reason, bool skip_if_busy) 2828 { 2829 struct backing_dev_info *bdi = sb->s_bdi; 2830 DEFINE_WB_COMPLETION(done, bdi); 2831 struct wb_writeback_work work = { 2832 .sb = sb, 2833 .sync_mode = WB_SYNC_NONE, 2834 .tagged_writepages = 1, 2835 .done = &done, 2836 .nr_pages = nr, 2837 .reason = reason, 2838 }; 2839 2840 if (!bdi_has_dirty_io(bdi) || bdi == &noop_backing_dev_info) 2841 return; 2842 WARN_ON(!rwsem_is_locked(&sb->s_umount)); 2843 2844 bdi_split_work_to_wbs(sb->s_bdi, &work, skip_if_busy); 2845 wb_wait_for_completion(&done); 2846 } 2847 2848 /** 2849 * writeback_inodes_sb_nr - writeback dirty inodes from given super_block 2850 * @sb: the superblock 2851 * @nr: the number of pages to write 2852 * @reason: reason why some writeback work initiated 2853 * 2854 * Start writeback on some inodes on this super_block. No guarantees are made 2855 * on how many (if any) will be written, and this function does not wait 2856 * for IO completion of submitted IO. 2857 */ 2858 void writeback_inodes_sb_nr(struct super_block *sb, 2859 unsigned long nr, 2860 enum wb_reason reason) 2861 { 2862 __writeback_inodes_sb_nr(sb, nr, reason, false); 2863 } 2864 EXPORT_SYMBOL(writeback_inodes_sb_nr); 2865 2866 /** 2867 * writeback_inodes_sb - writeback dirty inodes from given super_block 2868 * @sb: the superblock 2869 * @reason: reason why some writeback work was initiated 2870 * 2871 * Start writeback on some inodes on this super_block. No guarantees are made 2872 * on how many (if any) will be written, and this function does not wait 2873 * for IO completion of submitted IO. 2874 */ 2875 void writeback_inodes_sb(struct super_block *sb, enum wb_reason reason) 2876 { 2877 writeback_inodes_sb_nr(sb, get_nr_dirty_pages(), reason); 2878 } 2879 EXPORT_SYMBOL(writeback_inodes_sb); 2880 2881 /** 2882 * try_to_writeback_inodes_sb - try to start writeback if none underway 2883 * @sb: the superblock 2884 * @reason: reason why some writeback work was initiated 2885 * 2886 * Invoke __writeback_inodes_sb_nr if no writeback is currently underway. 2887 */ 2888 void try_to_writeback_inodes_sb(struct super_block *sb, enum wb_reason reason) 2889 { 2890 if (!down_read_trylock(&sb->s_umount)) 2891 return; 2892 2893 __writeback_inodes_sb_nr(sb, get_nr_dirty_pages(), reason, true); 2894 up_read(&sb->s_umount); 2895 } 2896 EXPORT_SYMBOL(try_to_writeback_inodes_sb); 2897 2898 /** 2899 * sync_inodes_sb - sync sb inode pages 2900 * @sb: the superblock 2901 * 2902 * This function writes and waits on any dirty inode belonging to this 2903 * super_block. 2904 */ 2905 void sync_inodes_sb(struct super_block *sb) 2906 { 2907 struct backing_dev_info *bdi = sb->s_bdi; 2908 DEFINE_WB_COMPLETION(done, bdi); 2909 struct wb_writeback_work work = { 2910 .sb = sb, 2911 .sync_mode = WB_SYNC_ALL, 2912 .nr_pages = LONG_MAX, 2913 .range_cyclic = 0, 2914 .done = &done, 2915 .reason = WB_REASON_SYNC, 2916 .for_sync = 1, 2917 }; 2918 2919 /* 2920 * Can't skip on !bdi_has_dirty() because we should wait for !dirty 2921 * inodes under writeback and I_DIRTY_TIME inodes ignored by 2922 * bdi_has_dirty() need to be written out too. 2923 */ 2924 if (bdi == &noop_backing_dev_info) 2925 return; 2926 2927 /* 2928 * If the superblock has SB_I_NO_DATA_INTEGRITY set, there's no need to 2929 * wait for the writeout to complete, as the filesystem cannot guarantee 2930 * data persistence on sync. Just kick off writeback and return. 2931 */ 2932 if (sb->s_iflags & SB_I_NO_DATA_INTEGRITY) { 2933 wakeup_flusher_threads_bdi(bdi, WB_REASON_SYNC); 2934 return; 2935 } 2936 2937 WARN_ON(!rwsem_is_locked(&sb->s_umount)); 2938 2939 /* protect against inode wb switch, see inode_switch_wbs_work_fn() */ 2940 bdi_down_write_wb_switch_rwsem(bdi); 2941 bdi_split_work_to_wbs(bdi, &work, false); 2942 wb_wait_for_completion(&done); 2943 bdi_up_write_wb_switch_rwsem(bdi); 2944 2945 wait_sb_inodes(sb); 2946 } 2947 EXPORT_SYMBOL(sync_inodes_sb); 2948 2949 /** 2950 * write_inode_now - write an inode to disk 2951 * @inode: inode to write to disk 2952 * @sync: whether the write should be synchronous or not 2953 * 2954 * This function commits an inode to disk immediately if it is dirty. This is 2955 * primarily needed by knfsd. 2956 * 2957 * The caller must either have a ref on the inode or must have set I_WILL_FREE. 2958 */ 2959 int write_inode_now(struct inode *inode, int sync) 2960 { 2961 struct writeback_control wbc = { 2962 .nr_to_write = LONG_MAX, 2963 .sync_mode = sync ? WB_SYNC_ALL : WB_SYNC_NONE, 2964 .range_start = 0, 2965 .range_end = LLONG_MAX, 2966 }; 2967 2968 if (!mapping_can_writeback(inode->i_mapping)) 2969 wbc.nr_to_write = 0; 2970 2971 might_sleep(); 2972 return writeback_single_inode(inode, &wbc); 2973 } 2974 EXPORT_SYMBOL(write_inode_now); 2975 2976 /** 2977 * sync_inode_metadata - write an inode to disk 2978 * @inode: the inode to sync 2979 * @wait: wait for I/O to complete. 2980 * 2981 * Write an inode to disk and adjust its dirty state after completion. 2982 * 2983 * Note: only writes the actual inode, no associated data or other metadata. 2984 */ 2985 int sync_inode_metadata(struct inode *inode, int wait) 2986 { 2987 struct writeback_control wbc = { 2988 .sync_mode = wait ? WB_SYNC_ALL : WB_SYNC_NONE, 2989 .nr_to_write = 0, /* metadata-only */ 2990 }; 2991 2992 return writeback_single_inode(inode, &wbc); 2993 } 2994 EXPORT_SYMBOL(sync_inode_metadata); 2995