blob: a613f8ef6a0209cf5a940ea61cdfbd6c6c35dadf [file] [log] [blame]
Thomas Gleixner457c8992019-05-19 13:08:55 +01001// SPDX-License-Identifier: GPL-2.0-only
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02003 * mm/page-writeback.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07004 *
5 * Copyright (C) 2002, Linus Torvalds.
Peter Zijlstra90eec102015-11-16 11:08:45 +01006 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra
Linus Torvalds1da177e2005-04-16 15:20:36 -07007 *
8 * Contains functions related to writing back dirty pages at the
9 * address_space level.
10 *
Francois Camie1f8e872008-10-15 22:01:59 -070011 * 10Apr2002 Andrew Morton
Linus Torvalds1da177e2005-04-16 15:20:36 -070012 * Initial version
13 */
14
15#include <linux/kernel.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040016#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/spinlock.h>
18#include <linux/fs.h>
19#include <linux/mm.h>
20#include <linux/swap.h>
21#include <linux/slab.h>
22#include <linux/pagemap.h>
23#include <linux/writeback.h>
24#include <linux/init.h>
25#include <linux/backing-dev.h>
Andrew Morton55e829a2006-12-10 02:19:27 -080026#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/blkdev.h>
28#include <linux/mpage.h>
Peter Zijlstrad08b3852006-09-25 23:30:57 -070029#include <linux/rmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/percpu.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/smp.h>
32#include <linux/sysctl.h>
33#include <linux/cpu.h>
34#include <linux/syscalls.h>
David Howells811d7362006-08-29 19:06:09 +010035#include <linux/pagevec.h>
Jan Karaeb608e32012-05-24 18:59:11 +020036#include <linux/timer.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060037#include <linux/sched/rt.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010038#include <linux/sched/signal.h>
Lisa Du6e543d52013-09-11 14:22:36 -070039#include <linux/mm_inline.h>
Dave Chinner028c2dd2010-07-07 13:24:07 +100040#include <trace/events/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
Lisa Du6e543d52013-09-11 14:22:36 -070042#include "internal.h"
43
Linus Torvalds1da177e2005-04-16 15:20:36 -070044/*
Wu Fengguangffd1f602011-06-19 22:18:42 -060045 * Sleep at most 200ms at a time in balance_dirty_pages().
46 */
47#define MAX_PAUSE max(HZ/5, 1)
48
49/*
Wu Fengguang5b9b3572011-12-06 13:17:17 -060050 * Try to keep balance_dirty_pages() call intervals higher than this many pages
51 * by raising pause time to max_pause when falls below it.
52 */
53#define DIRTY_POLL_THRESH (128 >> (PAGE_SHIFT - 10))
54
55/*
Wu Fengguange98be2d2010-08-29 11:22:30 -060056 * Estimate write bandwidth at 200ms intervals.
57 */
58#define BANDWIDTH_INTERVAL max(HZ/5, 1)
59
Wu Fengguang6c14ae12011-03-02 16:04:18 -060060#define RATELIMIT_CALC_SHIFT 10
61
Wu Fengguange98be2d2010-08-29 11:22:30 -060062/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070063 * After a CPU has dirtied this many pages, balance_dirty_pages_ratelimited
64 * will look to see if it needs to force writeback or throttling.
65 */
66static long ratelimit_pages = 32;
67
Linus Torvalds1da177e2005-04-16 15:20:36 -070068/* The following parameters are exported via /proc/sys/vm */
69
70/*
Jens Axboe5b0830c2009-09-23 19:37:09 +020071 * Start background writeback (via writeback threads) at this percentage
Linus Torvalds1da177e2005-04-16 15:20:36 -070072 */
Wu Fengguang1b5e62b2009-03-23 08:57:38 +080073int dirty_background_ratio = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070074
75/*
David Rientjes2da02992009-01-06 14:39:31 -080076 * dirty_background_bytes starts at 0 (disabled) so that it is a function of
77 * dirty_background_ratio * the amount of dirtyable memory
78 */
79unsigned long dirty_background_bytes;
80
81/*
Bron Gondwana195cf4532008-02-04 22:29:20 -080082 * free highmem will not be subtracted from the total free memory
83 * for calculating free ratios if vm_highmem_is_dirtyable is true
84 */
85int vm_highmem_is_dirtyable;
86
87/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070088 * The generator of dirty data starts writeback at this percentage
89 */
Wu Fengguang1b5e62b2009-03-23 08:57:38 +080090int vm_dirty_ratio = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
David Rientjes2da02992009-01-06 14:39:31 -080093 * vm_dirty_bytes starts at 0 (disabled) so that it is a function of
94 * vm_dirty_ratio * the amount of dirtyable memory
95 */
96unsigned long vm_dirty_bytes;
97
98/*
Alexey Dobriyan704503d2009-03-31 15:23:18 -070099 * The interval between `kupdate'-style writebacks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
Toshiyuki Okajima22ef37e2009-05-16 22:56:28 -0700101unsigned int dirty_writeback_interval = 5 * 100; /* centiseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102
Artem Bityutskiy91913a22012-03-21 22:33:00 -0400103EXPORT_SYMBOL_GPL(dirty_writeback_interval);
104
Linus Torvalds1da177e2005-04-16 15:20:36 -0700105/*
Alexey Dobriyan704503d2009-03-31 15:23:18 -0700106 * The longest time for which data is allowed to remain dirty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700107 */
Toshiyuki Okajima22ef37e2009-05-16 22:56:28 -0700108unsigned int dirty_expire_interval = 30 * 100; /* centiseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700109
110/*
Bart Samweled5b43f2006-03-24 03:15:49 -0800111 * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
112 * a full sync is triggered after this time elapses without any disk activity.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700113 */
114int laptop_mode;
115
116EXPORT_SYMBOL(laptop_mode);
117
118/* End of sysctl-exported parameters */
119
Tejun Heodcc25ae2015-05-22 18:23:22 -0400120struct wb_domain global_wb_domain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400122/* consolidated parameters for balance_dirty_pages() and its subroutines */
123struct dirty_throttle_control {
Tejun Heoe9f07df2015-05-22 18:23:28 -0400124#ifdef CONFIG_CGROUP_WRITEBACK
125 struct wb_domain *dom;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400126 struct dirty_throttle_control *gdtc; /* only set in memcg dtc's */
Tejun Heoe9f07df2015-05-22 18:23:28 -0400127#endif
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400128 struct bdi_writeback *wb;
Tejun Heoe9770b32015-05-22 18:23:27 -0400129 struct fprop_local_percpu *wb_completions;
Jan Karaeb608e32012-05-24 18:59:11 +0200130
Tejun Heo9fc3a432015-05-22 18:23:30 -0400131 unsigned long avail; /* dirtyable */
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400132 unsigned long dirty; /* file_dirty + write + nfs */
133 unsigned long thresh; /* dirty threshold */
134 unsigned long bg_thresh; /* dirty background threshold */
135
136 unsigned long wb_dirty; /* per-wb counterparts */
137 unsigned long wb_thresh;
Tejun Heo970fb012015-05-22 18:23:24 -0400138 unsigned long wb_bg_thresh;
Tejun Heodaddfa32015-05-22 18:23:26 -0400139
140 unsigned long pos_ratio;
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400141};
142
Jan Karaeb608e32012-05-24 18:59:11 +0200143/*
144 * Length of period for aging writeout fractions of bdis. This is an
145 * arbitrarily chosen number. The longer the period, the slower fractions will
146 * reflect changes in current writeout rate.
147 */
148#define VM_COMPLETIONS_PERIOD_LEN (3*HZ)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700149
Tejun Heo693108a2015-05-22 17:13:49 -0400150#ifdef CONFIG_CGROUP_WRITEBACK
151
Tejun Heod60d1bd2015-09-29 12:47:53 -0400152#define GDTC_INIT(__wb) .wb = (__wb), \
153 .dom = &global_wb_domain, \
154 .wb_completions = &(__wb)->completions
155
Tejun Heo9fc3a432015-05-22 18:23:30 -0400156#define GDTC_INIT_NO_WB .dom = &global_wb_domain
Tejun Heod60d1bd2015-09-29 12:47:53 -0400157
158#define MDTC_INIT(__wb, __gdtc) .wb = (__wb), \
159 .dom = mem_cgroup_wb_domain(__wb), \
160 .wb_completions = &(__wb)->memcg_completions, \
161 .gdtc = __gdtc
Tejun Heoc2aa7232015-05-22 18:23:35 -0400162
163static bool mdtc_valid(struct dirty_throttle_control *dtc)
164{
165 return dtc->dom;
166}
Tejun Heoe9f07df2015-05-22 18:23:28 -0400167
168static struct wb_domain *dtc_dom(struct dirty_throttle_control *dtc)
169{
170 return dtc->dom;
171}
172
Tejun Heo9fc3a432015-05-22 18:23:30 -0400173static struct dirty_throttle_control *mdtc_gdtc(struct dirty_throttle_control *mdtc)
174{
175 return mdtc->gdtc;
176}
177
Tejun Heo841710a2015-05-22 18:23:33 -0400178static struct fprop_local_percpu *wb_memcg_completions(struct bdi_writeback *wb)
179{
180 return &wb->memcg_completions;
181}
182
Tejun Heo693108a2015-05-22 17:13:49 -0400183static void wb_min_max_ratio(struct bdi_writeback *wb,
184 unsigned long *minp, unsigned long *maxp)
185{
Jan Kara20792eb2021-09-02 14:53:15 -0700186 unsigned long this_bw = READ_ONCE(wb->avg_write_bandwidth);
Tejun Heo693108a2015-05-22 17:13:49 -0400187 unsigned long tot_bw = atomic_long_read(&wb->bdi->tot_write_bandwidth);
188 unsigned long long min = wb->bdi->min_ratio;
189 unsigned long long max = wb->bdi->max_ratio;
190
191 /*
192 * @wb may already be clean by the time control reaches here and
193 * the total may not include its bw.
194 */
195 if (this_bw < tot_bw) {
196 if (min) {
197 min *= this_bw;
Wen Yang6d9e8c62020-01-13 16:29:23 -0800198 min = div64_ul(min, tot_bw);
Tejun Heo693108a2015-05-22 17:13:49 -0400199 }
200 if (max < 100) {
201 max *= this_bw;
Wen Yang6d9e8c62020-01-13 16:29:23 -0800202 max = div64_ul(max, tot_bw);
Tejun Heo693108a2015-05-22 17:13:49 -0400203 }
204 }
205
206 *minp = min;
207 *maxp = max;
208}
209
210#else /* CONFIG_CGROUP_WRITEBACK */
211
Tejun Heod60d1bd2015-09-29 12:47:53 -0400212#define GDTC_INIT(__wb) .wb = (__wb), \
213 .wb_completions = &(__wb)->completions
Tejun Heo9fc3a432015-05-22 18:23:30 -0400214#define GDTC_INIT_NO_WB
Tejun Heoc2aa7232015-05-22 18:23:35 -0400215#define MDTC_INIT(__wb, __gdtc)
216
217static bool mdtc_valid(struct dirty_throttle_control *dtc)
218{
219 return false;
220}
Tejun Heoe9f07df2015-05-22 18:23:28 -0400221
222static struct wb_domain *dtc_dom(struct dirty_throttle_control *dtc)
223{
224 return &global_wb_domain;
225}
226
Tejun Heo9fc3a432015-05-22 18:23:30 -0400227static struct dirty_throttle_control *mdtc_gdtc(struct dirty_throttle_control *mdtc)
228{
229 return NULL;
230}
231
Tejun Heo841710a2015-05-22 18:23:33 -0400232static struct fprop_local_percpu *wb_memcg_completions(struct bdi_writeback *wb)
233{
234 return NULL;
235}
236
Tejun Heo693108a2015-05-22 17:13:49 -0400237static void wb_min_max_ratio(struct bdi_writeback *wb,
238 unsigned long *minp, unsigned long *maxp)
239{
240 *minp = wb->bdi->min_ratio;
241 *maxp = wb->bdi->max_ratio;
242}
243
244#endif /* CONFIG_CGROUP_WRITEBACK */
245
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700246/*
Johannes Weinera756cf52012-01-10 15:07:49 -0800247 * In a memory zone, there is a certain amount of pages we consider
248 * available for the page cache, which is essentially the number of
249 * free and reclaimable pages, minus some zone reserves to protect
250 * lowmem and the ability to uphold the zone's watermarks without
251 * requiring writeback.
252 *
253 * This number of dirtyable pages is the base value of which the
Ethon Paule0857cf2020-06-04 16:49:40 -0700254 * user-configurable dirty ratio is the effective number of pages that
Johannes Weinera756cf52012-01-10 15:07:49 -0800255 * are allowed to be actually dirtied. Per individual zone, or
256 * globally by using the sum of dirtyable pages over all zones.
257 *
258 * Because the user is allowed to specify the dirty limit globally as
259 * absolute number of bytes, calculating the per-zone dirty limit can
260 * require translating the configured limit into a percentage of
261 * global dirtyable memory first.
262 */
263
Johannes Weinera8045522014-01-29 14:05:39 -0800264/**
Mel Gorman281e3722016-07-28 15:46:11 -0700265 * node_dirtyable_memory - number of dirtyable pages in a node
266 * @pgdat: the node
Johannes Weinera8045522014-01-29 14:05:39 -0800267 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800268 * Return: the node's number of pages potentially available for dirty
Mel Gorman281e3722016-07-28 15:46:11 -0700269 * page cache. This is the base value for the per-node dirty limits.
Johannes Weinera8045522014-01-29 14:05:39 -0800270 */
Mel Gorman281e3722016-07-28 15:46:11 -0700271static unsigned long node_dirtyable_memory(struct pglist_data *pgdat)
Johannes Weinera8045522014-01-29 14:05:39 -0800272{
Mel Gorman281e3722016-07-28 15:46:11 -0700273 unsigned long nr_pages = 0;
274 int z;
Johannes Weinera8045522014-01-29 14:05:39 -0800275
Mel Gorman281e3722016-07-28 15:46:11 -0700276 for (z = 0; z < MAX_NR_ZONES; z++) {
277 struct zone *zone = pgdat->node_zones + z;
278
279 if (!populated_zone(zone))
280 continue;
281
282 nr_pages += zone_page_state(zone, NR_FREE_PAGES);
283 }
284
Johannes Weinera8d01432016-01-14 15:20:15 -0800285 /*
286 * Pages reserved for the kernel should not be considered
287 * dirtyable, to prevent a situation where reclaim has to
288 * clean pages in order to balance the zones.
289 */
Mel Gorman281e3722016-07-28 15:46:11 -0700290 nr_pages -= min(nr_pages, pgdat->totalreserve_pages);
Johannes Weinera8045522014-01-29 14:05:39 -0800291
Mel Gorman281e3722016-07-28 15:46:11 -0700292 nr_pages += node_page_state(pgdat, NR_INACTIVE_FILE);
293 nr_pages += node_page_state(pgdat, NR_ACTIVE_FILE);
Johannes Weinera8045522014-01-29 14:05:39 -0800294
295 return nr_pages;
296}
297
Johannes Weiner1edf2232012-01-10 15:06:57 -0800298static unsigned long highmem_dirtyable_memory(unsigned long total)
299{
300#ifdef CONFIG_HIGHMEM
301 int node;
Mel Gormanbb4cc2b2016-07-28 15:47:29 -0700302 unsigned long x = 0;
Joonsoo Kim09b4ab32016-05-19 17:12:20 -0700303 int i;
Johannes Weiner1edf2232012-01-10 15:06:57 -0800304
305 for_each_node_state(node, N_HIGH_MEMORY) {
Mel Gorman281e3722016-07-28 15:46:11 -0700306 for (i = ZONE_NORMAL + 1; i < MAX_NR_ZONES; i++) {
307 struct zone *z;
Minchan Kim9cb937e2016-07-28 15:47:08 -0700308 unsigned long nr_pages;
Johannes Weiner1edf2232012-01-10 15:06:57 -0800309
Mel Gorman281e3722016-07-28 15:46:11 -0700310 if (!is_highmem_idx(i))
311 continue;
312
313 z = &NODE_DATA(node)->node_zones[i];
Minchan Kim9cb937e2016-07-28 15:47:08 -0700314 if (!populated_zone(z))
315 continue;
Mel Gorman281e3722016-07-28 15:46:11 -0700316
Minchan Kim9cb937e2016-07-28 15:47:08 -0700317 nr_pages = zone_page_state(z, NR_FREE_PAGES);
Mel Gorman281e3722016-07-28 15:46:11 -0700318 /* watch for underflows */
Minchan Kim9cb937e2016-07-28 15:47:08 -0700319 nr_pages -= min(nr_pages, high_wmark_pages(z));
Mel Gormanbb4cc2b2016-07-28 15:47:29 -0700320 nr_pages += zone_page_state(z, NR_ZONE_INACTIVE_FILE);
321 nr_pages += zone_page_state(z, NR_ZONE_ACTIVE_FILE);
322 x += nr_pages;
Joonsoo Kim09b4ab32016-05-19 17:12:20 -0700323 }
Johannes Weiner1edf2232012-01-10 15:06:57 -0800324 }
Mel Gorman281e3722016-07-28 15:46:11 -0700325
Johannes Weiner1edf2232012-01-10 15:06:57 -0800326 /*
Sonny Raoc8b74c2f2012-12-20 15:05:07 -0800327 * Unreclaimable memory (kernel memory or anonymous memory
328 * without swap) can bring down the dirtyable pages below
329 * the zone's dirty balance reserve and the above calculation
330 * will underflow. However we still want to add in nodes
331 * which are below threshold (negative values) to get a more
332 * accurate calculation but make sure that the total never
333 * underflows.
334 */
335 if ((long)x < 0)
336 x = 0;
337
338 /*
Johannes Weiner1edf2232012-01-10 15:06:57 -0800339 * Make sure that the number of highmem pages is never larger
340 * than the number of the total dirtyable memory. This can only
341 * occur in very strange VM situations but we want to make sure
342 * that this does not occur.
343 */
344 return min(x, total);
345#else
346 return 0;
347#endif
348}
349
350/**
Johannes Weinerccafa282012-01-10 15:07:44 -0800351 * global_dirtyable_memory - number of globally dirtyable pages
Johannes Weiner1edf2232012-01-10 15:06:57 -0800352 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800353 * Return: the global number of pages potentially available for dirty
Johannes Weinerccafa282012-01-10 15:07:44 -0800354 * page cache. This is the base value for the global dirty limits.
Johannes Weiner1edf2232012-01-10 15:06:57 -0800355 */
H Hartley Sweeten18cf8cf2012-04-12 13:44:20 -0700356static unsigned long global_dirtyable_memory(void)
Johannes Weiner1edf2232012-01-10 15:06:57 -0800357{
358 unsigned long x;
359
Michal Hockoc41f0122017-09-06 16:23:36 -0700360 x = global_zone_page_state(NR_FREE_PAGES);
Johannes Weinera8d01432016-01-14 15:20:15 -0800361 /*
362 * Pages reserved for the kernel should not be considered
363 * dirtyable, to prevent a situation where reclaim has to
364 * clean pages in order to balance the zones.
365 */
366 x -= min(x, totalreserve_pages);
Johannes Weiner1edf2232012-01-10 15:06:57 -0800367
Mel Gorman599d0c92016-07-28 15:45:31 -0700368 x += global_node_page_state(NR_INACTIVE_FILE);
369 x += global_node_page_state(NR_ACTIVE_FILE);
Johannes Weinera8045522014-01-29 14:05:39 -0800370
Johannes Weiner1edf2232012-01-10 15:06:57 -0800371 if (!vm_highmem_is_dirtyable)
372 x -= highmem_dirtyable_memory(x);
373
374 return x + 1; /* Ensure that we never return 0 */
375}
376
Tejun Heo9fc3a432015-05-22 18:23:30 -0400377/**
378 * domain_dirty_limits - calculate thresh and bg_thresh for a wb_domain
379 * @dtc: dirty_throttle_control of interest
Johannes Weinerccafa282012-01-10 15:07:44 -0800380 *
Tejun Heo9fc3a432015-05-22 18:23:30 -0400381 * Calculate @dtc->thresh and ->bg_thresh considering
382 * vm_dirty_{bytes|ratio} and dirty_background_{bytes|ratio}. The caller
383 * must ensure that @dtc->avail is set before calling this function. The
NeilBrowna37b0712020-06-01 21:48:18 -0700384 * dirty limits will be lifted by 1/4 for real-time tasks.
Johannes Weinerccafa282012-01-10 15:07:44 -0800385 */
Tejun Heo9fc3a432015-05-22 18:23:30 -0400386static void domain_dirty_limits(struct dirty_throttle_control *dtc)
387{
388 const unsigned long available_memory = dtc->avail;
389 struct dirty_throttle_control *gdtc = mdtc_gdtc(dtc);
390 unsigned long bytes = vm_dirty_bytes;
391 unsigned long bg_bytes = dirty_background_bytes;
Tejun Heo62a584f2016-05-27 14:34:46 -0400392 /* convert ratios to per-PAGE_SIZE for higher precision */
393 unsigned long ratio = (vm_dirty_ratio * PAGE_SIZE) / 100;
394 unsigned long bg_ratio = (dirty_background_ratio * PAGE_SIZE) / 100;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400395 unsigned long thresh;
396 unsigned long bg_thresh;
397 struct task_struct *tsk;
398
399 /* gdtc is !NULL iff @dtc is for memcg domain */
400 if (gdtc) {
401 unsigned long global_avail = gdtc->avail;
402
403 /*
404 * The byte settings can't be applied directly to memcg
405 * domains. Convert them to ratios by scaling against
Tejun Heo62a584f2016-05-27 14:34:46 -0400406 * globally available memory. As the ratios are in
407 * per-PAGE_SIZE, they can be obtained by dividing bytes by
408 * number of pages.
Tejun Heo9fc3a432015-05-22 18:23:30 -0400409 */
410 if (bytes)
Tejun Heo62a584f2016-05-27 14:34:46 -0400411 ratio = min(DIV_ROUND_UP(bytes, global_avail),
412 PAGE_SIZE);
Tejun Heo9fc3a432015-05-22 18:23:30 -0400413 if (bg_bytes)
Tejun Heo62a584f2016-05-27 14:34:46 -0400414 bg_ratio = min(DIV_ROUND_UP(bg_bytes, global_avail),
415 PAGE_SIZE);
Tejun Heo9fc3a432015-05-22 18:23:30 -0400416 bytes = bg_bytes = 0;
417 }
418
419 if (bytes)
420 thresh = DIV_ROUND_UP(bytes, PAGE_SIZE);
421 else
Tejun Heo62a584f2016-05-27 14:34:46 -0400422 thresh = (ratio * available_memory) / PAGE_SIZE;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400423
424 if (bg_bytes)
425 bg_thresh = DIV_ROUND_UP(bg_bytes, PAGE_SIZE);
426 else
Tejun Heo62a584f2016-05-27 14:34:46 -0400427 bg_thresh = (bg_ratio * available_memory) / PAGE_SIZE;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400428
Michal Hocko90daf302017-11-29 16:10:58 -0800429 if (bg_thresh >= thresh)
Tejun Heo9fc3a432015-05-22 18:23:30 -0400430 bg_thresh = thresh / 2;
431 tsk = current;
NeilBrowna37b0712020-06-01 21:48:18 -0700432 if (rt_task(tsk)) {
NeilBrowna53eaff2016-05-20 16:58:53 -0700433 bg_thresh += bg_thresh / 4 + global_wb_domain.dirty_limit / 32;
434 thresh += thresh / 4 + global_wb_domain.dirty_limit / 32;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400435 }
436 dtc->thresh = thresh;
437 dtc->bg_thresh = bg_thresh;
438
439 /* we should eventually report the domain in the TP */
440 if (!gdtc)
441 trace_global_dirty_state(bg_thresh, thresh);
442}
443
444/**
445 * global_dirty_limits - background-writeback and dirty-throttling thresholds
446 * @pbackground: out parameter for bg_thresh
447 * @pdirty: out parameter for thresh
448 *
449 * Calculate bg_thresh and thresh for global_wb_domain. See
450 * domain_dirty_limits() for details.
451 */
Johannes Weinerccafa282012-01-10 15:07:44 -0800452void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty)
453{
Tejun Heo9fc3a432015-05-22 18:23:30 -0400454 struct dirty_throttle_control gdtc = { GDTC_INIT_NO_WB };
Johannes Weinerccafa282012-01-10 15:07:44 -0800455
Tejun Heo9fc3a432015-05-22 18:23:30 -0400456 gdtc.avail = global_dirtyable_memory();
457 domain_dirty_limits(&gdtc);
Johannes Weinerccafa282012-01-10 15:07:44 -0800458
Tejun Heo9fc3a432015-05-22 18:23:30 -0400459 *pbackground = gdtc.bg_thresh;
460 *pdirty = gdtc.thresh;
Johannes Weinerccafa282012-01-10 15:07:44 -0800461}
462
Johannes Weinera756cf52012-01-10 15:07:49 -0800463/**
Mel Gorman281e3722016-07-28 15:46:11 -0700464 * node_dirty_limit - maximum number of dirty pages allowed in a node
465 * @pgdat: the node
Johannes Weinera756cf52012-01-10 15:07:49 -0800466 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800467 * Return: the maximum number of dirty pages allowed in a node, based
Mel Gorman281e3722016-07-28 15:46:11 -0700468 * on the node's dirtyable memory.
Johannes Weinera756cf52012-01-10 15:07:49 -0800469 */
Mel Gorman281e3722016-07-28 15:46:11 -0700470static unsigned long node_dirty_limit(struct pglist_data *pgdat)
Johannes Weinera756cf52012-01-10 15:07:49 -0800471{
Mel Gorman281e3722016-07-28 15:46:11 -0700472 unsigned long node_memory = node_dirtyable_memory(pgdat);
Johannes Weinera756cf52012-01-10 15:07:49 -0800473 struct task_struct *tsk = current;
474 unsigned long dirty;
475
476 if (vm_dirty_bytes)
477 dirty = DIV_ROUND_UP(vm_dirty_bytes, PAGE_SIZE) *
Mel Gorman281e3722016-07-28 15:46:11 -0700478 node_memory / global_dirtyable_memory();
Johannes Weinera756cf52012-01-10 15:07:49 -0800479 else
Mel Gorman281e3722016-07-28 15:46:11 -0700480 dirty = vm_dirty_ratio * node_memory / 100;
Johannes Weinera756cf52012-01-10 15:07:49 -0800481
NeilBrowna37b0712020-06-01 21:48:18 -0700482 if (rt_task(tsk))
Johannes Weinera756cf52012-01-10 15:07:49 -0800483 dirty += dirty / 4;
484
485 return dirty;
486}
487
488/**
Mel Gorman281e3722016-07-28 15:46:11 -0700489 * node_dirty_ok - tells whether a node is within its dirty limits
490 * @pgdat: the node to check
Johannes Weinera756cf52012-01-10 15:07:49 -0800491 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800492 * Return: %true when the dirty pages in @pgdat are within the node's
Johannes Weinera756cf52012-01-10 15:07:49 -0800493 * dirty limit, %false if the limit is exceeded.
494 */
Mel Gorman281e3722016-07-28 15:46:11 -0700495bool node_dirty_ok(struct pglist_data *pgdat)
Johannes Weinera756cf52012-01-10 15:07:49 -0800496{
Mel Gorman281e3722016-07-28 15:46:11 -0700497 unsigned long limit = node_dirty_limit(pgdat);
498 unsigned long nr_pages = 0;
Johannes Weinera756cf52012-01-10 15:07:49 -0800499
Mel Gorman11fb9982016-07-28 15:46:20 -0700500 nr_pages += node_page_state(pgdat, NR_FILE_DIRTY);
Mel Gorman11fb9982016-07-28 15:46:20 -0700501 nr_pages += node_page_state(pgdat, NR_WRITEBACK);
Mel Gorman281e3722016-07-28 15:46:11 -0700502
503 return nr_pages <= limit;
Johannes Weinera756cf52012-01-10 15:07:49 -0800504}
505
David Rientjes2da02992009-01-06 14:39:31 -0800506int dirty_background_ratio_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200507 void *buffer, size_t *lenp, loff_t *ppos)
David Rientjes2da02992009-01-06 14:39:31 -0800508{
509 int ret;
510
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700511 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
David Rientjes2da02992009-01-06 14:39:31 -0800512 if (ret == 0 && write)
513 dirty_background_bytes = 0;
514 return ret;
515}
516
517int dirty_background_bytes_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200518 void *buffer, size_t *lenp, loff_t *ppos)
David Rientjes2da02992009-01-06 14:39:31 -0800519{
520 int ret;
521
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700522 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
David Rientjes2da02992009-01-06 14:39:31 -0800523 if (ret == 0 && write)
524 dirty_background_ratio = 0;
525 return ret;
526}
527
Christoph Hellwig32927392020-04-24 08:43:38 +0200528int dirty_ratio_handler(struct ctl_table *table, int write, void *buffer,
529 size_t *lenp, loff_t *ppos)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700530{
531 int old_ratio = vm_dirty_ratio;
David Rientjes2da02992009-01-06 14:39:31 -0800532 int ret;
533
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700534 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700535 if (ret == 0 && write && vm_dirty_ratio != old_ratio) {
Jan Karaeb608e32012-05-24 18:59:11 +0200536 writeback_set_ratelimit();
David Rientjes2da02992009-01-06 14:39:31 -0800537 vm_dirty_bytes = 0;
538 }
539 return ret;
540}
541
David Rientjes2da02992009-01-06 14:39:31 -0800542int dirty_bytes_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +0200543 void *buffer, size_t *lenp, loff_t *ppos)
David Rientjes2da02992009-01-06 14:39:31 -0800544{
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800545 unsigned long old_bytes = vm_dirty_bytes;
David Rientjes2da02992009-01-06 14:39:31 -0800546 int ret;
547
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700548 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
David Rientjes2da02992009-01-06 14:39:31 -0800549 if (ret == 0 && write && vm_dirty_bytes != old_bytes) {
Jan Karaeb608e32012-05-24 18:59:11 +0200550 writeback_set_ratelimit();
David Rientjes2da02992009-01-06 14:39:31 -0800551 vm_dirty_ratio = 0;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700552 }
553 return ret;
554}
555
Jan Karaeb608e32012-05-24 18:59:11 +0200556static unsigned long wp_next_time(unsigned long cur_time)
557{
558 cur_time += VM_COMPLETIONS_PERIOD_LEN;
559 /* 0 has a special meaning... */
560 if (!cur_time)
561 return 1;
562 return cur_time;
563}
564
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400565static void wb_domain_writeout_add(struct wb_domain *dom,
Tejun Heoc7981432015-05-22 18:23:29 -0400566 struct fprop_local_percpu *completions,
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400567 unsigned int max_prop_frac, long nr)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700568{
Matthew Wilcox (Oracle)be5f1792021-03-20 16:34:54 -0400569 __fprop_add_percpu_max(&dom->completions, completions,
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400570 max_prop_frac, nr);
Jan Karaeb608e32012-05-24 18:59:11 +0200571 /* First event after period switching was turned off? */
Steven Rostedt (VMware)517663e2017-02-24 14:59:24 -0800572 if (unlikely(!dom->period_time)) {
Jan Karaeb608e32012-05-24 18:59:11 +0200573 /*
574 * We can race with other __bdi_writeout_inc calls here but
575 * it does not cause any harm since the resulting time when
576 * timer will fire and what is in writeout_period_time will be
577 * roughly the same.
578 */
Tejun Heo380c27c2015-05-22 18:23:21 -0400579 dom->period_time = wp_next_time(jiffies);
580 mod_timer(&dom->period_timer, dom->period_time);
Jan Karaeb608e32012-05-24 18:59:11 +0200581 }
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700582}
583
Tejun Heoc7981432015-05-22 18:23:29 -0400584/*
585 * Increment @wb's writeout completion count and the global writeout
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -0500586 * completion count. Called from __folio_end_writeback().
Tejun Heoc7981432015-05-22 18:23:29 -0400587 */
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400588static inline void __wb_writeout_add(struct bdi_writeback *wb, long nr)
Tejun Heoc7981432015-05-22 18:23:29 -0400589{
Tejun Heo841710a2015-05-22 18:23:33 -0400590 struct wb_domain *cgdom;
591
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400592 wb_stat_mod(wb, WB_WRITTEN, nr);
593 wb_domain_writeout_add(&global_wb_domain, &wb->completions,
594 wb->bdi->max_prop_frac, nr);
Tejun Heo841710a2015-05-22 18:23:33 -0400595
596 cgdom = mem_cgroup_wb_domain(wb);
597 if (cgdom)
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400598 wb_domain_writeout_add(cgdom, wb_memcg_completions(wb),
599 wb->bdi->max_prop_frac, nr);
Tejun Heoc7981432015-05-22 18:23:29 -0400600}
601
Tejun Heo93f78d82015-05-22 17:13:27 -0400602void wb_writeout_inc(struct bdi_writeback *wb)
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700603{
604 unsigned long flags;
605
606 local_irq_save(flags);
Matthew Wilcox (Oracle)cc24df42021-03-20 16:45:15 -0400607 __wb_writeout_add(wb, 1);
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700608 local_irq_restore(flags);
609}
Tejun Heo93f78d82015-05-22 17:13:27 -0400610EXPORT_SYMBOL_GPL(wb_writeout_inc);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700611
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700612/*
Jan Karaeb608e32012-05-24 18:59:11 +0200613 * On idle system, we can be called long after we scheduled because we use
614 * deferred timers so count with missed periods.
615 */
Kees Cook9823e512017-11-15 17:37:04 -0800616static void writeout_period(struct timer_list *t)
Jan Karaeb608e32012-05-24 18:59:11 +0200617{
Kees Cook9823e512017-11-15 17:37:04 -0800618 struct wb_domain *dom = from_timer(dom, t, period_timer);
Tejun Heo380c27c2015-05-22 18:23:21 -0400619 int miss_periods = (jiffies - dom->period_time) /
Jan Karaeb608e32012-05-24 18:59:11 +0200620 VM_COMPLETIONS_PERIOD_LEN;
621
Tejun Heo380c27c2015-05-22 18:23:21 -0400622 if (fprop_new_period(&dom->completions, miss_periods + 1)) {
623 dom->period_time = wp_next_time(dom->period_time +
Jan Karaeb608e32012-05-24 18:59:11 +0200624 miss_periods * VM_COMPLETIONS_PERIOD_LEN);
Tejun Heo380c27c2015-05-22 18:23:21 -0400625 mod_timer(&dom->period_timer, dom->period_time);
Jan Karaeb608e32012-05-24 18:59:11 +0200626 } else {
627 /*
628 * Aging has zeroed all fractions. Stop wasting CPU on period
629 * updates.
630 */
Tejun Heo380c27c2015-05-22 18:23:21 -0400631 dom->period_time = 0;
Jan Karaeb608e32012-05-24 18:59:11 +0200632 }
633}
634
Tejun Heo380c27c2015-05-22 18:23:21 -0400635int wb_domain_init(struct wb_domain *dom, gfp_t gfp)
636{
637 memset(dom, 0, sizeof(*dom));
Tejun Heodcc25ae2015-05-22 18:23:22 -0400638
639 spin_lock_init(&dom->lock);
640
Kees Cook9823e512017-11-15 17:37:04 -0800641 timer_setup(&dom->period_timer, writeout_period, TIMER_DEFERRABLE);
Tejun Heodcc25ae2015-05-22 18:23:22 -0400642
643 dom->dirty_limit_tstamp = jiffies;
644
Tejun Heo380c27c2015-05-22 18:23:21 -0400645 return fprop_global_init(&dom->completions, gfp);
646}
647
Tejun Heo841710a2015-05-22 18:23:33 -0400648#ifdef CONFIG_CGROUP_WRITEBACK
649void wb_domain_exit(struct wb_domain *dom)
650{
651 del_timer_sync(&dom->period_timer);
652 fprop_global_destroy(&dom->completions);
653}
654#endif
655
Jan Karaeb608e32012-05-24 18:59:11 +0200656/*
Johannes Weinerd08c4292011-10-31 17:07:05 -0700657 * bdi_min_ratio keeps the sum of the minimum dirty shares of all
658 * registered backing devices, which, for obvious reasons, can not
659 * exceed 100%.
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700660 */
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700661static unsigned int bdi_min_ratio;
662
663int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio)
664{
665 int ret = 0;
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700666
Jens Axboecfc4ba52009-09-14 13:12:40 +0200667 spin_lock_bh(&bdi_lock);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700668 if (min_ratio > bdi->max_ratio) {
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700669 ret = -EINVAL;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700670 } else {
671 min_ratio -= bdi->min_ratio;
672 if (bdi_min_ratio + min_ratio < 100) {
673 bdi_min_ratio += min_ratio;
674 bdi->min_ratio += min_ratio;
675 } else {
676 ret = -EINVAL;
677 }
678 }
Jens Axboecfc4ba52009-09-14 13:12:40 +0200679 spin_unlock_bh(&bdi_lock);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700680
681 return ret;
682}
683
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700684int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned max_ratio)
685{
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700686 int ret = 0;
687
688 if (max_ratio > 100)
689 return -EINVAL;
690
Jens Axboecfc4ba52009-09-14 13:12:40 +0200691 spin_lock_bh(&bdi_lock);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700692 if (bdi->min_ratio > max_ratio) {
693 ret = -EINVAL;
694 } else {
695 bdi->max_ratio = max_ratio;
Jan Karaeb608e32012-05-24 18:59:11 +0200696 bdi->max_prop_frac = (FPROP_FRAC_BASE * max_ratio) / 100;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700697 }
Jens Axboecfc4ba52009-09-14 13:12:40 +0200698 spin_unlock_bh(&bdi_lock);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700699
700 return ret;
701}
702EXPORT_SYMBOL(bdi_set_max_ratio);
703
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600704static unsigned long dirty_freerun_ceiling(unsigned long thresh,
705 unsigned long bg_thresh)
706{
707 return (thresh + bg_thresh) / 2;
708}
709
Tejun Heoc7981432015-05-22 18:23:29 -0400710static unsigned long hard_dirty_limit(struct wb_domain *dom,
711 unsigned long thresh)
Wu Fengguangffd1f602011-06-19 22:18:42 -0600712{
Tejun Heodcc25ae2015-05-22 18:23:22 -0400713 return max(thresh, dom->dirty_limit);
Wu Fengguangffd1f602011-06-19 22:18:42 -0600714}
715
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400716/*
717 * Memory which can be further allocated to a memcg domain is capped by
718 * system-wide clean memory excluding the amount being used in the domain.
719 */
720static void mdtc_calc_avail(struct dirty_throttle_control *mdtc,
721 unsigned long filepages, unsigned long headroom)
Tejun Heoc2aa7232015-05-22 18:23:35 -0400722{
723 struct dirty_throttle_control *gdtc = mdtc_gdtc(mdtc);
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400724 unsigned long clean = filepages - min(filepages, mdtc->dirty);
725 unsigned long global_clean = gdtc->avail - min(gdtc->avail, gdtc->dirty);
726 unsigned long other_clean = global_clean - min(global_clean, clean);
Tejun Heoc2aa7232015-05-22 18:23:35 -0400727
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400728 mdtc->avail = filepages + min(headroom, other_clean);
Christoph Lameter1b424462007-05-06 14:48:59 -0700729}
730
Wu Fengguang6f718652011-03-02 17:14:34 -0600731/**
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400732 * __wb_calc_thresh - @wb's share of dirty throttling threshold
733 * @dtc: dirty_throttle_context of interest
Wu Fengguang1babe182010-08-11 14:17:40 -0700734 *
Wu Fengguangaed21ad2011-11-23 11:44:41 -0600735 * Note that balance_dirty_pages() will only seriously take it as a hard limit
736 * when sleeping max_pause per page is not enough to keep the dirty pages under
737 * control. For example, when the device is completely stalled due to some error
738 * conditions, or when there are 1000 dd tasks writing to a slow 10MB/s USB key.
739 * In the other normal situations, it acts more gently by throttling the tasks
Tejun Heoa88a3412015-05-22 17:13:28 -0400740 * more (rather than completely block them) when the wb dirty pages go high.
Wu Fengguang6f718652011-03-02 17:14:34 -0600741 *
742 * It allocates high/low dirty limits to fast/slow devices, in order to prevent
Wu Fengguang1babe182010-08-11 14:17:40 -0700743 * - starving fast devices
744 * - piling up dirty pages (that will take long time to sync) on slow devices
745 *
Tejun Heoa88a3412015-05-22 17:13:28 -0400746 * The wb's share of dirty limit will be adapting to its throughput and
Wu Fengguang1babe182010-08-11 14:17:40 -0700747 * bounded by the bdi->min_ratio and/or bdi->max_ratio parameters, if set.
Mike Rapoporta862f682019-03-05 15:48:42 -0800748 *
749 * Return: @wb's dirty limit in pages. The term "dirty" in the context of
NeilBrown8d928902020-06-01 21:48:21 -0700750 * dirty balancing includes all PG_dirty and PG_writeback pages.
Wu Fengguang1babe182010-08-11 14:17:40 -0700751 */
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400752static unsigned long __wb_calc_thresh(struct dirty_throttle_control *dtc)
Wu Fengguang16c40422010-08-11 14:17:39 -0700753{
Tejun Heoe9f07df2015-05-22 18:23:28 -0400754 struct wb_domain *dom = dtc_dom(dtc);
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400755 unsigned long thresh = dtc->thresh;
Tejun Heo0d960a32015-05-22 18:23:19 -0400756 u64 wb_thresh;
Wen Yangd3ac9462020-01-13 16:29:26 -0800757 unsigned long numerator, denominator;
Tejun Heo693108a2015-05-22 17:13:49 -0400758 unsigned long wb_min_ratio, wb_max_ratio;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700759
Wu Fengguang16c40422010-08-11 14:17:39 -0700760 /*
Tejun Heo0d960a32015-05-22 18:23:19 -0400761 * Calculate this BDI's share of the thresh ratio.
Wu Fengguang16c40422010-08-11 14:17:39 -0700762 */
Tejun Heoe9770b32015-05-22 18:23:27 -0400763 fprop_fraction_percpu(&dom->completions, dtc->wb_completions,
Tejun Heo380c27c2015-05-22 18:23:21 -0400764 &numerator, &denominator);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700765
Tejun Heo0d960a32015-05-22 18:23:19 -0400766 wb_thresh = (thresh * (100 - bdi_min_ratio)) / 100;
767 wb_thresh *= numerator;
Wen Yangd3ac9462020-01-13 16:29:26 -0800768 wb_thresh = div64_ul(wb_thresh, denominator);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700769
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400770 wb_min_max_ratio(dtc->wb, &wb_min_ratio, &wb_max_ratio);
Wu Fengguang16c40422010-08-11 14:17:39 -0700771
Tejun Heo0d960a32015-05-22 18:23:19 -0400772 wb_thresh += (thresh * wb_min_ratio) / 100;
773 if (wb_thresh > (thresh * wb_max_ratio) / 100)
774 wb_thresh = thresh * wb_max_ratio / 100;
Wu Fengguang16c40422010-08-11 14:17:39 -0700775
Tejun Heo0d960a32015-05-22 18:23:19 -0400776 return wb_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400779unsigned long wb_calc_thresh(struct bdi_writeback *wb, unsigned long thresh)
780{
781 struct dirty_throttle_control gdtc = { GDTC_INIT(wb),
782 .thresh = thresh };
783 return __wb_calc_thresh(&gdtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700784}
785
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600786/*
Maxim Patlasov5a537482013-09-11 14:22:46 -0700787 * setpoint - dirty 3
788 * f(dirty) := 1.0 + (----------------)
789 * limit - setpoint
790 *
791 * it's a 3rd order polynomial that subjects to
792 *
793 * (1) f(freerun) = 2.0 => rampup dirty_ratelimit reasonably fast
794 * (2) f(setpoint) = 1.0 => the balance point
795 * (3) f(limit) = 0 => the hard limit
796 * (4) df/dx <= 0 => negative feedback control
797 * (5) the closer to setpoint, the smaller |df/dx| (and the reverse)
798 * => fast response on large errors; small oscillation near setpoint
799 */
Rik van Rield5c9fde2014-05-06 12:50:01 -0700800static long long pos_ratio_polynom(unsigned long setpoint,
Maxim Patlasov5a537482013-09-11 14:22:46 -0700801 unsigned long dirty,
802 unsigned long limit)
803{
804 long long pos_ratio;
805 long x;
806
Rik van Rield5c9fde2014-05-06 12:50:01 -0700807 x = div64_s64(((s64)setpoint - (s64)dirty) << RATELIMIT_CALC_SHIFT,
Tejun Heo464d1382015-04-21 16:49:13 -0400808 (limit - setpoint) | 1);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700809 pos_ratio = x;
810 pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
811 pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
812 pos_ratio += 1 << RATELIMIT_CALC_SHIFT;
813
814 return clamp(pos_ratio, 0LL, 2LL << RATELIMIT_CALC_SHIFT);
815}
816
817/*
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600818 * Dirty position control.
819 *
820 * (o) global/bdi setpoints
821 *
Tejun Heode1fff32015-05-22 17:13:29 -0400822 * We want the dirty pages be balanced around the global/wb setpoints.
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600823 * When the number of dirty pages is higher/lower than the setpoint, the
824 * dirty position control ratio (and hence task dirty ratelimit) will be
825 * decreased/increased to bring the dirty pages back to the setpoint.
826 *
827 * pos_ratio = 1 << RATELIMIT_CALC_SHIFT
828 *
829 * if (dirty < setpoint) scale up pos_ratio
830 * if (dirty > setpoint) scale down pos_ratio
831 *
Tejun Heode1fff32015-05-22 17:13:29 -0400832 * if (wb_dirty < wb_setpoint) scale up pos_ratio
833 * if (wb_dirty > wb_setpoint) scale down pos_ratio
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600834 *
835 * task_ratelimit = dirty_ratelimit * pos_ratio >> RATELIMIT_CALC_SHIFT
836 *
837 * (o) global control line
838 *
839 * ^ pos_ratio
840 * |
841 * | |<===== global dirty control scope ======>|
Chi Wu03231552021-06-28 19:35:34 -0700842 * 2.0 * * * * * * *
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600843 * | .*
844 * | . *
845 * | . *
846 * | . *
847 * | . *
848 * | . *
849 * 1.0 ................................*
850 * | . . *
851 * | . . *
852 * | . . *
853 * | . . *
854 * | . . *
855 * 0 +------------.------------------.----------------------*------------->
856 * freerun^ setpoint^ limit^ dirty pages
857 *
Tejun Heode1fff32015-05-22 17:13:29 -0400858 * (o) wb control line
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600859 *
860 * ^ pos_ratio
861 * |
862 * | *
863 * | *
864 * | *
865 * | *
866 * | * |<=========== span ============>|
867 * 1.0 .......................*
868 * | . *
869 * | . *
870 * | . *
871 * | . *
872 * | . *
873 * | . *
874 * | . *
875 * | . *
876 * | . *
877 * | . *
878 * | . *
879 * 1/4 ...............................................* * * * * * * * * * * *
880 * | . .
881 * | . .
882 * | . .
883 * 0 +----------------------.-------------------------------.------------->
Tejun Heode1fff32015-05-22 17:13:29 -0400884 * wb_setpoint^ x_intercept^
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600885 *
Tejun Heode1fff32015-05-22 17:13:29 -0400886 * The wb control line won't drop below pos_ratio=1/4, so that wb_dirty can
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600887 * be smoothly throttled down to normal if it starts high in situations like
888 * - start writing to a slow SD card and a fast disk at the same time. The SD
Tejun Heode1fff32015-05-22 17:13:29 -0400889 * card's wb_dirty may rush to many times higher than wb_setpoint.
890 * - the wb dirty thresh drops quickly due to change of JBOD workload
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600891 */
Tejun Heodaddfa32015-05-22 18:23:26 -0400892static void wb_position_ratio(struct dirty_throttle_control *dtc)
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600893{
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400894 struct bdi_writeback *wb = dtc->wb;
Jan Kara20792eb2021-09-02 14:53:15 -0700895 unsigned long write_bw = READ_ONCE(wb->avg_write_bandwidth);
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400896 unsigned long freerun = dirty_freerun_ceiling(dtc->thresh, dtc->bg_thresh);
Tejun Heoc7981432015-05-22 18:23:29 -0400897 unsigned long limit = hard_dirty_limit(dtc_dom(dtc), dtc->thresh);
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400898 unsigned long wb_thresh = dtc->wb_thresh;
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600899 unsigned long x_intercept;
900 unsigned long setpoint; /* dirty pages' target balance point */
Tejun Heode1fff32015-05-22 17:13:29 -0400901 unsigned long wb_setpoint;
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600902 unsigned long span;
903 long long pos_ratio; /* for scaling up/down the rate limit */
904 long x;
905
Tejun Heodaddfa32015-05-22 18:23:26 -0400906 dtc->pos_ratio = 0;
907
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400908 if (unlikely(dtc->dirty >= limit))
Tejun Heodaddfa32015-05-22 18:23:26 -0400909 return;
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600910
911 /*
912 * global setpoint
913 *
Maxim Patlasov5a537482013-09-11 14:22:46 -0700914 * See comment for pos_ratio_polynom().
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600915 */
916 setpoint = (freerun + limit) / 2;
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400917 pos_ratio = pos_ratio_polynom(setpoint, dtc->dirty, limit);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700918
919 /*
920 * The strictlimit feature is a tool preventing mistrusted filesystems
921 * from growing a large number of dirty pages before throttling. For
Tejun Heode1fff32015-05-22 17:13:29 -0400922 * such filesystems balance_dirty_pages always checks wb counters
923 * against wb limits. Even if global "nr_dirty" is under "freerun".
Maxim Patlasov5a537482013-09-11 14:22:46 -0700924 * This is especially important for fuse which sets bdi->max_ratio to
925 * 1% by default. Without strictlimit feature, fuse writeback may
926 * consume arbitrary amount of RAM because it is accounted in
927 * NR_WRITEBACK_TEMP which is not involved in calculating "nr_dirty".
928 *
Tejun Heoa88a3412015-05-22 17:13:28 -0400929 * Here, in wb_position_ratio(), we calculate pos_ratio based on
Tejun Heode1fff32015-05-22 17:13:29 -0400930 * two values: wb_dirty and wb_thresh. Let's consider an example:
Maxim Patlasov5a537482013-09-11 14:22:46 -0700931 * total amount of RAM is 16GB, bdi->max_ratio is equal to 1%, global
932 * limits are set by default to 10% and 20% (background and throttle).
Tejun Heode1fff32015-05-22 17:13:29 -0400933 * Then wb_thresh is 1% of 20% of 16GB. This amounts to ~8K pages.
Tejun Heo0d960a32015-05-22 18:23:19 -0400934 * wb_calc_thresh(wb, bg_thresh) is about ~4K pages. wb_setpoint is
Tejun Heode1fff32015-05-22 17:13:29 -0400935 * about ~6K pages (as the average of background and throttle wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700936 * limits). The 3rd order polynomial will provide positive feedback if
Tejun Heode1fff32015-05-22 17:13:29 -0400937 * wb_dirty is under wb_setpoint and vice versa.
Maxim Patlasov5a537482013-09-11 14:22:46 -0700938 *
939 * Note, that we cannot use global counters in these calculations
Tejun Heode1fff32015-05-22 17:13:29 -0400940 * because we want to throttle process writing to a strictlimit wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700941 * much earlier than global "freerun" is reached (~23MB vs. ~2.3GB
942 * in the example above).
943 */
Tejun Heoa88a3412015-05-22 17:13:28 -0400944 if (unlikely(wb->bdi->capabilities & BDI_CAP_STRICTLIMIT)) {
Tejun Heode1fff32015-05-22 17:13:29 -0400945 long long wb_pos_ratio;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700946
Tejun Heodaddfa32015-05-22 18:23:26 -0400947 if (dtc->wb_dirty < 8) {
948 dtc->pos_ratio = min_t(long long, pos_ratio * 2,
949 2 << RATELIMIT_CALC_SHIFT);
950 return;
951 }
Maxim Patlasov5a537482013-09-11 14:22:46 -0700952
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400953 if (dtc->wb_dirty >= wb_thresh)
Tejun Heodaddfa32015-05-22 18:23:26 -0400954 return;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700955
Tejun Heo970fb012015-05-22 18:23:24 -0400956 wb_setpoint = dirty_freerun_ceiling(wb_thresh,
957 dtc->wb_bg_thresh);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700958
Tejun Heode1fff32015-05-22 17:13:29 -0400959 if (wb_setpoint == 0 || wb_setpoint == wb_thresh)
Tejun Heodaddfa32015-05-22 18:23:26 -0400960 return;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700961
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400962 wb_pos_ratio = pos_ratio_polynom(wb_setpoint, dtc->wb_dirty,
Tejun Heode1fff32015-05-22 17:13:29 -0400963 wb_thresh);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700964
965 /*
Tejun Heode1fff32015-05-22 17:13:29 -0400966 * Typically, for strictlimit case, wb_setpoint << setpoint
967 * and pos_ratio >> wb_pos_ratio. In the other words global
Maxim Patlasov5a537482013-09-11 14:22:46 -0700968 * state ("dirty") is not limiting factor and we have to
Tejun Heode1fff32015-05-22 17:13:29 -0400969 * make decision based on wb counters. But there is an
Maxim Patlasov5a537482013-09-11 14:22:46 -0700970 * important case when global pos_ratio should get precedence:
971 * global limits are exceeded (e.g. due to activities on other
Tejun Heode1fff32015-05-22 17:13:29 -0400972 * wb's) while given strictlimit wb is below limit.
Maxim Patlasov5a537482013-09-11 14:22:46 -0700973 *
Tejun Heode1fff32015-05-22 17:13:29 -0400974 * "pos_ratio * wb_pos_ratio" would work for the case above,
Maxim Patlasov5a537482013-09-11 14:22:46 -0700975 * but it would look too non-natural for the case of all
Tejun Heode1fff32015-05-22 17:13:29 -0400976 * activity in the system coming from a single strictlimit wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700977 * with bdi->max_ratio == 100%.
978 *
979 * Note that min() below somewhat changes the dynamics of the
980 * control system. Normally, pos_ratio value can be well over 3
Tejun Heode1fff32015-05-22 17:13:29 -0400981 * (when globally we are at freerun and wb is well below wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700982 * setpoint). Now the maximum pos_ratio in the same situation
983 * is 2. We might want to tweak this if we observe the control
984 * system is too slow to adapt.
985 */
Tejun Heodaddfa32015-05-22 18:23:26 -0400986 dtc->pos_ratio = min(pos_ratio, wb_pos_ratio);
987 return;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700988 }
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600989
990 /*
991 * We have computed basic pos_ratio above based on global situation. If
Tejun Heode1fff32015-05-22 17:13:29 -0400992 * the wb is over/under its share of dirty pages, we want to scale
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600993 * pos_ratio further down/up. That is done by the following mechanism.
994 */
995
996 /*
Tejun Heode1fff32015-05-22 17:13:29 -0400997 * wb setpoint
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600998 *
Tejun Heode1fff32015-05-22 17:13:29 -0400999 * f(wb_dirty) := 1.0 + k * (wb_dirty - wb_setpoint)
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001000 *
Tejun Heode1fff32015-05-22 17:13:29 -04001001 * x_intercept - wb_dirty
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001002 * := --------------------------
Tejun Heode1fff32015-05-22 17:13:29 -04001003 * x_intercept - wb_setpoint
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001004 *
Tejun Heode1fff32015-05-22 17:13:29 -04001005 * The main wb control line is a linear function that subjects to
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001006 *
Tejun Heode1fff32015-05-22 17:13:29 -04001007 * (1) f(wb_setpoint) = 1.0
1008 * (2) k = - 1 / (8 * write_bw) (in single wb case)
1009 * or equally: x_intercept = wb_setpoint + 8 * write_bw
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001010 *
Tejun Heode1fff32015-05-22 17:13:29 -04001011 * For single wb case, the dirty pages are observed to fluctuate
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001012 * regularly within range
Tejun Heode1fff32015-05-22 17:13:29 -04001013 * [wb_setpoint - write_bw/2, wb_setpoint + write_bw/2]
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001014 * for various filesystems, where (2) can yield in a reasonable 12.5%
1015 * fluctuation range for pos_ratio.
1016 *
Tejun Heode1fff32015-05-22 17:13:29 -04001017 * For JBOD case, wb_thresh (not wb_dirty!) could fluctuate up to its
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001018 * own size, so move the slope over accordingly and choose a slope that
Tejun Heode1fff32015-05-22 17:13:29 -04001019 * yields 100% pos_ratio fluctuation on suddenly doubled wb_thresh.
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001020 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001021 if (unlikely(wb_thresh > dtc->thresh))
1022 wb_thresh = dtc->thresh;
Wu Fengguangaed21ad2011-11-23 11:44:41 -06001023 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001024 * It's very possible that wb_thresh is close to 0 not because the
Wu Fengguangaed21ad2011-11-23 11:44:41 -06001025 * device is slow, but that it has remained inactive for long time.
1026 * Honour such devices a reasonable good (hopefully IO efficient)
1027 * threshold, so that the occasional writes won't be blocked and active
1028 * writes can rampup the threshold quickly.
1029 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001030 wb_thresh = max(wb_thresh, (limit - dtc->dirty) / 8);
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001031 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001032 * scale global setpoint to wb's:
1033 * wb_setpoint = setpoint * wb_thresh / thresh
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001034 */
Linus Torvaldse4bc13a2015-06-25 16:00:17 -07001035 x = div_u64((u64)wb_thresh << 16, dtc->thresh | 1);
Tejun Heode1fff32015-05-22 17:13:29 -04001036 wb_setpoint = setpoint * (u64)x >> 16;
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001037 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001038 * Use span=(8*write_bw) in single wb case as indicated by
1039 * (thresh - wb_thresh ~= 0) and transit to wb_thresh in JBOD case.
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001040 *
Tejun Heode1fff32015-05-22 17:13:29 -04001041 * wb_thresh thresh - wb_thresh
1042 * span = --------- * (8 * write_bw) + ------------------ * wb_thresh
1043 * thresh thresh
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001044 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001045 span = (dtc->thresh - wb_thresh + 8 * write_bw) * (u64)x >> 16;
Tejun Heode1fff32015-05-22 17:13:29 -04001046 x_intercept = wb_setpoint + span;
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001047
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001048 if (dtc->wb_dirty < x_intercept - span / 4) {
1049 pos_ratio = div64_u64(pos_ratio * (x_intercept - dtc->wb_dirty),
Linus Torvaldse4bc13a2015-06-25 16:00:17 -07001050 (x_intercept - wb_setpoint) | 1);
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001051 } else
1052 pos_ratio /= 4;
1053
Wu Fengguang8927f662011-08-04 22:16:46 -06001054 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001055 * wb reserve area, safeguard against dirty pool underrun and disk idle
Wu Fengguang8927f662011-08-04 22:16:46 -06001056 * It may push the desired control point of global dirty pages higher
1057 * than setpoint.
1058 */
Tejun Heode1fff32015-05-22 17:13:29 -04001059 x_intercept = wb_thresh / 2;
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001060 if (dtc->wb_dirty < x_intercept) {
1061 if (dtc->wb_dirty > x_intercept / 8)
1062 pos_ratio = div_u64(pos_ratio * x_intercept,
1063 dtc->wb_dirty);
Wu Fengguang50657fc2011-10-11 17:06:33 -06001064 else
Wu Fengguang8927f662011-08-04 22:16:46 -06001065 pos_ratio *= 8;
1066 }
1067
Tejun Heodaddfa32015-05-22 18:23:26 -04001068 dtc->pos_ratio = pos_ratio;
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001069}
1070
Tejun Heoa88a3412015-05-22 17:13:28 -04001071static void wb_update_write_bandwidth(struct bdi_writeback *wb,
1072 unsigned long elapsed,
1073 unsigned long written)
Wu Fengguange98be2d2010-08-29 11:22:30 -06001074{
1075 const unsigned long period = roundup_pow_of_two(3 * HZ);
Tejun Heoa88a3412015-05-22 17:13:28 -04001076 unsigned long avg = wb->avg_write_bandwidth;
1077 unsigned long old = wb->write_bandwidth;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001078 u64 bw;
1079
1080 /*
1081 * bw = written * HZ / elapsed
1082 *
1083 * bw * elapsed + write_bandwidth * (period - elapsed)
1084 * write_bandwidth = ---------------------------------------------------
1085 * period
Tejun Heoc72efb62015-03-23 00:18:48 -04001086 *
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04001087 * @written may have decreased due to folio_account_redirty().
Tejun Heoc72efb62015-03-23 00:18:48 -04001088 * Avoid underflowing @bw calculation.
Wu Fengguange98be2d2010-08-29 11:22:30 -06001089 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001090 bw = written - min(written, wb->written_stamp);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001091 bw *= HZ;
1092 if (unlikely(elapsed > period)) {
Wen Yang0a5d1a72020-01-13 16:29:29 -08001093 bw = div64_ul(bw, elapsed);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001094 avg = bw;
1095 goto out;
1096 }
Tejun Heoa88a3412015-05-22 17:13:28 -04001097 bw += (u64)wb->write_bandwidth * (period - elapsed);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001098 bw >>= ilog2(period);
1099
1100 /*
1101 * one more level of smoothing, for filtering out sudden spikes
1102 */
1103 if (avg > old && old >= (unsigned long)bw)
1104 avg -= (avg - old) >> 3;
1105
1106 if (avg < old && old <= (unsigned long)bw)
1107 avg += (old - avg) >> 3;
1108
1109out:
Tejun Heo95a46c62015-05-22 17:13:47 -04001110 /* keep avg > 0 to guarantee that tot > 0 if there are dirty wbs */
1111 avg = max(avg, 1LU);
1112 if (wb_has_dirty_io(wb)) {
1113 long delta = avg - wb->avg_write_bandwidth;
1114 WARN_ON_ONCE(atomic_long_add_return(delta,
1115 &wb->bdi->tot_write_bandwidth) <= 0);
1116 }
Tejun Heoa88a3412015-05-22 17:13:28 -04001117 wb->write_bandwidth = bw;
Jan Kara20792eb2021-09-02 14:53:15 -07001118 WRITE_ONCE(wb->avg_write_bandwidth, avg);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001119}
1120
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001121static void update_dirty_limit(struct dirty_throttle_control *dtc)
Wu Fengguangc42843f2011-03-02 15:54:09 -06001122{
Tejun Heoe9f07df2015-05-22 18:23:28 -04001123 struct wb_domain *dom = dtc_dom(dtc);
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001124 unsigned long thresh = dtc->thresh;
Tejun Heodcc25ae2015-05-22 18:23:22 -04001125 unsigned long limit = dom->dirty_limit;
Wu Fengguangc42843f2011-03-02 15:54:09 -06001126
1127 /*
1128 * Follow up in one step.
1129 */
1130 if (limit < thresh) {
1131 limit = thresh;
1132 goto update;
1133 }
1134
1135 /*
1136 * Follow down slowly. Use the higher one as the target, because thresh
1137 * may drop below dirty. This is exactly the reason to introduce
Tejun Heodcc25ae2015-05-22 18:23:22 -04001138 * dom->dirty_limit which is guaranteed to lie above the dirty pages.
Wu Fengguangc42843f2011-03-02 15:54:09 -06001139 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001140 thresh = max(thresh, dtc->dirty);
Wu Fengguangc42843f2011-03-02 15:54:09 -06001141 if (limit > thresh) {
1142 limit -= (limit - thresh) >> 5;
1143 goto update;
1144 }
1145 return;
1146update:
Tejun Heodcc25ae2015-05-22 18:23:22 -04001147 dom->dirty_limit = limit;
Wu Fengguangc42843f2011-03-02 15:54:09 -06001148}
1149
Jan Kara42dd2352021-09-02 14:53:12 -07001150static void domain_update_dirty_limit(struct dirty_throttle_control *dtc,
1151 unsigned long now)
Wu Fengguangc42843f2011-03-02 15:54:09 -06001152{
Tejun Heoe9f07df2015-05-22 18:23:28 -04001153 struct wb_domain *dom = dtc_dom(dtc);
Wu Fengguangc42843f2011-03-02 15:54:09 -06001154
1155 /*
1156 * check locklessly first to optimize away locking for the most time
1157 */
Tejun Heodcc25ae2015-05-22 18:23:22 -04001158 if (time_before(now, dom->dirty_limit_tstamp + BANDWIDTH_INTERVAL))
Wu Fengguangc42843f2011-03-02 15:54:09 -06001159 return;
1160
Tejun Heodcc25ae2015-05-22 18:23:22 -04001161 spin_lock(&dom->lock);
1162 if (time_after_eq(now, dom->dirty_limit_tstamp + BANDWIDTH_INTERVAL)) {
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001163 update_dirty_limit(dtc);
Tejun Heodcc25ae2015-05-22 18:23:22 -04001164 dom->dirty_limit_tstamp = now;
Wu Fengguangc42843f2011-03-02 15:54:09 -06001165 }
Tejun Heodcc25ae2015-05-22 18:23:22 -04001166 spin_unlock(&dom->lock);
Wu Fengguangc42843f2011-03-02 15:54:09 -06001167}
1168
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001169/*
Tejun Heode1fff32015-05-22 17:13:29 -04001170 * Maintain wb->dirty_ratelimit, the base dirty throttle rate.
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001171 *
Tejun Heode1fff32015-05-22 17:13:29 -04001172 * Normal wb tasks will be curbed at or below it in long term.
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001173 * Obviously it should be around (write_bw / N) when there are N dd tasks.
1174 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001175static void wb_update_dirty_ratelimit(struct dirty_throttle_control *dtc,
Tejun Heoa88a3412015-05-22 17:13:28 -04001176 unsigned long dirtied,
1177 unsigned long elapsed)
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001178{
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001179 struct bdi_writeback *wb = dtc->wb;
1180 unsigned long dirty = dtc->dirty;
1181 unsigned long freerun = dirty_freerun_ceiling(dtc->thresh, dtc->bg_thresh);
Tejun Heoc7981432015-05-22 18:23:29 -04001182 unsigned long limit = hard_dirty_limit(dtc_dom(dtc), dtc->thresh);
Wu Fengguang73811312011-08-26 15:53:24 -06001183 unsigned long setpoint = (freerun + limit) / 2;
Tejun Heoa88a3412015-05-22 17:13:28 -04001184 unsigned long write_bw = wb->avg_write_bandwidth;
1185 unsigned long dirty_ratelimit = wb->dirty_ratelimit;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001186 unsigned long dirty_rate;
1187 unsigned long task_ratelimit;
1188 unsigned long balanced_dirty_ratelimit;
Wu Fengguang73811312011-08-26 15:53:24 -06001189 unsigned long step;
1190 unsigned long x;
Andrey Ryabinind59b1082016-03-15 14:55:27 -07001191 unsigned long shift;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001192
1193 /*
1194 * The dirty rate will match the writeout rate in long term, except
1195 * when dirty pages are truncated by userspace or re-dirtied by FS.
1196 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001197 dirty_rate = (dirtied - wb->dirtied_stamp) * HZ / elapsed;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001198
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001199 /*
1200 * task_ratelimit reflects each dd's dirty rate for the past 200ms.
1201 */
1202 task_ratelimit = (u64)dirty_ratelimit *
Tejun Heodaddfa32015-05-22 18:23:26 -04001203 dtc->pos_ratio >> RATELIMIT_CALC_SHIFT;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001204 task_ratelimit++; /* it helps rampup dirty_ratelimit from tiny values */
1205
1206 /*
1207 * A linear estimation of the "balanced" throttle rate. The theory is,
Tejun Heode1fff32015-05-22 17:13:29 -04001208 * if there are N dd tasks, each throttled at task_ratelimit, the wb's
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001209 * dirty_rate will be measured to be (N * task_ratelimit). So the below
1210 * formula will yield the balanced rate limit (write_bw / N).
1211 *
1212 * Note that the expanded form is not a pure rate feedback:
1213 * rate_(i+1) = rate_(i) * (write_bw / dirty_rate) (1)
1214 * but also takes pos_ratio into account:
1215 * rate_(i+1) = rate_(i) * (write_bw / dirty_rate) * pos_ratio (2)
1216 *
1217 * (1) is not realistic because pos_ratio also takes part in balancing
1218 * the dirty rate. Consider the state
1219 * pos_ratio = 0.5 (3)
1220 * rate = 2 * (write_bw / N) (4)
1221 * If (1) is used, it will stuck in that state! Because each dd will
1222 * be throttled at
1223 * task_ratelimit = pos_ratio * rate = (write_bw / N) (5)
1224 * yielding
1225 * dirty_rate = N * task_ratelimit = write_bw (6)
1226 * put (6) into (1) we get
1227 * rate_(i+1) = rate_(i) (7)
1228 *
1229 * So we end up using (2) to always keep
1230 * rate_(i+1) ~= (write_bw / N) (8)
1231 * regardless of the value of pos_ratio. As long as (8) is satisfied,
1232 * pos_ratio is able to drive itself to 1.0, which is not only where
1233 * the dirty count meet the setpoint, but also where the slope of
1234 * pos_ratio is most flat and hence task_ratelimit is least fluctuated.
1235 */
1236 balanced_dirty_ratelimit = div_u64((u64)task_ratelimit * write_bw,
1237 dirty_rate | 1);
Wu Fengguangbdaac492011-08-03 14:30:36 -06001238 /*
1239 * balanced_dirty_ratelimit ~= (write_bw / N) <= write_bw
1240 */
1241 if (unlikely(balanced_dirty_ratelimit > write_bw))
1242 balanced_dirty_ratelimit = write_bw;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001243
Wu Fengguang73811312011-08-26 15:53:24 -06001244 /*
1245 * We could safely do this and return immediately:
1246 *
Tejun Heode1fff32015-05-22 17:13:29 -04001247 * wb->dirty_ratelimit = balanced_dirty_ratelimit;
Wu Fengguang73811312011-08-26 15:53:24 -06001248 *
1249 * However to get a more stable dirty_ratelimit, the below elaborated
Wanpeng Li331cbde2012-06-09 11:10:55 +08001250 * code makes use of task_ratelimit to filter out singular points and
Wu Fengguang73811312011-08-26 15:53:24 -06001251 * limit the step size.
1252 *
1253 * The below code essentially only uses the relative value of
1254 *
1255 * task_ratelimit - dirty_ratelimit
1256 * = (pos_ratio - 1) * dirty_ratelimit
1257 *
1258 * which reflects the direction and size of dirty position error.
1259 */
1260
1261 /*
1262 * dirty_ratelimit will follow balanced_dirty_ratelimit iff
1263 * task_ratelimit is on the same side of dirty_ratelimit, too.
1264 * For example, when
1265 * - dirty_ratelimit > balanced_dirty_ratelimit
1266 * - dirty_ratelimit > task_ratelimit (dirty pages are above setpoint)
1267 * lowering dirty_ratelimit will help meet both the position and rate
1268 * control targets. Otherwise, don't update dirty_ratelimit if it will
1269 * only help meet the rate target. After all, what the users ultimately
1270 * feel and care are stable dirty rate and small position error.
1271 *
1272 * |task_ratelimit - dirty_ratelimit| is used to limit the step size
Wanpeng Li331cbde2012-06-09 11:10:55 +08001273 * and filter out the singular points of balanced_dirty_ratelimit. Which
Wu Fengguang73811312011-08-26 15:53:24 -06001274 * keeps jumping around randomly and can even leap far away at times
1275 * due to the small 200ms estimation period of dirty_rate (we want to
1276 * keep that period small to reduce time lags).
1277 */
1278 step = 0;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001279
1280 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001281 * For strictlimit case, calculations above were based on wb counters
Tejun Heoa88a3412015-05-22 17:13:28 -04001282 * and limits (starting from pos_ratio = wb_position_ratio() and up to
Maxim Patlasov5a537482013-09-11 14:22:46 -07001283 * balanced_dirty_ratelimit = task_ratelimit * write_bw / dirty_rate).
Tejun Heode1fff32015-05-22 17:13:29 -04001284 * Hence, to calculate "step" properly, we have to use wb_dirty as
1285 * "dirty" and wb_setpoint as "setpoint".
Maxim Patlasov5a537482013-09-11 14:22:46 -07001286 *
Tejun Heode1fff32015-05-22 17:13:29 -04001287 * We rampup dirty_ratelimit forcibly if wb_dirty is low because
1288 * it's possible that wb_thresh is close to zero due to inactivity
Tejun Heo970fb012015-05-22 18:23:24 -04001289 * of backing device.
Maxim Patlasov5a537482013-09-11 14:22:46 -07001290 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001291 if (unlikely(wb->bdi->capabilities & BDI_CAP_STRICTLIMIT)) {
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001292 dirty = dtc->wb_dirty;
1293 if (dtc->wb_dirty < 8)
1294 setpoint = dtc->wb_dirty + 1;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001295 else
Tejun Heo970fb012015-05-22 18:23:24 -04001296 setpoint = (dtc->wb_thresh + dtc->wb_bg_thresh) / 2;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001297 }
1298
Wu Fengguang73811312011-08-26 15:53:24 -06001299 if (dirty < setpoint) {
Tejun Heoa88a3412015-05-22 17:13:28 -04001300 x = min3(wb->balanced_dirty_ratelimit,
Mark Rustad7c809962014-10-09 15:28:15 -07001301 balanced_dirty_ratelimit, task_ratelimit);
Wu Fengguang73811312011-08-26 15:53:24 -06001302 if (dirty_ratelimit < x)
1303 step = x - dirty_ratelimit;
1304 } else {
Tejun Heoa88a3412015-05-22 17:13:28 -04001305 x = max3(wb->balanced_dirty_ratelimit,
Mark Rustad7c809962014-10-09 15:28:15 -07001306 balanced_dirty_ratelimit, task_ratelimit);
Wu Fengguang73811312011-08-26 15:53:24 -06001307 if (dirty_ratelimit > x)
1308 step = dirty_ratelimit - x;
1309 }
1310
1311 /*
1312 * Don't pursue 100% rate matching. It's impossible since the balanced
1313 * rate itself is constantly fluctuating. So decrease the track speed
1314 * when it gets close to the target. Helps eliminate pointless tremors.
1315 */
Andrey Ryabinind59b1082016-03-15 14:55:27 -07001316 shift = dirty_ratelimit / (2 * step + 1);
1317 if (shift < BITS_PER_LONG)
1318 step = DIV_ROUND_UP(step >> shift, 8);
1319 else
1320 step = 0;
Wu Fengguang73811312011-08-26 15:53:24 -06001321
1322 if (dirty_ratelimit < balanced_dirty_ratelimit)
1323 dirty_ratelimit += step;
1324 else
1325 dirty_ratelimit -= step;
1326
Jan Kara20792eb2021-09-02 14:53:15 -07001327 WRITE_ONCE(wb->dirty_ratelimit, max(dirty_ratelimit, 1UL));
Tejun Heoa88a3412015-05-22 17:13:28 -04001328 wb->balanced_dirty_ratelimit = balanced_dirty_ratelimit;
Wu Fengguangb48c1042011-03-02 17:22:49 -06001329
Tejun Heo5634cc22015-08-18 14:54:56 -07001330 trace_bdi_dirty_ratelimit(wb, dirty_rate, task_ratelimit);
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001331}
1332
Tejun Heoc2aa7232015-05-22 18:23:35 -04001333static void __wb_update_bandwidth(struct dirty_throttle_control *gdtc,
1334 struct dirty_throttle_control *mdtc,
Tejun Heo8a731792015-05-22 18:23:20 -04001335 bool update_ratelimit)
Wu Fengguange98be2d2010-08-29 11:22:30 -06001336{
Tejun Heoc2aa7232015-05-22 18:23:35 -04001337 struct bdi_writeback *wb = gdtc->wb;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001338 unsigned long now = jiffies;
Jan Kara45a29662021-09-02 14:53:09 -07001339 unsigned long elapsed;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001340 unsigned long dirtied;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001341 unsigned long written;
1342
Jan Kara45a29662021-09-02 14:53:09 -07001343 spin_lock(&wb->list_lock);
Tejun Heo8a731792015-05-22 18:23:20 -04001344
Wu Fengguange98be2d2010-08-29 11:22:30 -06001345 /*
Jan Kara45a29662021-09-02 14:53:09 -07001346 * Lockless checks for elapsed time are racy and delayed update after
1347 * IO completion doesn't do it at all (to make sure written pages are
1348 * accounted reasonably quickly). Make sure elapsed >= 1 to avoid
1349 * division errors.
Wu Fengguange98be2d2010-08-29 11:22:30 -06001350 */
Jan Kara45a29662021-09-02 14:53:09 -07001351 elapsed = max(now - wb->bw_time_stamp, 1UL);
Tejun Heoa88a3412015-05-22 17:13:28 -04001352 dirtied = percpu_counter_read(&wb->stat[WB_DIRTIED]);
1353 written = percpu_counter_read(&wb->stat[WB_WRITTEN]);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001354
Tejun Heo8a731792015-05-22 18:23:20 -04001355 if (update_ratelimit) {
Jan Kara42dd2352021-09-02 14:53:12 -07001356 domain_update_dirty_limit(gdtc, now);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001357 wb_update_dirty_ratelimit(gdtc, dirtied, elapsed);
1358
1359 /*
1360 * @mdtc is always NULL if !CGROUP_WRITEBACK but the
1361 * compiler has no way to figure that out. Help it.
1362 */
1363 if (IS_ENABLED(CONFIG_CGROUP_WRITEBACK) && mdtc) {
Jan Kara42dd2352021-09-02 14:53:12 -07001364 domain_update_dirty_limit(mdtc, now);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001365 wb_update_dirty_ratelimit(mdtc, dirtied, elapsed);
1366 }
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001367 }
Tejun Heoa88a3412015-05-22 17:13:28 -04001368 wb_update_write_bandwidth(wb, elapsed, written);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001369
Tejun Heoa88a3412015-05-22 17:13:28 -04001370 wb->dirtied_stamp = dirtied;
1371 wb->written_stamp = written;
Jan Kara20792eb2021-09-02 14:53:15 -07001372 WRITE_ONCE(wb->bw_time_stamp, now);
Jan Kara45a29662021-09-02 14:53:09 -07001373 spin_unlock(&wb->list_lock);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001374}
1375
Jan Kara45a29662021-09-02 14:53:09 -07001376void wb_update_bandwidth(struct bdi_writeback *wb)
Wu Fengguange98be2d2010-08-29 11:22:30 -06001377{
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001378 struct dirty_throttle_control gdtc = { GDTC_INIT(wb) };
1379
Jan Karafee468f2021-09-02 14:53:06 -07001380 __wb_update_bandwidth(&gdtc, NULL, false);
Jan Karafee468f2021-09-02 14:53:06 -07001381}
1382
1383/* Interval after which we consider wb idle and don't estimate bandwidth */
1384#define WB_BANDWIDTH_IDLE_JIF (HZ)
1385
1386static void wb_bandwidth_estimate_start(struct bdi_writeback *wb)
1387{
1388 unsigned long now = jiffies;
1389 unsigned long elapsed = now - READ_ONCE(wb->bw_time_stamp);
1390
1391 if (elapsed > WB_BANDWIDTH_IDLE_JIF &&
1392 !atomic_read(&wb->writeback_inodes)) {
1393 spin_lock(&wb->list_lock);
1394 wb->dirtied_stamp = wb_stat(wb, WB_DIRTIED);
1395 wb->written_stamp = wb_stat(wb, WB_WRITTEN);
Jan Kara20792eb2021-09-02 14:53:15 -07001396 WRITE_ONCE(wb->bw_time_stamp, now);
Jan Karafee468f2021-09-02 14:53:06 -07001397 spin_unlock(&wb->list_lock);
1398 }
Wu Fengguange98be2d2010-08-29 11:22:30 -06001399}
1400
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401/*
Namjae Jeond0e1d662012-12-11 16:00:21 -08001402 * After a task dirtied this many pages, balance_dirty_pages_ratelimited()
Wu Fengguang9d823e82011-06-11 18:10:12 -06001403 * will look to see if it needs to start dirty throttling.
1404 *
1405 * If dirty_poll_interval is too low, big NUMA machines will call the expensive
Michal Hockoc41f0122017-09-06 16:23:36 -07001406 * global_zone_page_state() too often. So scale it near-sqrt to the safety margin
Wu Fengguang9d823e82011-06-11 18:10:12 -06001407 * (the number of pages we may dirty without exceeding the dirty limits).
1408 */
1409static unsigned long dirty_poll_interval(unsigned long dirty,
1410 unsigned long thresh)
1411{
1412 if (thresh > dirty)
1413 return 1UL << (ilog2(thresh - dirty) >> 1);
1414
1415 return 1;
1416}
1417
Tejun Heoa88a3412015-05-22 17:13:28 -04001418static unsigned long wb_max_pause(struct bdi_writeback *wb,
Tejun Heode1fff32015-05-22 17:13:29 -04001419 unsigned long wb_dirty)
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001420{
Jan Kara20792eb2021-09-02 14:53:15 -07001421 unsigned long bw = READ_ONCE(wb->avg_write_bandwidth);
Fengguang Wue3b6c652013-10-16 13:47:03 -07001422 unsigned long t;
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001423
1424 /*
1425 * Limit pause time for small memory systems. If sleeping for too long
1426 * time, a small pool of dirty/writeback pages may go empty and disk go
1427 * idle.
1428 *
1429 * 8 serves as the safety ratio.
1430 */
Tejun Heode1fff32015-05-22 17:13:29 -04001431 t = wb_dirty / (1 + bw / roundup_pow_of_two(1 + HZ / 8));
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001432 t++;
1433
Fengguang Wue3b6c652013-10-16 13:47:03 -07001434 return min_t(unsigned long, t, MAX_PAUSE);
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001435}
1436
Tejun Heoa88a3412015-05-22 17:13:28 -04001437static long wb_min_pause(struct bdi_writeback *wb,
1438 long max_pause,
1439 unsigned long task_ratelimit,
1440 unsigned long dirty_ratelimit,
1441 int *nr_dirtied_pause)
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001442{
Jan Kara20792eb2021-09-02 14:53:15 -07001443 long hi = ilog2(READ_ONCE(wb->avg_write_bandwidth));
1444 long lo = ilog2(READ_ONCE(wb->dirty_ratelimit));
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001445 long t; /* target pause */
1446 long pause; /* estimated next pause */
1447 int pages; /* target nr_dirtied_pause */
1448
1449 /* target for 10ms pause on 1-dd case */
1450 t = max(1, HZ / 100);
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001451
1452 /*
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001453 * Scale up pause time for concurrent dirtiers in order to reduce CPU
1454 * overheads.
1455 *
1456 * (N * 10ms) on 2^N concurrent tasks.
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001457 */
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001458 if (hi > lo)
1459 t += (hi - lo) * (10 * HZ) / 1024;
1460
1461 /*
1462 * This is a bit convoluted. We try to base the next nr_dirtied_pause
1463 * on the much more stable dirty_ratelimit. However the next pause time
1464 * will be computed based on task_ratelimit and the two rate limits may
1465 * depart considerably at some time. Especially if task_ratelimit goes
1466 * below dirty_ratelimit/2 and the target pause is max_pause, the next
1467 * pause time will be max_pause*2 _trimmed down_ to max_pause. As a
1468 * result task_ratelimit won't be executed faithfully, which could
1469 * eventually bring down dirty_ratelimit.
1470 *
1471 * We apply two rules to fix it up:
1472 * 1) try to estimate the next pause time and if necessary, use a lower
1473 * nr_dirtied_pause so as not to exceed max_pause. When this happens,
1474 * nr_dirtied_pause will be "dancing" with task_ratelimit.
1475 * 2) limit the target pause time to max_pause/2, so that the normal
1476 * small fluctuations of task_ratelimit won't trigger rule (1) and
1477 * nr_dirtied_pause will remain as stable as dirty_ratelimit.
1478 */
1479 t = min(t, 1 + max_pause / 2);
1480 pages = dirty_ratelimit * t / roundup_pow_of_two(HZ);
1481
Wu Fengguang5b9b3572011-12-06 13:17:17 -06001482 /*
1483 * Tiny nr_dirtied_pause is found to hurt I/O performance in the test
1484 * case fio-mmap-randwrite-64k, which does 16*{sync read, async write}.
1485 * When the 16 consecutive reads are often interrupted by some dirty
1486 * throttling pause during the async writes, cfq will go into idles
1487 * (deadline is fine). So push nr_dirtied_pause as high as possible
1488 * until reaches DIRTY_POLL_THRESH=32 pages.
1489 */
1490 if (pages < DIRTY_POLL_THRESH) {
1491 t = max_pause;
1492 pages = dirty_ratelimit * t / roundup_pow_of_two(HZ);
1493 if (pages > DIRTY_POLL_THRESH) {
1494 pages = DIRTY_POLL_THRESH;
1495 t = HZ * DIRTY_POLL_THRESH / dirty_ratelimit;
1496 }
1497 }
1498
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001499 pause = HZ * pages / (task_ratelimit + 1);
1500 if (pause > max_pause) {
1501 t = max_pause;
1502 pages = task_ratelimit * t / roundup_pow_of_two(HZ);
1503 }
1504
1505 *nr_dirtied_pause = pages;
1506 /*
1507 * The minimal pause time will normally be half the target pause time.
1508 */
Wu Fengguang5b9b3572011-12-06 13:17:17 -06001509 return pages >= DIRTY_POLL_THRESH ? 1 + t / 2 : t;
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001510}
1511
Tejun Heo970fb012015-05-22 18:23:24 -04001512static inline void wb_dirty_limits(struct dirty_throttle_control *dtc)
Maxim Patlasov5a537482013-09-11 14:22:46 -07001513{
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001514 struct bdi_writeback *wb = dtc->wb;
Tejun Heo93f78d82015-05-22 17:13:27 -04001515 unsigned long wb_reclaimable;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001516
1517 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001518 * wb_thresh is not treated as some limiting factor as
Maxim Patlasov5a537482013-09-11 14:22:46 -07001519 * dirty_thresh, due to reasons
Tejun Heode1fff32015-05-22 17:13:29 -04001520 * - in JBOD setup, wb_thresh can fluctuate a lot
Maxim Patlasov5a537482013-09-11 14:22:46 -07001521 * - in a system with HDD and USB key, the USB key may somehow
Tejun Heode1fff32015-05-22 17:13:29 -04001522 * go into state (wb_dirty >> wb_thresh) either because
1523 * wb_dirty starts high, or because wb_thresh drops low.
Maxim Patlasov5a537482013-09-11 14:22:46 -07001524 * In this case we don't want to hard throttle the USB key
Tejun Heode1fff32015-05-22 17:13:29 -04001525 * dirtiers for 100 seconds until wb_dirty drops under
1526 * wb_thresh. Instead the auxiliary wb control line in
Tejun Heoa88a3412015-05-22 17:13:28 -04001527 * wb_position_ratio() will let the dirtier task progress
Tejun Heode1fff32015-05-22 17:13:29 -04001528 * at some rate <= (write_bw / 2) for bringing down wb_dirty.
Maxim Patlasov5a537482013-09-11 14:22:46 -07001529 */
Tejun Heob1cbc6d2015-05-22 18:23:25 -04001530 dtc->wb_thresh = __wb_calc_thresh(dtc);
Tejun Heo970fb012015-05-22 18:23:24 -04001531 dtc->wb_bg_thresh = dtc->thresh ?
1532 div_u64((u64)dtc->wb_thresh * dtc->bg_thresh, dtc->thresh) : 0;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001533
1534 /*
1535 * In order to avoid the stacked BDI deadlock we need
1536 * to ensure we accurately count the 'dirty' pages when
1537 * the threshold is low.
1538 *
1539 * Otherwise it would be possible to get thresh+n pages
1540 * reported dirty, even though there are thresh-m pages
1541 * actually dirty; with m+n sitting in the percpu
1542 * deltas.
1543 */
Wang Long2bce7742017-11-15 17:39:03 -08001544 if (dtc->wb_thresh < 2 * wb_stat_error()) {
Tejun Heo93f78d82015-05-22 17:13:27 -04001545 wb_reclaimable = wb_stat_sum(wb, WB_RECLAIMABLE);
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001546 dtc->wb_dirty = wb_reclaimable + wb_stat_sum(wb, WB_WRITEBACK);
Maxim Patlasov5a537482013-09-11 14:22:46 -07001547 } else {
Tejun Heo93f78d82015-05-22 17:13:27 -04001548 wb_reclaimable = wb_stat(wb, WB_RECLAIMABLE);
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001549 dtc->wb_dirty = wb_reclaimable + wb_stat(wb, WB_WRITEBACK);
Maxim Patlasov5a537482013-09-11 14:22:46 -07001550 }
1551}
1552
Wu Fengguang9d823e82011-06-11 18:10:12 -06001553/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001554 * balance_dirty_pages() must be called by processes which are generating dirty
1555 * data. It looks at the number of dirty pages in the machine and will force
Wu Fengguang143dfe82010-08-27 18:45:12 -06001556 * the caller to wait once crossing the (background_thresh + dirty_thresh) / 2.
Jens Axboe5b0830c2009-09-23 19:37:09 +02001557 * If we're over `background_thresh' then the writeback threads are woken to
1558 * perform some writeout.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 */
Tahsin Erdogan4c578dc2017-11-15 17:33:19 -08001560static void balance_dirty_pages(struct bdi_writeback *wb,
Wu Fengguang143dfe82010-08-27 18:45:12 -06001561 unsigned long pages_dirtied)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562{
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001563 struct dirty_throttle_control gdtc_stor = { GDTC_INIT(wb) };
Tejun Heoc2aa7232015-05-22 18:23:35 -04001564 struct dirty_throttle_control mdtc_stor = { MDTC_INIT(wb, &gdtc_stor) };
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001565 struct dirty_throttle_control * const gdtc = &gdtc_stor;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001566 struct dirty_throttle_control * const mdtc = mdtc_valid(&mdtc_stor) ?
1567 &mdtc_stor : NULL;
1568 struct dirty_throttle_control *sdtc;
NeilBrown8d928902020-06-01 21:48:21 -07001569 unsigned long nr_reclaimable; /* = file_dirty */
Wu Fengguang83712352011-06-11 19:25:42 -06001570 long period;
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001571 long pause;
1572 long max_pause;
1573 long min_pause;
1574 int nr_dirtied_pause;
Wu Fengguange50e3722010-08-11 14:17:37 -07001575 bool dirty_exceeded = false;
Wu Fengguang143dfe82010-08-27 18:45:12 -06001576 unsigned long task_ratelimit;
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001577 unsigned long dirty_ratelimit;
Tejun Heodfb8ae52015-05-22 17:13:40 -04001578 struct backing_dev_info *bdi = wb->bdi;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001579 bool strictlimit = bdi->capabilities & BDI_CAP_STRICTLIMIT;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001580 unsigned long start_time = jiffies;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001581
1582 for (;;) {
Wu Fengguang83712352011-06-11 19:25:42 -06001583 unsigned long now = jiffies;
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001584 unsigned long dirty, thresh, bg_thresh;
Yang Shi50e55bf2015-11-20 15:57:10 -08001585 unsigned long m_dirty = 0; /* stop bogus uninit warnings */
1586 unsigned long m_thresh = 0;
1587 unsigned long m_bg_thresh = 0;
Wu Fengguang83712352011-06-11 19:25:42 -06001588
NeilBrown8d928902020-06-01 21:48:21 -07001589 nr_reclaimable = global_node_page_state(NR_FILE_DIRTY);
Tejun Heo9fc3a432015-05-22 18:23:30 -04001590 gdtc->avail = global_dirtyable_memory();
Mel Gorman11fb9982016-07-28 15:46:20 -07001591 gdtc->dirty = nr_reclaimable + global_node_page_state(NR_WRITEBACK);
Peter Zijlstra5fce25a2007-11-14 16:59:15 -08001592
Tejun Heo9fc3a432015-05-22 18:23:30 -04001593 domain_dirty_limits(gdtc);
Wu Fengguang16c40422010-08-11 14:17:39 -07001594
Maxim Patlasov5a537482013-09-11 14:22:46 -07001595 if (unlikely(strictlimit)) {
Tejun Heo970fb012015-05-22 18:23:24 -04001596 wb_dirty_limits(gdtc);
Maxim Patlasov5a537482013-09-11 14:22:46 -07001597
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001598 dirty = gdtc->wb_dirty;
1599 thresh = gdtc->wb_thresh;
Tejun Heo970fb012015-05-22 18:23:24 -04001600 bg_thresh = gdtc->wb_bg_thresh;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001601 } else {
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001602 dirty = gdtc->dirty;
1603 thresh = gdtc->thresh;
1604 bg_thresh = gdtc->bg_thresh;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001605 }
1606
Tejun Heoc2aa7232015-05-22 18:23:35 -04001607 if (mdtc) {
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001608 unsigned long filepages, headroom, writeback;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001609
1610 /*
1611 * If @wb belongs to !root memcg, repeat the same
1612 * basic calculations for the memcg domain.
1613 */
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001614 mem_cgroup_wb_stats(wb, &filepages, &headroom,
1615 &mdtc->dirty, &writeback);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001616 mdtc->dirty += writeback;
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001617 mdtc_calc_avail(mdtc, filepages, headroom);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001618
1619 domain_dirty_limits(mdtc);
1620
1621 if (unlikely(strictlimit)) {
1622 wb_dirty_limits(mdtc);
1623 m_dirty = mdtc->wb_dirty;
1624 m_thresh = mdtc->wb_thresh;
1625 m_bg_thresh = mdtc->wb_bg_thresh;
1626 } else {
1627 m_dirty = mdtc->dirty;
1628 m_thresh = mdtc->thresh;
1629 m_bg_thresh = mdtc->bg_thresh;
1630 }
Wu Fengguang16c40422010-08-11 14:17:39 -07001631 }
1632
1633 /*
1634 * Throttle it only when the background writeback cannot
1635 * catch-up. This avoids (excessively) small writeouts
Tejun Heode1fff32015-05-22 17:13:29 -04001636 * when the wb limits are ramping up in case of !strictlimit.
Maxim Patlasov5a537482013-09-11 14:22:46 -07001637 *
Tejun Heode1fff32015-05-22 17:13:29 -04001638 * In strictlimit case make decision based on the wb counters
1639 * and limits. Small writeouts when the wb limits are ramping
Maxim Patlasov5a537482013-09-11 14:22:46 -07001640 * up are the price we consciously pay for strictlimit-ing.
Tejun Heoc2aa7232015-05-22 18:23:35 -04001641 *
1642 * If memcg domain is in effect, @dirty should be under
1643 * both global and memcg freerun ceilings.
Wu Fengguang16c40422010-08-11 14:17:39 -07001644 */
Tejun Heoc2aa7232015-05-22 18:23:35 -04001645 if (dirty <= dirty_freerun_ceiling(thresh, bg_thresh) &&
1646 (!mdtc ||
1647 m_dirty <= dirty_freerun_ceiling(m_thresh, m_bg_thresh))) {
NeilBrowna37b0712020-06-01 21:48:18 -07001648 unsigned long intv;
1649 unsigned long m_intv;
1650
1651free_running:
1652 intv = dirty_poll_interval(dirty, thresh);
1653 m_intv = ULONG_MAX;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001654
Wu Fengguang83712352011-06-11 19:25:42 -06001655 current->dirty_paused_when = now;
1656 current->nr_dirtied = 0;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001657 if (mdtc)
1658 m_intv = dirty_poll_interval(m_dirty, m_thresh);
1659 current->nr_dirtied_pause = min(intv, m_intv);
Wu Fengguang16c40422010-08-11 14:17:39 -07001660 break;
Wu Fengguang83712352011-06-11 19:25:42 -06001661 }
Wu Fengguang16c40422010-08-11 14:17:39 -07001662
Tejun Heobc058732015-05-22 17:13:53 -04001663 if (unlikely(!writeback_in_progress(wb)))
Tejun Heo9ecf48662015-05-22 17:13:54 -04001664 wb_start_background_writeback(wb);
Wu Fengguang143dfe82010-08-27 18:45:12 -06001665
Tejun Heo97b27822019-08-26 09:06:56 -07001666 mem_cgroup_flush_foreign(wb);
1667
Tejun Heoc2aa7232015-05-22 18:23:35 -04001668 /*
1669 * Calculate global domain's pos_ratio and select the
1670 * global dtc by default.
1671 */
NeilBrowna37b0712020-06-01 21:48:18 -07001672 if (!strictlimit) {
Tejun Heo970fb012015-05-22 18:23:24 -04001673 wb_dirty_limits(gdtc);
Peter Zijlstra5fce25a2007-11-14 16:59:15 -08001674
NeilBrowna37b0712020-06-01 21:48:18 -07001675 if ((current->flags & PF_LOCAL_THROTTLE) &&
1676 gdtc->wb_dirty <
1677 dirty_freerun_ceiling(gdtc->wb_thresh,
1678 gdtc->wb_bg_thresh))
1679 /*
1680 * LOCAL_THROTTLE tasks must not be throttled
1681 * when below the per-wb freerun ceiling.
1682 */
1683 goto free_running;
1684 }
1685
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001686 dirty_exceeded = (gdtc->wb_dirty > gdtc->wb_thresh) &&
1687 ((gdtc->dirty > gdtc->thresh) || strictlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001688
Tejun Heodaddfa32015-05-22 18:23:26 -04001689 wb_position_ratio(gdtc);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001690 sdtc = gdtc;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001691
Tejun Heoc2aa7232015-05-22 18:23:35 -04001692 if (mdtc) {
1693 /*
1694 * If memcg domain is in effect, calculate its
1695 * pos_ratio. @wb should satisfy constraints from
1696 * both global and memcg domains. Choose the one
1697 * w/ lower pos_ratio.
1698 */
NeilBrowna37b0712020-06-01 21:48:18 -07001699 if (!strictlimit) {
Tejun Heoc2aa7232015-05-22 18:23:35 -04001700 wb_dirty_limits(mdtc);
1701
NeilBrowna37b0712020-06-01 21:48:18 -07001702 if ((current->flags & PF_LOCAL_THROTTLE) &&
1703 mdtc->wb_dirty <
1704 dirty_freerun_ceiling(mdtc->wb_thresh,
1705 mdtc->wb_bg_thresh))
1706 /*
1707 * LOCAL_THROTTLE tasks must not be
1708 * throttled when below the per-wb
1709 * freerun ceiling.
1710 */
1711 goto free_running;
1712 }
Tejun Heoc2aa7232015-05-22 18:23:35 -04001713 dirty_exceeded |= (mdtc->wb_dirty > mdtc->wb_thresh) &&
1714 ((mdtc->dirty > mdtc->thresh) || strictlimit);
1715
1716 wb_position_ratio(mdtc);
1717 if (mdtc->pos_ratio < gdtc->pos_ratio)
1718 sdtc = mdtc;
1719 }
Tejun Heodaddfa32015-05-22 18:23:26 -04001720
Tejun Heoa88a3412015-05-22 17:13:28 -04001721 if (dirty_exceeded && !wb->dirty_exceeded)
1722 wb->dirty_exceeded = 1;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07001723
Jan Kara20792eb2021-09-02 14:53:15 -07001724 if (time_is_before_jiffies(READ_ONCE(wb->bw_time_stamp) +
Jan Kara45a29662021-09-02 14:53:09 -07001725 BANDWIDTH_INTERVAL))
Jan Karafee468f2021-09-02 14:53:06 -07001726 __wb_update_bandwidth(gdtc, mdtc, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Tejun Heoc2aa7232015-05-22 18:23:35 -04001728 /* throttle according to the chosen dtc */
Jan Kara20792eb2021-09-02 14:53:15 -07001729 dirty_ratelimit = READ_ONCE(wb->dirty_ratelimit);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001730 task_ratelimit = ((u64)dirty_ratelimit * sdtc->pos_ratio) >>
Wu Fengguang3a73dbb2011-11-07 19:19:28 +08001731 RATELIMIT_CALC_SHIFT;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001732 max_pause = wb_max_pause(wb, sdtc->wb_dirty);
Tejun Heoa88a3412015-05-22 17:13:28 -04001733 min_pause = wb_min_pause(wb, max_pause,
1734 task_ratelimit, dirty_ratelimit,
1735 &nr_dirtied_pause);
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001736
Wu Fengguang3a73dbb2011-11-07 19:19:28 +08001737 if (unlikely(task_ratelimit == 0)) {
Wu Fengguang83712352011-06-11 19:25:42 -06001738 period = max_pause;
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001739 pause = max_pause;
Wu Fengguang143dfe82010-08-27 18:45:12 -06001740 goto pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 }
Wu Fengguang83712352011-06-11 19:25:42 -06001742 period = HZ * pages_dirtied / task_ratelimit;
1743 pause = period;
1744 if (current->dirty_paused_when)
1745 pause -= now - current->dirty_paused_when;
1746 /*
1747 * For less than 1s think time (ext3/4 may block the dirtier
1748 * for up to 800ms from time to time on 1-HDD; so does xfs,
1749 * however at much less frequency), try to compensate it in
1750 * future periods by updating the virtual time; otherwise just
1751 * do a reset, as it may be a light dirtier.
1752 */
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001753 if (pause < min_pause) {
Tejun Heo5634cc22015-08-18 14:54:56 -07001754 trace_balance_dirty_pages(wb,
Tejun Heoc2aa7232015-05-22 18:23:35 -04001755 sdtc->thresh,
1756 sdtc->bg_thresh,
1757 sdtc->dirty,
1758 sdtc->wb_thresh,
1759 sdtc->wb_dirty,
Wu Fengguangece13ac32010-08-29 23:33:20 -06001760 dirty_ratelimit,
1761 task_ratelimit,
1762 pages_dirtied,
Wu Fengguang83712352011-06-11 19:25:42 -06001763 period,
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001764 min(pause, 0L),
Wu Fengguangece13ac32010-08-29 23:33:20 -06001765 start_time);
Wu Fengguang83712352011-06-11 19:25:42 -06001766 if (pause < -HZ) {
1767 current->dirty_paused_when = now;
1768 current->nr_dirtied = 0;
1769 } else if (period) {
1770 current->dirty_paused_when += period;
1771 current->nr_dirtied = 0;
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001772 } else if (current->nr_dirtied_pause <= pages_dirtied)
1773 current->nr_dirtied_pause += pages_dirtied;
Wu Fengguang57fc9782011-06-11 19:32:32 -06001774 break;
1775 }
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001776 if (unlikely(pause > max_pause)) {
1777 /* for occasional dropped task_ratelimit */
1778 now += min(pause - max_pause, max_pause);
1779 pause = max_pause;
1780 }
Wu Fengguang143dfe82010-08-27 18:45:12 -06001781
1782pause:
Tejun Heo5634cc22015-08-18 14:54:56 -07001783 trace_balance_dirty_pages(wb,
Tejun Heoc2aa7232015-05-22 18:23:35 -04001784 sdtc->thresh,
1785 sdtc->bg_thresh,
1786 sdtc->dirty,
1787 sdtc->wb_thresh,
1788 sdtc->wb_dirty,
Wu Fengguangece13ac32010-08-29 23:33:20 -06001789 dirty_ratelimit,
1790 task_ratelimit,
1791 pages_dirtied,
Wu Fengguang83712352011-06-11 19:25:42 -06001792 period,
Wu Fengguangece13ac32010-08-29 23:33:20 -06001793 pause,
1794 start_time);
Jan Kara499d05e2011-11-16 19:34:48 +08001795 __set_current_state(TASK_KILLABLE);
Jens Axboeb57d74a2016-09-01 10:20:33 -06001796 wb->dirty_sleep = now;
Wu Fengguangd25105e2009-10-09 12:40:42 +02001797 io_schedule_timeout(pause);
Jens Axboe87c6a9b2009-09-17 19:59:14 +02001798
Wu Fengguang83712352011-06-11 19:25:42 -06001799 current->dirty_paused_when = now + pause;
1800 current->nr_dirtied = 0;
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001801 current->nr_dirtied_pause = nr_dirtied_pause;
Wu Fengguang83712352011-06-11 19:25:42 -06001802
Wu Fengguangffd1f602011-06-19 22:18:42 -06001803 /*
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001804 * This is typically equal to (dirty < thresh) and can also
1805 * keep "1000+ dd on a slow USB stick" under control.
Wu Fengguangffd1f602011-06-19 22:18:42 -06001806 */
Wu Fengguang1df64712011-11-13 19:47:32 -06001807 if (task_ratelimit)
Wu Fengguangffd1f602011-06-19 22:18:42 -06001808 break;
Jan Kara499d05e2011-11-16 19:34:48 +08001809
Wu Fengguangc5c63432011-12-02 10:21:33 -06001810 /*
Ingo Molnarf0953a12021-05-06 18:06:47 -07001811 * In the case of an unresponsive NFS server and the NFS dirty
Tejun Heode1fff32015-05-22 17:13:29 -04001812 * pages exceeds dirty_thresh, give the other good wb's a pipe
Wu Fengguangc5c63432011-12-02 10:21:33 -06001813 * to go through, so that tasks on them still remain responsive.
1814 *
Masahiro Yamada3f8b6fb2017-02-27 14:29:25 -08001815 * In theory 1 page is enough to keep the consumer-producer
Wu Fengguangc5c63432011-12-02 10:21:33 -06001816 * pipe going: the flusher cleans 1 page => the task dirties 1
Tejun Heode1fff32015-05-22 17:13:29 -04001817 * more page. However wb_dirty has accounting errors. So use
Tejun Heo93f78d82015-05-22 17:13:27 -04001818 * the larger and more IO friendly wb_stat_error.
Wu Fengguangc5c63432011-12-02 10:21:33 -06001819 */
Wang Long2bce7742017-11-15 17:39:03 -08001820 if (sdtc->wb_dirty <= wb_stat_error())
Wu Fengguangc5c63432011-12-02 10:21:33 -06001821 break;
1822
Jan Kara499d05e2011-11-16 19:34:48 +08001823 if (fatal_signal_pending(current))
1824 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001825 }
1826
Tejun Heoa88a3412015-05-22 17:13:28 -04001827 if (!dirty_exceeded && wb->dirty_exceeded)
1828 wb->dirty_exceeded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001829
Tejun Heobc058732015-05-22 17:13:53 -04001830 if (writeback_in_progress(wb))
Jens Axboe5b0830c2009-09-23 19:37:09 +02001831 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832
1833 /*
1834 * In laptop mode, we wait until hitting the higher threshold before
1835 * starting background writeout, and then write out all the way down
1836 * to the lower threshold. So slow writers cause minimal disk activity.
1837 *
1838 * In normal mode, we start background writeout at the lower
1839 * background_thresh, to keep the amount of dirty memory low.
1840 */
Wu Fengguang143dfe82010-08-27 18:45:12 -06001841 if (laptop_mode)
1842 return;
1843
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001844 if (nr_reclaimable > gdtc->bg_thresh)
Tejun Heo9ecf48662015-05-22 17:13:54 -04001845 wb_start_background_writeback(wb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001846}
1847
Wu Fengguang9d823e82011-06-11 18:10:12 -06001848static DEFINE_PER_CPU(int, bdp_ratelimits);
Tejun Heo245b2e72009-06-24 15:13:48 +09001849
Wu Fengguang54848d72011-04-05 13:21:19 -06001850/*
1851 * Normal tasks are throttled by
1852 * loop {
1853 * dirty tsk->nr_dirtied_pause pages;
1854 * take a snap in balance_dirty_pages();
1855 * }
1856 * However there is a worst case. If every task exit immediately when dirtied
1857 * (tsk->nr_dirtied_pause - 1) pages, balance_dirty_pages() will never be
1858 * called to throttle the page dirties. The solution is to save the not yet
1859 * throttled page dirties in dirty_throttle_leaks on task exit and charge them
1860 * randomly into the running tasks. This works well for the above worst case,
1861 * as the new task will pick up and accumulate the old task's leaked dirty
1862 * count and eventually get throttled.
1863 */
1864DEFINE_PER_CPU(int, dirty_throttle_leaks) = 0;
1865
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866/**
Namjae Jeond0e1d662012-12-11 16:00:21 -08001867 * balance_dirty_pages_ratelimited - balance dirty memory state
Martin Waitz67be2dd2005-05-01 08:59:26 -07001868 * @mapping: address_space which was dirtied
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 *
1870 * Processes which are dirtying memory should call in here once for each page
1871 * which was newly dirtied. The function will periodically check the system's
1872 * dirty state and will initiate writeback if needed.
1873 *
Kefeng Wang5defd492021-06-28 19:35:28 -07001874 * Once we're over the dirty memory limit we decrease the ratelimiting
1875 * by a lot, to prevent individual processes from overshooting the limit
1876 * by (ratelimit_pages) each.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 */
Namjae Jeond0e1d662012-12-11 16:00:21 -08001878void balance_dirty_pages_ratelimited(struct address_space *mapping)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879{
Tejun Heodfb8ae52015-05-22 17:13:40 -04001880 struct inode *inode = mapping->host;
1881 struct backing_dev_info *bdi = inode_to_bdi(inode);
1882 struct bdi_writeback *wb = NULL;
Wu Fengguang9d823e82011-06-11 18:10:12 -06001883 int ratelimit;
1884 int *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885
Christoph Hellwigf56753a2020-09-24 08:51:40 +02001886 if (!(bdi->capabilities & BDI_CAP_WRITEBACK))
Wu Fengguang36715ce2011-06-11 17:53:57 -06001887 return;
1888
Tejun Heodfb8ae52015-05-22 17:13:40 -04001889 if (inode_cgwb_enabled(inode))
1890 wb = wb_get_create_current(bdi, GFP_KERNEL);
1891 if (!wb)
1892 wb = &bdi->wb;
1893
Wu Fengguang9d823e82011-06-11 18:10:12 -06001894 ratelimit = current->nr_dirtied_pause;
Tejun Heoa88a3412015-05-22 17:13:28 -04001895 if (wb->dirty_exceeded)
Wu Fengguang9d823e82011-06-11 18:10:12 -06001896 ratelimit = min(ratelimit, 32 >> (PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
Andrew Mortonfa5a7342006-03-24 03:18:10 -08001898 preempt_disable();
Wu Fengguang9d823e82011-06-11 18:10:12 -06001899 /*
1900 * This prevents one CPU to accumulate too many dirtied pages without
1901 * calling into balance_dirty_pages(), which can happen when there are
1902 * 1000+ tasks, all of them start dirtying pages at exactly the same
1903 * time, hence all honoured too large initial task->nr_dirtied_pause.
1904 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -07001905 p = this_cpu_ptr(&bdp_ratelimits);
Wu Fengguang9d823e82011-06-11 18:10:12 -06001906 if (unlikely(current->nr_dirtied >= ratelimit))
Andrew Mortonfa5a7342006-03-24 03:18:10 -08001907 *p = 0;
Wu Fengguangd3bc1fe2011-04-14 07:52:37 -06001908 else if (unlikely(*p >= ratelimit_pages)) {
1909 *p = 0;
1910 ratelimit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911 }
Wu Fengguang54848d72011-04-05 13:21:19 -06001912 /*
1913 * Pick up the dirtied pages by the exited tasks. This avoids lots of
1914 * short-lived tasks (eg. gcc invocations in a kernel build) escaping
1915 * the dirty throttling and livelock other long-run dirtiers.
1916 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -07001917 p = this_cpu_ptr(&dirty_throttle_leaks);
Wu Fengguang54848d72011-04-05 13:21:19 -06001918 if (*p > 0 && current->nr_dirtied < ratelimit) {
Namjae Jeond0e1d662012-12-11 16:00:21 -08001919 unsigned long nr_pages_dirtied;
Wu Fengguang54848d72011-04-05 13:21:19 -06001920 nr_pages_dirtied = min(*p, ratelimit - current->nr_dirtied);
1921 *p -= nr_pages_dirtied;
1922 current->nr_dirtied += nr_pages_dirtied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001923 }
Andrew Mortonfa5a7342006-03-24 03:18:10 -08001924 preempt_enable();
Wu Fengguang9d823e82011-06-11 18:10:12 -06001925
1926 if (unlikely(current->nr_dirtied >= ratelimit))
Tahsin Erdogan4c578dc2017-11-15 17:33:19 -08001927 balance_dirty_pages(wb, current->nr_dirtied);
Tejun Heodfb8ae52015-05-22 17:13:40 -04001928
1929 wb_put(wb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001930}
Namjae Jeond0e1d662012-12-11 16:00:21 -08001931EXPORT_SYMBOL(balance_dirty_pages_ratelimited);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
Tejun Heoaa661bb2015-05-22 18:23:31 -04001933/**
1934 * wb_over_bg_thresh - does @wb need to be written back?
1935 * @wb: bdi_writeback of interest
1936 *
1937 * Determines whether background writeback should keep writing @wb or it's
Mike Rapoporta862f682019-03-05 15:48:42 -08001938 * clean enough.
1939 *
1940 * Return: %true if writeback should continue.
Tejun Heoaa661bb2015-05-22 18:23:31 -04001941 */
1942bool wb_over_bg_thresh(struct bdi_writeback *wb)
1943{
Tejun Heo947e9762015-05-22 18:23:32 -04001944 struct dirty_throttle_control gdtc_stor = { GDTC_INIT(wb) };
Tejun Heoc2aa7232015-05-22 18:23:35 -04001945 struct dirty_throttle_control mdtc_stor = { MDTC_INIT(wb, &gdtc_stor) };
Tejun Heo947e9762015-05-22 18:23:32 -04001946 struct dirty_throttle_control * const gdtc = &gdtc_stor;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001947 struct dirty_throttle_control * const mdtc = mdtc_valid(&mdtc_stor) ?
1948 &mdtc_stor : NULL;
Chi Wuab199392021-06-28 19:35:31 -07001949 unsigned long reclaimable;
1950 unsigned long thresh;
Tejun Heoaa661bb2015-05-22 18:23:31 -04001951
Tejun Heo947e9762015-05-22 18:23:32 -04001952 /*
1953 * Similar to balance_dirty_pages() but ignores pages being written
1954 * as we're trying to decide whether to put more under writeback.
1955 */
1956 gdtc->avail = global_dirtyable_memory();
NeilBrown8d928902020-06-01 21:48:21 -07001957 gdtc->dirty = global_node_page_state(NR_FILE_DIRTY);
Tejun Heo947e9762015-05-22 18:23:32 -04001958 domain_dirty_limits(gdtc);
Tejun Heoaa661bb2015-05-22 18:23:31 -04001959
Tejun Heo947e9762015-05-22 18:23:32 -04001960 if (gdtc->dirty > gdtc->bg_thresh)
Tejun Heoaa661bb2015-05-22 18:23:31 -04001961 return true;
1962
Chi Wuab199392021-06-28 19:35:31 -07001963 thresh = wb_calc_thresh(gdtc->wb, gdtc->bg_thresh);
1964 if (thresh < 2 * wb_stat_error())
1965 reclaimable = wb_stat_sum(wb, WB_RECLAIMABLE);
1966 else
1967 reclaimable = wb_stat(wb, WB_RECLAIMABLE);
1968
1969 if (reclaimable > thresh)
Tejun Heoaa661bb2015-05-22 18:23:31 -04001970 return true;
1971
Tejun Heoc2aa7232015-05-22 18:23:35 -04001972 if (mdtc) {
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001973 unsigned long filepages, headroom, writeback;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001974
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001975 mem_cgroup_wb_stats(wb, &filepages, &headroom, &mdtc->dirty,
1976 &writeback);
1977 mdtc_calc_avail(mdtc, filepages, headroom);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001978 domain_dirty_limits(mdtc); /* ditto, ignore writeback */
1979
1980 if (mdtc->dirty > mdtc->bg_thresh)
1981 return true;
1982
Chi Wuab199392021-06-28 19:35:31 -07001983 thresh = wb_calc_thresh(mdtc->wb, mdtc->bg_thresh);
1984 if (thresh < 2 * wb_stat_error())
1985 reclaimable = wb_stat_sum(wb, WB_RECLAIMABLE);
1986 else
1987 reclaimable = wb_stat(wb, WB_RECLAIMABLE);
1988
1989 if (reclaimable > thresh)
Tejun Heoc2aa7232015-05-22 18:23:35 -04001990 return true;
1991 }
1992
Tejun Heoaa661bb2015-05-22 18:23:31 -04001993 return false;
1994}
1995
Linus Torvalds1da177e2005-04-16 15:20:36 -07001996/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001997 * sysctl handler for /proc/sys/vm/dirty_writeback_centisecs
1998 */
Joe Perchescccad5b2014-06-06 14:38:09 -07001999int dirty_writeback_centisecs_handler(struct ctl_table *table, int write,
Christoph Hellwig32927392020-04-24 08:43:38 +02002000 void *buffer, size_t *length, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001{
Yafang Shao94af5842017-10-10 05:44:13 +08002002 unsigned int old_interval = dirty_writeback_interval;
2003 int ret;
2004
2005 ret = proc_dointvec(table, write, buffer, length, ppos);
Yafang Shao515c24c2017-10-14 16:38:27 +08002006
2007 /*
2008 * Writing 0 to dirty_writeback_interval will disable periodic writeback
2009 * and a different non-zero value will wakeup the writeback threads.
2010 * wb_wakeup_delayed() would be more appropriate, but it's a pain to
2011 * iterate over all bdis and wbs.
2012 * The reason we do this is to make the change take effect immediately.
2013 */
2014 if (!ret && write && dirty_writeback_interval &&
2015 dirty_writeback_interval != old_interval)
Yafang Shao94af5842017-10-10 05:44:13 +08002016 wakeup_flusher_threads(WB_REASON_PERIODIC);
2017
2018 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019}
2020
Kees Cookbca237a2017-08-28 15:03:41 -07002021void laptop_mode_timer_fn(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002022{
Kees Cookbca237a2017-08-28 15:03:41 -07002023 struct backing_dev_info *backing_dev_info =
2024 from_timer(backing_dev_info, t, laptop_mode_wb_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002025
Kees Cookbca237a2017-08-28 15:03:41 -07002026 wakeup_flusher_threads_bdi(backing_dev_info, WB_REASON_LAPTOP_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002027}
2028
2029/*
2030 * We've spun up the disk and we're in laptop mode: schedule writeback
2031 * of all dirty data a few seconds from now. If the flush is already scheduled
2032 * then push it back - the user is still using the disk.
2033 */
Matthew Garrett31373d02010-04-06 14:25:14 +02002034void laptop_io_completion(struct backing_dev_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002035{
Matthew Garrett31373d02010-04-06 14:25:14 +02002036 mod_timer(&info->laptop_mode_wb_timer, jiffies + laptop_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002037}
2038
2039/*
2040 * We're in laptop mode and we've just synced. The sync's writes will have
2041 * caused another writeback to be scheduled by laptop_io_completion.
2042 * Nothing needs to be written back anymore, so we unschedule the writeback.
2043 */
2044void laptop_sync_completion(void)
2045{
Matthew Garrett31373d02010-04-06 14:25:14 +02002046 struct backing_dev_info *bdi;
2047
2048 rcu_read_lock();
2049
2050 list_for_each_entry_rcu(bdi, &bdi_list, bdi_list)
2051 del_timer(&bdi->laptop_mode_wb_timer);
2052
2053 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054}
2055
2056/*
2057 * If ratelimit_pages is too high then we can get into dirty-data overload
2058 * if a large number of processes all perform writes at the same time.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 *
2060 * Here we set ratelimit_pages to a level which ensures that when all CPUs are
2061 * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory
Wu Fengguang9d823e82011-06-11 18:10:12 -06002062 * thresholds.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 */
2064
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07002065void writeback_set_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066{
Tejun Heodcc25ae2015-05-22 18:23:22 -04002067 struct wb_domain *dom = &global_wb_domain;
Wu Fengguang9d823e82011-06-11 18:10:12 -06002068 unsigned long background_thresh;
2069 unsigned long dirty_thresh;
Tejun Heodcc25ae2015-05-22 18:23:22 -04002070
Wu Fengguang9d823e82011-06-11 18:10:12 -06002071 global_dirty_limits(&background_thresh, &dirty_thresh);
Tejun Heodcc25ae2015-05-22 18:23:22 -04002072 dom->dirty_limit = dirty_thresh;
Wu Fengguang9d823e82011-06-11 18:10:12 -06002073 ratelimit_pages = dirty_thresh / (num_online_cpus() * 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002074 if (ratelimit_pages < 16)
2075 ratelimit_pages = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002076}
2077
Sebastian Andrzej Siewior1d7ac6a2016-08-18 14:57:20 +02002078static int page_writeback_cpu_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002079{
Sebastian Andrzej Siewior1d7ac6a2016-08-18 14:57:20 +02002080 writeback_set_ratelimit();
2081 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082}
2083
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084/*
Linus Torvaldsdc6e29d2007-01-29 16:37:38 -08002085 * Called early on to tune the page writeback dirty limits.
2086 *
2087 * We used to scale dirty pages according to how total memory
David Hildenbrand0a18e602020-08-06 23:25:27 -07002088 * related to pages that could be allocated for buffers.
Linus Torvaldsdc6e29d2007-01-29 16:37:38 -08002089 *
2090 * However, that was when we used "dirty_ratio" to scale with
2091 * all memory, and we don't do that any more. "dirty_ratio"
David Hildenbrand0a18e602020-08-06 23:25:27 -07002092 * is now applied to total non-HIGHPAGE memory, and as such we can't
Linus Torvaldsdc6e29d2007-01-29 16:37:38 -08002093 * get into the old insane situation any more where we had
2094 * large amounts of dirty pages compared to a small amount of
2095 * non-HIGHMEM memory.
2096 *
2097 * But we might still want to scale the dirty_ratio by how
2098 * much memory the box has..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 */
2100void __init page_writeback_init(void)
2101{
Rabin Vincenta50fcb52015-08-06 15:47:14 -07002102 BUG_ON(wb_domain_init(&global_wb_domain, GFP_KERNEL));
2103
Sebastian Andrzej Siewior1d7ac6a2016-08-18 14:57:20 +02002104 cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "mm/writeback:online",
2105 page_writeback_cpu_online, NULL);
2106 cpuhp_setup_state(CPUHP_MM_WRITEBACK_DEAD, "mm/writeback:dead", NULL,
2107 page_writeback_cpu_online);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002108}
2109
David Howells811d7362006-08-29 19:06:09 +01002110/**
Jan Karaf446daae2010-08-09 17:19:12 -07002111 * tag_pages_for_writeback - tag pages to be written by write_cache_pages
2112 * @mapping: address space structure to write
2113 * @start: starting page index
2114 * @end: ending page index (inclusive)
2115 *
2116 * This function scans the page range from @start to @end (inclusive) and tags
2117 * all pages that have DIRTY tag set with a special TOWRITE tag. The idea is
2118 * that write_cache_pages (or whoever calls this function) will then use
2119 * TOWRITE tag to identify pages eligible for writeback. This mechanism is
2120 * used to avoid livelocking of writeback by a process steadily creating new
2121 * dirty pages in the file (thus it is important for this function to be quick
2122 * so that it can tag pages faster than a dirtying process can create them).
2123 */
Jan Karaf446daae2010-08-09 17:19:12 -07002124void tag_pages_for_writeback(struct address_space *mapping,
2125 pgoff_t start, pgoff_t end)
2126{
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002127 XA_STATE(xas, &mapping->i_pages, start);
2128 unsigned int tagged = 0;
2129 void *page;
Jan Karaf446daae2010-08-09 17:19:12 -07002130
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002131 xas_lock_irq(&xas);
2132 xas_for_each_marked(&xas, page, end, PAGECACHE_TAG_DIRTY) {
2133 xas_set_mark(&xas, PAGECACHE_TAG_TOWRITE);
2134 if (++tagged % XA_CHECK_SCHED)
Matthew Wilcox268f42d2016-12-14 15:08:55 -08002135 continue;
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002136
2137 xas_pause(&xas);
2138 xas_unlock_irq(&xas);
Jan Karaf446daae2010-08-09 17:19:12 -07002139 cond_resched();
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002140 xas_lock_irq(&xas);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08002141 }
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002142 xas_unlock_irq(&xas);
Jan Karaf446daae2010-08-09 17:19:12 -07002143}
2144EXPORT_SYMBOL(tag_pages_for_writeback);
2145
2146/**
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002147 * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
David Howells811d7362006-08-29 19:06:09 +01002148 * @mapping: address space structure to write
2149 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002150 * @writepage: function called for each page
2151 * @data: data passed to writepage function
David Howells811d7362006-08-29 19:06:09 +01002152 *
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002153 * If a page is already under I/O, write_cache_pages() skips it, even
David Howells811d7362006-08-29 19:06:09 +01002154 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2155 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2156 * and msync() need to guarantee that all the data which was dirty at the time
2157 * the call was made get new I/O started against them. If wbc->sync_mode is
2158 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2159 * existing IO to complete.
Jan Karaf446daae2010-08-09 17:19:12 -07002160 *
2161 * To avoid livelocks (when other process dirties new pages), we first tag
2162 * pages which should be written back with TOWRITE tag and only then start
2163 * writing them. For data-integrity sync we have to be careful so that we do
2164 * not miss some pages (e.g., because some other process has cleared TOWRITE
2165 * tag we set). The rule we follow is that TOWRITE tag can be cleared only
2166 * by the process clearing the DIRTY tag (and submitting the page for IO).
Dave Chinner64081362018-10-26 15:09:45 -07002167 *
2168 * To avoid deadlocks between range_cyclic writeback and callers that hold
2169 * pages in PageWriteback to aggregate IO until write_cache_pages() returns,
2170 * we do not loop back to the start of the file. Doing so causes a page
2171 * lock/page writeback access order inversion - we should only ever lock
2172 * multiple pages in ascending page->index order, and looping back to the start
2173 * of the file violates that rule and causes deadlocks.
Mike Rapoporta862f682019-03-05 15:48:42 -08002174 *
2175 * Return: %0 on success, negative error code otherwise
David Howells811d7362006-08-29 19:06:09 +01002176 */
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002177int write_cache_pages(struct address_space *mapping,
2178 struct writeback_control *wbc, writepage_t writepage,
2179 void *data)
David Howells811d7362006-08-29 19:06:09 +01002180{
David Howells811d7362006-08-29 19:06:09 +01002181 int ret = 0;
2182 int done = 0;
Brian Foster3fa750d2018-12-28 00:37:20 -08002183 int error;
David Howells811d7362006-08-29 19:06:09 +01002184 struct pagevec pvec;
2185 int nr_pages;
2186 pgoff_t index;
2187 pgoff_t end; /* Inclusive */
Nick Pigginbd19e012009-01-06 14:39:06 -08002188 pgoff_t done_index;
David Howells811d7362006-08-29 19:06:09 +01002189 int range_whole = 0;
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002190 xa_mark_t tag;
David Howells811d7362006-08-29 19:06:09 +01002191
Mel Gorman86679822017-11-15 17:37:52 -08002192 pagevec_init(&pvec);
David Howells811d7362006-08-29 19:06:09 +01002193 if (wbc->range_cyclic) {
Chao Yu28659cc2020-06-01 21:48:15 -07002194 index = mapping->writeback_index; /* prev offset */
David Howells811d7362006-08-29 19:06:09 +01002195 end = -1;
2196 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002197 index = wbc->range_start >> PAGE_SHIFT;
2198 end = wbc->range_end >> PAGE_SHIFT;
David Howells811d7362006-08-29 19:06:09 +01002199 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2200 range_whole = 1;
David Howells811d7362006-08-29 19:06:09 +01002201 }
Mauricio Faria de Oliveiracc7b8f62020-04-01 21:04:43 -07002202 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) {
Jan Karaf446daae2010-08-09 17:19:12 -07002203 tag_pages_for_writeback(mapping, index, end);
Mauricio Faria de Oliveiracc7b8f62020-04-01 21:04:43 -07002204 tag = PAGECACHE_TAG_TOWRITE;
2205 } else {
2206 tag = PAGECACHE_TAG_DIRTY;
2207 }
Nick Pigginbd19e012009-01-06 14:39:06 -08002208 done_index = index;
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002209 while (!done && (index <= end)) {
2210 int i;
2211
Jan Kara2b9775a2017-11-15 17:35:09 -08002212 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002213 tag);
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002214 if (nr_pages == 0)
2215 break;
David Howells811d7362006-08-29 19:06:09 +01002216
David Howells811d7362006-08-29 19:06:09 +01002217 for (i = 0; i < nr_pages; i++) {
2218 struct page *page = pvec.pages[i];
2219
Jun'ichi Nomuracf15b072011-03-22 16:33:40 -07002220 done_index = page->index;
Nick Pigginbd19e012009-01-06 14:39:06 -08002221
David Howells811d7362006-08-29 19:06:09 +01002222 lock_page(page);
2223
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002224 /*
2225 * Page truncated or invalidated. We can freely skip it
2226 * then, even for data integrity operations: the page
2227 * has disappeared concurrently, so there could be no
Ingo Molnarf0953a12021-05-06 18:06:47 -07002228 * real expectation of this data integrity operation
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002229 * even if there is now a new, dirty page at the same
2230 * pagecache address.
2231 */
David Howells811d7362006-08-29 19:06:09 +01002232 if (unlikely(page->mapping != mapping)) {
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002233continue_unlock:
David Howells811d7362006-08-29 19:06:09 +01002234 unlock_page(page);
2235 continue;
2236 }
2237
Nick Piggin515f4a02009-01-06 14:39:10 -08002238 if (!PageDirty(page)) {
2239 /* someone wrote it for us */
2240 goto continue_unlock;
2241 }
David Howells811d7362006-08-29 19:06:09 +01002242
Nick Piggin515f4a02009-01-06 14:39:10 -08002243 if (PageWriteback(page)) {
2244 if (wbc->sync_mode != WB_SYNC_NONE)
2245 wait_on_page_writeback(page);
2246 else
2247 goto continue_unlock;
2248 }
2249
2250 BUG_ON(PageWriteback(page));
2251 if (!clear_page_dirty_for_io(page))
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002252 goto continue_unlock;
David Howells811d7362006-08-29 19:06:09 +01002253
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002254 trace_wbc_writepage(wbc, inode_to_bdi(mapping->host));
Brian Foster3fa750d2018-12-28 00:37:20 -08002255 error = (*writepage)(page, wbc, data);
2256 if (unlikely(error)) {
2257 /*
2258 * Handle errors according to the type of
2259 * writeback. There's no need to continue for
2260 * background writeback. Just push done_index
2261 * past this page so media errors won't choke
2262 * writeout for the entire file. For integrity
2263 * writeback, we must process the entire dirty
2264 * set regardless of errors because the fs may
2265 * still have state to clear for each page. In
2266 * that case we continue processing and return
2267 * the first error.
2268 */
2269 if (error == AOP_WRITEPAGE_ACTIVATE) {
Nick Piggin00266772009-01-06 14:39:06 -08002270 unlock_page(page);
Brian Foster3fa750d2018-12-28 00:37:20 -08002271 error = 0;
2272 } else if (wbc->sync_mode != WB_SYNC_ALL) {
2273 ret = error;
Jun'ichi Nomuracf15b072011-03-22 16:33:40 -07002274 done_index = page->index + 1;
Nick Piggin00266772009-01-06 14:39:06 -08002275 done = 1;
2276 break;
2277 }
Brian Foster3fa750d2018-12-28 00:37:20 -08002278 if (!ret)
2279 ret = error;
Dave Chinner0b564922010-06-09 10:37:18 +10002280 }
David Howells811d7362006-08-29 19:06:09 +01002281
Dave Chinner546a1922010-08-24 11:44:34 +10002282 /*
2283 * We stop writing back only if we are not doing
2284 * integrity sync. In case of integrity sync we have to
2285 * keep going until we have written all the pages
2286 * we tagged for writeback prior to entering this loop.
2287 */
2288 if (--wbc->nr_to_write <= 0 &&
2289 wbc->sync_mode == WB_SYNC_NONE) {
2290 done = 1;
2291 break;
Nick Piggin05fe4782009-01-06 14:39:08 -08002292 }
David Howells811d7362006-08-29 19:06:09 +01002293 }
2294 pagevec_release(&pvec);
2295 cond_resched();
2296 }
Dave Chinner64081362018-10-26 15:09:45 -07002297
2298 /*
2299 * If we hit the last page and there is more work to be done: wrap
2300 * back the index back to the start of the file for the next
2301 * time we are called.
2302 */
2303 if (wbc->range_cyclic && !done)
2304 done_index = 0;
Dave Chinner0b564922010-06-09 10:37:18 +10002305 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2306 mapping->writeback_index = done_index;
Aneesh Kumar K.V06d6cf62008-07-11 19:27:31 -04002307
David Howells811d7362006-08-29 19:06:09 +01002308 return ret;
2309}
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002310EXPORT_SYMBOL(write_cache_pages);
2311
2312/*
2313 * Function used by generic_writepages to call the real writepage
2314 * function and set the mapping flags on error
2315 */
2316static int __writepage(struct page *page, struct writeback_control *wbc,
2317 void *data)
2318{
2319 struct address_space *mapping = data;
2320 int ret = mapping->a_ops->writepage(page, wbc);
2321 mapping_set_error(mapping, ret);
2322 return ret;
2323}
2324
2325/**
2326 * generic_writepages - walk the list of dirty pages of the given address space and writepage() all of them.
2327 * @mapping: address space structure to write
2328 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2329 *
2330 * This is a library function, which implements the writepages()
2331 * address_space_operation.
Mike Rapoporta862f682019-03-05 15:48:42 -08002332 *
2333 * Return: %0 on success, negative error code otherwise
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002334 */
2335int generic_writepages(struct address_space *mapping,
2336 struct writeback_control *wbc)
2337{
Shaohua Li9b6096a2011-03-17 10:47:06 +01002338 struct blk_plug plug;
2339 int ret;
2340
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002341 /* deal with chardevs and other special file */
2342 if (!mapping->a_ops->writepage)
2343 return 0;
2344
Shaohua Li9b6096a2011-03-17 10:47:06 +01002345 blk_start_plug(&plug);
2346 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2347 blk_finish_plug(&plug);
2348 return ret;
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002349}
David Howells811d7362006-08-29 19:06:09 +01002350
2351EXPORT_SYMBOL(generic_writepages);
2352
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353int do_writepages(struct address_space *mapping, struct writeback_control *wbc)
2354{
Andrew Morton22905f72005-11-16 15:07:01 -08002355 int ret;
Jan Karafee468f2021-09-02 14:53:06 -07002356 struct bdi_writeback *wb;
Andrew Morton22905f72005-11-16 15:07:01 -08002357
Linus Torvalds1da177e2005-04-16 15:20:36 -07002358 if (wbc->nr_to_write <= 0)
2359 return 0;
Jan Karafee468f2021-09-02 14:53:06 -07002360 wb = inode_to_wb_wbc(mapping->host, wbc);
2361 wb_bandwidth_estimate_start(wb);
Theodore Ts'o80a2ea92017-04-28 09:51:54 -04002362 while (1) {
2363 if (mapping->a_ops->writepages)
2364 ret = mapping->a_ops->writepages(mapping, wbc);
2365 else
2366 ret = generic_writepages(mapping, wbc);
2367 if ((ret != -ENOMEM) || (wbc->sync_mode != WB_SYNC_ALL))
2368 break;
Mel Gorman8d588022021-11-05 13:42:35 -07002369
2370 /*
2371 * Lacking an allocation context or the locality or writeback
2372 * state of any of the inode's pages, throttle based on
2373 * writeback activity on the local node. It's as good a
2374 * guess as any.
2375 */
2376 reclaim_throttle(NODE_DATA(numa_node_id()),
Mel Gormanc3f4a9a2021-11-05 13:42:42 -07002377 VMSCAN_THROTTLE_WRITEBACK);
Theodore Ts'o80a2ea92017-04-28 09:51:54 -04002378 }
Jan Kara45a29662021-09-02 14:53:09 -07002379 /*
2380 * Usually few pages are written by now from those we've just submitted
2381 * but if there's constant writeback being submitted, this makes sure
2382 * writeback bandwidth is updated once in a while.
2383 */
Jan Kara20792eb2021-09-02 14:53:15 -07002384 if (time_is_before_jiffies(READ_ONCE(wb->bw_time_stamp) +
2385 BANDWIDTH_INTERVAL))
Jan Kara45a29662021-09-02 14:53:09 -07002386 wb_update_bandwidth(wb);
Andrew Morton22905f72005-11-16 15:07:01 -08002387 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388}
2389
2390/**
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002391 * folio_write_one - write out a single folio and wait on I/O.
2392 * @folio: The folio to write.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002393 *
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002394 * The folio must be locked by the caller and will be unlocked upon return.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002395 *
Jeff Layton37e51a72017-07-05 15:17:19 -04002396 * Note that the mapping's AS_EIO/AS_ENOSPC flags will be cleared when this
2397 * function returns.
Mike Rapoporta862f682019-03-05 15:48:42 -08002398 *
2399 * Return: %0 on success, negative error code otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002400 */
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002401int folio_write_one(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002402{
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002403 struct address_space *mapping = folio->mapping;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 int ret = 0;
2405 struct writeback_control wbc = {
2406 .sync_mode = WB_SYNC_ALL,
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002407 .nr_to_write = folio_nr_pages(folio),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 };
2409
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002410 BUG_ON(!folio_test_locked(folio));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002412 folio_wait_writeback(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002413
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002414 if (folio_clear_dirty_for_io(folio)) {
2415 folio_get(folio);
2416 ret = mapping->a_ops->writepage(&folio->page, &wbc);
Jeff Layton37e51a72017-07-05 15:17:19 -04002417 if (ret == 0)
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002418 folio_wait_writeback(folio);
2419 folio_put(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002420 } else {
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002421 folio_unlock(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002422 }
Jeff Layton37e51a72017-07-05 15:17:19 -04002423
2424 if (!ret)
2425 ret = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002426 return ret;
2427}
Matthew Wilcox (Oracle)121703c2021-03-09 13:48:03 -05002428EXPORT_SYMBOL(folio_write_one);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002429
2430/*
Ken Chen76719322007-02-10 01:43:15 -08002431 * For address_spaces which do not use buffers nor write back.
2432 */
2433int __set_page_dirty_no_writeback(struct page *page)
2434{
2435 if (!PageDirty(page))
Bob Liuc3f0da62011-01-13 15:45:49 -08002436 return !TestSetPageDirty(page);
Ken Chen76719322007-02-10 01:43:15 -08002437 return 0;
2438}
Matthew Wilcox (Oracle)b82a96c2021-06-28 19:36:27 -07002439EXPORT_SYMBOL(__set_page_dirty_no_writeback);
Ken Chen76719322007-02-10 01:43:15 -08002440
2441/*
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002442 * Helper function for set_page_dirty family.
Greg Thelenc4843a72015-05-22 17:13:16 -04002443 *
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07002444 * Caller must hold lock_page_memcg().
Greg Thelenc4843a72015-05-22 17:13:16 -04002445 *
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002446 * NOTE: This relies on being atomic wrt interrupts.
2447 */
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002448static void folio_account_dirtied(struct folio *folio,
Matthew Wilcox (Oracle)6e1cae82021-06-28 19:36:15 -07002449 struct address_space *mapping)
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002450{
Tejun Heo52ebea72015-05-22 17:13:37 -04002451 struct inode *inode = mapping->host;
2452
Matthew Wilcox (Oracle)b9b0ff62021-07-13 22:45:50 -04002453 trace_writeback_dirty_folio(folio, mapping);
Tejun Heo9fb0a7d2013-01-11 13:06:37 -08002454
Christoph Hellwigf56753a2020-09-24 08:51:40 +02002455 if (mapping_can_writeback(mapping)) {
Tejun Heo52ebea72015-05-22 17:13:37 -04002456 struct bdi_writeback *wb;
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002457 long nr = folio_nr_pages(folio);
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002458
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002459 inode_attach_wb(inode, &folio->page);
Tejun Heo52ebea72015-05-22 17:13:37 -04002460 wb = inode_to_wb(inode);
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002461
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002462 __lruvec_stat_mod_folio(folio, NR_FILE_DIRTY, nr);
2463 __zone_stat_mod_folio(folio, NR_ZONE_WRITE_PENDING, nr);
2464 __node_stat_mod_folio(folio, NR_DIRTIED, nr);
2465 wb_stat_mod(wb, WB_RECLAIMABLE, nr);
2466 wb_stat_mod(wb, WB_DIRTIED, nr);
2467 task_io_account_write(nr * PAGE_SIZE);
2468 current->nr_dirtied += nr;
2469 __this_cpu_add(bdp_ratelimits, nr);
Tejun Heo97b27822019-08-26 09:06:56 -07002470
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002471 mem_cgroup_track_foreign_dirty(folio, wb);
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002472 }
2473}
2474
2475/*
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002476 * Helper function for deaccounting dirty page without writeback.
2477 *
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07002478 * Caller must hold lock_page_memcg().
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002479 */
Matthew Wilcox (Oracle)fc9b6a52021-05-04 16:12:09 -04002480void folio_account_cleaned(struct folio *folio, struct address_space *mapping,
Johannes Weiner62cccb82016-03-15 14:57:22 -07002481 struct bdi_writeback *wb)
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002482{
Christoph Hellwigf56753a2020-09-24 08:51:40 +02002483 if (mapping_can_writeback(mapping)) {
Matthew Wilcox (Oracle)fc9b6a52021-05-04 16:12:09 -04002484 long nr = folio_nr_pages(folio);
2485 lruvec_stat_mod_folio(folio, NR_FILE_DIRTY, -nr);
2486 zone_stat_mod_folio(folio, NR_ZONE_WRITE_PENDING, -nr);
2487 wb_stat_mod(wb, WB_RECLAIMABLE, -nr);
2488 task_io_account_cancelled_write(nr * PAGE_SIZE);
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002489 }
2490}
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002491
2492/*
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002493 * Mark the folio dirty, and set it dirty in the page cache, and mark
2494 * the inode dirty.
Matthew Wilcox (Oracle)6e1cae82021-06-28 19:36:15 -07002495 *
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002496 * If warn is true, then emit a warning if the folio is not uptodate and has
Matthew Wilcox (Oracle)6e1cae82021-06-28 19:36:15 -07002497 * not been truncated.
2498 *
2499 * The caller must hold lock_page_memcg().
2500 */
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002501void __folio_mark_dirty(struct folio *folio, struct address_space *mapping,
Matthew Wilcox (Oracle)6e1cae82021-06-28 19:36:15 -07002502 int warn)
2503{
2504 unsigned long flags;
2505
2506 xa_lock_irqsave(&mapping->i_pages, flags);
Matthew Wilcox (Oracle)203a3152021-05-04 11:01:10 -04002507 if (folio->mapping) { /* Race with truncate? */
2508 WARN_ON_ONCE(warn && !folio_test_uptodate(folio));
2509 folio_account_dirtied(folio, mapping);
2510 __xa_set_mark(&mapping->i_pages, folio_index(folio),
Matthew Wilcox (Oracle)6e1cae82021-06-28 19:36:15 -07002511 PAGECACHE_TAG_DIRTY);
2512 }
2513 xa_unlock_irqrestore(&mapping->i_pages, flags);
2514}
2515
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002516/**
2517 * filemap_dirty_folio - Mark a folio dirty for filesystems which do not use buffer_heads.
2518 * @mapping: Address space this folio belongs to.
2519 * @folio: Folio to be marked as dirty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002520 *
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002521 * Filesystems which do not use buffer heads should call this function
2522 * from their set_page_dirty address space operation. It ignores the
2523 * contents of folio_get_private(), so if the filesystem marks individual
2524 * blocks as dirty, the filesystem should handle that itself.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002525 *
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002526 * This is also sometimes used by filesystems which use buffer_heads when
2527 * a single buffer is being dirtied: we want to set the folio dirty in
2528 * that case, but not all the buffers. This is a "bottom-up" dirtying,
2529 * whereas __set_page_dirty_buffers() is a "top-down" dirtying.
2530 *
2531 * The caller must ensure this doesn't race with truncation. Most will
2532 * simply hold the folio lock, but e.g. zap_pte_range() calls with the
2533 * folio mapped and the pte lock held, which also locks out truncation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002534 */
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002535bool filemap_dirty_folio(struct address_space *mapping, struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536{
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002537 folio_memcg_lock(folio);
2538 if (folio_test_set_dirty(folio)) {
2539 folio_memcg_unlock(folio);
2540 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002541 }
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002542
2543 __folio_mark_dirty(folio, mapping, !folio_test_private(folio));
2544 folio_memcg_unlock(folio);
2545
2546 if (mapping->host) {
2547 /* !PageAnon && !swapper_space */
2548 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
2549 }
2550 return true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002551}
Matthew Wilcox (Oracle)85d4d2e2021-05-03 23:30:44 -04002552EXPORT_SYMBOL(filemap_dirty_folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04002554/**
2555 * folio_account_redirty - Manually account for redirtying a page.
2556 * @folio: The folio which is being redirtied.
2557 *
2558 * Most filesystems should call folio_redirty_for_writepage() instead
2559 * of this fuction. If your filesystem is doing writeback outside the
2560 * context of a writeback_control(), it can call this when redirtying
2561 * a folio, to de-account the dirty counters (NR_DIRTIED, WB_DIRTIED,
2562 * tsk->nr_dirtied), so that they match the written counters (NR_WRITTEN,
2563 * WB_WRITTEN) in long term. The mismatches will lead to systematic errors
2564 * in balanced_dirty_ratelimit and the dirty pages position control.
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002565 */
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04002566void folio_account_redirty(struct folio *folio)
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002567{
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04002568 struct address_space *mapping = folio->mapping;
Tejun Heo91018132015-05-22 17:13:39 -04002569
Christoph Hellwigf56753a2020-09-24 08:51:40 +02002570 if (mapping && mapping_can_writeback(mapping)) {
Tejun Heo682aa8e2015-05-28 14:50:53 -04002571 struct inode *inode = mapping->host;
2572 struct bdi_writeback *wb;
Greg Thelen2e898e42018-04-20 14:55:42 -07002573 struct wb_lock_cookie cookie = {};
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04002574 long nr = folio_nr_pages(folio);
Tejun Heo91018132015-05-22 17:13:39 -04002575
Greg Thelen2e898e42018-04-20 14:55:42 -07002576 wb = unlocked_inode_to_wb_begin(inode, &cookie);
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04002577 current->nr_dirtied -= nr;
2578 node_stat_mod_folio(folio, NR_DIRTIED, -nr);
2579 wb_stat_mod(wb, WB_DIRTIED, -nr);
Greg Thelen2e898e42018-04-20 14:55:42 -07002580 unlocked_inode_to_wb_end(inode, &cookie);
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002581 }
2582}
Matthew Wilcox (Oracle)25ff8b12021-05-03 10:06:55 -04002583EXPORT_SYMBOL(folio_account_redirty);
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002584
Matthew Wilcox (Oracle)cd78ab12021-05-02 23:22:52 -04002585/**
2586 * folio_redirty_for_writepage - Decline to write a dirty folio.
2587 * @wbc: The writeback control.
2588 * @folio: The folio.
2589 *
2590 * When a writepage implementation decides that it doesn't want to write
2591 * @folio for some reason, it should call this function, unlock @folio and
2592 * return 0.
2593 *
2594 * Return: True if we redirtied the folio. False if someone else dirtied
2595 * it first.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 */
Matthew Wilcox (Oracle)cd78ab12021-05-02 23:22:52 -04002597bool folio_redirty_for_writepage(struct writeback_control *wbc,
2598 struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599{
Matthew Wilcox (Oracle)cd78ab12021-05-02 23:22:52 -04002600 bool ret;
2601 long nr = folio_nr_pages(folio);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08002602
Matthew Wilcox (Oracle)cd78ab12021-05-02 23:22:52 -04002603 wbc->pages_skipped += nr;
2604 ret = filemap_dirty_folio(folio->mapping, folio);
2605 folio_account_redirty(folio);
2606
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08002607 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002608}
Matthew Wilcox (Oracle)cd78ab12021-05-02 23:22:52 -04002609EXPORT_SYMBOL(folio_redirty_for_writepage);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002610
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002611/**
2612 * folio_mark_dirty - Mark a folio as being modified.
2613 * @folio: The folio.
Wu Fengguang6746aff2009-09-16 11:50:14 +02002614 *
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002615 * For folios with a mapping this should be done under the page lock
2616 * for the benefit of asynchronous memory errors who prefer a consistent
2617 * dirty state. This rule can be broken in some special cases,
2618 * but should be better not to.
2619 *
2620 * Return: True if the folio was newly dirtied, false if it was already dirty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002621 */
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002622bool folio_mark_dirty(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002623{
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002624 struct address_space *mapping = folio_mapping(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625
2626 if (likely(mapping)) {
Minchan Kim278df9f2011-03-22 16:32:54 -07002627 /*
2628 * readahead/lru_deactivate_page could remain
2629 * PG_readahead/PG_reclaim due to race with end_page_writeback
2630 * About readahead, if the page is written, the flags would be
2631 * reset. So no problem.
2632 * About lru_deactivate_page, if the page is redirty, the flag
2633 * will be reset. So no problem. but if the page is used by readahead
2634 * it will confuse readahead and make it restart the size rampup
2635 * process. But it's a trivial problem.
2636 */
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002637 if (folio_test_reclaim(folio))
2638 folio_clear_reclaim(folio);
2639 return mapping->a_ops->set_page_dirty(&folio->page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002640 }
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002641 if (!folio_test_dirty(folio)) {
2642 if (!folio_test_set_dirty(folio))
2643 return true;
Andrew Morton4741c9f2006-03-24 03:18:11 -08002644 }
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002645 return false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002646}
Matthew Wilcox (Oracle)b5e84592021-04-26 23:53:10 -04002647EXPORT_SYMBOL(folio_mark_dirty);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002648
2649/*
2650 * set_page_dirty() is racy if the caller has no reference against
2651 * page->mapping->host, and if the page is unlocked. This is because another
2652 * CPU could truncate the page off the mapping and then free the mapping.
2653 *
2654 * Usually, the page _is_ locked, or the caller is a user-space process which
2655 * holds a reference on the inode by having an open file.
2656 *
2657 * In other cases, the page should be locked before running set_page_dirty().
2658 */
2659int set_page_dirty_lock(struct page *page)
2660{
2661 int ret;
2662
Jens Axboe7eaceac2011-03-10 08:52:07 +01002663 lock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002664 ret = set_page_dirty(page);
2665 unlock_page(page);
2666 return ret;
2667}
2668EXPORT_SYMBOL(set_page_dirty_lock);
2669
2670/*
Tejun Heo11f81be2015-05-22 17:13:15 -04002671 * This cancels just the dirty bit on the kernel page itself, it does NOT
2672 * actually remove dirty bits on any mmap's that may be around. It also
2673 * leaves the page tagged dirty, so any sync activity will still find it on
2674 * the dirty lists, and in particular, clear_page_dirty_for_io() will still
2675 * look at the dirty bits in the VM.
2676 *
2677 * Doing this should *normally* only ever be done when a page is truncated,
2678 * and is not actually mapped anywhere at all. However, fs/buffer.c does
2679 * this when it notices that somebody has cleaned out all the buffers on a
2680 * page without actually doing it through the VM. Can you say "ext3 is
2681 * horribly ugly"? Thought you could.
2682 */
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002683void __folio_cancel_dirty(struct folio *folio)
Tejun Heo11f81be2015-05-22 17:13:15 -04002684{
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002685 struct address_space *mapping = folio_mapping(folio);
Greg Thelenc4843a72015-05-22 17:13:16 -04002686
Christoph Hellwigf56753a2020-09-24 08:51:40 +02002687 if (mapping_can_writeback(mapping)) {
Tejun Heo682aa8e2015-05-28 14:50:53 -04002688 struct inode *inode = mapping->host;
2689 struct bdi_writeback *wb;
Greg Thelen2e898e42018-04-20 14:55:42 -07002690 struct wb_lock_cookie cookie = {};
Greg Thelenc4843a72015-05-22 17:13:16 -04002691
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002692 folio_memcg_lock(folio);
Greg Thelen2e898e42018-04-20 14:55:42 -07002693 wb = unlocked_inode_to_wb_begin(inode, &cookie);
Greg Thelenc4843a72015-05-22 17:13:16 -04002694
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002695 if (folio_test_clear_dirty(folio))
2696 folio_account_cleaned(folio, mapping, wb);
Greg Thelenc4843a72015-05-22 17:13:16 -04002697
Greg Thelen2e898e42018-04-20 14:55:42 -07002698 unlocked_inode_to_wb_end(inode, &cookie);
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002699 folio_memcg_unlock(folio);
Greg Thelenc4843a72015-05-22 17:13:16 -04002700 } else {
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002701 folio_clear_dirty(folio);
Greg Thelenc4843a72015-05-22 17:13:16 -04002702 }
Tejun Heo11f81be2015-05-22 17:13:15 -04002703}
Matthew Wilcox (Oracle)fdaf5322021-03-08 16:43:04 -05002704EXPORT_SYMBOL(__folio_cancel_dirty);
Tejun Heo11f81be2015-05-22 17:13:15 -04002705
2706/*
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002707 * Clear a folio's dirty flag, while caring for dirty memory accounting.
2708 * Returns true if the folio was previously dirty.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002709 *
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002710 * This is for preparing to put the folio under writeout. We leave
2711 * the folio tagged as dirty in the xarray so that a concurrent
2712 * write-for-sync can discover it via a PAGECACHE_TAG_DIRTY walk.
2713 * The ->writepage implementation will run either folio_start_writeback()
2714 * or folio_mark_dirty(), at which stage we bring the folio's dirty flag
2715 * and xarray dirty tag back into sync.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002716 *
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002717 * This incoherency between the folio's dirty flag and xarray tag is
2718 * unfortunate, but it only exists while the folio is locked.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002719 */
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002720bool folio_clear_dirty_for_io(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002721{
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002722 struct address_space *mapping = folio_mapping(folio);
2723 bool ret = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002724
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002725 VM_BUG_ON_FOLIO(!folio_test_locked(folio), folio);
Nick Piggin79352892007-07-19 01:47:22 -07002726
Christoph Hellwigf56753a2020-09-24 08:51:40 +02002727 if (mapping && mapping_can_writeback(mapping)) {
Tejun Heo682aa8e2015-05-28 14:50:53 -04002728 struct inode *inode = mapping->host;
2729 struct bdi_writeback *wb;
Greg Thelen2e898e42018-04-20 14:55:42 -07002730 struct wb_lock_cookie cookie = {};
Tejun Heo682aa8e2015-05-28 14:50:53 -04002731
Linus Torvalds7658cc22006-12-29 10:00:58 -08002732 /*
2733 * Yes, Virginia, this is indeed insane.
2734 *
2735 * We use this sequence to make sure that
2736 * (a) we account for dirty stats properly
2737 * (b) we tell the low-level filesystem to
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002738 * mark the whole folio dirty if it was
Linus Torvalds7658cc22006-12-29 10:00:58 -08002739 * dirty in a pagetable. Only to then
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002740 * (c) clean the folio again and return 1 to
Linus Torvalds7658cc22006-12-29 10:00:58 -08002741 * cause the writeback.
2742 *
2743 * This way we avoid all nasty races with the
2744 * dirty bit in multiple places and clearing
2745 * them concurrently from different threads.
2746 *
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002747 * Note! Normally the "folio_mark_dirty(folio)"
Linus Torvalds7658cc22006-12-29 10:00:58 -08002748 * has no effect on the actual dirty bit - since
2749 * that will already usually be set. But we
2750 * need the side effects, and it can help us
2751 * avoid races.
2752 *
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002753 * We basically use the folio "master dirty bit"
Linus Torvalds7658cc22006-12-29 10:00:58 -08002754 * as a serialization point for all the different
2755 * threads doing their things.
Linus Torvalds7658cc22006-12-29 10:00:58 -08002756 */
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002757 if (folio_mkclean(folio))
2758 folio_mark_dirty(folio);
Nick Piggin79352892007-07-19 01:47:22 -07002759 /*
2760 * We carefully synchronise fault handlers against
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002761 * installing a dirty pte and marking the folio dirty
Johannes Weiner2d6d7f92015-01-08 14:32:18 -08002762 * at this point. We do this by having them hold the
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002763 * page lock while dirtying the folio, and folios are
Johannes Weiner2d6d7f92015-01-08 14:32:18 -08002764 * always locked coming in here, so we get the desired
2765 * exclusion.
Nick Piggin79352892007-07-19 01:47:22 -07002766 */
Greg Thelen2e898e42018-04-20 14:55:42 -07002767 wb = unlocked_inode_to_wb_begin(inode, &cookie);
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002768 if (folio_test_clear_dirty(folio)) {
2769 long nr = folio_nr_pages(folio);
2770 lruvec_stat_mod_folio(folio, NR_FILE_DIRTY, -nr);
2771 zone_stat_mod_folio(folio, NR_ZONE_WRITE_PENDING, -nr);
2772 wb_stat_mod(wb, WB_RECLAIMABLE, -nr);
2773 ret = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002774 }
Greg Thelen2e898e42018-04-20 14:55:42 -07002775 unlocked_inode_to_wb_end(inode, &cookie);
Greg Thelenc4843a72015-05-22 17:13:16 -04002776 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002777 }
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002778 return folio_test_clear_dirty(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002779}
Matthew Wilcox (Oracle)9350f202021-02-28 16:21:20 -05002780EXPORT_SYMBOL(folio_clear_dirty_for_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002781
Jan Kara633a2ab2021-09-02 14:53:04 -07002782static void wb_inode_writeback_start(struct bdi_writeback *wb)
2783{
2784 atomic_inc(&wb->writeback_inodes);
2785}
2786
2787static void wb_inode_writeback_end(struct bdi_writeback *wb)
2788{
2789 atomic_dec(&wb->writeback_inodes);
Jan Kara45a29662021-09-02 14:53:09 -07002790 /*
2791 * Make sure estimate of writeback throughput gets updated after
2792 * writeback completed. We delay the update by BANDWIDTH_INTERVAL
2793 * (which is the interval other bandwidth updates use for batching) so
2794 * that if multiple inodes end writeback at a similar time, they get
2795 * batched into one bandwidth update.
2796 */
2797 queue_delayed_work(bdi_wq, &wb->bw_dwork, BANDWIDTH_INTERVAL);
Jan Kara633a2ab2021-09-02 14:53:04 -07002798}
2799
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002800bool __folio_end_writeback(struct folio *folio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801{
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002802 long nr = folio_nr_pages(folio);
2803 struct address_space *mapping = folio_mapping(folio);
2804 bool ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002805
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002806 folio_memcg_lock(folio);
Huang Ying371a0962016-10-07 16:59:30 -07002807 if (mapping && mapping_use_writeback_tags(mapping)) {
Tejun Heo91018132015-05-22 17:13:39 -04002808 struct inode *inode = mapping->host;
2809 struct backing_dev_info *bdi = inode_to_bdi(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002810 unsigned long flags;
2811
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002812 xa_lock_irqsave(&mapping->i_pages, flags);
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002813 ret = folio_test_clear_writeback(folio);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002814 if (ret) {
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002815 __xa_clear_mark(&mapping->i_pages, folio_index(folio),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002816 PAGECACHE_TAG_WRITEBACK);
Christoph Hellwig823423e2020-09-24 08:51:39 +02002817 if (bdi->capabilities & BDI_CAP_WRITEBACK_ACCT) {
Tejun Heo91018132015-05-22 17:13:39 -04002818 struct bdi_writeback *wb = inode_to_wb(inode);
2819
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002820 wb_stat_mod(wb, WB_WRITEBACK, -nr);
2821 __wb_writeout_add(wb, nr);
Jan Kara633a2ab2021-09-02 14:53:04 -07002822 if (!mapping_tagged(mapping,
2823 PAGECACHE_TAG_WRITEBACK))
2824 wb_inode_writeback_end(wb);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07002825 }
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002826 }
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002827
2828 if (mapping->host && !mapping_tagged(mapping,
2829 PAGECACHE_TAG_WRITEBACK))
2830 sb_clear_inode_writeback(mapping->host);
2831
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002832 xa_unlock_irqrestore(&mapping->i_pages, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002833 } else {
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002834 ret = folio_test_clear_writeback(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002835 }
Wu Fengguang99b12e32011-07-25 17:12:37 -07002836 if (ret) {
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002837 lruvec_stat_mod_folio(folio, NR_WRITEBACK, -nr);
2838 zone_stat_mod_folio(folio, NR_ZONE_WRITE_PENDING, -nr);
2839 node_stat_mod_folio(folio, NR_WRITTEN, nr);
Wu Fengguang99b12e32011-07-25 17:12:37 -07002840 }
Matthew Wilcox (Oracle)269ccca32021-01-15 23:34:16 -05002841 folio_memcg_unlock(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002842 return ret;
2843}
2844
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002845bool __folio_start_writeback(struct folio *folio, bool keep_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002846{
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002847 long nr = folio_nr_pages(folio);
2848 struct address_space *mapping = folio_mapping(folio);
2849 bool ret;
2850 int access_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002851
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002852 folio_memcg_lock(folio);
Huang Ying371a0962016-10-07 16:59:30 -07002853 if (mapping && mapping_use_writeback_tags(mapping)) {
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002854 XA_STATE(xas, &mapping->i_pages, folio_index(folio));
Tejun Heo91018132015-05-22 17:13:39 -04002855 struct inode *inode = mapping->host;
2856 struct backing_dev_info *bdi = inode_to_bdi(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002857 unsigned long flags;
2858
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002859 xas_lock_irqsave(&xas, flags);
2860 xas_load(&xas);
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002861 ret = folio_test_set_writeback(folio);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002862 if (!ret) {
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002863 bool on_wblist;
2864
2865 on_wblist = mapping_tagged(mapping,
2866 PAGECACHE_TAG_WRITEBACK);
2867
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002868 xas_set_mark(&xas, PAGECACHE_TAG_WRITEBACK);
Jan Kara633a2ab2021-09-02 14:53:04 -07002869 if (bdi->capabilities & BDI_CAP_WRITEBACK_ACCT) {
2870 struct bdi_writeback *wb = inode_to_wb(inode);
2871
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002872 wb_stat_mod(wb, WB_WRITEBACK, nr);
Jan Kara633a2ab2021-09-02 14:53:04 -07002873 if (!on_wblist)
2874 wb_inode_writeback_start(wb);
2875 }
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002876
2877 /*
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002878 * We can come through here when swapping
2879 * anonymous folios, so we don't necessarily
2880 * have an inode to track for sync.
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002881 */
2882 if (mapping->host && !on_wblist)
2883 sb_mark_inode_writeback(mapping->host);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002884 }
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002885 if (!folio_test_dirty(folio))
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002886 xas_clear_mark(&xas, PAGECACHE_TAG_DIRTY);
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002887 if (!keep_write)
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002888 xas_clear_mark(&xas, PAGECACHE_TAG_TOWRITE);
2889 xas_unlock_irqrestore(&xas, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002890 } else {
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002891 ret = folio_test_set_writeback(folio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892 }
Johannes Weiner3a3c02e2014-10-29 14:50:46 -07002893 if (!ret) {
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002894 lruvec_stat_mod_folio(folio, NR_WRITEBACK, nr);
2895 zone_stat_mod_folio(folio, NR_ZONE_WRITE_PENDING, nr);
Johannes Weiner3a3c02e2014-10-29 14:50:46 -07002896 }
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002897 folio_memcg_unlock(folio);
2898 access_ret = arch_make_folio_accessible(folio);
Claudio Imbrendaf28d4362020-04-01 21:05:56 -07002899 /*
2900 * If writeback has been triggered on a page that cannot be made
2901 * accessible, it is too late to recover here.
2902 */
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002903 VM_BUG_ON_FOLIO(access_ret != 0, folio);
Claudio Imbrendaf28d4362020-04-01 21:05:56 -07002904
Linus Torvalds1da177e2005-04-16 15:20:36 -07002905 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002906}
Matthew Wilcox (Oracle)f143f1e2021-04-24 12:00:48 -04002907EXPORT_SYMBOL(__folio_start_writeback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002908
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002909/**
2910 * folio_wait_writeback - Wait for a folio to finish writeback.
2911 * @folio: The folio to wait for.
2912 *
2913 * If the folio is currently being written back to storage, wait for the
2914 * I/O to complete.
2915 *
2916 * Context: Sleeps. Must be called in process context and with
2917 * no spinlocks held. Caller should hold a reference on the folio.
2918 * If the folio is not locked, writeback may start again after writeback
2919 * has finished.
Yafang Shao19343b52019-05-13 17:23:11 -07002920 */
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002921void folio_wait_writeback(struct folio *folio)
Yafang Shao19343b52019-05-13 17:23:11 -07002922{
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002923 while (folio_test_writeback(folio)) {
Matthew Wilcox (Oracle)b9b0ff62021-07-13 22:45:50 -04002924 trace_folio_wait_writeback(folio, folio_mapping(folio));
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05002925 folio_wait_bit(folio, PG_writeback);
Yafang Shao19343b52019-05-13 17:23:11 -07002926 }
2927}
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002928EXPORT_SYMBOL_GPL(folio_wait_writeback);
Yafang Shao19343b52019-05-13 17:23:11 -07002929
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002930/**
2931 * folio_wait_writeback_killable - Wait for a folio to finish writeback.
2932 * @folio: The folio to wait for.
2933 *
2934 * If the folio is currently being written back to storage, wait for the
2935 * I/O to complete or a fatal signal to arrive.
2936 *
2937 * Context: Sleeps. Must be called in process context and with
2938 * no spinlocks held. Caller should hold a reference on the folio.
2939 * If the folio is not locked, writeback may start again after writeback
2940 * has finished.
2941 * Return: 0 on success, -EINTR if we get a fatal signal while waiting.
Matthew Wilcox (Oracle)e5dbd332021-03-20 05:40:39 +00002942 */
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002943int folio_wait_writeback_killable(struct folio *folio)
Matthew Wilcox (Oracle)e5dbd332021-03-20 05:40:39 +00002944{
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002945 while (folio_test_writeback(folio)) {
Matthew Wilcox (Oracle)b9b0ff62021-07-13 22:45:50 -04002946 trace_folio_wait_writeback(folio, folio_mapping(folio));
Matthew Wilcox (Oracle)101c0bf2021-03-04 12:02:54 -05002947 if (folio_wait_bit_killable(folio, PG_writeback))
Matthew Wilcox (Oracle)e5dbd332021-03-20 05:40:39 +00002948 return -EINTR;
2949 }
2950
2951 return 0;
2952}
Matthew Wilcox (Oracle)490e0162021-03-04 11:09:17 -05002953EXPORT_SYMBOL_GPL(folio_wait_writeback_killable);
Matthew Wilcox (Oracle)e5dbd332021-03-20 05:40:39 +00002954
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002955/**
Matthew Wilcox (Oracle)a49d0c52021-03-04 11:25:25 -05002956 * folio_wait_stable() - wait for writeback to finish, if necessary.
2957 * @folio: The folio to wait on.
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002958 *
Matthew Wilcox (Oracle)a49d0c52021-03-04 11:25:25 -05002959 * This function determines if the given folio is related to a backing
2960 * device that requires folio contents to be held stable during writeback.
2961 * If so, then it will wait for any pending writeback to complete.
2962 *
2963 * Context: Sleeps. Must be called in process context and with
2964 * no spinlocks held. Caller should hold a reference on the folio.
2965 * If the folio is not locked, writeback may start again after writeback
2966 * has finished.
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002967 */
Matthew Wilcox (Oracle)a49d0c52021-03-04 11:25:25 -05002968void folio_wait_stable(struct folio *folio)
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002969{
David Howells452c4722021-08-12 22:09:57 +01002970 if (folio_inode(folio)->i_sb->s_iflags & SB_I_STABLE_WRITES)
Matthew Wilcox (Oracle)a49d0c52021-03-04 11:25:25 -05002971 folio_wait_writeback(folio);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002972}
Matthew Wilcox (Oracle)a49d0c52021-03-04 11:25:25 -05002973EXPORT_SYMBOL_GPL(folio_wait_stable);