aboutsummaryrefslogtreecommitdiffstats
path: root/mm/page-writeback.c
diff options
context:
space:
mode:
Diffstat (limited to 'mm/page-writeback.c')
-rw-r--r--mm/page-writeback.c9
1 files changed, 6 insertions, 3 deletions
diff --git a/mm/page-writeback.c b/mm/page-writeback.c
index a4ca162666c5..5e00f1772c20 100644
--- a/mm/page-writeback.c
+++ b/mm/page-writeback.c
@@ -567,6 +567,7 @@ static void background_writeout(unsigned long _min_pages)
567 global_page_state(NR_UNSTABLE_NFS) < background_thresh 567 global_page_state(NR_UNSTABLE_NFS) < background_thresh
568 && min_pages <= 0) 568 && min_pages <= 0)
569 break; 569 break;
570 wbc.more_io = 0;
570 wbc.encountered_congestion = 0; 571 wbc.encountered_congestion = 0;
571 wbc.nr_to_write = MAX_WRITEBACK_PAGES; 572 wbc.nr_to_write = MAX_WRITEBACK_PAGES;
572 wbc.pages_skipped = 0; 573 wbc.pages_skipped = 0;
@@ -574,8 +575,9 @@ static void background_writeout(unsigned long _min_pages)
574 min_pages -= MAX_WRITEBACK_PAGES - wbc.nr_to_write; 575 min_pages -= MAX_WRITEBACK_PAGES - wbc.nr_to_write;
575 if (wbc.nr_to_write > 0 || wbc.pages_skipped > 0) { 576 if (wbc.nr_to_write > 0 || wbc.pages_skipped > 0) {
576 /* Wrote less than expected */ 577 /* Wrote less than expected */
577 congestion_wait(WRITE, HZ/10); 578 if (wbc.encountered_congestion || wbc.more_io)
578 if (!wbc.encountered_congestion) 579 congestion_wait(WRITE, HZ/10);
580 else
579 break; 581 break;
580 } 582 }
581 } 583 }
@@ -640,11 +642,12 @@ static void wb_kupdate(unsigned long arg)
640 global_page_state(NR_UNSTABLE_NFS) + 642 global_page_state(NR_UNSTABLE_NFS) +
641 (inodes_stat.nr_inodes - inodes_stat.nr_unused); 643 (inodes_stat.nr_inodes - inodes_stat.nr_unused);
642 while (nr_to_write > 0) { 644 while (nr_to_write > 0) {
645 wbc.more_io = 0;
643 wbc.encountered_congestion = 0; 646 wbc.encountered_congestion = 0;
644 wbc.nr_to_write = MAX_WRITEBACK_PAGES; 647 wbc.nr_to_write = MAX_WRITEBACK_PAGES;
645 writeback_inodes(&wbc); 648 writeback_inodes(&wbc);
646 if (wbc.nr_to_write > 0) { 649 if (wbc.nr_to_write > 0) {
647 if (wbc.encountered_congestion) 650 if (wbc.encountered_congestion || wbc.more_io)
648 congestion_wait(WRITE, HZ/10); 651 congestion_wait(WRITE, HZ/10);
649 else 652 else
650 break; /* All the old data is written */ 653 break; /* All the old data is written */