blob: 7ff2290cf43d5d223902f62238d69f34d607c0f0 [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>
Al Viroff01bb42011-09-16 02:31:11 -040035#include <linux/buffer_head.h> /* __set_page_dirty_buffers */
David Howells811d7362006-08-29 19:06:09 +010036#include <linux/pagevec.h>
Jan Karaeb608e32012-05-24 18:59:11 +020037#include <linux/timer.h>
Clark Williams8bd75c72013-02-07 09:47:07 -060038#include <linux/sched/rt.h>
Ingo Molnarf361bf42017-02-03 23:47:37 +010039#include <linux/sched/signal.h>
Lisa Du6e543d52013-09-11 14:22:36 -070040#include <linux/mm_inline.h>
Dave Chinner028c2dd2010-07-07 13:24:07 +100041#include <trace/events/writeback.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070042
Lisa Du6e543d52013-09-11 14:22:36 -070043#include "internal.h"
44
Linus Torvalds1da177e2005-04-16 15:20:36 -070045/*
Wu Fengguangffd1f602011-06-19 22:18:42 -060046 * Sleep at most 200ms at a time in balance_dirty_pages().
47 */
48#define MAX_PAUSE max(HZ/5, 1)
49
50/*
Wu Fengguang5b9b3572011-12-06 13:17:17 -060051 * Try to keep balance_dirty_pages() call intervals higher than this many pages
52 * by raising pause time to max_pause when falls below it.
53 */
54#define DIRTY_POLL_THRESH (128 >> (PAGE_SHIFT - 10))
55
56/*
Wu Fengguange98be2d2010-08-29 11:22:30 -060057 * Estimate write bandwidth at 200ms intervals.
58 */
59#define BANDWIDTH_INTERVAL max(HZ/5, 1)
60
Wu Fengguang6c14ae12011-03-02 16:04:18 -060061#define RATELIMIT_CALC_SHIFT 10
62
Wu Fengguange98be2d2010-08-29 11:22:30 -060063/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070064 * After a CPU has dirtied this many pages, balance_dirty_pages_ratelimited
65 * will look to see if it needs to force writeback or throttling.
66 */
67static long ratelimit_pages = 32;
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069/* The following parameters are exported via /proc/sys/vm */
70
71/*
Jens Axboe5b0830c2009-09-23 19:37:09 +020072 * Start background writeback (via writeback threads) at this percentage
Linus Torvalds1da177e2005-04-16 15:20:36 -070073 */
Wu Fengguang1b5e62b2009-03-23 08:57:38 +080074int dirty_background_ratio = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070075
76/*
David Rientjes2da02992009-01-06 14:39:31 -080077 * dirty_background_bytes starts at 0 (disabled) so that it is a function of
78 * dirty_background_ratio * the amount of dirtyable memory
79 */
80unsigned long dirty_background_bytes;
81
82/*
Bron Gondwana195cf4532008-02-04 22:29:20 -080083 * free highmem will not be subtracted from the total free memory
84 * for calculating free ratios if vm_highmem_is_dirtyable is true
85 */
86int vm_highmem_is_dirtyable;
87
88/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 * The generator of dirty data starts writeback at this percentage
90 */
Wu Fengguang1b5e62b2009-03-23 08:57:38 +080091int vm_dirty_ratio = 20;
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
93/*
David Rientjes2da02992009-01-06 14:39:31 -080094 * vm_dirty_bytes starts at 0 (disabled) so that it is a function of
95 * vm_dirty_ratio * the amount of dirtyable memory
96 */
97unsigned long vm_dirty_bytes;
98
99/*
Alexey Dobriyan704503d2009-03-31 15:23:18 -0700100 * The interval between `kupdate'-style writebacks
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
Toshiyuki Okajima22ef37e2009-05-16 22:56:28 -0700102unsigned int dirty_writeback_interval = 5 * 100; /* centiseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700103
Artem Bityutskiy91913a22012-03-21 22:33:00 -0400104EXPORT_SYMBOL_GPL(dirty_writeback_interval);
105
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106/*
Alexey Dobriyan704503d2009-03-31 15:23:18 -0700107 * The longest time for which data is allowed to remain dirty
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108 */
Toshiyuki Okajima22ef37e2009-05-16 22:56:28 -0700109unsigned int dirty_expire_interval = 30 * 100; /* centiseconds */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110
111/*
112 * Flag that makes the machine dump writes/reads and block dirtyings.
113 */
114int block_dump;
115
116/*
Bart Samweled5b43f2006-03-24 03:15:49 -0800117 * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
118 * a full sync is triggered after this time elapses without any disk activity.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 */
120int laptop_mode;
121
122EXPORT_SYMBOL(laptop_mode);
123
124/* End of sysctl-exported parameters */
125
Tejun Heodcc25ae2015-05-22 18:23:22 -0400126struct wb_domain global_wb_domain;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400128/* consolidated parameters for balance_dirty_pages() and its subroutines */
129struct dirty_throttle_control {
Tejun Heoe9f07df2015-05-22 18:23:28 -0400130#ifdef CONFIG_CGROUP_WRITEBACK
131 struct wb_domain *dom;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400132 struct dirty_throttle_control *gdtc; /* only set in memcg dtc's */
Tejun Heoe9f07df2015-05-22 18:23:28 -0400133#endif
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400134 struct bdi_writeback *wb;
Tejun Heoe9770b32015-05-22 18:23:27 -0400135 struct fprop_local_percpu *wb_completions;
Jan Karaeb608e32012-05-24 18:59:11 +0200136
Tejun Heo9fc3a432015-05-22 18:23:30 -0400137 unsigned long avail; /* dirtyable */
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400138 unsigned long dirty; /* file_dirty + write + nfs */
139 unsigned long thresh; /* dirty threshold */
140 unsigned long bg_thresh; /* dirty background threshold */
141
142 unsigned long wb_dirty; /* per-wb counterparts */
143 unsigned long wb_thresh;
Tejun Heo970fb012015-05-22 18:23:24 -0400144 unsigned long wb_bg_thresh;
Tejun Heodaddfa32015-05-22 18:23:26 -0400145
146 unsigned long pos_ratio;
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400147};
148
Jan Karaeb608e32012-05-24 18:59:11 +0200149/*
150 * Length of period for aging writeout fractions of bdis. This is an
151 * arbitrarily chosen number. The longer the period, the slower fractions will
152 * reflect changes in current writeout rate.
153 */
154#define VM_COMPLETIONS_PERIOD_LEN (3*HZ)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700155
Tejun Heo693108a2015-05-22 17:13:49 -0400156#ifdef CONFIG_CGROUP_WRITEBACK
157
Tejun Heod60d1bd2015-09-29 12:47:53 -0400158#define GDTC_INIT(__wb) .wb = (__wb), \
159 .dom = &global_wb_domain, \
160 .wb_completions = &(__wb)->completions
161
Tejun Heo9fc3a432015-05-22 18:23:30 -0400162#define GDTC_INIT_NO_WB .dom = &global_wb_domain
Tejun Heod60d1bd2015-09-29 12:47:53 -0400163
164#define MDTC_INIT(__wb, __gdtc) .wb = (__wb), \
165 .dom = mem_cgroup_wb_domain(__wb), \
166 .wb_completions = &(__wb)->memcg_completions, \
167 .gdtc = __gdtc
Tejun Heoc2aa7232015-05-22 18:23:35 -0400168
169static bool mdtc_valid(struct dirty_throttle_control *dtc)
170{
171 return dtc->dom;
172}
Tejun Heoe9f07df2015-05-22 18:23:28 -0400173
174static struct wb_domain *dtc_dom(struct dirty_throttle_control *dtc)
175{
176 return dtc->dom;
177}
178
Tejun Heo9fc3a432015-05-22 18:23:30 -0400179static struct dirty_throttle_control *mdtc_gdtc(struct dirty_throttle_control *mdtc)
180{
181 return mdtc->gdtc;
182}
183
Tejun Heo841710a2015-05-22 18:23:33 -0400184static struct fprop_local_percpu *wb_memcg_completions(struct bdi_writeback *wb)
185{
186 return &wb->memcg_completions;
187}
188
Tejun Heo693108a2015-05-22 17:13:49 -0400189static void wb_min_max_ratio(struct bdi_writeback *wb,
190 unsigned long *minp, unsigned long *maxp)
191{
192 unsigned long this_bw = wb->avg_write_bandwidth;
193 unsigned long tot_bw = atomic_long_read(&wb->bdi->tot_write_bandwidth);
194 unsigned long long min = wb->bdi->min_ratio;
195 unsigned long long max = wb->bdi->max_ratio;
196
197 /*
198 * @wb may already be clean by the time control reaches here and
199 * the total may not include its bw.
200 */
201 if (this_bw < tot_bw) {
202 if (min) {
203 min *= this_bw;
Wen Yang6d9e8c62020-01-13 16:29:23 -0800204 min = div64_ul(min, tot_bw);
Tejun Heo693108a2015-05-22 17:13:49 -0400205 }
206 if (max < 100) {
207 max *= this_bw;
Wen Yang6d9e8c62020-01-13 16:29:23 -0800208 max = div64_ul(max, tot_bw);
Tejun Heo693108a2015-05-22 17:13:49 -0400209 }
210 }
211
212 *minp = min;
213 *maxp = max;
214}
215
216#else /* CONFIG_CGROUP_WRITEBACK */
217
Tejun Heod60d1bd2015-09-29 12:47:53 -0400218#define GDTC_INIT(__wb) .wb = (__wb), \
219 .wb_completions = &(__wb)->completions
Tejun Heo9fc3a432015-05-22 18:23:30 -0400220#define GDTC_INIT_NO_WB
Tejun Heoc2aa7232015-05-22 18:23:35 -0400221#define MDTC_INIT(__wb, __gdtc)
222
223static bool mdtc_valid(struct dirty_throttle_control *dtc)
224{
225 return false;
226}
Tejun Heoe9f07df2015-05-22 18:23:28 -0400227
228static struct wb_domain *dtc_dom(struct dirty_throttle_control *dtc)
229{
230 return &global_wb_domain;
231}
232
Tejun Heo9fc3a432015-05-22 18:23:30 -0400233static struct dirty_throttle_control *mdtc_gdtc(struct dirty_throttle_control *mdtc)
234{
235 return NULL;
236}
237
Tejun Heo841710a2015-05-22 18:23:33 -0400238static struct fprop_local_percpu *wb_memcg_completions(struct bdi_writeback *wb)
239{
240 return NULL;
241}
242
Tejun Heo693108a2015-05-22 17:13:49 -0400243static void wb_min_max_ratio(struct bdi_writeback *wb,
244 unsigned long *minp, unsigned long *maxp)
245{
246 *minp = wb->bdi->min_ratio;
247 *maxp = wb->bdi->max_ratio;
248}
249
250#endif /* CONFIG_CGROUP_WRITEBACK */
251
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700252/*
Johannes Weinera756cf52012-01-10 15:07:49 -0800253 * In a memory zone, there is a certain amount of pages we consider
254 * available for the page cache, which is essentially the number of
255 * free and reclaimable pages, minus some zone reserves to protect
256 * lowmem and the ability to uphold the zone's watermarks without
257 * requiring writeback.
258 *
259 * This number of dirtyable pages is the base value of which the
260 * user-configurable dirty ratio is the effictive number of pages that
261 * are allowed to be actually dirtied. Per individual zone, or
262 * globally by using the sum of dirtyable pages over all zones.
263 *
264 * Because the user is allowed to specify the dirty limit globally as
265 * absolute number of bytes, calculating the per-zone dirty limit can
266 * require translating the configured limit into a percentage of
267 * global dirtyable memory first.
268 */
269
Johannes Weinera804552b2014-01-29 14:05:39 -0800270/**
Mel Gorman281e3722016-07-28 15:46:11 -0700271 * node_dirtyable_memory - number of dirtyable pages in a node
272 * @pgdat: the node
Johannes Weinera804552b2014-01-29 14:05:39 -0800273 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800274 * Return: the node's number of pages potentially available for dirty
Mel Gorman281e3722016-07-28 15:46:11 -0700275 * page cache. This is the base value for the per-node dirty limits.
Johannes Weinera804552b2014-01-29 14:05:39 -0800276 */
Mel Gorman281e3722016-07-28 15:46:11 -0700277static unsigned long node_dirtyable_memory(struct pglist_data *pgdat)
Johannes Weinera804552b2014-01-29 14:05:39 -0800278{
Mel Gorman281e3722016-07-28 15:46:11 -0700279 unsigned long nr_pages = 0;
280 int z;
Johannes Weinera804552b2014-01-29 14:05:39 -0800281
Mel Gorman281e3722016-07-28 15:46:11 -0700282 for (z = 0; z < MAX_NR_ZONES; z++) {
283 struct zone *zone = pgdat->node_zones + z;
284
285 if (!populated_zone(zone))
286 continue;
287
288 nr_pages += zone_page_state(zone, NR_FREE_PAGES);
289 }
290
Johannes Weinera8d01432016-01-14 15:20:15 -0800291 /*
292 * Pages reserved for the kernel should not be considered
293 * dirtyable, to prevent a situation where reclaim has to
294 * clean pages in order to balance the zones.
295 */
Mel Gorman281e3722016-07-28 15:46:11 -0700296 nr_pages -= min(nr_pages, pgdat->totalreserve_pages);
Johannes Weinera804552b2014-01-29 14:05:39 -0800297
Mel Gorman281e3722016-07-28 15:46:11 -0700298 nr_pages += node_page_state(pgdat, NR_INACTIVE_FILE);
299 nr_pages += node_page_state(pgdat, NR_ACTIVE_FILE);
Johannes Weinera804552b2014-01-29 14:05:39 -0800300
301 return nr_pages;
302}
303
Johannes Weiner1edf2232012-01-10 15:06:57 -0800304static unsigned long highmem_dirtyable_memory(unsigned long total)
305{
306#ifdef CONFIG_HIGHMEM
307 int node;
Mel Gormanbb4cc2b2016-07-28 15:47:29 -0700308 unsigned long x = 0;
Joonsoo Kim09b4ab32016-05-19 17:12:20 -0700309 int i;
Johannes Weiner1edf2232012-01-10 15:06:57 -0800310
311 for_each_node_state(node, N_HIGH_MEMORY) {
Mel Gorman281e3722016-07-28 15:46:11 -0700312 for (i = ZONE_NORMAL + 1; i < MAX_NR_ZONES; i++) {
313 struct zone *z;
Minchan Kim9cb937e2016-07-28 15:47:08 -0700314 unsigned long nr_pages;
Johannes Weiner1edf2232012-01-10 15:06:57 -0800315
Mel Gorman281e3722016-07-28 15:46:11 -0700316 if (!is_highmem_idx(i))
317 continue;
318
319 z = &NODE_DATA(node)->node_zones[i];
Minchan Kim9cb937e2016-07-28 15:47:08 -0700320 if (!populated_zone(z))
321 continue;
Mel Gorman281e3722016-07-28 15:46:11 -0700322
Minchan Kim9cb937e2016-07-28 15:47:08 -0700323 nr_pages = zone_page_state(z, NR_FREE_PAGES);
Mel Gorman281e3722016-07-28 15:46:11 -0700324 /* watch for underflows */
Minchan Kim9cb937e2016-07-28 15:47:08 -0700325 nr_pages -= min(nr_pages, high_wmark_pages(z));
Mel Gormanbb4cc2b2016-07-28 15:47:29 -0700326 nr_pages += zone_page_state(z, NR_ZONE_INACTIVE_FILE);
327 nr_pages += zone_page_state(z, NR_ZONE_ACTIVE_FILE);
328 x += nr_pages;
Joonsoo Kim09b4ab32016-05-19 17:12:20 -0700329 }
Johannes Weiner1edf2232012-01-10 15:06:57 -0800330 }
Mel Gorman281e3722016-07-28 15:46:11 -0700331
Johannes Weiner1edf2232012-01-10 15:06:57 -0800332 /*
Sonny Raoc8b74c2f2012-12-20 15:05:07 -0800333 * Unreclaimable memory (kernel memory or anonymous memory
334 * without swap) can bring down the dirtyable pages below
335 * the zone's dirty balance reserve and the above calculation
336 * will underflow. However we still want to add in nodes
337 * which are below threshold (negative values) to get a more
338 * accurate calculation but make sure that the total never
339 * underflows.
340 */
341 if ((long)x < 0)
342 x = 0;
343
344 /*
Johannes Weiner1edf2232012-01-10 15:06:57 -0800345 * Make sure that the number of highmem pages is never larger
346 * than the number of the total dirtyable memory. This can only
347 * occur in very strange VM situations but we want to make sure
348 * that this does not occur.
349 */
350 return min(x, total);
351#else
352 return 0;
353#endif
354}
355
356/**
Johannes Weinerccafa282012-01-10 15:07:44 -0800357 * global_dirtyable_memory - number of globally dirtyable pages
Johannes Weiner1edf2232012-01-10 15:06:57 -0800358 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800359 * Return: the global number of pages potentially available for dirty
Johannes Weinerccafa282012-01-10 15:07:44 -0800360 * page cache. This is the base value for the global dirty limits.
Johannes Weiner1edf2232012-01-10 15:06:57 -0800361 */
H Hartley Sweeten18cf8cf2012-04-12 13:44:20 -0700362static unsigned long global_dirtyable_memory(void)
Johannes Weiner1edf2232012-01-10 15:06:57 -0800363{
364 unsigned long x;
365
Michal Hockoc41f0122017-09-06 16:23:36 -0700366 x = global_zone_page_state(NR_FREE_PAGES);
Johannes Weinera8d01432016-01-14 15:20:15 -0800367 /*
368 * Pages reserved for the kernel should not be considered
369 * dirtyable, to prevent a situation where reclaim has to
370 * clean pages in order to balance the zones.
371 */
372 x -= min(x, totalreserve_pages);
Johannes Weiner1edf2232012-01-10 15:06:57 -0800373
Mel Gorman599d0c92016-07-28 15:45:31 -0700374 x += global_node_page_state(NR_INACTIVE_FILE);
375 x += global_node_page_state(NR_ACTIVE_FILE);
Johannes Weinera804552b2014-01-29 14:05:39 -0800376
Johannes Weiner1edf2232012-01-10 15:06:57 -0800377 if (!vm_highmem_is_dirtyable)
378 x -= highmem_dirtyable_memory(x);
379
380 return x + 1; /* Ensure that we never return 0 */
381}
382
Tejun Heo9fc3a432015-05-22 18:23:30 -0400383/**
384 * domain_dirty_limits - calculate thresh and bg_thresh for a wb_domain
385 * @dtc: dirty_throttle_control of interest
Johannes Weinerccafa282012-01-10 15:07:44 -0800386 *
Tejun Heo9fc3a432015-05-22 18:23:30 -0400387 * Calculate @dtc->thresh and ->bg_thresh considering
388 * vm_dirty_{bytes|ratio} and dirty_background_{bytes|ratio}. The caller
389 * must ensure that @dtc->avail is set before calling this function. The
NeilBrowna37b0712020-06-01 21:48:18 -0700390 * dirty limits will be lifted by 1/4 for real-time tasks.
Johannes Weinerccafa282012-01-10 15:07:44 -0800391 */
Tejun Heo9fc3a432015-05-22 18:23:30 -0400392static void domain_dirty_limits(struct dirty_throttle_control *dtc)
393{
394 const unsigned long available_memory = dtc->avail;
395 struct dirty_throttle_control *gdtc = mdtc_gdtc(dtc);
396 unsigned long bytes = vm_dirty_bytes;
397 unsigned long bg_bytes = dirty_background_bytes;
Tejun Heo62a584f2016-05-27 14:34:46 -0400398 /* convert ratios to per-PAGE_SIZE for higher precision */
399 unsigned long ratio = (vm_dirty_ratio * PAGE_SIZE) / 100;
400 unsigned long bg_ratio = (dirty_background_ratio * PAGE_SIZE) / 100;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400401 unsigned long thresh;
402 unsigned long bg_thresh;
403 struct task_struct *tsk;
404
405 /* gdtc is !NULL iff @dtc is for memcg domain */
406 if (gdtc) {
407 unsigned long global_avail = gdtc->avail;
408
409 /*
410 * The byte settings can't be applied directly to memcg
411 * domains. Convert them to ratios by scaling against
Tejun Heo62a584f2016-05-27 14:34:46 -0400412 * globally available memory. As the ratios are in
413 * per-PAGE_SIZE, they can be obtained by dividing bytes by
414 * number of pages.
Tejun Heo9fc3a432015-05-22 18:23:30 -0400415 */
416 if (bytes)
Tejun Heo62a584f2016-05-27 14:34:46 -0400417 ratio = min(DIV_ROUND_UP(bytes, global_avail),
418 PAGE_SIZE);
Tejun Heo9fc3a432015-05-22 18:23:30 -0400419 if (bg_bytes)
Tejun Heo62a584f2016-05-27 14:34:46 -0400420 bg_ratio = min(DIV_ROUND_UP(bg_bytes, global_avail),
421 PAGE_SIZE);
Tejun Heo9fc3a432015-05-22 18:23:30 -0400422 bytes = bg_bytes = 0;
423 }
424
425 if (bytes)
426 thresh = DIV_ROUND_UP(bytes, PAGE_SIZE);
427 else
Tejun Heo62a584f2016-05-27 14:34:46 -0400428 thresh = (ratio * available_memory) / PAGE_SIZE;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400429
430 if (bg_bytes)
431 bg_thresh = DIV_ROUND_UP(bg_bytes, PAGE_SIZE);
432 else
Tejun Heo62a584f2016-05-27 14:34:46 -0400433 bg_thresh = (bg_ratio * available_memory) / PAGE_SIZE;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400434
Michal Hocko90daf302017-11-29 16:10:58 -0800435 if (bg_thresh >= thresh)
Tejun Heo9fc3a432015-05-22 18:23:30 -0400436 bg_thresh = thresh / 2;
437 tsk = current;
NeilBrowna37b0712020-06-01 21:48:18 -0700438 if (rt_task(tsk)) {
NeilBrowna53eaff2016-05-20 16:58:53 -0700439 bg_thresh += bg_thresh / 4 + global_wb_domain.dirty_limit / 32;
440 thresh += thresh / 4 + global_wb_domain.dirty_limit / 32;
Tejun Heo9fc3a432015-05-22 18:23:30 -0400441 }
442 dtc->thresh = thresh;
443 dtc->bg_thresh = bg_thresh;
444
445 /* we should eventually report the domain in the TP */
446 if (!gdtc)
447 trace_global_dirty_state(bg_thresh, thresh);
448}
449
450/**
451 * global_dirty_limits - background-writeback and dirty-throttling thresholds
452 * @pbackground: out parameter for bg_thresh
453 * @pdirty: out parameter for thresh
454 *
455 * Calculate bg_thresh and thresh for global_wb_domain. See
456 * domain_dirty_limits() for details.
457 */
Johannes Weinerccafa282012-01-10 15:07:44 -0800458void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty)
459{
Tejun Heo9fc3a432015-05-22 18:23:30 -0400460 struct dirty_throttle_control gdtc = { GDTC_INIT_NO_WB };
Johannes Weinerccafa282012-01-10 15:07:44 -0800461
Tejun Heo9fc3a432015-05-22 18:23:30 -0400462 gdtc.avail = global_dirtyable_memory();
463 domain_dirty_limits(&gdtc);
Johannes Weinerccafa282012-01-10 15:07:44 -0800464
Tejun Heo9fc3a432015-05-22 18:23:30 -0400465 *pbackground = gdtc.bg_thresh;
466 *pdirty = gdtc.thresh;
Johannes Weinerccafa282012-01-10 15:07:44 -0800467}
468
Johannes Weinera756cf52012-01-10 15:07:49 -0800469/**
Mel Gorman281e3722016-07-28 15:46:11 -0700470 * node_dirty_limit - maximum number of dirty pages allowed in a node
471 * @pgdat: the node
Johannes Weinera756cf52012-01-10 15:07:49 -0800472 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800473 * Return: the maximum number of dirty pages allowed in a node, based
Mel Gorman281e3722016-07-28 15:46:11 -0700474 * on the node's dirtyable memory.
Johannes Weinera756cf52012-01-10 15:07:49 -0800475 */
Mel Gorman281e3722016-07-28 15:46:11 -0700476static unsigned long node_dirty_limit(struct pglist_data *pgdat)
Johannes Weinera756cf52012-01-10 15:07:49 -0800477{
Mel Gorman281e3722016-07-28 15:46:11 -0700478 unsigned long node_memory = node_dirtyable_memory(pgdat);
Johannes Weinera756cf52012-01-10 15:07:49 -0800479 struct task_struct *tsk = current;
480 unsigned long dirty;
481
482 if (vm_dirty_bytes)
483 dirty = DIV_ROUND_UP(vm_dirty_bytes, PAGE_SIZE) *
Mel Gorman281e3722016-07-28 15:46:11 -0700484 node_memory / global_dirtyable_memory();
Johannes Weinera756cf52012-01-10 15:07:49 -0800485 else
Mel Gorman281e3722016-07-28 15:46:11 -0700486 dirty = vm_dirty_ratio * node_memory / 100;
Johannes Weinera756cf52012-01-10 15:07:49 -0800487
NeilBrowna37b0712020-06-01 21:48:18 -0700488 if (rt_task(tsk))
Johannes Weinera756cf52012-01-10 15:07:49 -0800489 dirty += dirty / 4;
490
491 return dirty;
492}
493
494/**
Mel Gorman281e3722016-07-28 15:46:11 -0700495 * node_dirty_ok - tells whether a node is within its dirty limits
496 * @pgdat: the node to check
Johannes Weinera756cf52012-01-10 15:07:49 -0800497 *
Mike Rapoporta862f682019-03-05 15:48:42 -0800498 * Return: %true when the dirty pages in @pgdat are within the node's
Johannes Weinera756cf52012-01-10 15:07:49 -0800499 * dirty limit, %false if the limit is exceeded.
500 */
Mel Gorman281e3722016-07-28 15:46:11 -0700501bool node_dirty_ok(struct pglist_data *pgdat)
Johannes Weinera756cf52012-01-10 15:07:49 -0800502{
Mel Gorman281e3722016-07-28 15:46:11 -0700503 unsigned long limit = node_dirty_limit(pgdat);
504 unsigned long nr_pages = 0;
Johannes Weinera756cf52012-01-10 15:07:49 -0800505
Mel Gorman11fb9982016-07-28 15:46:20 -0700506 nr_pages += node_page_state(pgdat, NR_FILE_DIRTY);
507 nr_pages += node_page_state(pgdat, NR_UNSTABLE_NFS);
508 nr_pages += node_page_state(pgdat, NR_WRITEBACK);
Mel Gorman281e3722016-07-28 15:46:11 -0700509
510 return nr_pages <= limit;
Johannes Weinera756cf52012-01-10 15:07:49 -0800511}
512
David Rientjes2da02992009-01-06 14:39:31 -0800513int dirty_background_ratio_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700514 void __user *buffer, size_t *lenp,
David Rientjes2da02992009-01-06 14:39:31 -0800515 loff_t *ppos)
516{
517 int ret;
518
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700519 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
David Rientjes2da02992009-01-06 14:39:31 -0800520 if (ret == 0 && write)
521 dirty_background_bytes = 0;
522 return ret;
523}
524
525int dirty_background_bytes_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700526 void __user *buffer, size_t *lenp,
David Rientjes2da02992009-01-06 14:39:31 -0800527 loff_t *ppos)
528{
529 int ret;
530
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700531 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
David Rientjes2da02992009-01-06 14:39:31 -0800532 if (ret == 0 && write)
533 dirty_background_ratio = 0;
534 return ret;
535}
536
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700537int dirty_ratio_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700538 void __user *buffer, size_t *lenp,
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700539 loff_t *ppos)
540{
541 int old_ratio = vm_dirty_ratio;
David Rientjes2da02992009-01-06 14:39:31 -0800542 int ret;
543
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700544 ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700545 if (ret == 0 && write && vm_dirty_ratio != old_ratio) {
Jan Karaeb608e32012-05-24 18:59:11 +0200546 writeback_set_ratelimit();
David Rientjes2da02992009-01-06 14:39:31 -0800547 vm_dirty_bytes = 0;
548 }
549 return ret;
550}
551
David Rientjes2da02992009-01-06 14:39:31 -0800552int dirty_bytes_handler(struct ctl_table *table, int write,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700553 void __user *buffer, size_t *lenp,
David Rientjes2da02992009-01-06 14:39:31 -0800554 loff_t *ppos)
555{
Sven Wegenerfc3501d2009-02-11 13:04:23 -0800556 unsigned long old_bytes = vm_dirty_bytes;
David Rientjes2da02992009-01-06 14:39:31 -0800557 int ret;
558
Alexey Dobriyan8d65af72009-09-23 15:57:19 -0700559 ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
David Rientjes2da02992009-01-06 14:39:31 -0800560 if (ret == 0 && write && vm_dirty_bytes != old_bytes) {
Jan Karaeb608e32012-05-24 18:59:11 +0200561 writeback_set_ratelimit();
David Rientjes2da02992009-01-06 14:39:31 -0800562 vm_dirty_ratio = 0;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700563 }
564 return ret;
565}
566
Jan Karaeb608e32012-05-24 18:59:11 +0200567static unsigned long wp_next_time(unsigned long cur_time)
568{
569 cur_time += VM_COMPLETIONS_PERIOD_LEN;
570 /* 0 has a special meaning... */
571 if (!cur_time)
572 return 1;
573 return cur_time;
574}
575
Tejun Heoc7981432015-05-22 18:23:29 -0400576static void wb_domain_writeout_inc(struct wb_domain *dom,
577 struct fprop_local_percpu *completions,
578 unsigned int max_prop_frac)
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700579{
Tejun Heoc7981432015-05-22 18:23:29 -0400580 __fprop_inc_percpu_max(&dom->completions, completions,
581 max_prop_frac);
Jan Karaeb608e32012-05-24 18:59:11 +0200582 /* First event after period switching was turned off? */
Steven Rostedt (VMware)517663e2017-02-24 14:59:24 -0800583 if (unlikely(!dom->period_time)) {
Jan Karaeb608e32012-05-24 18:59:11 +0200584 /*
585 * We can race with other __bdi_writeout_inc calls here but
586 * it does not cause any harm since the resulting time when
587 * timer will fire and what is in writeout_period_time will be
588 * roughly the same.
589 */
Tejun Heo380c27c2015-05-22 18:23:21 -0400590 dom->period_time = wp_next_time(jiffies);
591 mod_timer(&dom->period_timer, dom->period_time);
Jan Karaeb608e32012-05-24 18:59:11 +0200592 }
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700593}
594
Tejun Heoc7981432015-05-22 18:23:29 -0400595/*
596 * Increment @wb's writeout completion count and the global writeout
597 * completion count. Called from test_clear_page_writeback().
598 */
599static inline void __wb_writeout_inc(struct bdi_writeback *wb)
600{
Tejun Heo841710a2015-05-22 18:23:33 -0400601 struct wb_domain *cgdom;
602
Nikolay Borisov3e8f3992017-07-12 14:37:51 -0700603 inc_wb_stat(wb, WB_WRITTEN);
Tejun Heoc7981432015-05-22 18:23:29 -0400604 wb_domain_writeout_inc(&global_wb_domain, &wb->completions,
605 wb->bdi->max_prop_frac);
Tejun Heo841710a2015-05-22 18:23:33 -0400606
607 cgdom = mem_cgroup_wb_domain(wb);
608 if (cgdom)
609 wb_domain_writeout_inc(cgdom, wb_memcg_completions(wb),
610 wb->bdi->max_prop_frac);
Tejun Heoc7981432015-05-22 18:23:29 -0400611}
612
Tejun Heo93f78d82015-05-22 17:13:27 -0400613void wb_writeout_inc(struct bdi_writeback *wb)
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700614{
615 unsigned long flags;
616
617 local_irq_save(flags);
Tejun Heo93f78d82015-05-22 17:13:27 -0400618 __wb_writeout_inc(wb);
Miklos Szeredidd5656e2008-04-30 00:54:37 -0700619 local_irq_restore(flags);
620}
Tejun Heo93f78d82015-05-22 17:13:27 -0400621EXPORT_SYMBOL_GPL(wb_writeout_inc);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700622
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700623/*
Jan Karaeb608e32012-05-24 18:59:11 +0200624 * On idle system, we can be called long after we scheduled because we use
625 * deferred timers so count with missed periods.
626 */
Kees Cook9823e512017-11-15 17:37:04 -0800627static void writeout_period(struct timer_list *t)
Jan Karaeb608e32012-05-24 18:59:11 +0200628{
Kees Cook9823e512017-11-15 17:37:04 -0800629 struct wb_domain *dom = from_timer(dom, t, period_timer);
Tejun Heo380c27c2015-05-22 18:23:21 -0400630 int miss_periods = (jiffies - dom->period_time) /
Jan Karaeb608e32012-05-24 18:59:11 +0200631 VM_COMPLETIONS_PERIOD_LEN;
632
Tejun Heo380c27c2015-05-22 18:23:21 -0400633 if (fprop_new_period(&dom->completions, miss_periods + 1)) {
634 dom->period_time = wp_next_time(dom->period_time +
Jan Karaeb608e32012-05-24 18:59:11 +0200635 miss_periods * VM_COMPLETIONS_PERIOD_LEN);
Tejun Heo380c27c2015-05-22 18:23:21 -0400636 mod_timer(&dom->period_timer, dom->period_time);
Jan Karaeb608e32012-05-24 18:59:11 +0200637 } else {
638 /*
639 * Aging has zeroed all fractions. Stop wasting CPU on period
640 * updates.
641 */
Tejun Heo380c27c2015-05-22 18:23:21 -0400642 dom->period_time = 0;
Jan Karaeb608e32012-05-24 18:59:11 +0200643 }
644}
645
Tejun Heo380c27c2015-05-22 18:23:21 -0400646int wb_domain_init(struct wb_domain *dom, gfp_t gfp)
647{
648 memset(dom, 0, sizeof(*dom));
Tejun Heodcc25ae2015-05-22 18:23:22 -0400649
650 spin_lock_init(&dom->lock);
651
Kees Cook9823e512017-11-15 17:37:04 -0800652 timer_setup(&dom->period_timer, writeout_period, TIMER_DEFERRABLE);
Tejun Heodcc25ae2015-05-22 18:23:22 -0400653
654 dom->dirty_limit_tstamp = jiffies;
655
Tejun Heo380c27c2015-05-22 18:23:21 -0400656 return fprop_global_init(&dom->completions, gfp);
657}
658
Tejun Heo841710a2015-05-22 18:23:33 -0400659#ifdef CONFIG_CGROUP_WRITEBACK
660void wb_domain_exit(struct wb_domain *dom)
661{
662 del_timer_sync(&dom->period_timer);
663 fprop_global_destroy(&dom->completions);
664}
665#endif
666
Jan Karaeb608e32012-05-24 18:59:11 +0200667/*
Johannes Weinerd08c4292011-10-31 17:07:05 -0700668 * bdi_min_ratio keeps the sum of the minimum dirty shares of all
669 * registered backing devices, which, for obvious reasons, can not
670 * exceed 100%.
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700671 */
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700672static unsigned int bdi_min_ratio;
673
674int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio)
675{
676 int ret = 0;
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700677
Jens Axboecfc4ba52009-09-14 13:12:40 +0200678 spin_lock_bh(&bdi_lock);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700679 if (min_ratio > bdi->max_ratio) {
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700680 ret = -EINVAL;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700681 } else {
682 min_ratio -= bdi->min_ratio;
683 if (bdi_min_ratio + min_ratio < 100) {
684 bdi_min_ratio += min_ratio;
685 bdi->min_ratio += min_ratio;
686 } else {
687 ret = -EINVAL;
688 }
689 }
Jens Axboecfc4ba52009-09-14 13:12:40 +0200690 spin_unlock_bh(&bdi_lock);
Peter Zijlstra189d3c42008-04-30 00:54:35 -0700691
692 return ret;
693}
694
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700695int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned max_ratio)
696{
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700697 int ret = 0;
698
699 if (max_ratio > 100)
700 return -EINVAL;
701
Jens Axboecfc4ba52009-09-14 13:12:40 +0200702 spin_lock_bh(&bdi_lock);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700703 if (bdi->min_ratio > max_ratio) {
704 ret = -EINVAL;
705 } else {
706 bdi->max_ratio = max_ratio;
Jan Karaeb608e32012-05-24 18:59:11 +0200707 bdi->max_prop_frac = (FPROP_FRAC_BASE * max_ratio) / 100;
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700708 }
Jens Axboecfc4ba52009-09-14 13:12:40 +0200709 spin_unlock_bh(&bdi_lock);
Peter Zijlstraa42dde02008-04-30 00:54:36 -0700710
711 return ret;
712}
713EXPORT_SYMBOL(bdi_set_max_ratio);
714
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600715static unsigned long dirty_freerun_ceiling(unsigned long thresh,
716 unsigned long bg_thresh)
717{
718 return (thresh + bg_thresh) / 2;
719}
720
Tejun Heoc7981432015-05-22 18:23:29 -0400721static unsigned long hard_dirty_limit(struct wb_domain *dom,
722 unsigned long thresh)
Wu Fengguangffd1f602011-06-19 22:18:42 -0600723{
Tejun Heodcc25ae2015-05-22 18:23:22 -0400724 return max(thresh, dom->dirty_limit);
Wu Fengguangffd1f602011-06-19 22:18:42 -0600725}
726
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400727/*
728 * Memory which can be further allocated to a memcg domain is capped by
729 * system-wide clean memory excluding the amount being used in the domain.
730 */
731static void mdtc_calc_avail(struct dirty_throttle_control *mdtc,
732 unsigned long filepages, unsigned long headroom)
Tejun Heoc2aa7232015-05-22 18:23:35 -0400733{
734 struct dirty_throttle_control *gdtc = mdtc_gdtc(mdtc);
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400735 unsigned long clean = filepages - min(filepages, mdtc->dirty);
736 unsigned long global_clean = gdtc->avail - min(gdtc->avail, gdtc->dirty);
737 unsigned long other_clean = global_clean - min(global_clean, clean);
Tejun Heoc2aa7232015-05-22 18:23:35 -0400738
Tejun Heoc5edf9c2015-09-29 13:04:26 -0400739 mdtc->avail = filepages + min(headroom, other_clean);
Christoph Lameter1b424462007-05-06 14:48:59 -0700740}
741
Wu Fengguang6f718652011-03-02 17:14:34 -0600742/**
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400743 * __wb_calc_thresh - @wb's share of dirty throttling threshold
744 * @dtc: dirty_throttle_context of interest
Wu Fengguang1babe182010-08-11 14:17:40 -0700745 *
Wu Fengguangaed21ad2011-11-23 11:44:41 -0600746 * Note that balance_dirty_pages() will only seriously take it as a hard limit
747 * when sleeping max_pause per page is not enough to keep the dirty pages under
748 * control. For example, when the device is completely stalled due to some error
749 * conditions, or when there are 1000 dd tasks writing to a slow 10MB/s USB key.
750 * In the other normal situations, it acts more gently by throttling the tasks
Tejun Heoa88a3412015-05-22 17:13:28 -0400751 * more (rather than completely block them) when the wb dirty pages go high.
Wu Fengguang6f718652011-03-02 17:14:34 -0600752 *
753 * It allocates high/low dirty limits to fast/slow devices, in order to prevent
Wu Fengguang1babe182010-08-11 14:17:40 -0700754 * - starving fast devices
755 * - piling up dirty pages (that will take long time to sync) on slow devices
756 *
Tejun Heoa88a3412015-05-22 17:13:28 -0400757 * The wb's share of dirty limit will be adapting to its throughput and
Wu Fengguang1babe182010-08-11 14:17:40 -0700758 * bounded by the bdi->min_ratio and/or bdi->max_ratio parameters, if set.
Mike Rapoporta862f682019-03-05 15:48:42 -0800759 *
760 * Return: @wb's dirty limit in pages. The term "dirty" in the context of
761 * dirty balancing includes all PG_dirty, PG_writeback and NFS unstable pages.
Wu Fengguang1babe182010-08-11 14:17:40 -0700762 */
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400763static unsigned long __wb_calc_thresh(struct dirty_throttle_control *dtc)
Wu Fengguang16c40422010-08-11 14:17:39 -0700764{
Tejun Heoe9f07df2015-05-22 18:23:28 -0400765 struct wb_domain *dom = dtc_dom(dtc);
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400766 unsigned long thresh = dtc->thresh;
Tejun Heo0d960a32015-05-22 18:23:19 -0400767 u64 wb_thresh;
Wen Yangd3ac9462020-01-13 16:29:26 -0800768 unsigned long numerator, denominator;
Tejun Heo693108a2015-05-22 17:13:49 -0400769 unsigned long wb_min_ratio, wb_max_ratio;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700770
Wu Fengguang16c40422010-08-11 14:17:39 -0700771 /*
Tejun Heo0d960a32015-05-22 18:23:19 -0400772 * Calculate this BDI's share of the thresh ratio.
Wu Fengguang16c40422010-08-11 14:17:39 -0700773 */
Tejun Heoe9770b32015-05-22 18:23:27 -0400774 fprop_fraction_percpu(&dom->completions, dtc->wb_completions,
Tejun Heo380c27c2015-05-22 18:23:21 -0400775 &numerator, &denominator);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700776
Tejun Heo0d960a32015-05-22 18:23:19 -0400777 wb_thresh = (thresh * (100 - bdi_min_ratio)) / 100;
778 wb_thresh *= numerator;
Wen Yangd3ac9462020-01-13 16:29:26 -0800779 wb_thresh = div64_ul(wb_thresh, denominator);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700780
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400781 wb_min_max_ratio(dtc->wb, &wb_min_ratio, &wb_max_ratio);
Wu Fengguang16c40422010-08-11 14:17:39 -0700782
Tejun Heo0d960a32015-05-22 18:23:19 -0400783 wb_thresh += (thresh * wb_min_ratio) / 100;
784 if (wb_thresh > (thresh * wb_max_ratio) / 100)
785 wb_thresh = thresh * wb_max_ratio / 100;
Wu Fengguang16c40422010-08-11 14:17:39 -0700786
Tejun Heo0d960a32015-05-22 18:23:19 -0400787 return wb_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700788}
789
Tejun Heob1cbc6d2015-05-22 18:23:25 -0400790unsigned long wb_calc_thresh(struct bdi_writeback *wb, unsigned long thresh)
791{
792 struct dirty_throttle_control gdtc = { GDTC_INIT(wb),
793 .thresh = thresh };
794 return __wb_calc_thresh(&gdtc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700795}
796
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600797/*
Maxim Patlasov5a537482013-09-11 14:22:46 -0700798 * setpoint - dirty 3
799 * f(dirty) := 1.0 + (----------------)
800 * limit - setpoint
801 *
802 * it's a 3rd order polynomial that subjects to
803 *
804 * (1) f(freerun) = 2.0 => rampup dirty_ratelimit reasonably fast
805 * (2) f(setpoint) = 1.0 => the balance point
806 * (3) f(limit) = 0 => the hard limit
807 * (4) df/dx <= 0 => negative feedback control
808 * (5) the closer to setpoint, the smaller |df/dx| (and the reverse)
809 * => fast response on large errors; small oscillation near setpoint
810 */
Rik van Rield5c9fde2014-05-06 12:50:01 -0700811static long long pos_ratio_polynom(unsigned long setpoint,
Maxim Patlasov5a537482013-09-11 14:22:46 -0700812 unsigned long dirty,
813 unsigned long limit)
814{
815 long long pos_ratio;
816 long x;
817
Rik van Rield5c9fde2014-05-06 12:50:01 -0700818 x = div64_s64(((s64)setpoint - (s64)dirty) << RATELIMIT_CALC_SHIFT,
Tejun Heo464d1382015-04-21 16:49:13 -0400819 (limit - setpoint) | 1);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700820 pos_ratio = x;
821 pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
822 pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
823 pos_ratio += 1 << RATELIMIT_CALC_SHIFT;
824
825 return clamp(pos_ratio, 0LL, 2LL << RATELIMIT_CALC_SHIFT);
826}
827
828/*
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600829 * Dirty position control.
830 *
831 * (o) global/bdi setpoints
832 *
Tejun Heode1fff32015-05-22 17:13:29 -0400833 * We want the dirty pages be balanced around the global/wb setpoints.
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600834 * When the number of dirty pages is higher/lower than the setpoint, the
835 * dirty position control ratio (and hence task dirty ratelimit) will be
836 * decreased/increased to bring the dirty pages back to the setpoint.
837 *
838 * pos_ratio = 1 << RATELIMIT_CALC_SHIFT
839 *
840 * if (dirty < setpoint) scale up pos_ratio
841 * if (dirty > setpoint) scale down pos_ratio
842 *
Tejun Heode1fff32015-05-22 17:13:29 -0400843 * if (wb_dirty < wb_setpoint) scale up pos_ratio
844 * if (wb_dirty > wb_setpoint) scale down pos_ratio
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600845 *
846 * task_ratelimit = dirty_ratelimit * pos_ratio >> RATELIMIT_CALC_SHIFT
847 *
848 * (o) global control line
849 *
850 * ^ pos_ratio
851 * |
852 * | |<===== global dirty control scope ======>|
853 * 2.0 .............*
854 * | .*
855 * | . *
856 * | . *
857 * | . *
858 * | . *
859 * | . *
860 * 1.0 ................................*
861 * | . . *
862 * | . . *
863 * | . . *
864 * | . . *
865 * | . . *
866 * 0 +------------.------------------.----------------------*------------->
867 * freerun^ setpoint^ limit^ dirty pages
868 *
Tejun Heode1fff32015-05-22 17:13:29 -0400869 * (o) wb control line
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600870 *
871 * ^ pos_ratio
872 * |
873 * | *
874 * | *
875 * | *
876 * | *
877 * | * |<=========== span ============>|
878 * 1.0 .......................*
879 * | . *
880 * | . *
881 * | . *
882 * | . *
883 * | . *
884 * | . *
885 * | . *
886 * | . *
887 * | . *
888 * | . *
889 * | . *
890 * 1/4 ...............................................* * * * * * * * * * * *
891 * | . .
892 * | . .
893 * | . .
894 * 0 +----------------------.-------------------------------.------------->
Tejun Heode1fff32015-05-22 17:13:29 -0400895 * wb_setpoint^ x_intercept^
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600896 *
Tejun Heode1fff32015-05-22 17:13:29 -0400897 * The wb control line won't drop below pos_ratio=1/4, so that wb_dirty can
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600898 * be smoothly throttled down to normal if it starts high in situations like
899 * - start writing to a slow SD card and a fast disk at the same time. The SD
Tejun Heode1fff32015-05-22 17:13:29 -0400900 * card's wb_dirty may rush to many times higher than wb_setpoint.
901 * - the wb dirty thresh drops quickly due to change of JBOD workload
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600902 */
Tejun Heodaddfa32015-05-22 18:23:26 -0400903static void wb_position_ratio(struct dirty_throttle_control *dtc)
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600904{
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400905 struct bdi_writeback *wb = dtc->wb;
Tejun Heoa88a3412015-05-22 17:13:28 -0400906 unsigned long write_bw = wb->avg_write_bandwidth;
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400907 unsigned long freerun = dirty_freerun_ceiling(dtc->thresh, dtc->bg_thresh);
Tejun Heoc7981432015-05-22 18:23:29 -0400908 unsigned long limit = hard_dirty_limit(dtc_dom(dtc), dtc->thresh);
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400909 unsigned long wb_thresh = dtc->wb_thresh;
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600910 unsigned long x_intercept;
911 unsigned long setpoint; /* dirty pages' target balance point */
Tejun Heode1fff32015-05-22 17:13:29 -0400912 unsigned long wb_setpoint;
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600913 unsigned long span;
914 long long pos_ratio; /* for scaling up/down the rate limit */
915 long x;
916
Tejun Heodaddfa32015-05-22 18:23:26 -0400917 dtc->pos_ratio = 0;
918
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400919 if (unlikely(dtc->dirty >= limit))
Tejun Heodaddfa32015-05-22 18:23:26 -0400920 return;
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600921
922 /*
923 * global setpoint
924 *
Maxim Patlasov5a537482013-09-11 14:22:46 -0700925 * See comment for pos_ratio_polynom().
Wu Fengguang6c14ae12011-03-02 16:04:18 -0600926 */
927 setpoint = (freerun + limit) / 2;
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400928 pos_ratio = pos_ratio_polynom(setpoint, dtc->dirty, limit);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700929
930 /*
931 * The strictlimit feature is a tool preventing mistrusted filesystems
932 * from growing a large number of dirty pages before throttling. For
Tejun Heode1fff32015-05-22 17:13:29 -0400933 * such filesystems balance_dirty_pages always checks wb counters
934 * against wb limits. Even if global "nr_dirty" is under "freerun".
Maxim Patlasov5a537482013-09-11 14:22:46 -0700935 * This is especially important for fuse which sets bdi->max_ratio to
936 * 1% by default. Without strictlimit feature, fuse writeback may
937 * consume arbitrary amount of RAM because it is accounted in
938 * NR_WRITEBACK_TEMP which is not involved in calculating "nr_dirty".
939 *
Tejun Heoa88a3412015-05-22 17:13:28 -0400940 * Here, in wb_position_ratio(), we calculate pos_ratio based on
Tejun Heode1fff32015-05-22 17:13:29 -0400941 * two values: wb_dirty and wb_thresh. Let's consider an example:
Maxim Patlasov5a537482013-09-11 14:22:46 -0700942 * total amount of RAM is 16GB, bdi->max_ratio is equal to 1%, global
943 * limits are set by default to 10% and 20% (background and throttle).
Tejun Heode1fff32015-05-22 17:13:29 -0400944 * Then wb_thresh is 1% of 20% of 16GB. This amounts to ~8K pages.
Tejun Heo0d960a32015-05-22 18:23:19 -0400945 * wb_calc_thresh(wb, bg_thresh) is about ~4K pages. wb_setpoint is
Tejun Heode1fff32015-05-22 17:13:29 -0400946 * about ~6K pages (as the average of background and throttle wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700947 * limits). The 3rd order polynomial will provide positive feedback if
Tejun Heode1fff32015-05-22 17:13:29 -0400948 * wb_dirty is under wb_setpoint and vice versa.
Maxim Patlasov5a537482013-09-11 14:22:46 -0700949 *
950 * Note, that we cannot use global counters in these calculations
Tejun Heode1fff32015-05-22 17:13:29 -0400951 * because we want to throttle process writing to a strictlimit wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700952 * much earlier than global "freerun" is reached (~23MB vs. ~2.3GB
953 * in the example above).
954 */
Tejun Heoa88a3412015-05-22 17:13:28 -0400955 if (unlikely(wb->bdi->capabilities & BDI_CAP_STRICTLIMIT)) {
Tejun Heode1fff32015-05-22 17:13:29 -0400956 long long wb_pos_ratio;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700957
Tejun Heodaddfa32015-05-22 18:23:26 -0400958 if (dtc->wb_dirty < 8) {
959 dtc->pos_ratio = min_t(long long, pos_ratio * 2,
960 2 << RATELIMIT_CALC_SHIFT);
961 return;
962 }
Maxim Patlasov5a537482013-09-11 14:22:46 -0700963
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400964 if (dtc->wb_dirty >= wb_thresh)
Tejun Heodaddfa32015-05-22 18:23:26 -0400965 return;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700966
Tejun Heo970fb012015-05-22 18:23:24 -0400967 wb_setpoint = dirty_freerun_ceiling(wb_thresh,
968 dtc->wb_bg_thresh);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700969
Tejun Heode1fff32015-05-22 17:13:29 -0400970 if (wb_setpoint == 0 || wb_setpoint == wb_thresh)
Tejun Heodaddfa32015-05-22 18:23:26 -0400971 return;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700972
Tejun Heo2bc00ae2015-05-22 18:23:23 -0400973 wb_pos_ratio = pos_ratio_polynom(wb_setpoint, dtc->wb_dirty,
Tejun Heode1fff32015-05-22 17:13:29 -0400974 wb_thresh);
Maxim Patlasov5a537482013-09-11 14:22:46 -0700975
976 /*
Tejun Heode1fff32015-05-22 17:13:29 -0400977 * Typically, for strictlimit case, wb_setpoint << setpoint
978 * and pos_ratio >> wb_pos_ratio. In the other words global
Maxim Patlasov5a537482013-09-11 14:22:46 -0700979 * state ("dirty") is not limiting factor and we have to
Tejun Heode1fff32015-05-22 17:13:29 -0400980 * make decision based on wb counters. But there is an
Maxim Patlasov5a537482013-09-11 14:22:46 -0700981 * important case when global pos_ratio should get precedence:
982 * global limits are exceeded (e.g. due to activities on other
Tejun Heode1fff32015-05-22 17:13:29 -0400983 * wb's) while given strictlimit wb is below limit.
Maxim Patlasov5a537482013-09-11 14:22:46 -0700984 *
Tejun Heode1fff32015-05-22 17:13:29 -0400985 * "pos_ratio * wb_pos_ratio" would work for the case above,
Maxim Patlasov5a537482013-09-11 14:22:46 -0700986 * but it would look too non-natural for the case of all
Tejun Heode1fff32015-05-22 17:13:29 -0400987 * activity in the system coming from a single strictlimit wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700988 * with bdi->max_ratio == 100%.
989 *
990 * Note that min() below somewhat changes the dynamics of the
991 * control system. Normally, pos_ratio value can be well over 3
Tejun Heode1fff32015-05-22 17:13:29 -0400992 * (when globally we are at freerun and wb is well below wb
Maxim Patlasov5a537482013-09-11 14:22:46 -0700993 * setpoint). Now the maximum pos_ratio in the same situation
994 * is 2. We might want to tweak this if we observe the control
995 * system is too slow to adapt.
996 */
Tejun Heodaddfa32015-05-22 18:23:26 -0400997 dtc->pos_ratio = min(pos_ratio, wb_pos_ratio);
998 return;
Maxim Patlasov5a537482013-09-11 14:22:46 -0700999 }
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001000
1001 /*
1002 * We have computed basic pos_ratio above based on global situation. If
Tejun Heode1fff32015-05-22 17:13:29 -04001003 * the wb is over/under its share of dirty pages, we want to scale
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001004 * pos_ratio further down/up. That is done by the following mechanism.
1005 */
1006
1007 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001008 * wb setpoint
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001009 *
Tejun Heode1fff32015-05-22 17:13:29 -04001010 * f(wb_dirty) := 1.0 + k * (wb_dirty - wb_setpoint)
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001011 *
Tejun Heode1fff32015-05-22 17:13:29 -04001012 * x_intercept - wb_dirty
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001013 * := --------------------------
Tejun Heode1fff32015-05-22 17:13:29 -04001014 * x_intercept - wb_setpoint
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001015 *
Tejun Heode1fff32015-05-22 17:13:29 -04001016 * The main wb control line is a linear function that subjects to
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001017 *
Tejun Heode1fff32015-05-22 17:13:29 -04001018 * (1) f(wb_setpoint) = 1.0
1019 * (2) k = - 1 / (8 * write_bw) (in single wb case)
1020 * or equally: x_intercept = wb_setpoint + 8 * write_bw
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001021 *
Tejun Heode1fff32015-05-22 17:13:29 -04001022 * For single wb case, the dirty pages are observed to fluctuate
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001023 * regularly within range
Tejun Heode1fff32015-05-22 17:13:29 -04001024 * [wb_setpoint - write_bw/2, wb_setpoint + write_bw/2]
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001025 * for various filesystems, where (2) can yield in a reasonable 12.5%
1026 * fluctuation range for pos_ratio.
1027 *
Tejun Heode1fff32015-05-22 17:13:29 -04001028 * For JBOD case, wb_thresh (not wb_dirty!) could fluctuate up to its
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001029 * own size, so move the slope over accordingly and choose a slope that
Tejun Heode1fff32015-05-22 17:13:29 -04001030 * yields 100% pos_ratio fluctuation on suddenly doubled wb_thresh.
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001031 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001032 if (unlikely(wb_thresh > dtc->thresh))
1033 wb_thresh = dtc->thresh;
Wu Fengguangaed21ad2011-11-23 11:44:41 -06001034 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001035 * It's very possible that wb_thresh is close to 0 not because the
Wu Fengguangaed21ad2011-11-23 11:44:41 -06001036 * device is slow, but that it has remained inactive for long time.
1037 * Honour such devices a reasonable good (hopefully IO efficient)
1038 * threshold, so that the occasional writes won't be blocked and active
1039 * writes can rampup the threshold quickly.
1040 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001041 wb_thresh = max(wb_thresh, (limit - dtc->dirty) / 8);
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001042 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001043 * scale global setpoint to wb's:
1044 * wb_setpoint = setpoint * wb_thresh / thresh
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001045 */
Linus Torvaldse4bc13a2015-06-25 16:00:17 -07001046 x = div_u64((u64)wb_thresh << 16, dtc->thresh | 1);
Tejun Heode1fff32015-05-22 17:13:29 -04001047 wb_setpoint = setpoint * (u64)x >> 16;
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001048 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001049 * Use span=(8*write_bw) in single wb case as indicated by
1050 * (thresh - wb_thresh ~= 0) and transit to wb_thresh in JBOD case.
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001051 *
Tejun Heode1fff32015-05-22 17:13:29 -04001052 * wb_thresh thresh - wb_thresh
1053 * span = --------- * (8 * write_bw) + ------------------ * wb_thresh
1054 * thresh thresh
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001055 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001056 span = (dtc->thresh - wb_thresh + 8 * write_bw) * (u64)x >> 16;
Tejun Heode1fff32015-05-22 17:13:29 -04001057 x_intercept = wb_setpoint + span;
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001058
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001059 if (dtc->wb_dirty < x_intercept - span / 4) {
1060 pos_ratio = div64_u64(pos_ratio * (x_intercept - dtc->wb_dirty),
Linus Torvaldse4bc13a2015-06-25 16:00:17 -07001061 (x_intercept - wb_setpoint) | 1);
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001062 } else
1063 pos_ratio /= 4;
1064
Wu Fengguang8927f662011-08-04 22:16:46 -06001065 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001066 * wb reserve area, safeguard against dirty pool underrun and disk idle
Wu Fengguang8927f662011-08-04 22:16:46 -06001067 * It may push the desired control point of global dirty pages higher
1068 * than setpoint.
1069 */
Tejun Heode1fff32015-05-22 17:13:29 -04001070 x_intercept = wb_thresh / 2;
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001071 if (dtc->wb_dirty < x_intercept) {
1072 if (dtc->wb_dirty > x_intercept / 8)
1073 pos_ratio = div_u64(pos_ratio * x_intercept,
1074 dtc->wb_dirty);
Wu Fengguang50657fc2011-10-11 17:06:33 -06001075 else
Wu Fengguang8927f662011-08-04 22:16:46 -06001076 pos_ratio *= 8;
1077 }
1078
Tejun Heodaddfa32015-05-22 18:23:26 -04001079 dtc->pos_ratio = pos_ratio;
Wu Fengguang6c14ae12011-03-02 16:04:18 -06001080}
1081
Tejun Heoa88a3412015-05-22 17:13:28 -04001082static void wb_update_write_bandwidth(struct bdi_writeback *wb,
1083 unsigned long elapsed,
1084 unsigned long written)
Wu Fengguange98be2d2010-08-29 11:22:30 -06001085{
1086 const unsigned long period = roundup_pow_of_two(3 * HZ);
Tejun Heoa88a3412015-05-22 17:13:28 -04001087 unsigned long avg = wb->avg_write_bandwidth;
1088 unsigned long old = wb->write_bandwidth;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001089 u64 bw;
1090
1091 /*
1092 * bw = written * HZ / elapsed
1093 *
1094 * bw * elapsed + write_bandwidth * (period - elapsed)
1095 * write_bandwidth = ---------------------------------------------------
1096 * period
Tejun Heoc72efb62015-03-23 00:18:48 -04001097 *
1098 * @written may have decreased due to account_page_redirty().
1099 * Avoid underflowing @bw calculation.
Wu Fengguange98be2d2010-08-29 11:22:30 -06001100 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001101 bw = written - min(written, wb->written_stamp);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001102 bw *= HZ;
1103 if (unlikely(elapsed > period)) {
Wen Yang0a5d1a72020-01-13 16:29:29 -08001104 bw = div64_ul(bw, elapsed);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001105 avg = bw;
1106 goto out;
1107 }
Tejun Heoa88a3412015-05-22 17:13:28 -04001108 bw += (u64)wb->write_bandwidth * (period - elapsed);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001109 bw >>= ilog2(period);
1110
1111 /*
1112 * one more level of smoothing, for filtering out sudden spikes
1113 */
1114 if (avg > old && old >= (unsigned long)bw)
1115 avg -= (avg - old) >> 3;
1116
1117 if (avg < old && old <= (unsigned long)bw)
1118 avg += (old - avg) >> 3;
1119
1120out:
Tejun Heo95a46c62015-05-22 17:13:47 -04001121 /* keep avg > 0 to guarantee that tot > 0 if there are dirty wbs */
1122 avg = max(avg, 1LU);
1123 if (wb_has_dirty_io(wb)) {
1124 long delta = avg - wb->avg_write_bandwidth;
1125 WARN_ON_ONCE(atomic_long_add_return(delta,
1126 &wb->bdi->tot_write_bandwidth) <= 0);
1127 }
Tejun Heoa88a3412015-05-22 17:13:28 -04001128 wb->write_bandwidth = bw;
1129 wb->avg_write_bandwidth = avg;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001130}
1131
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001132static void update_dirty_limit(struct dirty_throttle_control *dtc)
Wu Fengguangc42843f2011-03-02 15:54:09 -06001133{
Tejun Heoe9f07df2015-05-22 18:23:28 -04001134 struct wb_domain *dom = dtc_dom(dtc);
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001135 unsigned long thresh = dtc->thresh;
Tejun Heodcc25ae2015-05-22 18:23:22 -04001136 unsigned long limit = dom->dirty_limit;
Wu Fengguangc42843f2011-03-02 15:54:09 -06001137
1138 /*
1139 * Follow up in one step.
1140 */
1141 if (limit < thresh) {
1142 limit = thresh;
1143 goto update;
1144 }
1145
1146 /*
1147 * Follow down slowly. Use the higher one as the target, because thresh
1148 * may drop below dirty. This is exactly the reason to introduce
Tejun Heodcc25ae2015-05-22 18:23:22 -04001149 * dom->dirty_limit which is guaranteed to lie above the dirty pages.
Wu Fengguangc42843f2011-03-02 15:54:09 -06001150 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001151 thresh = max(thresh, dtc->dirty);
Wu Fengguangc42843f2011-03-02 15:54:09 -06001152 if (limit > thresh) {
1153 limit -= (limit - thresh) >> 5;
1154 goto update;
1155 }
1156 return;
1157update:
Tejun Heodcc25ae2015-05-22 18:23:22 -04001158 dom->dirty_limit = limit;
Wu Fengguangc42843f2011-03-02 15:54:09 -06001159}
1160
Tejun Heoe9f07df2015-05-22 18:23:28 -04001161static void domain_update_bandwidth(struct dirty_throttle_control *dtc,
Wu Fengguangc42843f2011-03-02 15:54:09 -06001162 unsigned long now)
1163{
Tejun Heoe9f07df2015-05-22 18:23:28 -04001164 struct wb_domain *dom = dtc_dom(dtc);
Wu Fengguangc42843f2011-03-02 15:54:09 -06001165
1166 /*
1167 * check locklessly first to optimize away locking for the most time
1168 */
Tejun Heodcc25ae2015-05-22 18:23:22 -04001169 if (time_before(now, dom->dirty_limit_tstamp + BANDWIDTH_INTERVAL))
Wu Fengguangc42843f2011-03-02 15:54:09 -06001170 return;
1171
Tejun Heodcc25ae2015-05-22 18:23:22 -04001172 spin_lock(&dom->lock);
1173 if (time_after_eq(now, dom->dirty_limit_tstamp + BANDWIDTH_INTERVAL)) {
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001174 update_dirty_limit(dtc);
Tejun Heodcc25ae2015-05-22 18:23:22 -04001175 dom->dirty_limit_tstamp = now;
Wu Fengguangc42843f2011-03-02 15:54:09 -06001176 }
Tejun Heodcc25ae2015-05-22 18:23:22 -04001177 spin_unlock(&dom->lock);
Wu Fengguangc42843f2011-03-02 15:54:09 -06001178}
1179
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001180/*
Tejun Heode1fff32015-05-22 17:13:29 -04001181 * Maintain wb->dirty_ratelimit, the base dirty throttle rate.
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001182 *
Tejun Heode1fff32015-05-22 17:13:29 -04001183 * Normal wb tasks will be curbed at or below it in long term.
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001184 * Obviously it should be around (write_bw / N) when there are N dd tasks.
1185 */
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001186static void wb_update_dirty_ratelimit(struct dirty_throttle_control *dtc,
Tejun Heoa88a3412015-05-22 17:13:28 -04001187 unsigned long dirtied,
1188 unsigned long elapsed)
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001189{
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001190 struct bdi_writeback *wb = dtc->wb;
1191 unsigned long dirty = dtc->dirty;
1192 unsigned long freerun = dirty_freerun_ceiling(dtc->thresh, dtc->bg_thresh);
Tejun Heoc7981432015-05-22 18:23:29 -04001193 unsigned long limit = hard_dirty_limit(dtc_dom(dtc), dtc->thresh);
Wu Fengguang73811312011-08-26 15:53:24 -06001194 unsigned long setpoint = (freerun + limit) / 2;
Tejun Heoa88a3412015-05-22 17:13:28 -04001195 unsigned long write_bw = wb->avg_write_bandwidth;
1196 unsigned long dirty_ratelimit = wb->dirty_ratelimit;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001197 unsigned long dirty_rate;
1198 unsigned long task_ratelimit;
1199 unsigned long balanced_dirty_ratelimit;
Wu Fengguang73811312011-08-26 15:53:24 -06001200 unsigned long step;
1201 unsigned long x;
Andrey Ryabinind59b1082016-03-15 14:55:27 -07001202 unsigned long shift;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001203
1204 /*
1205 * The dirty rate will match the writeout rate in long term, except
1206 * when dirty pages are truncated by userspace or re-dirtied by FS.
1207 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001208 dirty_rate = (dirtied - wb->dirtied_stamp) * HZ / elapsed;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001209
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001210 /*
1211 * task_ratelimit reflects each dd's dirty rate for the past 200ms.
1212 */
1213 task_ratelimit = (u64)dirty_ratelimit *
Tejun Heodaddfa32015-05-22 18:23:26 -04001214 dtc->pos_ratio >> RATELIMIT_CALC_SHIFT;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001215 task_ratelimit++; /* it helps rampup dirty_ratelimit from tiny values */
1216
1217 /*
1218 * A linear estimation of the "balanced" throttle rate. The theory is,
Tejun Heode1fff32015-05-22 17:13:29 -04001219 * if there are N dd tasks, each throttled at task_ratelimit, the wb's
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001220 * dirty_rate will be measured to be (N * task_ratelimit). So the below
1221 * formula will yield the balanced rate limit (write_bw / N).
1222 *
1223 * Note that the expanded form is not a pure rate feedback:
1224 * rate_(i+1) = rate_(i) * (write_bw / dirty_rate) (1)
1225 * but also takes pos_ratio into account:
1226 * rate_(i+1) = rate_(i) * (write_bw / dirty_rate) * pos_ratio (2)
1227 *
1228 * (1) is not realistic because pos_ratio also takes part in balancing
1229 * the dirty rate. Consider the state
1230 * pos_ratio = 0.5 (3)
1231 * rate = 2 * (write_bw / N) (4)
1232 * If (1) is used, it will stuck in that state! Because each dd will
1233 * be throttled at
1234 * task_ratelimit = pos_ratio * rate = (write_bw / N) (5)
1235 * yielding
1236 * dirty_rate = N * task_ratelimit = write_bw (6)
1237 * put (6) into (1) we get
1238 * rate_(i+1) = rate_(i) (7)
1239 *
1240 * So we end up using (2) to always keep
1241 * rate_(i+1) ~= (write_bw / N) (8)
1242 * regardless of the value of pos_ratio. As long as (8) is satisfied,
1243 * pos_ratio is able to drive itself to 1.0, which is not only where
1244 * the dirty count meet the setpoint, but also where the slope of
1245 * pos_ratio is most flat and hence task_ratelimit is least fluctuated.
1246 */
1247 balanced_dirty_ratelimit = div_u64((u64)task_ratelimit * write_bw,
1248 dirty_rate | 1);
Wu Fengguangbdaac492011-08-03 14:30:36 -06001249 /*
1250 * balanced_dirty_ratelimit ~= (write_bw / N) <= write_bw
1251 */
1252 if (unlikely(balanced_dirty_ratelimit > write_bw))
1253 balanced_dirty_ratelimit = write_bw;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001254
Wu Fengguang73811312011-08-26 15:53:24 -06001255 /*
1256 * We could safely do this and return immediately:
1257 *
Tejun Heode1fff32015-05-22 17:13:29 -04001258 * wb->dirty_ratelimit = balanced_dirty_ratelimit;
Wu Fengguang73811312011-08-26 15:53:24 -06001259 *
1260 * However to get a more stable dirty_ratelimit, the below elaborated
Wanpeng Li331cbde2012-06-09 11:10:55 +08001261 * code makes use of task_ratelimit to filter out singular points and
Wu Fengguang73811312011-08-26 15:53:24 -06001262 * limit the step size.
1263 *
1264 * The below code essentially only uses the relative value of
1265 *
1266 * task_ratelimit - dirty_ratelimit
1267 * = (pos_ratio - 1) * dirty_ratelimit
1268 *
1269 * which reflects the direction and size of dirty position error.
1270 */
1271
1272 /*
1273 * dirty_ratelimit will follow balanced_dirty_ratelimit iff
1274 * task_ratelimit is on the same side of dirty_ratelimit, too.
1275 * For example, when
1276 * - dirty_ratelimit > balanced_dirty_ratelimit
1277 * - dirty_ratelimit > task_ratelimit (dirty pages are above setpoint)
1278 * lowering dirty_ratelimit will help meet both the position and rate
1279 * control targets. Otherwise, don't update dirty_ratelimit if it will
1280 * only help meet the rate target. After all, what the users ultimately
1281 * feel and care are stable dirty rate and small position error.
1282 *
1283 * |task_ratelimit - dirty_ratelimit| is used to limit the step size
Wanpeng Li331cbde2012-06-09 11:10:55 +08001284 * and filter out the singular points of balanced_dirty_ratelimit. Which
Wu Fengguang73811312011-08-26 15:53:24 -06001285 * keeps jumping around randomly and can even leap far away at times
1286 * due to the small 200ms estimation period of dirty_rate (we want to
1287 * keep that period small to reduce time lags).
1288 */
1289 step = 0;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001290
1291 /*
Tejun Heode1fff32015-05-22 17:13:29 -04001292 * For strictlimit case, calculations above were based on wb counters
Tejun Heoa88a3412015-05-22 17:13:28 -04001293 * and limits (starting from pos_ratio = wb_position_ratio() and up to
Maxim Patlasov5a537482013-09-11 14:22:46 -07001294 * balanced_dirty_ratelimit = task_ratelimit * write_bw / dirty_rate).
Tejun Heode1fff32015-05-22 17:13:29 -04001295 * Hence, to calculate "step" properly, we have to use wb_dirty as
1296 * "dirty" and wb_setpoint as "setpoint".
Maxim Patlasov5a537482013-09-11 14:22:46 -07001297 *
Tejun Heode1fff32015-05-22 17:13:29 -04001298 * We rampup dirty_ratelimit forcibly if wb_dirty is low because
1299 * it's possible that wb_thresh is close to zero due to inactivity
Tejun Heo970fb012015-05-22 18:23:24 -04001300 * of backing device.
Maxim Patlasov5a537482013-09-11 14:22:46 -07001301 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001302 if (unlikely(wb->bdi->capabilities & BDI_CAP_STRICTLIMIT)) {
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001303 dirty = dtc->wb_dirty;
1304 if (dtc->wb_dirty < 8)
1305 setpoint = dtc->wb_dirty + 1;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001306 else
Tejun Heo970fb012015-05-22 18:23:24 -04001307 setpoint = (dtc->wb_thresh + dtc->wb_bg_thresh) / 2;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001308 }
1309
Wu Fengguang73811312011-08-26 15:53:24 -06001310 if (dirty < setpoint) {
Tejun Heoa88a3412015-05-22 17:13:28 -04001311 x = min3(wb->balanced_dirty_ratelimit,
Mark Rustad7c809962014-10-09 15:28:15 -07001312 balanced_dirty_ratelimit, task_ratelimit);
Wu Fengguang73811312011-08-26 15:53:24 -06001313 if (dirty_ratelimit < x)
1314 step = x - dirty_ratelimit;
1315 } else {
Tejun Heoa88a3412015-05-22 17:13:28 -04001316 x = max3(wb->balanced_dirty_ratelimit,
Mark Rustad7c809962014-10-09 15:28:15 -07001317 balanced_dirty_ratelimit, task_ratelimit);
Wu Fengguang73811312011-08-26 15:53:24 -06001318 if (dirty_ratelimit > x)
1319 step = dirty_ratelimit - x;
1320 }
1321
1322 /*
1323 * Don't pursue 100% rate matching. It's impossible since the balanced
1324 * rate itself is constantly fluctuating. So decrease the track speed
1325 * when it gets close to the target. Helps eliminate pointless tremors.
1326 */
Andrey Ryabinind59b1082016-03-15 14:55:27 -07001327 shift = dirty_ratelimit / (2 * step + 1);
1328 if (shift < BITS_PER_LONG)
1329 step = DIV_ROUND_UP(step >> shift, 8);
1330 else
1331 step = 0;
Wu Fengguang73811312011-08-26 15:53:24 -06001332
1333 if (dirty_ratelimit < balanced_dirty_ratelimit)
1334 dirty_ratelimit += step;
1335 else
1336 dirty_ratelimit -= step;
1337
Tejun Heoa88a3412015-05-22 17:13:28 -04001338 wb->dirty_ratelimit = max(dirty_ratelimit, 1UL);
1339 wb->balanced_dirty_ratelimit = balanced_dirty_ratelimit;
Wu Fengguangb48c1042011-03-02 17:22:49 -06001340
Tejun Heo5634cc22015-08-18 14:54:56 -07001341 trace_bdi_dirty_ratelimit(wb, dirty_rate, task_ratelimit);
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001342}
1343
Tejun Heoc2aa7232015-05-22 18:23:35 -04001344static void __wb_update_bandwidth(struct dirty_throttle_control *gdtc,
1345 struct dirty_throttle_control *mdtc,
Tejun Heo8a731792015-05-22 18:23:20 -04001346 unsigned long start_time,
1347 bool update_ratelimit)
Wu Fengguange98be2d2010-08-29 11:22:30 -06001348{
Tejun Heoc2aa7232015-05-22 18:23:35 -04001349 struct bdi_writeback *wb = gdtc->wb;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001350 unsigned long now = jiffies;
Tejun Heoa88a3412015-05-22 17:13:28 -04001351 unsigned long elapsed = now - wb->bw_time_stamp;
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001352 unsigned long dirtied;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001353 unsigned long written;
1354
Tejun Heo8a731792015-05-22 18:23:20 -04001355 lockdep_assert_held(&wb->list_lock);
1356
Wu Fengguange98be2d2010-08-29 11:22:30 -06001357 /*
1358 * rate-limit, only update once every 200ms.
1359 */
1360 if (elapsed < BANDWIDTH_INTERVAL)
1361 return;
1362
Tejun Heoa88a3412015-05-22 17:13:28 -04001363 dirtied = percpu_counter_read(&wb->stat[WB_DIRTIED]);
1364 written = percpu_counter_read(&wb->stat[WB_WRITTEN]);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001365
1366 /*
1367 * Skip quiet periods when disk bandwidth is under-utilized.
1368 * (at least 1s idle time between two flusher runs)
1369 */
Tejun Heoa88a3412015-05-22 17:13:28 -04001370 if (elapsed > HZ && time_before(wb->bw_time_stamp, start_time))
Wu Fengguange98be2d2010-08-29 11:22:30 -06001371 goto snapshot;
1372
Tejun Heo8a731792015-05-22 18:23:20 -04001373 if (update_ratelimit) {
Tejun Heoc2aa7232015-05-22 18:23:35 -04001374 domain_update_bandwidth(gdtc, now);
1375 wb_update_dirty_ratelimit(gdtc, dirtied, elapsed);
1376
1377 /*
1378 * @mdtc is always NULL if !CGROUP_WRITEBACK but the
1379 * compiler has no way to figure that out. Help it.
1380 */
1381 if (IS_ENABLED(CONFIG_CGROUP_WRITEBACK) && mdtc) {
1382 domain_update_bandwidth(mdtc, now);
1383 wb_update_dirty_ratelimit(mdtc, dirtied, elapsed);
1384 }
Wu Fengguangbe3ffa22011-06-12 10:51:31 -06001385 }
Tejun Heoa88a3412015-05-22 17:13:28 -04001386 wb_update_write_bandwidth(wb, elapsed, written);
Wu Fengguange98be2d2010-08-29 11:22:30 -06001387
1388snapshot:
Tejun Heoa88a3412015-05-22 17:13:28 -04001389 wb->dirtied_stamp = dirtied;
1390 wb->written_stamp = written;
1391 wb->bw_time_stamp = now;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001392}
1393
Tejun Heo8a731792015-05-22 18:23:20 -04001394void wb_update_bandwidth(struct bdi_writeback *wb, unsigned long start_time)
Wu Fengguange98be2d2010-08-29 11:22:30 -06001395{
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001396 struct dirty_throttle_control gdtc = { GDTC_INIT(wb) };
1397
Tejun Heoc2aa7232015-05-22 18:23:35 -04001398 __wb_update_bandwidth(&gdtc, NULL, start_time, false);
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{
Tejun Heoa88a3412015-05-22 17:13:28 -04001421 unsigned long bw = 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{
Tejun Heoa88a3412015-05-22 17:13:28 -04001443 long hi = ilog2(wb->avg_write_bandwidth);
1444 long lo = ilog2(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;
Wu Fengguang143dfe82010-08-27 18:45:12 -06001569 unsigned long nr_reclaimable; /* = file_dirty + unstable_nfs */
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
Wu Fengguang143dfe82010-08-27 18:45:12 -06001589 /*
1590 * Unstable writes are a feature of certain networked
1591 * filesystems (i.e. NFS) in which data may have been
1592 * written to the server's write cache, but has not yet
1593 * been flushed to permanent storage.
1594 */
Mel Gorman11fb9982016-07-28 15:46:20 -07001595 nr_reclaimable = global_node_page_state(NR_FILE_DIRTY) +
1596 global_node_page_state(NR_UNSTABLE_NFS);
Tejun Heo9fc3a432015-05-22 18:23:30 -04001597 gdtc->avail = global_dirtyable_memory();
Mel Gorman11fb9982016-07-28 15:46:20 -07001598 gdtc->dirty = nr_reclaimable + global_node_page_state(NR_WRITEBACK);
Peter Zijlstra5fce25a2007-11-14 16:59:15 -08001599
Tejun Heo9fc3a432015-05-22 18:23:30 -04001600 domain_dirty_limits(gdtc);
Wu Fengguang16c40422010-08-11 14:17:39 -07001601
Maxim Patlasov5a537482013-09-11 14:22:46 -07001602 if (unlikely(strictlimit)) {
Tejun Heo970fb012015-05-22 18:23:24 -04001603 wb_dirty_limits(gdtc);
Maxim Patlasov5a537482013-09-11 14:22:46 -07001604
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001605 dirty = gdtc->wb_dirty;
1606 thresh = gdtc->wb_thresh;
Tejun Heo970fb012015-05-22 18:23:24 -04001607 bg_thresh = gdtc->wb_bg_thresh;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001608 } else {
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001609 dirty = gdtc->dirty;
1610 thresh = gdtc->thresh;
1611 bg_thresh = gdtc->bg_thresh;
Maxim Patlasov5a537482013-09-11 14:22:46 -07001612 }
1613
Tejun Heoc2aa7232015-05-22 18:23:35 -04001614 if (mdtc) {
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001615 unsigned long filepages, headroom, writeback;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001616
1617 /*
1618 * If @wb belongs to !root memcg, repeat the same
1619 * basic calculations for the memcg domain.
1620 */
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001621 mem_cgroup_wb_stats(wb, &filepages, &headroom,
1622 &mdtc->dirty, &writeback);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001623 mdtc->dirty += writeback;
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001624 mdtc_calc_avail(mdtc, filepages, headroom);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001625
1626 domain_dirty_limits(mdtc);
1627
1628 if (unlikely(strictlimit)) {
1629 wb_dirty_limits(mdtc);
1630 m_dirty = mdtc->wb_dirty;
1631 m_thresh = mdtc->wb_thresh;
1632 m_bg_thresh = mdtc->wb_bg_thresh;
1633 } else {
1634 m_dirty = mdtc->dirty;
1635 m_thresh = mdtc->thresh;
1636 m_bg_thresh = mdtc->bg_thresh;
1637 }
Wu Fengguang16c40422010-08-11 14:17:39 -07001638 }
1639
1640 /*
1641 * Throttle it only when the background writeback cannot
1642 * catch-up. This avoids (excessively) small writeouts
Tejun Heode1fff32015-05-22 17:13:29 -04001643 * when the wb limits are ramping up in case of !strictlimit.
Maxim Patlasov5a537482013-09-11 14:22:46 -07001644 *
Tejun Heode1fff32015-05-22 17:13:29 -04001645 * In strictlimit case make decision based on the wb counters
1646 * and limits. Small writeouts when the wb limits are ramping
Maxim Patlasov5a537482013-09-11 14:22:46 -07001647 * up are the price we consciously pay for strictlimit-ing.
Tejun Heoc2aa7232015-05-22 18:23:35 -04001648 *
1649 * If memcg domain is in effect, @dirty should be under
1650 * both global and memcg freerun ceilings.
Wu Fengguang16c40422010-08-11 14:17:39 -07001651 */
Tejun Heoc2aa7232015-05-22 18:23:35 -04001652 if (dirty <= dirty_freerun_ceiling(thresh, bg_thresh) &&
1653 (!mdtc ||
1654 m_dirty <= dirty_freerun_ceiling(m_thresh, m_bg_thresh))) {
NeilBrowna37b0712020-06-01 21:48:18 -07001655 unsigned long intv;
1656 unsigned long m_intv;
1657
1658free_running:
1659 intv = dirty_poll_interval(dirty, thresh);
1660 m_intv = ULONG_MAX;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001661
Wu Fengguang83712352011-06-11 19:25:42 -06001662 current->dirty_paused_when = now;
1663 current->nr_dirtied = 0;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001664 if (mdtc)
1665 m_intv = dirty_poll_interval(m_dirty, m_thresh);
1666 current->nr_dirtied_pause = min(intv, m_intv);
Wu Fengguang16c40422010-08-11 14:17:39 -07001667 break;
Wu Fengguang83712352011-06-11 19:25:42 -06001668 }
Wu Fengguang16c40422010-08-11 14:17:39 -07001669
Tejun Heobc058732015-05-22 17:13:53 -04001670 if (unlikely(!writeback_in_progress(wb)))
Tejun Heo9ecf48662015-05-22 17:13:54 -04001671 wb_start_background_writeback(wb);
Wu Fengguang143dfe82010-08-27 18:45:12 -06001672
Tejun Heo97b27822019-08-26 09:06:56 -07001673 mem_cgroup_flush_foreign(wb);
1674
Tejun Heoc2aa7232015-05-22 18:23:35 -04001675 /*
1676 * Calculate global domain's pos_ratio and select the
1677 * global dtc by default.
1678 */
NeilBrowna37b0712020-06-01 21:48:18 -07001679 if (!strictlimit) {
Tejun Heo970fb012015-05-22 18:23:24 -04001680 wb_dirty_limits(gdtc);
Peter Zijlstra5fce25a2007-11-14 16:59:15 -08001681
NeilBrowna37b0712020-06-01 21:48:18 -07001682 if ((current->flags & PF_LOCAL_THROTTLE) &&
1683 gdtc->wb_dirty <
1684 dirty_freerun_ceiling(gdtc->wb_thresh,
1685 gdtc->wb_bg_thresh))
1686 /*
1687 * LOCAL_THROTTLE tasks must not be throttled
1688 * when below the per-wb freerun ceiling.
1689 */
1690 goto free_running;
1691 }
1692
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001693 dirty_exceeded = (gdtc->wb_dirty > gdtc->wb_thresh) &&
1694 ((gdtc->dirty > gdtc->thresh) || strictlimit);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001695
Tejun Heodaddfa32015-05-22 18:23:26 -04001696 wb_position_ratio(gdtc);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001697 sdtc = gdtc;
Wu Fengguange98be2d2010-08-29 11:22:30 -06001698
Tejun Heoc2aa7232015-05-22 18:23:35 -04001699 if (mdtc) {
1700 /*
1701 * If memcg domain is in effect, calculate its
1702 * pos_ratio. @wb should satisfy constraints from
1703 * both global and memcg domains. Choose the one
1704 * w/ lower pos_ratio.
1705 */
NeilBrowna37b0712020-06-01 21:48:18 -07001706 if (!strictlimit) {
Tejun Heoc2aa7232015-05-22 18:23:35 -04001707 wb_dirty_limits(mdtc);
1708
NeilBrowna37b0712020-06-01 21:48:18 -07001709 if ((current->flags & PF_LOCAL_THROTTLE) &&
1710 mdtc->wb_dirty <
1711 dirty_freerun_ceiling(mdtc->wb_thresh,
1712 mdtc->wb_bg_thresh))
1713 /*
1714 * LOCAL_THROTTLE tasks must not be
1715 * throttled when below the per-wb
1716 * freerun ceiling.
1717 */
1718 goto free_running;
1719 }
Tejun Heoc2aa7232015-05-22 18:23:35 -04001720 dirty_exceeded |= (mdtc->wb_dirty > mdtc->wb_thresh) &&
1721 ((mdtc->dirty > mdtc->thresh) || strictlimit);
1722
1723 wb_position_ratio(mdtc);
1724 if (mdtc->pos_ratio < gdtc->pos_ratio)
1725 sdtc = mdtc;
1726 }
Tejun Heodaddfa32015-05-22 18:23:26 -04001727
Tejun Heoa88a3412015-05-22 17:13:28 -04001728 if (dirty_exceeded && !wb->dirty_exceeded)
1729 wb->dirty_exceeded = 1;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07001730
Tejun Heo8a731792015-05-22 18:23:20 -04001731 if (time_is_before_jiffies(wb->bw_time_stamp +
1732 BANDWIDTH_INTERVAL)) {
1733 spin_lock(&wb->list_lock);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001734 __wb_update_bandwidth(gdtc, mdtc, start_time, true);
Tejun Heo8a731792015-05-22 18:23:20 -04001735 spin_unlock(&wb->list_lock);
1736 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737
Tejun Heoc2aa7232015-05-22 18:23:35 -04001738 /* throttle according to the chosen dtc */
Tejun Heoa88a3412015-05-22 17:13:28 -04001739 dirty_ratelimit = wb->dirty_ratelimit;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001740 task_ratelimit = ((u64)dirty_ratelimit * sdtc->pos_ratio) >>
Wu Fengguang3a73dbb2011-11-07 19:19:28 +08001741 RATELIMIT_CALC_SHIFT;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001742 max_pause = wb_max_pause(wb, sdtc->wb_dirty);
Tejun Heoa88a3412015-05-22 17:13:28 -04001743 min_pause = wb_min_pause(wb, max_pause,
1744 task_ratelimit, dirty_ratelimit,
1745 &nr_dirtied_pause);
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001746
Wu Fengguang3a73dbb2011-11-07 19:19:28 +08001747 if (unlikely(task_ratelimit == 0)) {
Wu Fengguang83712352011-06-11 19:25:42 -06001748 period = max_pause;
Wu Fengguangc8462cc2011-06-11 19:21:43 -06001749 pause = max_pause;
Wu Fengguang143dfe82010-08-27 18:45:12 -06001750 goto pause;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001751 }
Wu Fengguang83712352011-06-11 19:25:42 -06001752 period = HZ * pages_dirtied / task_ratelimit;
1753 pause = period;
1754 if (current->dirty_paused_when)
1755 pause -= now - current->dirty_paused_when;
1756 /*
1757 * For less than 1s think time (ext3/4 may block the dirtier
1758 * for up to 800ms from time to time on 1-HDD; so does xfs,
1759 * however at much less frequency), try to compensate it in
1760 * future periods by updating the virtual time; otherwise just
1761 * do a reset, as it may be a light dirtier.
1762 */
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001763 if (pause < min_pause) {
Tejun Heo5634cc22015-08-18 14:54:56 -07001764 trace_balance_dirty_pages(wb,
Tejun Heoc2aa7232015-05-22 18:23:35 -04001765 sdtc->thresh,
1766 sdtc->bg_thresh,
1767 sdtc->dirty,
1768 sdtc->wb_thresh,
1769 sdtc->wb_dirty,
Wu Fengguangece13ac32010-08-29 23:33:20 -06001770 dirty_ratelimit,
1771 task_ratelimit,
1772 pages_dirtied,
Wu Fengguang83712352011-06-11 19:25:42 -06001773 period,
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001774 min(pause, 0L),
Wu Fengguangece13ac32010-08-29 23:33:20 -06001775 start_time);
Wu Fengguang83712352011-06-11 19:25:42 -06001776 if (pause < -HZ) {
1777 current->dirty_paused_when = now;
1778 current->nr_dirtied = 0;
1779 } else if (period) {
1780 current->dirty_paused_when += period;
1781 current->nr_dirtied = 0;
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001782 } else if (current->nr_dirtied_pause <= pages_dirtied)
1783 current->nr_dirtied_pause += pages_dirtied;
Wu Fengguang57fc9782011-06-11 19:32:32 -06001784 break;
1785 }
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001786 if (unlikely(pause > max_pause)) {
1787 /* for occasional dropped task_ratelimit */
1788 now += min(pause - max_pause, max_pause);
1789 pause = max_pause;
1790 }
Wu Fengguang143dfe82010-08-27 18:45:12 -06001791
1792pause:
Tejun Heo5634cc22015-08-18 14:54:56 -07001793 trace_balance_dirty_pages(wb,
Tejun Heoc2aa7232015-05-22 18:23:35 -04001794 sdtc->thresh,
1795 sdtc->bg_thresh,
1796 sdtc->dirty,
1797 sdtc->wb_thresh,
1798 sdtc->wb_dirty,
Wu Fengguangece13ac32010-08-29 23:33:20 -06001799 dirty_ratelimit,
1800 task_ratelimit,
1801 pages_dirtied,
Wu Fengguang83712352011-06-11 19:25:42 -06001802 period,
Wu Fengguangece13ac32010-08-29 23:33:20 -06001803 pause,
1804 start_time);
Jan Kara499d05e2011-11-16 19:34:48 +08001805 __set_current_state(TASK_KILLABLE);
Jens Axboeb57d74a2016-09-01 10:20:33 -06001806 wb->dirty_sleep = now;
Wu Fengguangd25105e2009-10-09 12:40:42 +02001807 io_schedule_timeout(pause);
Jens Axboe87c6a9b2009-09-17 19:59:14 +02001808
Wu Fengguang83712352011-06-11 19:25:42 -06001809 current->dirty_paused_when = now + pause;
1810 current->nr_dirtied = 0;
Wu Fengguang7ccb9ad2011-11-30 11:08:55 -06001811 current->nr_dirtied_pause = nr_dirtied_pause;
Wu Fengguang83712352011-06-11 19:25:42 -06001812
Wu Fengguangffd1f602011-06-19 22:18:42 -06001813 /*
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001814 * This is typically equal to (dirty < thresh) and can also
1815 * keep "1000+ dd on a slow USB stick" under control.
Wu Fengguangffd1f602011-06-19 22:18:42 -06001816 */
Wu Fengguang1df64712011-11-13 19:47:32 -06001817 if (task_ratelimit)
Wu Fengguangffd1f602011-06-19 22:18:42 -06001818 break;
Jan Kara499d05e2011-11-16 19:34:48 +08001819
Wu Fengguangc5c63432011-12-02 10:21:33 -06001820 /*
1821 * In the case of an unresponding NFS server and the NFS dirty
Tejun Heode1fff32015-05-22 17:13:29 -04001822 * pages exceeds dirty_thresh, give the other good wb's a pipe
Wu Fengguangc5c63432011-12-02 10:21:33 -06001823 * to go through, so that tasks on them still remain responsive.
1824 *
Masahiro Yamada3f8b6fb2017-02-27 14:29:25 -08001825 * In theory 1 page is enough to keep the consumer-producer
Wu Fengguangc5c63432011-12-02 10:21:33 -06001826 * pipe going: the flusher cleans 1 page => the task dirties 1
Tejun Heode1fff32015-05-22 17:13:29 -04001827 * more page. However wb_dirty has accounting errors. So use
Tejun Heo93f78d82015-05-22 17:13:27 -04001828 * the larger and more IO friendly wb_stat_error.
Wu Fengguangc5c63432011-12-02 10:21:33 -06001829 */
Wang Long2bce7742017-11-15 17:39:03 -08001830 if (sdtc->wb_dirty <= wb_stat_error())
Wu Fengguangc5c63432011-12-02 10:21:33 -06001831 break;
1832
Jan Kara499d05e2011-11-16 19:34:48 +08001833 if (fatal_signal_pending(current))
1834 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001835 }
1836
Tejun Heoa88a3412015-05-22 17:13:28 -04001837 if (!dirty_exceeded && wb->dirty_exceeded)
1838 wb->dirty_exceeded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839
Tejun Heobc058732015-05-22 17:13:53 -04001840 if (writeback_in_progress(wb))
Jens Axboe5b0830c2009-09-23 19:37:09 +02001841 return;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842
1843 /*
1844 * In laptop mode, we wait until hitting the higher threshold before
1845 * starting background writeout, and then write out all the way down
1846 * to the lower threshold. So slow writers cause minimal disk activity.
1847 *
1848 * In normal mode, we start background writeout at the lower
1849 * background_thresh, to keep the amount of dirty memory low.
1850 */
Wu Fengguang143dfe82010-08-27 18:45:12 -06001851 if (laptop_mode)
1852 return;
1853
Tejun Heo2bc00ae2015-05-22 18:23:23 -04001854 if (nr_reclaimable > gdtc->bg_thresh)
Tejun Heo9ecf48662015-05-22 17:13:54 -04001855 wb_start_background_writeback(wb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856}
1857
Wu Fengguang9d823e82011-06-11 18:10:12 -06001858static DEFINE_PER_CPU(int, bdp_ratelimits);
Tejun Heo245b2e72009-06-24 15:13:48 +09001859
Wu Fengguang54848d72011-04-05 13:21:19 -06001860/*
1861 * Normal tasks are throttled by
1862 * loop {
1863 * dirty tsk->nr_dirtied_pause pages;
1864 * take a snap in balance_dirty_pages();
1865 * }
1866 * However there is a worst case. If every task exit immediately when dirtied
1867 * (tsk->nr_dirtied_pause - 1) pages, balance_dirty_pages() will never be
1868 * called to throttle the page dirties. The solution is to save the not yet
1869 * throttled page dirties in dirty_throttle_leaks on task exit and charge them
1870 * randomly into the running tasks. This works well for the above worst case,
1871 * as the new task will pick up and accumulate the old task's leaked dirty
1872 * count and eventually get throttled.
1873 */
1874DEFINE_PER_CPU(int, dirty_throttle_leaks) = 0;
1875
Linus Torvalds1da177e2005-04-16 15:20:36 -07001876/**
Namjae Jeond0e1d662012-12-11 16:00:21 -08001877 * balance_dirty_pages_ratelimited - balance dirty memory state
Martin Waitz67be2dd2005-05-01 08:59:26 -07001878 * @mapping: address_space which was dirtied
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 *
1880 * Processes which are dirtying memory should call in here once for each page
1881 * which was newly dirtied. The function will periodically check the system's
1882 * dirty state and will initiate writeback if needed.
1883 *
1884 * On really big machines, get_writeback_state is expensive, so try to avoid
1885 * calling it too often (ratelimiting). But once we're over the dirty memory
1886 * limit we decrease the ratelimiting by a lot, to prevent individual processes
1887 * from overshooting the limit by (ratelimit_pages) each.
1888 */
Namjae Jeond0e1d662012-12-11 16:00:21 -08001889void balance_dirty_pages_ratelimited(struct address_space *mapping)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001890{
Tejun Heodfb8ae52015-05-22 17:13:40 -04001891 struct inode *inode = mapping->host;
1892 struct backing_dev_info *bdi = inode_to_bdi(inode);
1893 struct bdi_writeback *wb = NULL;
Wu Fengguang9d823e82011-06-11 18:10:12 -06001894 int ratelimit;
1895 int *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001896
Wu Fengguang36715ce2011-06-11 17:53:57 -06001897 if (!bdi_cap_account_dirty(bdi))
1898 return;
1899
Tejun Heodfb8ae52015-05-22 17:13:40 -04001900 if (inode_cgwb_enabled(inode))
1901 wb = wb_get_create_current(bdi, GFP_KERNEL);
1902 if (!wb)
1903 wb = &bdi->wb;
1904
Wu Fengguang9d823e82011-06-11 18:10:12 -06001905 ratelimit = current->nr_dirtied_pause;
Tejun Heoa88a3412015-05-22 17:13:28 -04001906 if (wb->dirty_exceeded)
Wu Fengguang9d823e82011-06-11 18:10:12 -06001907 ratelimit = min(ratelimit, 32 >> (PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908
Andrew Mortonfa5a7342006-03-24 03:18:10 -08001909 preempt_disable();
Wu Fengguang9d823e82011-06-11 18:10:12 -06001910 /*
1911 * This prevents one CPU to accumulate too many dirtied pages without
1912 * calling into balance_dirty_pages(), which can happen when there are
1913 * 1000+ tasks, all of them start dirtying pages at exactly the same
1914 * time, hence all honoured too large initial task->nr_dirtied_pause.
1915 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -07001916 p = this_cpu_ptr(&bdp_ratelimits);
Wu Fengguang9d823e82011-06-11 18:10:12 -06001917 if (unlikely(current->nr_dirtied >= ratelimit))
Andrew Mortonfa5a7342006-03-24 03:18:10 -08001918 *p = 0;
Wu Fengguangd3bc1fe2011-04-14 07:52:37 -06001919 else if (unlikely(*p >= ratelimit_pages)) {
1920 *p = 0;
1921 ratelimit = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001922 }
Wu Fengguang54848d72011-04-05 13:21:19 -06001923 /*
1924 * Pick up the dirtied pages by the exited tasks. This avoids lots of
1925 * short-lived tasks (eg. gcc invocations in a kernel build) escaping
1926 * the dirty throttling and livelock other long-run dirtiers.
1927 */
Christoph Lameter7c8e0182014-06-04 16:07:56 -07001928 p = this_cpu_ptr(&dirty_throttle_leaks);
Wu Fengguang54848d72011-04-05 13:21:19 -06001929 if (*p > 0 && current->nr_dirtied < ratelimit) {
Namjae Jeond0e1d662012-12-11 16:00:21 -08001930 unsigned long nr_pages_dirtied;
Wu Fengguang54848d72011-04-05 13:21:19 -06001931 nr_pages_dirtied = min(*p, ratelimit - current->nr_dirtied);
1932 *p -= nr_pages_dirtied;
1933 current->nr_dirtied += nr_pages_dirtied;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001934 }
Andrew Mortonfa5a7342006-03-24 03:18:10 -08001935 preempt_enable();
Wu Fengguang9d823e82011-06-11 18:10:12 -06001936
1937 if (unlikely(current->nr_dirtied >= ratelimit))
Tahsin Erdogan4c578dc2017-11-15 17:33:19 -08001938 balance_dirty_pages(wb, current->nr_dirtied);
Tejun Heodfb8ae52015-05-22 17:13:40 -04001939
1940 wb_put(wb);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001941}
Namjae Jeond0e1d662012-12-11 16:00:21 -08001942EXPORT_SYMBOL(balance_dirty_pages_ratelimited);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001943
Tejun Heoaa661bb2015-05-22 18:23:31 -04001944/**
1945 * wb_over_bg_thresh - does @wb need to be written back?
1946 * @wb: bdi_writeback of interest
1947 *
1948 * Determines whether background writeback should keep writing @wb or it's
Mike Rapoporta862f682019-03-05 15:48:42 -08001949 * clean enough.
1950 *
1951 * Return: %true if writeback should continue.
Tejun Heoaa661bb2015-05-22 18:23:31 -04001952 */
1953bool wb_over_bg_thresh(struct bdi_writeback *wb)
1954{
Tejun Heo947e9762015-05-22 18:23:32 -04001955 struct dirty_throttle_control gdtc_stor = { GDTC_INIT(wb) };
Tejun Heoc2aa7232015-05-22 18:23:35 -04001956 struct dirty_throttle_control mdtc_stor = { MDTC_INIT(wb, &gdtc_stor) };
Tejun Heo947e9762015-05-22 18:23:32 -04001957 struct dirty_throttle_control * const gdtc = &gdtc_stor;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001958 struct dirty_throttle_control * const mdtc = mdtc_valid(&mdtc_stor) ?
1959 &mdtc_stor : NULL;
Tejun Heoaa661bb2015-05-22 18:23:31 -04001960
Tejun Heo947e9762015-05-22 18:23:32 -04001961 /*
1962 * Similar to balance_dirty_pages() but ignores pages being written
1963 * as we're trying to decide whether to put more under writeback.
1964 */
1965 gdtc->avail = global_dirtyable_memory();
Mel Gorman11fb9982016-07-28 15:46:20 -07001966 gdtc->dirty = global_node_page_state(NR_FILE_DIRTY) +
1967 global_node_page_state(NR_UNSTABLE_NFS);
Tejun Heo947e9762015-05-22 18:23:32 -04001968 domain_dirty_limits(gdtc);
Tejun Heoaa661bb2015-05-22 18:23:31 -04001969
Tejun Heo947e9762015-05-22 18:23:32 -04001970 if (gdtc->dirty > gdtc->bg_thresh)
Tejun Heoaa661bb2015-05-22 18:23:31 -04001971 return true;
1972
Howard Cochran74d36942016-03-10 01:12:39 -05001973 if (wb_stat(wb, WB_RECLAIMABLE) >
1974 wb_calc_thresh(gdtc->wb, gdtc->bg_thresh))
Tejun Heoaa661bb2015-05-22 18:23:31 -04001975 return true;
1976
Tejun Heoc2aa7232015-05-22 18:23:35 -04001977 if (mdtc) {
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001978 unsigned long filepages, headroom, writeback;
Tejun Heoc2aa7232015-05-22 18:23:35 -04001979
Tejun Heoc5edf9c2015-09-29 13:04:26 -04001980 mem_cgroup_wb_stats(wb, &filepages, &headroom, &mdtc->dirty,
1981 &writeback);
1982 mdtc_calc_avail(mdtc, filepages, headroom);
Tejun Heoc2aa7232015-05-22 18:23:35 -04001983 domain_dirty_limits(mdtc); /* ditto, ignore writeback */
1984
1985 if (mdtc->dirty > mdtc->bg_thresh)
1986 return true;
1987
Howard Cochran74d36942016-03-10 01:12:39 -05001988 if (wb_stat(wb, WB_RECLAIMABLE) >
1989 wb_calc_thresh(mdtc->wb, mdtc->bg_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,
Alexey Dobriyan8d65af72009-09-23 15:57:19 -07002000 void __user *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
Jens Axboec2c49862010-05-20 09:18:47 +02002021#ifdef CONFIG_BLOCK
Kees Cookbca237a2017-08-28 15:03:41 -07002022void laptop_mode_timer_fn(struct timer_list *t)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002023{
Kees Cookbca237a2017-08-28 15:03:41 -07002024 struct backing_dev_info *backing_dev_info =
2025 from_timer(backing_dev_info, t, laptop_mode_wb_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026
Kees Cookbca237a2017-08-28 15:03:41 -07002027 wakeup_flusher_threads_bdi(backing_dev_info, WB_REASON_LAPTOP_TIMER);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002028}
2029
2030/*
2031 * We've spun up the disk and we're in laptop mode: schedule writeback
2032 * of all dirty data a few seconds from now. If the flush is already scheduled
2033 * then push it back - the user is still using the disk.
2034 */
Matthew Garrett31373d02010-04-06 14:25:14 +02002035void laptop_io_completion(struct backing_dev_info *info)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002036{
Matthew Garrett31373d02010-04-06 14:25:14 +02002037 mod_timer(&info->laptop_mode_wb_timer, jiffies + laptop_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002038}
2039
2040/*
2041 * We're in laptop mode and we've just synced. The sync's writes will have
2042 * caused another writeback to be scheduled by laptop_io_completion.
2043 * Nothing needs to be written back anymore, so we unschedule the writeback.
2044 */
2045void laptop_sync_completion(void)
2046{
Matthew Garrett31373d02010-04-06 14:25:14 +02002047 struct backing_dev_info *bdi;
2048
2049 rcu_read_lock();
2050
2051 list_for_each_entry_rcu(bdi, &bdi_list, bdi_list)
2052 del_timer(&bdi->laptop_mode_wb_timer);
2053
2054 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002055}
Jens Axboec2c49862010-05-20 09:18:47 +02002056#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -07002057
2058/*
2059 * If ratelimit_pages is too high then we can get into dirty-data overload
2060 * if a large number of processes all perform writes at the same time.
2061 * If it is too low then SMP machines will call the (expensive)
2062 * get_writeback_state too often.
2063 *
2064 * Here we set ratelimit_pages to a level which ensures that when all CPUs are
2065 * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory
Wu Fengguang9d823e82011-06-11 18:10:12 -06002066 * thresholds.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 */
2068
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -07002069void writeback_set_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070{
Tejun Heodcc25ae2015-05-22 18:23:22 -04002071 struct wb_domain *dom = &global_wb_domain;
Wu Fengguang9d823e82011-06-11 18:10:12 -06002072 unsigned long background_thresh;
2073 unsigned long dirty_thresh;
Tejun Heodcc25ae2015-05-22 18:23:22 -04002074
Wu Fengguang9d823e82011-06-11 18:10:12 -06002075 global_dirty_limits(&background_thresh, &dirty_thresh);
Tejun Heodcc25ae2015-05-22 18:23:22 -04002076 dom->dirty_limit = dirty_thresh;
Wu Fengguang9d823e82011-06-11 18:10:12 -06002077 ratelimit_pages = dirty_thresh / (num_online_cpus() * 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002078 if (ratelimit_pages < 16)
2079 ratelimit_pages = 16;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002080}
2081
Sebastian Andrzej Siewior1d7ac6a2016-08-18 14:57:20 +02002082static int page_writeback_cpu_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083{
Sebastian Andrzej Siewior1d7ac6a2016-08-18 14:57:20 +02002084 writeback_set_ratelimit();
2085 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002086}
2087
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088/*
Linus Torvaldsdc6e29d2007-01-29 16:37:38 -08002089 * Called early on to tune the page writeback dirty limits.
2090 *
2091 * We used to scale dirty pages according to how total memory
2092 * related to pages that could be allocated for buffers (by
2093 * comparing nr_free_buffer_pages() to vm_total_pages.
2094 *
2095 * However, that was when we used "dirty_ratio" to scale with
2096 * all memory, and we don't do that any more. "dirty_ratio"
2097 * is now applied to total non-HIGHPAGE memory (by subtracting
2098 * totalhigh_pages from vm_total_pages), and as such we can't
2099 * get into the old insane situation any more where we had
2100 * large amounts of dirty pages compared to a small amount of
2101 * non-HIGHMEM memory.
2102 *
2103 * But we might still want to scale the dirty_ratio by how
2104 * much memory the box has..
Linus Torvalds1da177e2005-04-16 15:20:36 -07002105 */
2106void __init page_writeback_init(void)
2107{
Rabin Vincenta50fcb52015-08-06 15:47:14 -07002108 BUG_ON(wb_domain_init(&global_wb_domain, GFP_KERNEL));
2109
Sebastian Andrzej Siewior1d7ac6a2016-08-18 14:57:20 +02002110 cpuhp_setup_state(CPUHP_AP_ONLINE_DYN, "mm/writeback:online",
2111 page_writeback_cpu_online, NULL);
2112 cpuhp_setup_state(CPUHP_MM_WRITEBACK_DEAD, "mm/writeback:dead", NULL,
2113 page_writeback_cpu_online);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114}
2115
David Howells811d7362006-08-29 19:06:09 +01002116/**
Jan Karaf446daae2010-08-09 17:19:12 -07002117 * tag_pages_for_writeback - tag pages to be written by write_cache_pages
2118 * @mapping: address space structure to write
2119 * @start: starting page index
2120 * @end: ending page index (inclusive)
2121 *
2122 * This function scans the page range from @start to @end (inclusive) and tags
2123 * all pages that have DIRTY tag set with a special TOWRITE tag. The idea is
2124 * that write_cache_pages (or whoever calls this function) will then use
2125 * TOWRITE tag to identify pages eligible for writeback. This mechanism is
2126 * used to avoid livelocking of writeback by a process steadily creating new
2127 * dirty pages in the file (thus it is important for this function to be quick
2128 * so that it can tag pages faster than a dirtying process can create them).
2129 */
Jan Karaf446daae2010-08-09 17:19:12 -07002130void tag_pages_for_writeback(struct address_space *mapping,
2131 pgoff_t start, pgoff_t end)
2132{
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002133 XA_STATE(xas, &mapping->i_pages, start);
2134 unsigned int tagged = 0;
2135 void *page;
Jan Karaf446daae2010-08-09 17:19:12 -07002136
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002137 xas_lock_irq(&xas);
2138 xas_for_each_marked(&xas, page, end, PAGECACHE_TAG_DIRTY) {
2139 xas_set_mark(&xas, PAGECACHE_TAG_TOWRITE);
2140 if (++tagged % XA_CHECK_SCHED)
Matthew Wilcox268f42d2016-12-14 15:08:55 -08002141 continue;
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002142
2143 xas_pause(&xas);
2144 xas_unlock_irq(&xas);
Jan Karaf446daae2010-08-09 17:19:12 -07002145 cond_resched();
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002146 xas_lock_irq(&xas);
Matthew Wilcox268f42d2016-12-14 15:08:55 -08002147 }
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002148 xas_unlock_irq(&xas);
Jan Karaf446daae2010-08-09 17:19:12 -07002149}
2150EXPORT_SYMBOL(tag_pages_for_writeback);
2151
2152/**
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002153 * 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 +01002154 * @mapping: address space structure to write
2155 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002156 * @writepage: function called for each page
2157 * @data: data passed to writepage function
David Howells811d7362006-08-29 19:06:09 +01002158 *
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002159 * If a page is already under I/O, write_cache_pages() skips it, even
David Howells811d7362006-08-29 19:06:09 +01002160 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
2161 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
2162 * and msync() need to guarantee that all the data which was dirty at the time
2163 * the call was made get new I/O started against them. If wbc->sync_mode is
2164 * WB_SYNC_ALL then we were called for data integrity and we must wait for
2165 * existing IO to complete.
Jan Karaf446daae2010-08-09 17:19:12 -07002166 *
2167 * To avoid livelocks (when other process dirties new pages), we first tag
2168 * pages which should be written back with TOWRITE tag and only then start
2169 * writing them. For data-integrity sync we have to be careful so that we do
2170 * not miss some pages (e.g., because some other process has cleared TOWRITE
2171 * tag we set). The rule we follow is that TOWRITE tag can be cleared only
2172 * by the process clearing the DIRTY tag (and submitting the page for IO).
Dave Chinner64081362018-10-26 15:09:45 -07002173 *
2174 * To avoid deadlocks between range_cyclic writeback and callers that hold
2175 * pages in PageWriteback to aggregate IO until write_cache_pages() returns,
2176 * we do not loop back to the start of the file. Doing so causes a page
2177 * lock/page writeback access order inversion - we should only ever lock
2178 * multiple pages in ascending page->index order, and looping back to the start
2179 * of the file violates that rule and causes deadlocks.
Mike Rapoporta862f682019-03-05 15:48:42 -08002180 *
2181 * Return: %0 on success, negative error code otherwise
David Howells811d7362006-08-29 19:06:09 +01002182 */
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002183int write_cache_pages(struct address_space *mapping,
2184 struct writeback_control *wbc, writepage_t writepage,
2185 void *data)
David Howells811d7362006-08-29 19:06:09 +01002186{
David Howells811d7362006-08-29 19:06:09 +01002187 int ret = 0;
2188 int done = 0;
Brian Foster3fa750d2018-12-28 00:37:20 -08002189 int error;
David Howells811d7362006-08-29 19:06:09 +01002190 struct pagevec pvec;
2191 int nr_pages;
2192 pgoff_t index;
2193 pgoff_t end; /* Inclusive */
Nick Pigginbd19e012009-01-06 14:39:06 -08002194 pgoff_t done_index;
David Howells811d7362006-08-29 19:06:09 +01002195 int range_whole = 0;
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002196 xa_mark_t tag;
David Howells811d7362006-08-29 19:06:09 +01002197
Mel Gorman86679822017-11-15 17:37:52 -08002198 pagevec_init(&pvec);
David Howells811d7362006-08-29 19:06:09 +01002199 if (wbc->range_cyclic) {
Chao Yu28659cc2020-06-01 21:48:15 -07002200 index = mapping->writeback_index; /* prev offset */
David Howells811d7362006-08-29 19:06:09 +01002201 end = -1;
2202 } else {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002203 index = wbc->range_start >> PAGE_SHIFT;
2204 end = wbc->range_end >> PAGE_SHIFT;
David Howells811d7362006-08-29 19:06:09 +01002205 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
2206 range_whole = 1;
David Howells811d7362006-08-29 19:06:09 +01002207 }
Mauricio Faria de Oliveiracc7b8f62020-04-01 21:04:43 -07002208 if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages) {
Jan Karaf446daae2010-08-09 17:19:12 -07002209 tag_pages_for_writeback(mapping, index, end);
Mauricio Faria de Oliveiracc7b8f62020-04-01 21:04:43 -07002210 tag = PAGECACHE_TAG_TOWRITE;
2211 } else {
2212 tag = PAGECACHE_TAG_DIRTY;
2213 }
Nick Pigginbd19e012009-01-06 14:39:06 -08002214 done_index = index;
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002215 while (!done && (index <= end)) {
2216 int i;
2217
Jan Kara2b9775a2017-11-15 17:35:09 -08002218 nr_pages = pagevec_lookup_range_tag(&pvec, mapping, &index, end,
Jan Kara67fd7072017-11-15 17:35:19 -08002219 tag);
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002220 if (nr_pages == 0)
2221 break;
David Howells811d7362006-08-29 19:06:09 +01002222
David Howells811d7362006-08-29 19:06:09 +01002223 for (i = 0; i < nr_pages; i++) {
2224 struct page *page = pvec.pages[i];
2225
Jun'ichi Nomuracf15b072011-03-22 16:33:40 -07002226 done_index = page->index;
Nick Pigginbd19e012009-01-06 14:39:06 -08002227
David Howells811d7362006-08-29 19:06:09 +01002228 lock_page(page);
2229
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002230 /*
2231 * Page truncated or invalidated. We can freely skip it
2232 * then, even for data integrity operations: the page
2233 * has disappeared concurrently, so there could be no
2234 * real expectation of this data interity operation
2235 * even if there is now a new, dirty page at the same
2236 * pagecache address.
2237 */
David Howells811d7362006-08-29 19:06:09 +01002238 if (unlikely(page->mapping != mapping)) {
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002239continue_unlock:
David Howells811d7362006-08-29 19:06:09 +01002240 unlock_page(page);
2241 continue;
2242 }
2243
Nick Piggin515f4a02009-01-06 14:39:10 -08002244 if (!PageDirty(page)) {
2245 /* someone wrote it for us */
2246 goto continue_unlock;
2247 }
David Howells811d7362006-08-29 19:06:09 +01002248
Nick Piggin515f4a02009-01-06 14:39:10 -08002249 if (PageWriteback(page)) {
2250 if (wbc->sync_mode != WB_SYNC_NONE)
2251 wait_on_page_writeback(page);
2252 else
2253 goto continue_unlock;
2254 }
2255
2256 BUG_ON(PageWriteback(page));
2257 if (!clear_page_dirty_for_io(page))
Nick Piggin5a3d5c92009-01-06 14:39:09 -08002258 goto continue_unlock;
David Howells811d7362006-08-29 19:06:09 +01002259
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002260 trace_wbc_writepage(wbc, inode_to_bdi(mapping->host));
Brian Foster3fa750d2018-12-28 00:37:20 -08002261 error = (*writepage)(page, wbc, data);
2262 if (unlikely(error)) {
2263 /*
2264 * Handle errors according to the type of
2265 * writeback. There's no need to continue for
2266 * background writeback. Just push done_index
2267 * past this page so media errors won't choke
2268 * writeout for the entire file. For integrity
2269 * writeback, we must process the entire dirty
2270 * set regardless of errors because the fs may
2271 * still have state to clear for each page. In
2272 * that case we continue processing and return
2273 * the first error.
2274 */
2275 if (error == AOP_WRITEPAGE_ACTIVATE) {
Nick Piggin00266772009-01-06 14:39:06 -08002276 unlock_page(page);
Brian Foster3fa750d2018-12-28 00:37:20 -08002277 error = 0;
2278 } else if (wbc->sync_mode != WB_SYNC_ALL) {
2279 ret = error;
Jun'ichi Nomuracf15b072011-03-22 16:33:40 -07002280 done_index = page->index + 1;
Nick Piggin00266772009-01-06 14:39:06 -08002281 done = 1;
2282 break;
2283 }
Brian Foster3fa750d2018-12-28 00:37:20 -08002284 if (!ret)
2285 ret = error;
Dave Chinner0b564922010-06-09 10:37:18 +10002286 }
David Howells811d7362006-08-29 19:06:09 +01002287
Dave Chinner546a1922010-08-24 11:44:34 +10002288 /*
2289 * We stop writing back only if we are not doing
2290 * integrity sync. In case of integrity sync we have to
2291 * keep going until we have written all the pages
2292 * we tagged for writeback prior to entering this loop.
2293 */
2294 if (--wbc->nr_to_write <= 0 &&
2295 wbc->sync_mode == WB_SYNC_NONE) {
2296 done = 1;
2297 break;
Nick Piggin05fe4782009-01-06 14:39:08 -08002298 }
David Howells811d7362006-08-29 19:06:09 +01002299 }
2300 pagevec_release(&pvec);
2301 cond_resched();
2302 }
Dave Chinner64081362018-10-26 15:09:45 -07002303
2304 /*
2305 * If we hit the last page and there is more work to be done: wrap
2306 * back the index back to the start of the file for the next
2307 * time we are called.
2308 */
2309 if (wbc->range_cyclic && !done)
2310 done_index = 0;
Dave Chinner0b564922010-06-09 10:37:18 +10002311 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
2312 mapping->writeback_index = done_index;
Aneesh Kumar K.V06d6cf62008-07-11 19:27:31 -04002313
David Howells811d7362006-08-29 19:06:09 +01002314 return ret;
2315}
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002316EXPORT_SYMBOL(write_cache_pages);
2317
2318/*
2319 * Function used by generic_writepages to call the real writepage
2320 * function and set the mapping flags on error
2321 */
2322static int __writepage(struct page *page, struct writeback_control *wbc,
2323 void *data)
2324{
2325 struct address_space *mapping = data;
2326 int ret = mapping->a_ops->writepage(page, wbc);
2327 mapping_set_error(mapping, ret);
2328 return ret;
2329}
2330
2331/**
2332 * generic_writepages - walk the list of dirty pages of the given address space and writepage() all of them.
2333 * @mapping: address space structure to write
2334 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
2335 *
2336 * This is a library function, which implements the writepages()
2337 * address_space_operation.
Mike Rapoporta862f682019-03-05 15:48:42 -08002338 *
2339 * Return: %0 on success, negative error code otherwise
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002340 */
2341int generic_writepages(struct address_space *mapping,
2342 struct writeback_control *wbc)
2343{
Shaohua Li9b6096a2011-03-17 10:47:06 +01002344 struct blk_plug plug;
2345 int ret;
2346
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002347 /* deal with chardevs and other special file */
2348 if (!mapping->a_ops->writepage)
2349 return 0;
2350
Shaohua Li9b6096a2011-03-17 10:47:06 +01002351 blk_start_plug(&plug);
2352 ret = write_cache_pages(mapping, wbc, __writepage, mapping);
2353 blk_finish_plug(&plug);
2354 return ret;
Miklos Szeredi0ea97182007-05-10 22:22:51 -07002355}
David Howells811d7362006-08-29 19:06:09 +01002356
2357EXPORT_SYMBOL(generic_writepages);
2358
Linus Torvalds1da177e2005-04-16 15:20:36 -07002359int do_writepages(struct address_space *mapping, struct writeback_control *wbc)
2360{
Andrew Morton22905f72005-11-16 15:07:01 -08002361 int ret;
2362
Linus Torvalds1da177e2005-04-16 15:20:36 -07002363 if (wbc->nr_to_write <= 0)
2364 return 0;
Theodore Ts'o80a2ea92017-04-28 09:51:54 -04002365 while (1) {
2366 if (mapping->a_ops->writepages)
2367 ret = mapping->a_ops->writepages(mapping, wbc);
2368 else
2369 ret = generic_writepages(mapping, wbc);
2370 if ((ret != -ENOMEM) || (wbc->sync_mode != WB_SYNC_ALL))
2371 break;
2372 cond_resched();
2373 congestion_wait(BLK_RW_ASYNC, HZ/50);
2374 }
Andrew Morton22905f72005-11-16 15:07:01 -08002375 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002376}
2377
2378/**
Jeff Layton2b69c822017-07-05 15:26:48 -04002379 * write_one_page - write out a single page and wait on I/O
Martin Waitz67be2dd2005-05-01 08:59:26 -07002380 * @page: the page to write
Linus Torvalds1da177e2005-04-16 15:20:36 -07002381 *
2382 * The page must be locked by the caller and will be unlocked upon return.
2383 *
Jeff Layton37e51a72017-07-05 15:17:19 -04002384 * Note that the mapping's AS_EIO/AS_ENOSPC flags will be cleared when this
2385 * function returns.
Mike Rapoporta862f682019-03-05 15:48:42 -08002386 *
2387 * Return: %0 on success, negative error code otherwise
Linus Torvalds1da177e2005-04-16 15:20:36 -07002388 */
Jeff Layton2b69c822017-07-05 15:26:48 -04002389int write_one_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390{
2391 struct address_space *mapping = page->mapping;
2392 int ret = 0;
2393 struct writeback_control wbc = {
2394 .sync_mode = WB_SYNC_ALL,
2395 .nr_to_write = 1,
2396 };
2397
2398 BUG_ON(!PageLocked(page));
2399
Jeff Layton2b69c822017-07-05 15:26:48 -04002400 wait_on_page_writeback(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401
2402 if (clear_page_dirty_for_io(page)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002403 get_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002404 ret = mapping->a_ops->writepage(page, &wbc);
Jeff Layton37e51a72017-07-05 15:17:19 -04002405 if (ret == 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002406 wait_on_page_writeback(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002407 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002408 } else {
2409 unlock_page(page);
2410 }
Jeff Layton37e51a72017-07-05 15:17:19 -04002411
2412 if (!ret)
2413 ret = filemap_check_errors(mapping);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002414 return ret;
2415}
2416EXPORT_SYMBOL(write_one_page);
2417
2418/*
Ken Chen76719322007-02-10 01:43:15 -08002419 * For address_spaces which do not use buffers nor write back.
2420 */
2421int __set_page_dirty_no_writeback(struct page *page)
2422{
2423 if (!PageDirty(page))
Bob Liuc3f0da62011-01-13 15:45:49 -08002424 return !TestSetPageDirty(page);
Ken Chen76719322007-02-10 01:43:15 -08002425 return 0;
2426}
2427
2428/*
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002429 * Helper function for set_page_dirty family.
Greg Thelenc4843a72015-05-22 17:13:16 -04002430 *
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07002431 * Caller must hold lock_page_memcg().
Greg Thelenc4843a72015-05-22 17:13:16 -04002432 *
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002433 * NOTE: This relies on being atomic wrt interrupts.
2434 */
Johannes Weiner62cccb82016-03-15 14:57:22 -07002435void account_page_dirtied(struct page *page, struct address_space *mapping)
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002436{
Tejun Heo52ebea72015-05-22 17:13:37 -04002437 struct inode *inode = mapping->host;
2438
Tejun Heo9fb0a7d2013-01-11 13:06:37 -08002439 trace_writeback_dirty_page(page, mapping);
2440
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002441 if (mapping_cap_account_dirty(mapping)) {
Tejun Heo52ebea72015-05-22 17:13:37 -04002442 struct bdi_writeback *wb;
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002443
Tejun Heo52ebea72015-05-22 17:13:37 -04002444 inode_attach_wb(inode, page);
2445 wb = inode_to_wb(inode);
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002446
Johannes Weiner00f3ca22017-07-06 15:40:52 -07002447 __inc_lruvec_page_state(page, NR_FILE_DIRTY);
Mel Gorman5a1c84b2016-07-28 15:47:31 -07002448 __inc_zone_page_state(page, NR_ZONE_WRITE_PENDING);
Mel Gormanc4a25632016-07-28 15:46:23 -07002449 __inc_node_page_state(page, NR_DIRTIED);
Nikolay Borisov3e8f3992017-07-12 14:37:51 -07002450 inc_wb_stat(wb, WB_RECLAIMABLE);
2451 inc_wb_stat(wb, WB_DIRTIED);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002452 task_io_account_write(PAGE_SIZE);
Wu Fengguangd3bc1fe2011-04-14 07:52:37 -06002453 current->nr_dirtied++;
2454 this_cpu_inc(bdp_ratelimits);
Tejun Heo97b27822019-08-26 09:06:56 -07002455
2456 mem_cgroup_track_foreign_dirty(page, wb);
Edward Shishkine3a7cca2009-03-31 15:19:39 -07002457 }
2458}
2459
2460/*
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002461 * Helper function for deaccounting dirty page without writeback.
2462 *
Johannes Weiner81f8c3a2016-03-15 14:57:04 -07002463 * Caller must hold lock_page_memcg().
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002464 */
Greg Thelenc4843a72015-05-22 17:13:16 -04002465void account_page_cleaned(struct page *page, struct address_space *mapping,
Johannes Weiner62cccb82016-03-15 14:57:22 -07002466 struct bdi_writeback *wb)
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002467{
2468 if (mapping_cap_account_dirty(mapping)) {
Johannes Weiner00f3ca22017-07-06 15:40:52 -07002469 dec_lruvec_page_state(page, NR_FILE_DIRTY);
Mel Gorman5a1c84b2016-07-28 15:47:31 -07002470 dec_zone_page_state(page, NR_ZONE_WRITE_PENDING);
Tejun Heo682aa8e2015-05-28 14:50:53 -04002471 dec_wb_stat(wb, WB_RECLAIMABLE);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002472 task_io_account_cancelled_write(PAGE_SIZE);
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002473 }
2474}
Konstantin Khlebnikovb9ea2512015-04-14 15:45:27 -07002475
2476/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002477 * For address_spaces which do not use buffers. Just tag the page as dirty in
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002478 * the xarray.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002479 *
2480 * This is also used when a single buffer is being dirtied: we want to set the
2481 * page dirty in that case, but not all the buffers. This is a "bottom-up"
2482 * dirtying, whereas __set_page_dirty_buffers() is a "top-down" dirtying.
2483 *
Johannes Weiner2d6d7f92015-01-08 14:32:18 -08002484 * The caller must ensure this doesn't race with truncation. Most will simply
2485 * hold the page lock, but e.g. zap_pte_range() calls with the page mapped and
2486 * the pte lock held, which also locks out truncation.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002487 */
2488int __set_page_dirty_nobuffers(struct page *page)
2489{
Johannes Weiner62cccb82016-03-15 14:57:22 -07002490 lock_page_memcg(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002491 if (!TestSetPageDirty(page)) {
2492 struct address_space *mapping = page_mapping(page);
KOSAKI Motohiroa85d9df2014-02-06 12:04:24 -08002493 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002494
Greg Thelenc4843a72015-05-22 17:13:16 -04002495 if (!mapping) {
Johannes Weiner62cccb82016-03-15 14:57:22 -07002496 unlock_page_memcg(page);
Andrew Morton8c085402006-12-10 02:19:24 -08002497 return 1;
Greg Thelenc4843a72015-05-22 17:13:16 -04002498 }
Andrew Morton8c085402006-12-10 02:19:24 -08002499
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002500 xa_lock_irqsave(&mapping->i_pages, flags);
Johannes Weiner2d6d7f92015-01-08 14:32:18 -08002501 BUG_ON(page_mapping(page) != mapping);
2502 WARN_ON_ONCE(!PagePrivate(page) && !PageUptodate(page));
Johannes Weiner62cccb82016-03-15 14:57:22 -07002503 account_page_dirtied(page, mapping);
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002504 __xa_set_mark(&mapping->i_pages, page_index(page),
Johannes Weiner2d6d7f92015-01-08 14:32:18 -08002505 PAGECACHE_TAG_DIRTY);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002506 xa_unlock_irqrestore(&mapping->i_pages, flags);
Johannes Weiner62cccb82016-03-15 14:57:22 -07002507 unlock_page_memcg(page);
Greg Thelenc4843a72015-05-22 17:13:16 -04002508
Andrew Morton8c085402006-12-10 02:19:24 -08002509 if (mapping->host) {
2510 /* !PageAnon && !swapper_space */
2511 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002512 }
Andrew Morton4741c9f2006-03-24 03:18:11 -08002513 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002514 }
Johannes Weiner62cccb82016-03-15 14:57:22 -07002515 unlock_page_memcg(page);
Andrew Morton4741c9f2006-03-24 03:18:11 -08002516 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002517}
2518EXPORT_SYMBOL(__set_page_dirty_nobuffers);
2519
2520/*
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002521 * Call this whenever redirtying a page, to de-account the dirty counters
Greg Thelendcfe4df2018-08-17 15:46:47 -07002522 * (NR_DIRTIED, WB_DIRTIED, tsk->nr_dirtied), so that they match the written
2523 * counters (NR_WRITTEN, WB_WRITTEN) in long term. The mismatches will lead to
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002524 * systematic errors in balanced_dirty_ratelimit and the dirty pages position
2525 * control.
2526 */
2527void account_page_redirty(struct page *page)
2528{
2529 struct address_space *mapping = page->mapping;
Tejun Heo91018132015-05-22 17:13:39 -04002530
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002531 if (mapping && mapping_cap_account_dirty(mapping)) {
Tejun Heo682aa8e2015-05-28 14:50:53 -04002532 struct inode *inode = mapping->host;
2533 struct bdi_writeback *wb;
Greg Thelen2e898e42018-04-20 14:55:42 -07002534 struct wb_lock_cookie cookie = {};
Tejun Heo91018132015-05-22 17:13:39 -04002535
Greg Thelen2e898e42018-04-20 14:55:42 -07002536 wb = unlocked_inode_to_wb_begin(inode, &cookie);
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002537 current->nr_dirtied--;
Mel Gormanc4a25632016-07-28 15:46:23 -07002538 dec_node_page_state(page, NR_DIRTIED);
Tejun Heo91018132015-05-22 17:13:39 -04002539 dec_wb_stat(wb, WB_DIRTIED);
Greg Thelen2e898e42018-04-20 14:55:42 -07002540 unlocked_inode_to_wb_end(inode, &cookie);
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002541 }
2542}
2543EXPORT_SYMBOL(account_page_redirty);
2544
2545/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 * When a writepage implementation decides that it doesn't want to write this
2547 * page for some reason, it should redirty the locked page via
2548 * redirty_page_for_writepage() and it should then unlock the page and return 0
2549 */
2550int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page)
2551{
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08002552 int ret;
2553
Linus Torvalds1da177e2005-04-16 15:20:36 -07002554 wbc->pages_skipped++;
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08002555 ret = __set_page_dirty_nobuffers(page);
Wu Fengguang2f800fb2011-08-08 15:22:00 -06002556 account_page_redirty(page);
Konstantin Khebnikov8d386332015-02-11 15:26:55 -08002557 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002558}
2559EXPORT_SYMBOL(redirty_page_for_writepage);
2560
2561/*
Wu Fengguang6746aff2009-09-16 11:50:14 +02002562 * Dirty a page.
2563 *
2564 * For pages with a mapping this should be done under the page lock
2565 * for the benefit of asynchronous memory errors who prefer a consistent
2566 * dirty state. This rule can be broken in some special cases,
2567 * but should be better not to.
2568 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002569 * If the mapping doesn't provide a set_page_dirty a_op, then
2570 * just fall through and assume that it wants buffer_heads.
2571 */
Nick Piggin1cf6e7d2009-02-18 14:48:18 -08002572int set_page_dirty(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002573{
2574 struct address_space *mapping = page_mapping(page);
2575
Kirill A. Shutemov800d8c62016-07-26 15:26:18 -07002576 page = compound_head(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002577 if (likely(mapping)) {
2578 int (*spd)(struct page *) = mapping->a_ops->set_page_dirty;
Minchan Kim278df9f2011-03-22 16:32:54 -07002579 /*
2580 * readahead/lru_deactivate_page could remain
2581 * PG_readahead/PG_reclaim due to race with end_page_writeback
2582 * About readahead, if the page is written, the flags would be
2583 * reset. So no problem.
2584 * About lru_deactivate_page, if the page is redirty, the flag
2585 * will be reset. So no problem. but if the page is used by readahead
2586 * it will confuse readahead and make it restart the size rampup
2587 * process. But it's a trivial problem.
2588 */
Naoya Horiguchia4bb3ec2015-04-15 16:13:17 -07002589 if (PageReclaim(page))
2590 ClearPageReclaim(page);
David Howells93614012006-09-30 20:45:40 +02002591#ifdef CONFIG_BLOCK
2592 if (!spd)
2593 spd = __set_page_dirty_buffers;
2594#endif
2595 return (*spd)(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002596 }
Andrew Morton4741c9f2006-03-24 03:18:11 -08002597 if (!PageDirty(page)) {
2598 if (!TestSetPageDirty(page))
2599 return 1;
2600 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002601 return 0;
2602}
2603EXPORT_SYMBOL(set_page_dirty);
2604
2605/*
2606 * set_page_dirty() is racy if the caller has no reference against
2607 * page->mapping->host, and if the page is unlocked. This is because another
2608 * CPU could truncate the page off the mapping and then free the mapping.
2609 *
2610 * Usually, the page _is_ locked, or the caller is a user-space process which
2611 * holds a reference on the inode by having an open file.
2612 *
2613 * In other cases, the page should be locked before running set_page_dirty().
2614 */
2615int set_page_dirty_lock(struct page *page)
2616{
2617 int ret;
2618
Jens Axboe7eaceac2011-03-10 08:52:07 +01002619 lock_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002620 ret = set_page_dirty(page);
2621 unlock_page(page);
2622 return ret;
2623}
2624EXPORT_SYMBOL(set_page_dirty_lock);
2625
2626/*
Tejun Heo11f81be2015-05-22 17:13:15 -04002627 * This cancels just the dirty bit on the kernel page itself, it does NOT
2628 * actually remove dirty bits on any mmap's that may be around. It also
2629 * leaves the page tagged dirty, so any sync activity will still find it on
2630 * the dirty lists, and in particular, clear_page_dirty_for_io() will still
2631 * look at the dirty bits in the VM.
2632 *
2633 * Doing this should *normally* only ever be done when a page is truncated,
2634 * and is not actually mapped anywhere at all. However, fs/buffer.c does
2635 * this when it notices that somebody has cleaned out all the buffers on a
2636 * page without actually doing it through the VM. Can you say "ext3 is
2637 * horribly ugly"? Thought you could.
2638 */
Jan Kara736304f2017-11-15 17:37:11 -08002639void __cancel_dirty_page(struct page *page)
Tejun Heo11f81be2015-05-22 17:13:15 -04002640{
Greg Thelenc4843a72015-05-22 17:13:16 -04002641 struct address_space *mapping = page_mapping(page);
2642
2643 if (mapping_cap_account_dirty(mapping)) {
Tejun Heo682aa8e2015-05-28 14:50:53 -04002644 struct inode *inode = mapping->host;
2645 struct bdi_writeback *wb;
Greg Thelen2e898e42018-04-20 14:55:42 -07002646 struct wb_lock_cookie cookie = {};
Greg Thelenc4843a72015-05-22 17:13:16 -04002647
Johannes Weiner62cccb82016-03-15 14:57:22 -07002648 lock_page_memcg(page);
Greg Thelen2e898e42018-04-20 14:55:42 -07002649 wb = unlocked_inode_to_wb_begin(inode, &cookie);
Greg Thelenc4843a72015-05-22 17:13:16 -04002650
2651 if (TestClearPageDirty(page))
Johannes Weiner62cccb82016-03-15 14:57:22 -07002652 account_page_cleaned(page, mapping, wb);
Greg Thelenc4843a72015-05-22 17:13:16 -04002653
Greg Thelen2e898e42018-04-20 14:55:42 -07002654 unlocked_inode_to_wb_end(inode, &cookie);
Johannes Weiner62cccb82016-03-15 14:57:22 -07002655 unlock_page_memcg(page);
Greg Thelenc4843a72015-05-22 17:13:16 -04002656 } else {
2657 ClearPageDirty(page);
2658 }
Tejun Heo11f81be2015-05-22 17:13:15 -04002659}
Jan Kara736304f2017-11-15 17:37:11 -08002660EXPORT_SYMBOL(__cancel_dirty_page);
Tejun Heo11f81be2015-05-22 17:13:15 -04002661
2662/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002663 * Clear a page's dirty flag, while caring for dirty memory accounting.
2664 * Returns true if the page was previously dirty.
2665 *
2666 * This is for preparing to put the page under writeout. We leave the page
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002667 * tagged as dirty in the xarray so that a concurrent write-for-sync
Linus Torvalds1da177e2005-04-16 15:20:36 -07002668 * can discover it via a PAGECACHE_TAG_DIRTY walk. The ->writepage
2669 * implementation will run either set_page_writeback() or set_page_dirty(),
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002670 * at which stage we bring the page's dirty flag and xarray dirty tag
Linus Torvalds1da177e2005-04-16 15:20:36 -07002671 * back into sync.
2672 *
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002673 * This incoherency between the page's dirty flag and xarray tag is
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674 * unfortunate, but it only exists while the page is locked.
2675 */
2676int clear_page_dirty_for_io(struct page *page)
2677{
2678 struct address_space *mapping = page_mapping(page);
Greg Thelenc4843a72015-05-22 17:13:16 -04002679 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680
Matthew Wilcox (Oracle)184b4fe2020-04-01 21:05:00 -07002681 VM_BUG_ON_PAGE(!PageLocked(page), page);
Nick Piggin79352892007-07-19 01:47:22 -07002682
Linus Torvalds7658cc22006-12-29 10:00:58 -08002683 if (mapping && mapping_cap_account_dirty(mapping)) {
Tejun Heo682aa8e2015-05-28 14:50:53 -04002684 struct inode *inode = mapping->host;
2685 struct bdi_writeback *wb;
Greg Thelen2e898e42018-04-20 14:55:42 -07002686 struct wb_lock_cookie cookie = {};
Tejun Heo682aa8e2015-05-28 14:50:53 -04002687
Linus Torvalds7658cc22006-12-29 10:00:58 -08002688 /*
2689 * Yes, Virginia, this is indeed insane.
2690 *
2691 * We use this sequence to make sure that
2692 * (a) we account for dirty stats properly
2693 * (b) we tell the low-level filesystem to
2694 * mark the whole page dirty if it was
2695 * dirty in a pagetable. Only to then
2696 * (c) clean the page again and return 1 to
2697 * cause the writeback.
2698 *
2699 * This way we avoid all nasty races with the
2700 * dirty bit in multiple places and clearing
2701 * them concurrently from different threads.
2702 *
2703 * Note! Normally the "set_page_dirty(page)"
2704 * has no effect on the actual dirty bit - since
2705 * that will already usually be set. But we
2706 * need the side effects, and it can help us
2707 * avoid races.
2708 *
2709 * We basically use the page "master dirty bit"
2710 * as a serialization point for all the different
2711 * threads doing their things.
Linus Torvalds7658cc22006-12-29 10:00:58 -08002712 */
2713 if (page_mkclean(page))
2714 set_page_dirty(page);
Nick Piggin79352892007-07-19 01:47:22 -07002715 /*
2716 * We carefully synchronise fault handlers against
2717 * installing a dirty pte and marking the page dirty
Johannes Weiner2d6d7f92015-01-08 14:32:18 -08002718 * at this point. We do this by having them hold the
2719 * page lock while dirtying the page, and pages are
2720 * always locked coming in here, so we get the desired
2721 * exclusion.
Nick Piggin79352892007-07-19 01:47:22 -07002722 */
Greg Thelen2e898e42018-04-20 14:55:42 -07002723 wb = unlocked_inode_to_wb_begin(inode, &cookie);
Linus Torvalds7658cc22006-12-29 10:00:58 -08002724 if (TestClearPageDirty(page)) {
Johannes Weiner00f3ca22017-07-06 15:40:52 -07002725 dec_lruvec_page_state(page, NR_FILE_DIRTY);
Mel Gorman5a1c84b2016-07-28 15:47:31 -07002726 dec_zone_page_state(page, NR_ZONE_WRITE_PENDING);
Tejun Heo682aa8e2015-05-28 14:50:53 -04002727 dec_wb_stat(wb, WB_RECLAIMABLE);
Greg Thelenc4843a72015-05-22 17:13:16 -04002728 ret = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002729 }
Greg Thelen2e898e42018-04-20 14:55:42 -07002730 unlocked_inode_to_wb_end(inode, &cookie);
Greg Thelenc4843a72015-05-22 17:13:16 -04002731 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002732 }
Linus Torvalds7658cc22006-12-29 10:00:58 -08002733 return TestClearPageDirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002734}
Hans Reiser58bb01a2005-11-18 01:10:53 -08002735EXPORT_SYMBOL(clear_page_dirty_for_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736
2737int test_clear_page_writeback(struct page *page)
2738{
2739 struct address_space *mapping = page_mapping(page);
Johannes Weiner739f79f2017-08-18 15:15:48 -07002740 struct mem_cgroup *memcg;
2741 struct lruvec *lruvec;
Johannes Weinerd7365e72014-10-29 14:50:48 -07002742 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002743
Johannes Weiner739f79f2017-08-18 15:15:48 -07002744 memcg = lock_page_memcg(page);
2745 lruvec = mem_cgroup_page_lruvec(page, page_pgdat(page));
Huang Ying371a0962016-10-07 16:59:30 -07002746 if (mapping && mapping_use_writeback_tags(mapping)) {
Tejun Heo91018132015-05-22 17:13:39 -04002747 struct inode *inode = mapping->host;
2748 struct backing_dev_info *bdi = inode_to_bdi(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002749 unsigned long flags;
2750
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002751 xa_lock_irqsave(&mapping->i_pages, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 ret = TestClearPageWriteback(page);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002753 if (ret) {
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002754 __xa_clear_mark(&mapping->i_pages, page_index(page),
Linus Torvalds1da177e2005-04-16 15:20:36 -07002755 PAGECACHE_TAG_WRITEBACK);
Miklos Szeredie4ad08f2008-04-30 00:54:37 -07002756 if (bdi_cap_account_writeback(bdi)) {
Tejun Heo91018132015-05-22 17:13:39 -04002757 struct bdi_writeback *wb = inode_to_wb(inode);
2758
Nikolay Borisov3e8f3992017-07-12 14:37:51 -07002759 dec_wb_stat(wb, WB_WRITEBACK);
Tejun Heo91018132015-05-22 17:13:39 -04002760 __wb_writeout_inc(wb);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07002761 }
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002762 }
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002763
2764 if (mapping->host && !mapping_tagged(mapping,
2765 PAGECACHE_TAG_WRITEBACK))
2766 sb_clear_inode_writeback(mapping->host);
2767
Matthew Wilcoxb93b0162018-04-10 16:36:56 -07002768 xa_unlock_irqrestore(&mapping->i_pages, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 } else {
2770 ret = TestClearPageWriteback(page);
2771 }
Johannes Weiner739f79f2017-08-18 15:15:48 -07002772 /*
2773 * NOTE: Page might be free now! Writeback doesn't hold a page
2774 * reference on its own, it relies on truncation to wait for
2775 * the clearing of PG_writeback. The below can only access
2776 * page state that is static across allocation cycles.
2777 */
Wu Fengguang99b12e32011-07-25 17:12:37 -07002778 if (ret) {
Johannes Weiner739f79f2017-08-18 15:15:48 -07002779 dec_lruvec_state(lruvec, NR_WRITEBACK);
Mel Gorman5a1c84b2016-07-28 15:47:31 -07002780 dec_zone_page_state(page, NR_ZONE_WRITE_PENDING);
Mel Gormanc4a25632016-07-28 15:46:23 -07002781 inc_node_page_state(page, NR_WRITTEN);
Wu Fengguang99b12e32011-07-25 17:12:37 -07002782 }
Johannes Weiner739f79f2017-08-18 15:15:48 -07002783 __unlock_page_memcg(memcg);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002784 return ret;
2785}
2786
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002787int __test_set_page_writeback(struct page *page, bool keep_write)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002788{
2789 struct address_space *mapping = page_mapping(page);
Claudio Imbrendaf28d4362020-04-01 21:05:56 -07002790 int ret, access_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791
Johannes Weiner62cccb82016-03-15 14:57:22 -07002792 lock_page_memcg(page);
Huang Ying371a0962016-10-07 16:59:30 -07002793 if (mapping && mapping_use_writeback_tags(mapping)) {
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002794 XA_STATE(xas, &mapping->i_pages, page_index(page));
Tejun Heo91018132015-05-22 17:13:39 -04002795 struct inode *inode = mapping->host;
2796 struct backing_dev_info *bdi = inode_to_bdi(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002797 unsigned long flags;
2798
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002799 xas_lock_irqsave(&xas, flags);
2800 xas_load(&xas);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002801 ret = TestSetPageWriteback(page);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002802 if (!ret) {
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002803 bool on_wblist;
2804
2805 on_wblist = mapping_tagged(mapping,
2806 PAGECACHE_TAG_WRITEBACK);
2807
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002808 xas_set_mark(&xas, PAGECACHE_TAG_WRITEBACK);
Miklos Szeredie4ad08f2008-04-30 00:54:37 -07002809 if (bdi_cap_account_writeback(bdi))
Nikolay Borisov3e8f3992017-07-12 14:37:51 -07002810 inc_wb_stat(inode_to_wb(inode), WB_WRITEBACK);
Dave Chinner6c60d2b2016-07-26 15:21:50 -07002811
2812 /*
2813 * We can come through here when swapping anonymous
2814 * pages, so we don't necessarily have an inode to track
2815 * for sync.
2816 */
2817 if (mapping->host && !on_wblist)
2818 sb_mark_inode_writeback(mapping->host);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07002819 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002820 if (!PageDirty(page))
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002821 xas_clear_mark(&xas, PAGECACHE_TAG_DIRTY);
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002822 if (!keep_write)
Matthew Wilcoxff9c7452017-11-22 11:41:23 -05002823 xas_clear_mark(&xas, PAGECACHE_TAG_TOWRITE);
2824 xas_unlock_irqrestore(&xas, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002825 } else {
2826 ret = TestSetPageWriteback(page);
2827 }
Johannes Weiner3a3c02e2014-10-29 14:50:46 -07002828 if (!ret) {
Johannes Weiner00f3ca22017-07-06 15:40:52 -07002829 inc_lruvec_page_state(page, NR_WRITEBACK);
Mel Gorman5a1c84b2016-07-28 15:47:31 -07002830 inc_zone_page_state(page, NR_ZONE_WRITE_PENDING);
Johannes Weiner3a3c02e2014-10-29 14:50:46 -07002831 }
Johannes Weiner62cccb82016-03-15 14:57:22 -07002832 unlock_page_memcg(page);
Claudio Imbrendaf28d4362020-04-01 21:05:56 -07002833 access_ret = arch_make_page_accessible(page);
2834 /*
2835 * If writeback has been triggered on a page that cannot be made
2836 * accessible, it is too late to recover here.
2837 */
2838 VM_BUG_ON_PAGE(access_ret != 0, page);
2839
Linus Torvalds1da177e2005-04-16 15:20:36 -07002840 return ret;
2841
2842}
Namjae Jeon1c8349a2014-05-12 08:12:25 -04002843EXPORT_SYMBOL(__test_set_page_writeback);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002844
Yafang Shao19343b52019-05-13 17:23:11 -07002845/*
2846 * Wait for a page to complete writeback
2847 */
2848void wait_on_page_writeback(struct page *page)
2849{
2850 if (PageWriteback(page)) {
2851 trace_wait_on_page_writeback(page, page_mapping(page));
2852 wait_on_page_bit(page, PG_writeback);
2853 }
2854}
2855EXPORT_SYMBOL_GPL(wait_on_page_writeback);
2856
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002857/**
2858 * wait_for_stable_page() - wait for writeback to finish, if necessary.
2859 * @page: The page to wait on.
2860 *
2861 * This function determines if the given page is related to a backing device
2862 * that requires page contents to be held stable during writeback. If so, then
2863 * it will wait for any pending writeback to complete.
2864 */
2865void wait_for_stable_page(struct page *page)
2866{
Christoph Hellwigde1414a2015-01-14 10:42:36 +01002867 if (bdi_cap_stable_pages_required(inode_to_bdi(page->mapping->host)))
2868 wait_on_page_writeback(page);
Darrick J. Wong1d1d1a72013-02-21 16:42:51 -08002869}
2870EXPORT_SYMBOL_GPL(wait_for_stable_page);