]> git.ipfire.org Git - thirdparty/kernel/linux.git/commitdiff
mm: reinstate unconditional writeback start in balance_dirty_pages()
authorJoanne Koong <joannelkoong@gmail.com>
Thu, 26 Mar 2026 21:51:27 +0000 (14:51 -0700)
committerAndrew Morton <akpm@linux-foundation.org>
Mon, 6 Apr 2026 18:13:42 +0000 (11:13 -0700)
Commit 64dd89ae01f2 ("mm/block/fs: remove laptop_mode") removed this
unconditional writeback start from balance_dirty_pages():

       if (unlikely(!writeback_in_progress(wb)))
       wb_start_background_writeback(wb);

This logic needs to be reinstated to prevent performance regressions for
strictlimited BDIs and memcg setups.  The problem occurs because:

a) For strictlimited BDIs, throttling is calculated using per-wb
   thresholds.  The per-wb threshold can be exceeded even when the global
   dirty threshold was not exceeded (nr_dirty < gdtc->bg_thresh)

b) For memcg-based throttling, memcg uses its own dirty count /
   thresholds and can trigger throttling even when the global threshold
   isn't exceeded

Without the unconditional writeback start, IO is throttled as it waits for
dirty pages to be written back but there is no writeback running.  This
leads to severe stalls.  On fuse, buffered write performance dropped from
1400 MiB/s to 2000 KiB/s.

Reinstate the unconditional writeback start so that writeback is
guaranteed to be running whenever IO needs to be throttled.

Link: https://lkml.kernel.org/r/20260326215127.3857682-2-joannelkoong@gmail.com
Fixes: 64dd89ae01f2 ("mm/block/fs: remove laptop_mode")
Signed-off-by: Joanne Koong <joannelkoong@gmail.com>
Reviewed-by: Christoph Hellwig <hch@lst.de>
Reviewed-by: Jan Kara <jack@suse.cz>
Acked-by: Johannes Weiner <hannes@cmpxchg.org>
Cc: Matthew Wilcox (Oracle) <willy@infradead.org>
Cc: <stable@vger.kernel.org>
Signed-off-by: Andrew Morton <akpm@linux-foundation.org>
mm/page-writeback.c

index 601a5e048d128557a2e0a476e3e924d2c0be1a03..c1a4b32af1a7f9faf9ea307039f126cc57e765cc 100644 (file)
@@ -1858,6 +1858,27 @@ free_running:
                        break;
                }
 
+               /*
+                * Unconditionally start background writeback if it's not
+                * already in progress. We need to do this because the global
+                * dirty threshold check above (nr_dirty > gdtc->bg_thresh)
+                * doesn't account for these cases:
+                *
+                * a) strictlimit BDIs: throttling is calculated using per-wb
+                * thresholds. The per-wb threshold can be exceeded even when
+                * nr_dirty < gdtc->bg_thresh
+                *
+                * b) memcg-based throttling: memcg uses its own dirty count and
+                * thresholds and can trigger throttling even when global
+                * nr_dirty < gdtc->bg_thresh
+                *
+                * Writeback needs to be started else the writer stalls in the
+                * throttle loop waiting for dirty pages to be written back
+                * while no writeback is running.
+                */
+               if (unlikely(!writeback_in_progress(wb)))
+                       wb_start_background_writeback(wb);
+
                mem_cgroup_flush_foreign(wb);
 
                /*