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