blob: a4ca162666c51ffc39c3d3493ce08195c7c68d1f [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
Uwe Zeisbergerf30c2262006-10-03 23:01:26 +02002 * mm/page-writeback.c
Linus Torvalds1da177e2005-04-16 15:20:36 -07003 *
4 * Copyright (C) 2002, Linus Torvalds.
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07005 * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
Linus Torvalds1da177e2005-04-16 15:20:36 -07006 *
7 * Contains functions related to writing back dirty pages at the
8 * address_space level.
9 *
10 * 10Apr2002 akpm@zip.com.au
11 * Initial version
12 */
13
14#include <linux/kernel.h>
15#include <linux/module.h>
16#include <linux/spinlock.h>
17#include <linux/fs.h>
18#include <linux/mm.h>
19#include <linux/swap.h>
20#include <linux/slab.h>
21#include <linux/pagemap.h>
22#include <linux/writeback.h>
23#include <linux/init.h>
24#include <linux/backing-dev.h>
Andrew Morton55e829a2006-12-10 02:19:27 -080025#include <linux/task_io_accounting_ops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/blkdev.h>
27#include <linux/mpage.h>
Peter Zijlstrad08b3852006-09-25 23:30:57 -070028#include <linux/rmap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070029#include <linux/percpu.h>
30#include <linux/notifier.h>
31#include <linux/smp.h>
32#include <linux/sysctl.h>
33#include <linux/cpu.h>
34#include <linux/syscalls.h>
David Howellscf9a2ae2006-08-29 19:05:54 +010035#include <linux/buffer_head.h>
David Howells811d7362006-08-29 19:06:09 +010036#include <linux/pagevec.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
38/*
39 * The maximum number of pages to writeout in a single bdflush/kupdate
Joern Engel1c0eeaf2007-10-16 23:30:44 -070040 * operation. We do this so we don't hold I_SYNC against an inode for
Linus Torvalds1da177e2005-04-16 15:20:36 -070041 * enormous amounts of time, which would block a userspace task which has
42 * been forced to throttle against that inode. Also, the code reevaluates
43 * the dirty each time it has written this many pages.
44 */
45#define MAX_WRITEBACK_PAGES 1024
46
47/*
48 * After a CPU has dirtied this many pages, balance_dirty_pages_ratelimited
49 * will look to see if it needs to force writeback or throttling.
50 */
51static long ratelimit_pages = 32;
52
Linus Torvalds1da177e2005-04-16 15:20:36 -070053/*
54 * When balance_dirty_pages decides that the caller needs to perform some
55 * non-background writeback, this is how many pages it will attempt to write.
56 * It should be somewhat larger than RATELIMIT_PAGES to ensure that reasonably
57 * large amounts of I/O are submitted.
58 */
59static inline long sync_writeback_pages(void)
60{
61 return ratelimit_pages + ratelimit_pages / 2;
62}
63
64/* The following parameters are exported via /proc/sys/vm */
65
66/*
67 * Start background writeback (via pdflush) at this percentage
68 */
Linus Torvalds07db59b2007-04-27 09:10:47 -070069int dirty_background_ratio = 5;
Linus Torvalds1da177e2005-04-16 15:20:36 -070070
71/*
Bron Gondwana195cf4532008-02-04 22:29:20 -080072 * free highmem will not be subtracted from the total free memory
73 * for calculating free ratios if vm_highmem_is_dirtyable is true
74 */
75int vm_highmem_is_dirtyable;
76
77/*
Linus Torvalds1da177e2005-04-16 15:20:36 -070078 * The generator of dirty data starts writeback at this percentage
79 */
Linus Torvalds07db59b2007-04-27 09:10:47 -070080int vm_dirty_ratio = 10;
Linus Torvalds1da177e2005-04-16 15:20:36 -070081
82/*
Coywolf Qi Huntfd5403c2006-04-10 22:54:35 -070083 * The interval between `kupdate'-style writebacks, in jiffies
Linus Torvalds1da177e2005-04-16 15:20:36 -070084 */
Bart Samwelf6ef9432006-03-24 03:15:48 -080085int dirty_writeback_interval = 5 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
87/*
Coywolf Qi Huntfd5403c2006-04-10 22:54:35 -070088 * The longest number of jiffies for which data is allowed to remain dirty
Linus Torvalds1da177e2005-04-16 15:20:36 -070089 */
Bart Samwelf6ef9432006-03-24 03:15:48 -080090int dirty_expire_interval = 30 * HZ;
Linus Torvalds1da177e2005-04-16 15:20:36 -070091
92/*
93 * Flag that makes the machine dump writes/reads and block dirtyings.
94 */
95int block_dump;
96
97/*
Bart Samweled5b43f2006-03-24 03:15:49 -080098 * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
99 * a full sync is triggered after this time elapses without any disk activity.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700100 */
101int laptop_mode;
102
103EXPORT_SYMBOL(laptop_mode);
104
105/* End of sysctl-exported parameters */
106
107
108static void background_writeout(unsigned long _min_pages);
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110/*
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700111 * Scale the writeback cache size proportional to the relative writeout speeds.
112 *
113 * We do this by keeping a floating proportion between BDIs, based on page
114 * writeback completions [end_page_writeback()]. Those devices that write out
115 * pages fastest will get the larger share, while the slower will get a smaller
116 * share.
117 *
118 * We use page writeout completions because we are interested in getting rid of
119 * dirty pages. Having them written out is the primary goal.
120 *
121 * We introduce a concept of time, a period over which we measure these events,
122 * because demand can/will vary over time. The length of this period itself is
123 * measured in page writeback completions.
124 *
125 */
126static struct prop_descriptor vm_completions;
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700127static struct prop_descriptor vm_dirties;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700128
129static unsigned long determine_dirtyable_memory(void);
130
131/*
132 * couple the period to the dirty_ratio:
133 *
134 * period/2 ~ roundup_pow_of_two(dirty limit)
135 */
136static int calc_period_shift(void)
137{
138 unsigned long dirty_total;
139
140 dirty_total = (vm_dirty_ratio * determine_dirtyable_memory()) / 100;
141 return 2 + ilog2(dirty_total - 1);
142}
143
144/*
145 * update the period when the dirty ratio changes.
146 */
147int dirty_ratio_handler(struct ctl_table *table, int write,
148 struct file *filp, void __user *buffer, size_t *lenp,
149 loff_t *ppos)
150{
151 int old_ratio = vm_dirty_ratio;
152 int ret = proc_dointvec_minmax(table, write, filp, buffer, lenp, ppos);
153 if (ret == 0 && write && vm_dirty_ratio != old_ratio) {
154 int shift = calc_period_shift();
155 prop_change_shift(&vm_completions, shift);
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700156 prop_change_shift(&vm_dirties, shift);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700157 }
158 return ret;
159}
160
161/*
162 * Increment the BDI's writeout completion count and the global writeout
163 * completion count. Called from test_clear_page_writeback().
164 */
165static inline void __bdi_writeout_inc(struct backing_dev_info *bdi)
166{
167 __prop_inc_percpu(&vm_completions, &bdi->completions);
168}
169
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700170static inline void task_dirty_inc(struct task_struct *tsk)
171{
172 prop_inc_single(&vm_dirties, &tsk->dirties);
173}
174
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700175/*
176 * Obtain an accurate fraction of the BDI's portion.
177 */
178static void bdi_writeout_fraction(struct backing_dev_info *bdi,
179 long *numerator, long *denominator)
180{
181 if (bdi_cap_writeback_dirty(bdi)) {
182 prop_fraction_percpu(&vm_completions, &bdi->completions,
183 numerator, denominator);
184 } else {
185 *numerator = 0;
186 *denominator = 1;
187 }
188}
189
190/*
191 * Clip the earned share of dirty pages to that which is actually available.
192 * This avoids exceeding the total dirty_limit when the floating averages
193 * fluctuate too quickly.
194 */
195static void
196clip_bdi_dirty_limit(struct backing_dev_info *bdi, long dirty, long *pbdi_dirty)
197{
198 long avail_dirty;
199
200 avail_dirty = dirty -
201 (global_page_state(NR_FILE_DIRTY) +
202 global_page_state(NR_WRITEBACK) +
203 global_page_state(NR_UNSTABLE_NFS));
204
205 if (avail_dirty < 0)
206 avail_dirty = 0;
207
208 avail_dirty += bdi_stat(bdi, BDI_RECLAIMABLE) +
209 bdi_stat(bdi, BDI_WRITEBACK);
210
211 *pbdi_dirty = min(*pbdi_dirty, avail_dirty);
212}
213
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700214static inline void task_dirties_fraction(struct task_struct *tsk,
215 long *numerator, long *denominator)
216{
217 prop_fraction_single(&vm_dirties, &tsk->dirties,
218 numerator, denominator);
219}
220
221/*
222 * scale the dirty limit
223 *
224 * task specific dirty limit:
225 *
226 * dirty -= (dirty/8) * p_{t}
227 */
Adrian Bunkf61eaf92008-02-04 22:29:08 -0800228static void task_dirty_limit(struct task_struct *tsk, long *pdirty)
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700229{
230 long numerator, denominator;
231 long dirty = *pdirty;
232 u64 inv = dirty >> 3;
233
234 task_dirties_fraction(tsk, &numerator, &denominator);
235 inv *= numerator;
236 do_div(inv, denominator);
237
238 dirty -= inv;
239 if (dirty < *pdirty/2)
240 dirty = *pdirty/2;
241
242 *pdirty = dirty;
243}
244
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700245/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700246 * Work out the current dirty-memory clamping and background writeout
247 * thresholds.
248 *
249 * The main aim here is to lower them aggressively if there is a lot of mapped
250 * memory around. To avoid stressing page reclaim with lots of unreclaimable
251 * pages. It is better to clamp down on writers than to start swapping, and
252 * performing lots of scanning.
253 *
254 * We only allow 1/2 of the currently-unmapped memory to be dirtied.
255 *
256 * We don't permit the clamping level to fall below 5% - that is getting rather
257 * excessive.
258 *
259 * We make sure that the background writeout level is below the adjusted
260 * clamping level.
261 */
Christoph Lameter1b424462007-05-06 14:48:59 -0700262
263static unsigned long highmem_dirtyable_memory(unsigned long total)
264{
265#ifdef CONFIG_HIGHMEM
266 int node;
267 unsigned long x = 0;
268
Lee Schermerhorn37b07e42007-10-16 01:25:39 -0700269 for_each_node_state(node, N_HIGH_MEMORY) {
Christoph Lameter1b424462007-05-06 14:48:59 -0700270 struct zone *z =
271 &NODE_DATA(node)->node_zones[ZONE_HIGHMEM];
272
273 x += zone_page_state(z, NR_FREE_PAGES)
274 + zone_page_state(z, NR_INACTIVE)
275 + zone_page_state(z, NR_ACTIVE);
276 }
277 /*
278 * Make sure that the number of highmem pages is never larger
279 * than the number of the total dirtyable memory. This can only
280 * occur in very strange VM situations but we want to make sure
281 * that this does not occur.
282 */
283 return min(x, total);
284#else
285 return 0;
286#endif
287}
288
289static unsigned long determine_dirtyable_memory(void)
290{
291 unsigned long x;
292
293 x = global_page_state(NR_FREE_PAGES)
294 + global_page_state(NR_INACTIVE)
295 + global_page_state(NR_ACTIVE);
Bron Gondwana195cf4532008-02-04 22:29:20 -0800296
297 if (!vm_highmem_is_dirtyable)
298 x -= highmem_dirtyable_memory(x);
299
Christoph Lameter1b424462007-05-06 14:48:59 -0700300 return x + 1; /* Ensure that we never return 0 */
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303static void
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700304get_dirty_limits(long *pbackground, long *pdirty, long *pbdi_dirty,
305 struct backing_dev_info *bdi)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306{
307 int background_ratio; /* Percentages */
308 int dirty_ratio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700309 long background;
310 long dirty;
Christoph Lameter1b424462007-05-06 14:48:59 -0700311 unsigned long available_memory = determine_dirtyable_memory();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700312 struct task_struct *tsk;
313
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314 dirty_ratio = vm_dirty_ratio;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (dirty_ratio < 5)
316 dirty_ratio = 5;
317
318 background_ratio = dirty_background_ratio;
319 if (background_ratio >= dirty_ratio)
320 background_ratio = dirty_ratio / 2;
321
322 background = (background_ratio * available_memory) / 100;
323 dirty = (dirty_ratio * available_memory) / 100;
324 tsk = current;
325 if (tsk->flags & PF_LESS_THROTTLE || rt_task(tsk)) {
326 background += background / 4;
327 dirty += dirty / 4;
328 }
329 *pbackground = background;
330 *pdirty = dirty;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700331
332 if (bdi) {
333 u64 bdi_dirty = dirty;
334 long numerator, denominator;
335
336 /*
337 * Calculate this BDI's share of the dirty ratio.
338 */
339 bdi_writeout_fraction(bdi, &numerator, &denominator);
340
341 bdi_dirty *= numerator;
342 do_div(bdi_dirty, denominator);
343
344 *pbdi_dirty = bdi_dirty;
345 clip_bdi_dirty_limit(bdi, dirty, pbdi_dirty);
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700346 task_dirty_limit(current, pbdi_dirty);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700347 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700348}
349
350/*
351 * balance_dirty_pages() must be called by processes which are generating dirty
352 * data. It looks at the number of dirty pages in the machine and will force
353 * the caller to perform writeback if the system is over `vm_dirty_ratio'.
354 * If we're over `background_thresh' then pdflush is woken to perform some
355 * writeout.
356 */
357static void balance_dirty_pages(struct address_space *mapping)
358{
Peter Zijlstra5fce25a2007-11-14 16:59:15 -0800359 long nr_reclaimable, bdi_nr_reclaimable;
360 long nr_writeback, bdi_nr_writeback;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361 long background_thresh;
362 long dirty_thresh;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700363 long bdi_thresh;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 unsigned long pages_written = 0;
365 unsigned long write_chunk = sync_writeback_pages();
366
367 struct backing_dev_info *bdi = mapping->backing_dev_info;
368
369 for (;;) {
370 struct writeback_control wbc = {
371 .bdi = bdi,
372 .sync_mode = WB_SYNC_NONE,
373 .older_than_this = NULL,
374 .nr_to_write = write_chunk,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700375 .range_cyclic = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700376 };
377
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700378 get_dirty_limits(&background_thresh, &dirty_thresh,
379 &bdi_thresh, bdi);
Peter Zijlstra5fce25a2007-11-14 16:59:15 -0800380
381 nr_reclaimable = global_page_state(NR_FILE_DIRTY) +
382 global_page_state(NR_UNSTABLE_NFS);
383 nr_writeback = global_page_state(NR_WRITEBACK);
384
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700385 bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE);
386 bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK);
Peter Zijlstra5fce25a2007-11-14 16:59:15 -0800387
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700388 if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh)
389 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700390
Peter Zijlstra5fce25a2007-11-14 16:59:15 -0800391 /*
392 * Throttle it only when the background writeback cannot
393 * catch-up. This avoids (excessively) small writeouts
394 * when the bdi limits are ramping up.
395 */
396 if (nr_reclaimable + nr_writeback <
397 (background_thresh + dirty_thresh) / 2)
398 break;
399
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700400 if (!bdi->dirty_exceeded)
401 bdi->dirty_exceeded = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 /* Note: nr_reclaimable denotes nr_dirty + nr_unstable.
404 * Unstable writes are a feature of certain networked
405 * filesystems (i.e. NFS) in which data may have been
406 * written to the server's write cache, but has not yet
407 * been flushed to permanent storage.
408 */
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700409 if (bdi_nr_reclaimable) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 writeback_inodes(&wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 pages_written += write_chunk - wbc.nr_to_write;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700412 get_dirty_limits(&background_thresh, &dirty_thresh,
413 &bdi_thresh, bdi);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700414 }
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700415
416 /*
417 * In order to avoid the stacked BDI deadlock we need
418 * to ensure we accurately count the 'dirty' pages when
419 * the threshold is low.
420 *
421 * Otherwise it would be possible to get thresh+n pages
422 * reported dirty, even though there are thresh-m pages
423 * actually dirty; with m+n sitting in the percpu
424 * deltas.
425 */
426 if (bdi_thresh < 2*bdi_stat_error(bdi)) {
427 bdi_nr_reclaimable = bdi_stat_sum(bdi, BDI_RECLAIMABLE);
428 bdi_nr_writeback = bdi_stat_sum(bdi, BDI_WRITEBACK);
429 } else if (bdi_nr_reclaimable) {
430 bdi_nr_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE);
431 bdi_nr_writeback = bdi_stat(bdi, BDI_WRITEBACK);
432 }
433
434 if (bdi_nr_reclaimable + bdi_nr_writeback <= bdi_thresh)
435 break;
436 if (pages_written >= write_chunk)
437 break; /* We've done our duty */
438
Andrew Morton3fcfab12006-10-19 23:28:16 -0700439 congestion_wait(WRITE, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700440 }
441
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700442 if (bdi_nr_reclaimable + bdi_nr_writeback < bdi_thresh &&
443 bdi->dirty_exceeded)
444 bdi->dirty_exceeded = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700445
446 if (writeback_in_progress(bdi))
447 return; /* pdflush is already working this queue */
448
449 /*
450 * In laptop mode, we wait until hitting the higher threshold before
451 * starting background writeout, and then write out all the way down
452 * to the lower threshold. So slow writers cause minimal disk activity.
453 *
454 * In normal mode, we start background writeout at the lower
455 * background_thresh, to keep the amount of dirty memory low.
456 */
457 if ((laptop_mode && pages_written) ||
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700458 (!laptop_mode && (global_page_state(NR_FILE_DIRTY)
459 + global_page_state(NR_UNSTABLE_NFS)
460 > background_thresh)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 pdflush_operation(background_writeout, 0);
462}
463
Peter Zijlstraa200ee12007-10-08 18:54:37 +0200464void set_page_dirty_balance(struct page *page, int page_mkwrite)
Peter Zijlstraedc79b22006-09-25 23:30:58 -0700465{
Peter Zijlstraa200ee12007-10-08 18:54:37 +0200466 if (set_page_dirty(page) || page_mkwrite) {
Peter Zijlstraedc79b22006-09-25 23:30:58 -0700467 struct address_space *mapping = page_mapping(page);
468
469 if (mapping)
470 balance_dirty_pages_ratelimited(mapping);
471 }
472}
473
Linus Torvalds1da177e2005-04-16 15:20:36 -0700474/**
Andrew Mortonfa5a7342006-03-24 03:18:10 -0800475 * balance_dirty_pages_ratelimited_nr - balance dirty memory state
Martin Waitz67be2dd2005-05-01 08:59:26 -0700476 * @mapping: address_space which was dirtied
Martin Waitza5802902006-04-02 13:59:55 +0200477 * @nr_pages_dirtied: number of pages which the caller has just dirtied
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 *
479 * Processes which are dirtying memory should call in here once for each page
480 * which was newly dirtied. The function will periodically check the system's
481 * dirty state and will initiate writeback if needed.
482 *
483 * On really big machines, get_writeback_state is expensive, so try to avoid
484 * calling it too often (ratelimiting). But once we're over the dirty memory
485 * limit we decrease the ratelimiting by a lot, to prevent individual processes
486 * from overshooting the limit by (ratelimit_pages) each.
487 */
Andrew Mortonfa5a7342006-03-24 03:18:10 -0800488void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
489 unsigned long nr_pages_dirtied)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490{
Andrew Mortonfa5a7342006-03-24 03:18:10 -0800491 static DEFINE_PER_CPU(unsigned long, ratelimits) = 0;
492 unsigned long ratelimit;
493 unsigned long *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494
495 ratelimit = ratelimit_pages;
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700496 if (mapping->backing_dev_info->dirty_exceeded)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 ratelimit = 8;
498
499 /*
500 * Check the rate limiting. Also, we do not want to throttle real-time
501 * tasks in balance_dirty_pages(). Period.
502 */
Andrew Mortonfa5a7342006-03-24 03:18:10 -0800503 preempt_disable();
504 p = &__get_cpu_var(ratelimits);
505 *p += nr_pages_dirtied;
506 if (unlikely(*p >= ratelimit)) {
507 *p = 0;
508 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509 balance_dirty_pages(mapping);
510 return;
511 }
Andrew Mortonfa5a7342006-03-24 03:18:10 -0800512 preempt_enable();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700513}
Andrew Mortonfa5a7342006-03-24 03:18:10 -0800514EXPORT_SYMBOL(balance_dirty_pages_ratelimited_nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700515
Andrew Morton232ea4d2007-02-28 20:13:21 -0800516void throttle_vm_writeout(gfp_t gfp_mask)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700517{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700518 long background_thresh;
519 long dirty_thresh;
520
521 for ( ; ; ) {
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700522 get_dirty_limits(&background_thresh, &dirty_thresh, NULL, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700523
524 /*
525 * Boost the allowable dirty threshold a bit for page
526 * allocators so they don't get DoS'ed by heavy writers
527 */
528 dirty_thresh += dirty_thresh / 10; /* wheeee... */
529
Christoph Lameterc24f21b2006-06-30 01:55:42 -0700530 if (global_page_state(NR_UNSTABLE_NFS) +
531 global_page_state(NR_WRITEBACK) <= dirty_thresh)
532 break;
Andrew Morton3fcfab12006-10-19 23:28:16 -0700533 congestion_wait(WRITE, HZ/10);
Fengguang Wu369f2382007-10-16 23:30:45 -0700534
535 /*
536 * The caller might hold locks which can prevent IO completion
537 * or progress in the filesystem. So we cannot just sit here
538 * waiting for IO to complete.
539 */
540 if ((gfp_mask & (__GFP_FS|__GFP_IO)) != (__GFP_FS|__GFP_IO))
541 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542 }
543}
544
Linus Torvalds1da177e2005-04-16 15:20:36 -0700545/*
546 * writeback at least _min_pages, and keep writing until the amount of dirty
547 * memory is less than the background threshold, or until we're all clean.
548 */
549static void background_writeout(unsigned long _min_pages)
550{
551 long min_pages = _min_pages;
552 struct writeback_control wbc = {
553 .bdi = NULL,
554 .sync_mode = WB_SYNC_NONE,
555 .older_than_this = NULL,
556 .nr_to_write = 0,
557 .nonblocking = 1,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700558 .range_cyclic = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 };
560
561 for ( ; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562 long background_thresh;
563 long dirty_thresh;
564
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700565 get_dirty_limits(&background_thresh, &dirty_thresh, NULL, NULL);
Christoph Lameterc24f21b2006-06-30 01:55:42 -0700566 if (global_page_state(NR_FILE_DIRTY) +
567 global_page_state(NR_UNSTABLE_NFS) < background_thresh
Linus Torvalds1da177e2005-04-16 15:20:36 -0700568 && min_pages <= 0)
569 break;
570 wbc.encountered_congestion = 0;
571 wbc.nr_to_write = MAX_WRITEBACK_PAGES;
572 wbc.pages_skipped = 0;
573 writeback_inodes(&wbc);
574 min_pages -= MAX_WRITEBACK_PAGES - wbc.nr_to_write;
575 if (wbc.nr_to_write > 0 || wbc.pages_skipped > 0) {
576 /* Wrote less than expected */
Linus Torvaldsc23f72c2008-01-14 21:21:29 -0800577 congestion_wait(WRITE, HZ/10);
578 if (!wbc.encountered_congestion)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700579 break;
580 }
581 }
582}
583
584/*
585 * Start writeback of `nr_pages' pages. If `nr_pages' is zero, write back
586 * the whole world. Returns 0 if a pdflush thread was dispatched. Returns
587 * -1 if all pdflush threads were busy.
588 */
Pekka J Enberg687a21c2005-06-28 20:44:55 -0700589int wakeup_pdflush(long nr_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590{
Christoph Lameterc24f21b2006-06-30 01:55:42 -0700591 if (nr_pages == 0)
592 nr_pages = global_page_state(NR_FILE_DIRTY) +
593 global_page_state(NR_UNSTABLE_NFS);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700594 return pdflush_operation(background_writeout, nr_pages);
595}
596
597static void wb_timer_fn(unsigned long unused);
598static void laptop_timer_fn(unsigned long unused);
599
Ingo Molnar8d06afa2005-09-09 13:10:40 -0700600static DEFINE_TIMER(wb_timer, wb_timer_fn, 0, 0);
601static DEFINE_TIMER(laptop_mode_wb_timer, laptop_timer_fn, 0, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700602
603/*
604 * Periodic writeback of "old" data.
605 *
606 * Define "old": the first time one of an inode's pages is dirtied, we mark the
607 * dirtying-time in the inode's address_space. So this periodic writeback code
608 * just walks the superblock inode list, writing back any inodes which are
609 * older than a specific point in time.
610 *
Bart Samwelf6ef9432006-03-24 03:15:48 -0800611 * Try to run once per dirty_writeback_interval. But if a writeback event
612 * takes longer than a dirty_writeback_interval interval, then leave a
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 * one-second gap.
614 *
615 * older_than_this takes precedence over nr_to_write. So we'll only write back
616 * all dirty pages if they are all attached to "old" mappings.
617 */
618static void wb_kupdate(unsigned long arg)
619{
620 unsigned long oldest_jif;
621 unsigned long start_jif;
622 unsigned long next_jif;
623 long nr_to_write;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700624 struct writeback_control wbc = {
625 .bdi = NULL,
626 .sync_mode = WB_SYNC_NONE,
627 .older_than_this = &oldest_jif,
628 .nr_to_write = 0,
629 .nonblocking = 1,
630 .for_kupdate = 1,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700631 .range_cyclic = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700632 };
633
634 sync_supers();
635
Bart Samwelf6ef9432006-03-24 03:15:48 -0800636 oldest_jif = jiffies - dirty_expire_interval;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 start_jif = jiffies;
Bart Samwelf6ef9432006-03-24 03:15:48 -0800638 next_jif = start_jif + dirty_writeback_interval;
Christoph Lameterc24f21b2006-06-30 01:55:42 -0700639 nr_to_write = global_page_state(NR_FILE_DIRTY) +
640 global_page_state(NR_UNSTABLE_NFS) +
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 (inodes_stat.nr_inodes - inodes_stat.nr_unused);
642 while (nr_to_write > 0) {
643 wbc.encountered_congestion = 0;
644 wbc.nr_to_write = MAX_WRITEBACK_PAGES;
645 writeback_inodes(&wbc);
646 if (wbc.nr_to_write > 0) {
Linus Torvaldsc23f72c2008-01-14 21:21:29 -0800647 if (wbc.encountered_congestion)
Andrew Morton3fcfab12006-10-19 23:28:16 -0700648 congestion_wait(WRITE, HZ/10);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 else
650 break; /* All the old data is written */
651 }
652 nr_to_write -= MAX_WRITEBACK_PAGES - wbc.nr_to_write;
653 }
654 if (time_before(next_jif, jiffies + HZ))
655 next_jif = jiffies + HZ;
Bart Samwelf6ef9432006-03-24 03:15:48 -0800656 if (dirty_writeback_interval)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 mod_timer(&wb_timer, next_jif);
658}
659
660/*
661 * sysctl handler for /proc/sys/vm/dirty_writeback_centisecs
662 */
663int dirty_writeback_centisecs_handler(ctl_table *table, int write,
Andrew Morton3e733f02007-07-15 23:41:05 -0700664 struct file *file, void __user *buffer, size_t *length, loff_t *ppos)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665{
Bart Samwelf6ef9432006-03-24 03:15:48 -0800666 proc_dointvec_userhz_jiffies(table, write, file, buffer, length, ppos);
Andrew Morton3e733f02007-07-15 23:41:05 -0700667 if (dirty_writeback_interval)
668 mod_timer(&wb_timer, jiffies + dirty_writeback_interval);
669 else
Linus Torvalds1da177e2005-04-16 15:20:36 -0700670 del_timer(&wb_timer);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 return 0;
672}
673
674static void wb_timer_fn(unsigned long unused)
675{
676 if (pdflush_operation(wb_kupdate, 0) < 0)
677 mod_timer(&wb_timer, jiffies + HZ); /* delay 1 second */
678}
679
680static void laptop_flush(unsigned long unused)
681{
682 sys_sync();
683}
684
685static void laptop_timer_fn(unsigned long unused)
686{
687 pdflush_operation(laptop_flush, 0);
688}
689
690/*
691 * We've spun up the disk and we're in laptop mode: schedule writeback
692 * of all dirty data a few seconds from now. If the flush is already scheduled
693 * then push it back - the user is still using the disk.
694 */
695void laptop_io_completion(void)
696{
Bart Samweled5b43f2006-03-24 03:15:49 -0800697 mod_timer(&laptop_mode_wb_timer, jiffies + laptop_mode);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700698}
699
700/*
701 * We're in laptop mode and we've just synced. The sync's writes will have
702 * caused another writeback to be scheduled by laptop_io_completion.
703 * Nothing needs to be written back anymore, so we unschedule the writeback.
704 */
705void laptop_sync_completion(void)
706{
707 del_timer(&laptop_mode_wb_timer);
708}
709
710/*
711 * If ratelimit_pages is too high then we can get into dirty-data overload
712 * if a large number of processes all perform writes at the same time.
713 * If it is too low then SMP machines will call the (expensive)
714 * get_writeback_state too often.
715 *
716 * Here we set ratelimit_pages to a level which ensures that when all CPUs are
717 * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory
718 * thresholds before writeback cuts in.
719 *
720 * But the limit should not be set too high. Because it also controls the
721 * amount of memory which the balance_dirty_pages() caller has to write back.
722 * If this is too large then the caller will block on the IO queue all the
723 * time. So limit it to four megabytes - the balance_dirty_pages() caller
724 * will write six megabyte chunks, max.
725 */
726
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700727void writeback_set_ratelimit(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Chandra Seetharaman40c99aa2006-09-29 02:01:24 -0700729 ratelimit_pages = vm_total_pages / (num_online_cpus() * 32);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730 if (ratelimit_pages < 16)
731 ratelimit_pages = 16;
732 if (ratelimit_pages * PAGE_CACHE_SIZE > 4096 * 1024)
733 ratelimit_pages = (4096 * 1024) / PAGE_CACHE_SIZE;
734}
735
Chandra Seetharaman26c21432006-06-27 02:54:10 -0700736static int __cpuinit
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737ratelimit_handler(struct notifier_block *self, unsigned long u, void *v)
738{
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700739 writeback_set_ratelimit();
Paul E. McKenneyaa0f0302007-02-10 01:46:37 -0800740 return NOTIFY_DONE;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700741}
742
Chandra Seetharaman74b85f32006-06-27 02:54:09 -0700743static struct notifier_block __cpuinitdata ratelimit_nb = {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 .notifier_call = ratelimit_handler,
745 .next = NULL,
746};
747
748/*
Linus Torvaldsdc6e29d2007-01-29 16:37:38 -0800749 * Called early on to tune the page writeback dirty limits.
750 *
751 * We used to scale dirty pages according to how total memory
752 * related to pages that could be allocated for buffers (by
753 * comparing nr_free_buffer_pages() to vm_total_pages.
754 *
755 * However, that was when we used "dirty_ratio" to scale with
756 * all memory, and we don't do that any more. "dirty_ratio"
757 * is now applied to total non-HIGHPAGE memory (by subtracting
758 * totalhigh_pages from vm_total_pages), and as such we can't
759 * get into the old insane situation any more where we had
760 * large amounts of dirty pages compared to a small amount of
761 * non-HIGHMEM memory.
762 *
763 * But we might still want to scale the dirty_ratio by how
764 * much memory the box has..
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 */
766void __init page_writeback_init(void)
767{
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700768 int shift;
769
Bart Samwelf6ef9432006-03-24 03:15:48 -0800770 mod_timer(&wb_timer, jiffies + dirty_writeback_interval);
Chandra Seetharaman2d1d43f2006-09-29 02:01:25 -0700771 writeback_set_ratelimit();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700772 register_cpu_notifier(&ratelimit_nb);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -0700773
774 shift = calc_period_shift();
775 prop_descriptor_init(&vm_completions, shift);
Peter Zijlstra3e26c142007-10-16 23:25:50 -0700776 prop_descriptor_init(&vm_dirties, shift);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700777}
778
David Howells811d7362006-08-29 19:06:09 +0100779/**
Miklos Szeredi0ea97182007-05-10 22:22:51 -0700780 * 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 +0100781 * @mapping: address space structure to write
782 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
Miklos Szeredi0ea97182007-05-10 22:22:51 -0700783 * @writepage: function called for each page
784 * @data: data passed to writepage function
David Howells811d7362006-08-29 19:06:09 +0100785 *
Miklos Szeredi0ea97182007-05-10 22:22:51 -0700786 * If a page is already under I/O, write_cache_pages() skips it, even
David Howells811d7362006-08-29 19:06:09 +0100787 * if it's dirty. This is desirable behaviour for memory-cleaning writeback,
788 * but it is INCORRECT for data-integrity system calls such as fsync(). fsync()
789 * and msync() need to guarantee that all the data which was dirty at the time
790 * the call was made get new I/O started against them. If wbc->sync_mode is
791 * WB_SYNC_ALL then we were called for data integrity and we must wait for
792 * existing IO to complete.
David Howells811d7362006-08-29 19:06:09 +0100793 */
Miklos Szeredi0ea97182007-05-10 22:22:51 -0700794int write_cache_pages(struct address_space *mapping,
795 struct writeback_control *wbc, writepage_t writepage,
796 void *data)
David Howells811d7362006-08-29 19:06:09 +0100797{
798 struct backing_dev_info *bdi = mapping->backing_dev_info;
799 int ret = 0;
800 int done = 0;
David Howells811d7362006-08-29 19:06:09 +0100801 struct pagevec pvec;
802 int nr_pages;
803 pgoff_t index;
804 pgoff_t end; /* Inclusive */
805 int scanned = 0;
806 int range_whole = 0;
807
808 if (wbc->nonblocking && bdi_write_congested(bdi)) {
809 wbc->encountered_congestion = 1;
810 return 0;
811 }
812
David Howells811d7362006-08-29 19:06:09 +0100813 pagevec_init(&pvec, 0);
814 if (wbc->range_cyclic) {
815 index = mapping->writeback_index; /* Start from prev offset */
816 end = -1;
817 } else {
818 index = wbc->range_start >> PAGE_CACHE_SHIFT;
819 end = wbc->range_end >> PAGE_CACHE_SHIFT;
820 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
821 range_whole = 1;
822 scanned = 1;
823 }
824retry:
825 while (!done && (index <= end) &&
826 (nr_pages = pagevec_lookup_tag(&pvec, mapping, &index,
827 PAGECACHE_TAG_DIRTY,
828 min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1))) {
829 unsigned i;
830
831 scanned = 1;
832 for (i = 0; i < nr_pages; i++) {
833 struct page *page = pvec.pages[i];
834
835 /*
836 * At this point we hold neither mapping->tree_lock nor
837 * lock on the page itself: the page may be truncated or
838 * invalidated (changing page->mapping to NULL), or even
839 * swizzled back from swapper_space to tmpfs file
840 * mapping
841 */
842 lock_page(page);
843
844 if (unlikely(page->mapping != mapping)) {
845 unlock_page(page);
846 continue;
847 }
848
849 if (!wbc->range_cyclic && page->index > end) {
850 done = 1;
851 unlock_page(page);
852 continue;
853 }
854
855 if (wbc->sync_mode != WB_SYNC_NONE)
856 wait_on_page_writeback(page);
857
858 if (PageWriteback(page) ||
859 !clear_page_dirty_for_io(page)) {
860 unlock_page(page);
861 continue;
862 }
863
Miklos Szeredi0ea97182007-05-10 22:22:51 -0700864 ret = (*writepage)(page, wbc, data);
David Howells811d7362006-08-29 19:06:09 +0100865
Andrew Mortone4230032007-10-16 23:26:02 -0700866 if (unlikely(ret == AOP_WRITEPAGE_ACTIVATE)) {
David Howells811d7362006-08-29 19:06:09 +0100867 unlock_page(page);
Andrew Mortone4230032007-10-16 23:26:02 -0700868 ret = 0;
869 }
David Howells811d7362006-08-29 19:06:09 +0100870 if (ret || (--(wbc->nr_to_write) <= 0))
871 done = 1;
872 if (wbc->nonblocking && bdi_write_congested(bdi)) {
873 wbc->encountered_congestion = 1;
874 done = 1;
875 }
876 }
877 pagevec_release(&pvec);
878 cond_resched();
879 }
880 if (!scanned && !done) {
881 /*
882 * We hit the last page and there is more work to be done: wrap
883 * back to the start of the file
884 */
885 scanned = 1;
886 index = 0;
887 goto retry;
888 }
889 if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
890 mapping->writeback_index = index;
891 return ret;
892}
Miklos Szeredi0ea97182007-05-10 22:22:51 -0700893EXPORT_SYMBOL(write_cache_pages);
894
895/*
896 * Function used by generic_writepages to call the real writepage
897 * function and set the mapping flags on error
898 */
899static int __writepage(struct page *page, struct writeback_control *wbc,
900 void *data)
901{
902 struct address_space *mapping = data;
903 int ret = mapping->a_ops->writepage(page, wbc);
904 mapping_set_error(mapping, ret);
905 return ret;
906}
907
908/**
909 * generic_writepages - walk the list of dirty pages of the given address space and writepage() all of them.
910 * @mapping: address space structure to write
911 * @wbc: subtract the number of written pages from *@wbc->nr_to_write
912 *
913 * This is a library function, which implements the writepages()
914 * address_space_operation.
915 */
916int generic_writepages(struct address_space *mapping,
917 struct writeback_control *wbc)
918{
919 /* deal with chardevs and other special file */
920 if (!mapping->a_ops->writepage)
921 return 0;
922
923 return write_cache_pages(mapping, wbc, __writepage, mapping);
924}
David Howells811d7362006-08-29 19:06:09 +0100925
926EXPORT_SYMBOL(generic_writepages);
927
Linus Torvalds1da177e2005-04-16 15:20:36 -0700928int do_writepages(struct address_space *mapping, struct writeback_control *wbc)
929{
Andrew Morton22905f72005-11-16 15:07:01 -0800930 int ret;
931
Linus Torvalds1da177e2005-04-16 15:20:36 -0700932 if (wbc->nr_to_write <= 0)
933 return 0;
Andrew Morton22905f72005-11-16 15:07:01 -0800934 wbc->for_writepages = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700935 if (mapping->a_ops->writepages)
Peter Zijlstrad08b3852006-09-25 23:30:57 -0700936 ret = mapping->a_ops->writepages(mapping, wbc);
Andrew Morton22905f72005-11-16 15:07:01 -0800937 else
938 ret = generic_writepages(mapping, wbc);
939 wbc->for_writepages = 0;
940 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700941}
942
943/**
944 * write_one_page - write out a single page and optionally wait on I/O
Martin Waitz67be2dd2005-05-01 08:59:26 -0700945 * @page: the page to write
946 * @wait: if true, wait on writeout
Linus Torvalds1da177e2005-04-16 15:20:36 -0700947 *
948 * The page must be locked by the caller and will be unlocked upon return.
949 *
950 * write_one_page() returns a negative error code if I/O failed.
951 */
952int write_one_page(struct page *page, int wait)
953{
954 struct address_space *mapping = page->mapping;
955 int ret = 0;
956 struct writeback_control wbc = {
957 .sync_mode = WB_SYNC_ALL,
958 .nr_to_write = 1,
959 };
960
961 BUG_ON(!PageLocked(page));
962
963 if (wait)
964 wait_on_page_writeback(page);
965
966 if (clear_page_dirty_for_io(page)) {
967 page_cache_get(page);
968 ret = mapping->a_ops->writepage(page, &wbc);
969 if (ret == 0 && wait) {
970 wait_on_page_writeback(page);
971 if (PageError(page))
972 ret = -EIO;
973 }
974 page_cache_release(page);
975 } else {
976 unlock_page(page);
977 }
978 return ret;
979}
980EXPORT_SYMBOL(write_one_page);
981
982/*
Ken Chen76719322007-02-10 01:43:15 -0800983 * For address_spaces which do not use buffers nor write back.
984 */
985int __set_page_dirty_no_writeback(struct page *page)
986{
987 if (!PageDirty(page))
988 SetPageDirty(page);
989 return 0;
990}
991
992/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 * For address_spaces which do not use buffers. Just tag the page as dirty in
994 * its radix tree.
995 *
996 * This is also used when a single buffer is being dirtied: we want to set the
997 * page dirty in that case, but not all the buffers. This is a "bottom-up"
998 * dirtying, whereas __set_page_dirty_buffers() is a "top-down" dirtying.
999 *
1000 * Most callers have locked the page, which pins the address_space in memory.
1001 * But zap_pte_range() does not lock the page, however in that case the
1002 * mapping is pinned by the vma's ->vm_file reference.
1003 *
1004 * We take care to handle the case where the page was truncated from the
Simon Arlott183ff222007-10-20 01:27:18 +02001005 * mapping by re-checking page_mapping() inside tree_lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001006 */
1007int __set_page_dirty_nobuffers(struct page *page)
1008{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001009 if (!TestSetPageDirty(page)) {
1010 struct address_space *mapping = page_mapping(page);
1011 struct address_space *mapping2;
1012
Andrew Morton8c085402006-12-10 02:19:24 -08001013 if (!mapping)
1014 return 1;
1015
1016 write_lock_irq(&mapping->tree_lock);
1017 mapping2 = page_mapping(page);
1018 if (mapping2) { /* Race with truncate? */
1019 BUG_ON(mapping2 != mapping);
Nick Piggin787d2212007-07-17 04:03:34 -07001020 WARN_ON_ONCE(!PagePrivate(page) && !PageUptodate(page));
Andrew Morton55e829a2006-12-10 02:19:27 -08001021 if (mapping_cap_account_dirty(mapping)) {
Andrew Morton8c085402006-12-10 02:19:24 -08001022 __inc_zone_page_state(page, NR_FILE_DIRTY);
Peter Zijlstrac9e51e42007-10-16 23:25:47 -07001023 __inc_bdi_stat(mapping->backing_dev_info,
1024 BDI_RECLAIMABLE);
Andrew Morton55e829a2006-12-10 02:19:27 -08001025 task_io_account_write(PAGE_CACHE_SIZE);
1026 }
Andrew Morton8c085402006-12-10 02:19:24 -08001027 radix_tree_tag_set(&mapping->page_tree,
1028 page_index(page), PAGECACHE_TAG_DIRTY);
1029 }
1030 write_unlock_irq(&mapping->tree_lock);
1031 if (mapping->host) {
1032 /* !PageAnon && !swapper_space */
1033 __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001034 }
Andrew Morton4741c9f2006-03-24 03:18:11 -08001035 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 }
Andrew Morton4741c9f2006-03-24 03:18:11 -08001037 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038}
1039EXPORT_SYMBOL(__set_page_dirty_nobuffers);
1040
1041/*
1042 * When a writepage implementation decides that it doesn't want to write this
1043 * page for some reason, it should redirty the locked page via
1044 * redirty_page_for_writepage() and it should then unlock the page and return 0
1045 */
1046int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page)
1047{
1048 wbc->pages_skipped++;
1049 return __set_page_dirty_nobuffers(page);
1050}
1051EXPORT_SYMBOL(redirty_page_for_writepage);
1052
1053/*
1054 * If the mapping doesn't provide a set_page_dirty a_op, then
1055 * just fall through and assume that it wants buffer_heads.
1056 */
Peter Zijlstra3e26c142007-10-16 23:25:50 -07001057static int __set_page_dirty(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058{
1059 struct address_space *mapping = page_mapping(page);
1060
1061 if (likely(mapping)) {
1062 int (*spd)(struct page *) = mapping->a_ops->set_page_dirty;
David Howells93614012006-09-30 20:45:40 +02001063#ifdef CONFIG_BLOCK
1064 if (!spd)
1065 spd = __set_page_dirty_buffers;
1066#endif
1067 return (*spd)(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001068 }
Andrew Morton4741c9f2006-03-24 03:18:11 -08001069 if (!PageDirty(page)) {
1070 if (!TestSetPageDirty(page))
1071 return 1;
1072 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 return 0;
1074}
Peter Zijlstra3e26c142007-10-16 23:25:50 -07001075
Harvey Harrison920c7a52008-02-04 22:29:26 -08001076int set_page_dirty(struct page *page)
Peter Zijlstra3e26c142007-10-16 23:25:50 -07001077{
1078 int ret = __set_page_dirty(page);
1079 if (ret)
1080 task_dirty_inc(current);
1081 return ret;
1082}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083EXPORT_SYMBOL(set_page_dirty);
1084
1085/*
1086 * set_page_dirty() is racy if the caller has no reference against
1087 * page->mapping->host, and if the page is unlocked. This is because another
1088 * CPU could truncate the page off the mapping and then free the mapping.
1089 *
1090 * Usually, the page _is_ locked, or the caller is a user-space process which
1091 * holds a reference on the inode by having an open file.
1092 *
1093 * In other cases, the page should be locked before running set_page_dirty().
1094 */
1095int set_page_dirty_lock(struct page *page)
1096{
1097 int ret;
1098
Nick Piggindb376482006-09-25 23:31:24 -07001099 lock_page_nosync(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 ret = set_page_dirty(page);
1101 unlock_page(page);
1102 return ret;
1103}
1104EXPORT_SYMBOL(set_page_dirty_lock);
1105
1106/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 * Clear a page's dirty flag, while caring for dirty memory accounting.
1108 * Returns true if the page was previously dirty.
1109 *
1110 * This is for preparing to put the page under writeout. We leave the page
1111 * tagged as dirty in the radix tree so that a concurrent write-for-sync
1112 * can discover it via a PAGECACHE_TAG_DIRTY walk. The ->writepage
1113 * implementation will run either set_page_writeback() or set_page_dirty(),
1114 * at which stage we bring the page's dirty flag and radix-tree dirty tag
1115 * back into sync.
1116 *
1117 * This incoherency between the page's dirty flag and radix-tree tag is
1118 * unfortunate, but it only exists while the page is locked.
1119 */
1120int clear_page_dirty_for_io(struct page *page)
1121{
1122 struct address_space *mapping = page_mapping(page);
1123
Nick Piggin79352892007-07-19 01:47:22 -07001124 BUG_ON(!PageLocked(page));
1125
Fengguang Wufe3cba12007-07-19 01:48:07 -07001126 ClearPageReclaim(page);
Linus Torvalds7658cc22006-12-29 10:00:58 -08001127 if (mapping && mapping_cap_account_dirty(mapping)) {
1128 /*
1129 * Yes, Virginia, this is indeed insane.
1130 *
1131 * We use this sequence to make sure that
1132 * (a) we account for dirty stats properly
1133 * (b) we tell the low-level filesystem to
1134 * mark the whole page dirty if it was
1135 * dirty in a pagetable. Only to then
1136 * (c) clean the page again and return 1 to
1137 * cause the writeback.
1138 *
1139 * This way we avoid all nasty races with the
1140 * dirty bit in multiple places and clearing
1141 * them concurrently from different threads.
1142 *
1143 * Note! Normally the "set_page_dirty(page)"
1144 * has no effect on the actual dirty bit - since
1145 * that will already usually be set. But we
1146 * need the side effects, and it can help us
1147 * avoid races.
1148 *
1149 * We basically use the page "master dirty bit"
1150 * as a serialization point for all the different
1151 * threads doing their things.
Linus Torvalds7658cc22006-12-29 10:00:58 -08001152 */
1153 if (page_mkclean(page))
1154 set_page_dirty(page);
Nick Piggin79352892007-07-19 01:47:22 -07001155 /*
1156 * We carefully synchronise fault handlers against
1157 * installing a dirty pte and marking the page dirty
1158 * at this point. We do this by having them hold the
1159 * page lock at some point after installing their
1160 * pte, but before marking the page dirty.
1161 * Pages are always locked coming in here, so we get
1162 * the desired exclusion. See mm/memory.c:do_wp_page()
1163 * for more comments.
1164 */
Linus Torvalds7658cc22006-12-29 10:00:58 -08001165 if (TestClearPageDirty(page)) {
Andrew Morton8c085402006-12-10 02:19:24 -08001166 dec_zone_page_state(page, NR_FILE_DIRTY);
Peter Zijlstrac9e51e42007-10-16 23:25:47 -07001167 dec_bdi_stat(mapping->backing_dev_info,
1168 BDI_RECLAIMABLE);
Linus Torvalds7658cc22006-12-29 10:00:58 -08001169 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001170 }
Linus Torvalds7658cc22006-12-29 10:00:58 -08001171 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 }
Linus Torvalds7658cc22006-12-29 10:00:58 -08001173 return TestClearPageDirty(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001174}
Hans Reiser58bb01a2005-11-18 01:10:53 -08001175EXPORT_SYMBOL(clear_page_dirty_for_io);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176
1177int test_clear_page_writeback(struct page *page)
1178{
1179 struct address_space *mapping = page_mapping(page);
1180 int ret;
1181
1182 if (mapping) {
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001183 struct backing_dev_info *bdi = mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184 unsigned long flags;
1185
1186 write_lock_irqsave(&mapping->tree_lock, flags);
1187 ret = TestClearPageWriteback(page);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001188 if (ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 radix_tree_tag_clear(&mapping->page_tree,
1190 page_index(page),
1191 PAGECACHE_TAG_WRITEBACK);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07001192 if (bdi_cap_writeback_dirty(bdi)) {
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001193 __dec_bdi_stat(bdi, BDI_WRITEBACK);
Peter Zijlstra04fbfdc2007-10-16 23:25:50 -07001194 __bdi_writeout_inc(bdi);
1195 }
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001196 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001197 write_unlock_irqrestore(&mapping->tree_lock, flags);
1198 } else {
1199 ret = TestClearPageWriteback(page);
1200 }
Andrew Mortond688abf2007-07-19 01:49:17 -07001201 if (ret)
1202 dec_zone_page_state(page, NR_WRITEBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 return ret;
1204}
1205
1206int test_set_page_writeback(struct page *page)
1207{
1208 struct address_space *mapping = page_mapping(page);
1209 int ret;
1210
1211 if (mapping) {
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001212 struct backing_dev_info *bdi = mapping->backing_dev_info;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 unsigned long flags;
1214
1215 write_lock_irqsave(&mapping->tree_lock, flags);
1216 ret = TestSetPageWriteback(page);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001217 if (!ret) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 radix_tree_tag_set(&mapping->page_tree,
1219 page_index(page),
1220 PAGECACHE_TAG_WRITEBACK);
Peter Zijlstra69cb51d2007-10-16 23:25:48 -07001221 if (bdi_cap_writeback_dirty(bdi))
1222 __inc_bdi_stat(bdi, BDI_WRITEBACK);
1223 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001224 if (!PageDirty(page))
1225 radix_tree_tag_clear(&mapping->page_tree,
1226 page_index(page),
1227 PAGECACHE_TAG_DIRTY);
1228 write_unlock_irqrestore(&mapping->tree_lock, flags);
1229 } else {
1230 ret = TestSetPageWriteback(page);
1231 }
Andrew Mortond688abf2007-07-19 01:49:17 -07001232 if (!ret)
1233 inc_zone_page_state(page, NR_WRITEBACK);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001234 return ret;
1235
1236}
1237EXPORT_SYMBOL(test_set_page_writeback);
1238
1239/*
Nick Piggin00128182007-10-16 01:24:40 -07001240 * Return true if any of the pages in the mapping are marked with the
Linus Torvalds1da177e2005-04-16 15:20:36 -07001241 * passed tag.
1242 */
1243int mapping_tagged(struct address_space *mapping, int tag)
1244{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 int ret;
Nick Piggin00128182007-10-16 01:24:40 -07001246 rcu_read_lock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 ret = radix_tree_tagged(&mapping->page_tree, tag);
Nick Piggin00128182007-10-16 01:24:40 -07001248 rcu_read_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001249 return ret;
1250}
1251EXPORT_SYMBOL(mapping_tagged);