writeback: use |1 instead of +1 to protect against div by zero
[pandora-kernel.git] / mm / page-writeback.c
1 /*
2  * mm/page-writeback.c
3  *
4  * Copyright (C) 2002, Linus Torvalds.
5  * Copyright (C) 2007 Red Hat, Inc., Peter Zijlstra <pzijlstr@redhat.com>
6  *
7  * Contains functions related to writing back dirty pages at the
8  * address_space level.
9  *
10  * 10Apr2002    Andrew Morton
11  *              Initial version
12  */
13
14 #include <linux/kernel.h>
15 #include <linux/export.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>
25 #include <linux/task_io_accounting_ops.h>
26 #include <linux/blkdev.h>
27 #include <linux/mpage.h>
28 #include <linux/rmap.h>
29 #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>
35 #include <linux/buffer_head.h>
36 #include <linux/pagevec.h>
37 #include <trace/events/writeback.h>
38
39 /*
40  * Sleep at most 200ms at a time in balance_dirty_pages().
41  */
42 #define MAX_PAUSE               max(HZ/5, 1)
43
44 /*
45  * Estimate write bandwidth at 200ms intervals.
46  */
47 #define BANDWIDTH_INTERVAL      max(HZ/5, 1)
48
49 #define RATELIMIT_CALC_SHIFT    10
50
51 /*
52  * After a CPU has dirtied this many pages, balance_dirty_pages_ratelimited
53  * will look to see if it needs to force writeback or throttling.
54  */
55 static long ratelimit_pages = 32;
56
57 /* The following parameters are exported via /proc/sys/vm */
58
59 /*
60  * Start background writeback (via writeback threads) at this percentage
61  */
62 int dirty_background_ratio = 10;
63
64 /*
65  * dirty_background_bytes starts at 0 (disabled) so that it is a function of
66  * dirty_background_ratio * the amount of dirtyable memory
67  */
68 unsigned long dirty_background_bytes;
69
70 /*
71  * free highmem will not be subtracted from the total free memory
72  * for calculating free ratios if vm_highmem_is_dirtyable is true
73  */
74 int vm_highmem_is_dirtyable;
75
76 /*
77  * The generator of dirty data starts writeback at this percentage
78  */
79 int vm_dirty_ratio = 20;
80
81 /*
82  * vm_dirty_bytes starts at 0 (disabled) so that it is a function of
83  * vm_dirty_ratio * the amount of dirtyable memory
84  */
85 unsigned long vm_dirty_bytes;
86
87 /*
88  * The interval between `kupdate'-style writebacks
89  */
90 unsigned int dirty_writeback_interval = 5 * 100; /* centiseconds */
91
92 /*
93  * The longest time for which data is allowed to remain dirty
94  */
95 unsigned int dirty_expire_interval = 30 * 100; /* centiseconds */
96
97 /*
98  * Flag that makes the machine dump writes/reads and block dirtyings.
99  */
100 int block_dump;
101
102 /*
103  * Flag that puts the machine in "laptop mode". Doubles as a timeout in jiffies:
104  * a full sync is triggered after this time elapses without any disk activity.
105  */
106 int laptop_mode;
107
108 EXPORT_SYMBOL(laptop_mode);
109
110 /* End of sysctl-exported parameters */
111
112 unsigned long global_dirty_limit;
113
114 /*
115  * Scale the writeback cache size proportional to the relative writeout speeds.
116  *
117  * We do this by keeping a floating proportion between BDIs, based on page
118  * writeback completions [end_page_writeback()]. Those devices that write out
119  * pages fastest will get the larger share, while the slower will get a smaller
120  * share.
121  *
122  * We use page writeout completions because we are interested in getting rid of
123  * dirty pages. Having them written out is the primary goal.
124  *
125  * We introduce a concept of time, a period over which we measure these events,
126  * because demand can/will vary over time. The length of this period itself is
127  * measured in page writeback completions.
128  *
129  */
130 static struct prop_descriptor vm_completions;
131
132 /*
133  * couple the period to the dirty_ratio:
134  *
135  *   period/2 ~ roundup_pow_of_two(dirty limit)
136  */
137 static int calc_period_shift(void)
138 {
139         unsigned long dirty_total;
140
141         if (vm_dirty_bytes)
142                 dirty_total = vm_dirty_bytes / PAGE_SIZE;
143         else
144                 dirty_total = (vm_dirty_ratio * determine_dirtyable_memory()) /
145                                 100;
146         return 2 + ilog2(dirty_total - 1);
147 }
148
149 /*
150  * update the period when the dirty threshold changes.
151  */
152 static void update_completion_period(void)
153 {
154         int shift = calc_period_shift();
155         prop_change_shift(&vm_completions, shift);
156
157         writeback_set_ratelimit();
158 }
159
160 int dirty_background_ratio_handler(struct ctl_table *table, int write,
161                 void __user *buffer, size_t *lenp,
162                 loff_t *ppos)
163 {
164         int ret;
165
166         ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
167         if (ret == 0 && write)
168                 dirty_background_bytes = 0;
169         return ret;
170 }
171
172 int dirty_background_bytes_handler(struct ctl_table *table, int write,
173                 void __user *buffer, size_t *lenp,
174                 loff_t *ppos)
175 {
176         int ret;
177
178         ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
179         if (ret == 0 && write)
180                 dirty_background_ratio = 0;
181         return ret;
182 }
183
184 int dirty_ratio_handler(struct ctl_table *table, int write,
185                 void __user *buffer, size_t *lenp,
186                 loff_t *ppos)
187 {
188         int old_ratio = vm_dirty_ratio;
189         int ret;
190
191         ret = proc_dointvec_minmax(table, write, buffer, lenp, ppos);
192         if (ret == 0 && write && vm_dirty_ratio != old_ratio) {
193                 update_completion_period();
194                 vm_dirty_bytes = 0;
195         }
196         return ret;
197 }
198
199
200 int dirty_bytes_handler(struct ctl_table *table, int write,
201                 void __user *buffer, size_t *lenp,
202                 loff_t *ppos)
203 {
204         unsigned long old_bytes = vm_dirty_bytes;
205         int ret;
206
207         ret = proc_doulongvec_minmax(table, write, buffer, lenp, ppos);
208         if (ret == 0 && write && vm_dirty_bytes != old_bytes) {
209                 update_completion_period();
210                 vm_dirty_ratio = 0;
211         }
212         return ret;
213 }
214
215 /*
216  * Increment the BDI's writeout completion count and the global writeout
217  * completion count. Called from test_clear_page_writeback().
218  */
219 static inline void __bdi_writeout_inc(struct backing_dev_info *bdi)
220 {
221         __inc_bdi_stat(bdi, BDI_WRITTEN);
222         __prop_inc_percpu_max(&vm_completions, &bdi->completions,
223                               bdi->max_prop_frac);
224 }
225
226 void bdi_writeout_inc(struct backing_dev_info *bdi)
227 {
228         unsigned long flags;
229
230         local_irq_save(flags);
231         __bdi_writeout_inc(bdi);
232         local_irq_restore(flags);
233 }
234 EXPORT_SYMBOL_GPL(bdi_writeout_inc);
235
236 /*
237  * Obtain an accurate fraction of the BDI's portion.
238  */
239 static void bdi_writeout_fraction(struct backing_dev_info *bdi,
240                 long *numerator, long *denominator)
241 {
242         prop_fraction_percpu(&vm_completions, &bdi->completions,
243                                 numerator, denominator);
244 }
245
246 /*
247  * bdi_min_ratio keeps the sum of the minimum dirty shares of all
248  * registered backing devices, which, for obvious reasons, can not
249  * exceed 100%.
250  */
251 static unsigned int bdi_min_ratio;
252
253 int bdi_set_min_ratio(struct backing_dev_info *bdi, unsigned int min_ratio)
254 {
255         int ret = 0;
256
257         spin_lock_bh(&bdi_lock);
258         if (min_ratio > bdi->max_ratio) {
259                 ret = -EINVAL;
260         } else {
261                 min_ratio -= bdi->min_ratio;
262                 if (bdi_min_ratio + min_ratio < 100) {
263                         bdi_min_ratio += min_ratio;
264                         bdi->min_ratio += min_ratio;
265                 } else {
266                         ret = -EINVAL;
267                 }
268         }
269         spin_unlock_bh(&bdi_lock);
270
271         return ret;
272 }
273
274 int bdi_set_max_ratio(struct backing_dev_info *bdi, unsigned max_ratio)
275 {
276         int ret = 0;
277
278         if (max_ratio > 100)
279                 return -EINVAL;
280
281         spin_lock_bh(&bdi_lock);
282         if (bdi->min_ratio > max_ratio) {
283                 ret = -EINVAL;
284         } else {
285                 bdi->max_ratio = max_ratio;
286                 bdi->max_prop_frac = (PROP_FRAC_BASE * max_ratio) / 100;
287         }
288         spin_unlock_bh(&bdi_lock);
289
290         return ret;
291 }
292 EXPORT_SYMBOL(bdi_set_max_ratio);
293
294 /*
295  * Work out the current dirty-memory clamping and background writeout
296  * thresholds.
297  *
298  * The main aim here is to lower them aggressively if there is a lot of mapped
299  * memory around.  To avoid stressing page reclaim with lots of unreclaimable
300  * pages.  It is better to clamp down on writers than to start swapping, and
301  * performing lots of scanning.
302  *
303  * We only allow 1/2 of the currently-unmapped memory to be dirtied.
304  *
305  * We don't permit the clamping level to fall below 5% - that is getting rather
306  * excessive.
307  *
308  * We make sure that the background writeout level is below the adjusted
309  * clamping level.
310  */
311
312 static unsigned long highmem_dirtyable_memory(unsigned long total)
313 {
314 #ifdef CONFIG_HIGHMEM
315         int node;
316         unsigned long x = 0;
317
318         for_each_node_state(node, N_HIGH_MEMORY) {
319                 struct zone *z =
320                         &NODE_DATA(node)->node_zones[ZONE_HIGHMEM];
321
322                 x += zone_page_state(z, NR_FREE_PAGES) +
323                      zone_reclaimable_pages(z);
324         }
325         /*
326          * Make sure that the number of highmem pages is never larger
327          * than the number of the total dirtyable memory. This can only
328          * occur in very strange VM situations but we want to make sure
329          * that this does not occur.
330          */
331         return min(x, total);
332 #else
333         return 0;
334 #endif
335 }
336
337 /**
338  * determine_dirtyable_memory - amount of memory that may be used
339  *
340  * Returns the numebr of pages that can currently be freed and used
341  * by the kernel for direct mappings.
342  */
343 unsigned long determine_dirtyable_memory(void)
344 {
345         unsigned long x;
346
347         x = global_page_state(NR_FREE_PAGES) + global_reclaimable_pages();
348
349         if (!vm_highmem_is_dirtyable)
350                 x -= highmem_dirtyable_memory(x);
351
352         return x + 1;   /* Ensure that we never return 0 */
353 }
354
355 static unsigned long dirty_freerun_ceiling(unsigned long thresh,
356                                            unsigned long bg_thresh)
357 {
358         return (thresh + bg_thresh) / 2;
359 }
360
361 static unsigned long hard_dirty_limit(unsigned long thresh)
362 {
363         return max(thresh, global_dirty_limit);
364 }
365
366 /*
367  * global_dirty_limits - background-writeback and dirty-throttling thresholds
368  *
369  * Calculate the dirty thresholds based on sysctl parameters
370  * - vm.dirty_background_ratio  or  vm.dirty_background_bytes
371  * - vm.dirty_ratio             or  vm.dirty_bytes
372  * The dirty limits will be lifted by 1/4 for PF_LESS_THROTTLE (ie. nfsd) and
373  * real-time tasks.
374  */
375 void global_dirty_limits(unsigned long *pbackground, unsigned long *pdirty)
376 {
377         unsigned long background;
378         unsigned long dirty;
379         unsigned long uninitialized_var(available_memory);
380         struct task_struct *tsk;
381
382         if (!vm_dirty_bytes || !dirty_background_bytes)
383                 available_memory = determine_dirtyable_memory();
384
385         if (vm_dirty_bytes)
386                 dirty = DIV_ROUND_UP(vm_dirty_bytes, PAGE_SIZE);
387         else
388                 dirty = (vm_dirty_ratio * available_memory) / 100;
389
390         if (dirty_background_bytes)
391                 background = DIV_ROUND_UP(dirty_background_bytes, PAGE_SIZE);
392         else
393                 background = (dirty_background_ratio * available_memory) / 100;
394
395         if (background >= dirty)
396                 background = dirty / 2;
397         tsk = current;
398         if (tsk->flags & PF_LESS_THROTTLE || rt_task(tsk)) {
399                 background += background / 4;
400                 dirty += dirty / 4;
401         }
402         *pbackground = background;
403         *pdirty = dirty;
404         trace_global_dirty_state(background, dirty);
405 }
406
407 /**
408  * bdi_dirty_limit - @bdi's share of dirty throttling threshold
409  * @bdi: the backing_dev_info to query
410  * @dirty: global dirty limit in pages
411  *
412  * Returns @bdi's dirty limit in pages. The term "dirty" in the context of
413  * dirty balancing includes all PG_dirty, PG_writeback and NFS unstable pages.
414  *
415  * Note that balance_dirty_pages() will only seriously take it as a hard limit
416  * when sleeping max_pause per page is not enough to keep the dirty pages under
417  * control. For example, when the device is completely stalled due to some error
418  * conditions, or when there are 1000 dd tasks writing to a slow 10MB/s USB key.
419  * In the other normal situations, it acts more gently by throttling the tasks
420  * more (rather than completely block them) when the bdi dirty pages go high.
421  *
422  * It allocates high/low dirty limits to fast/slow devices, in order to prevent
423  * - starving fast devices
424  * - piling up dirty pages (that will take long time to sync) on slow devices
425  *
426  * The bdi's share of dirty limit will be adapting to its throughput and
427  * bounded by the bdi->min_ratio and/or bdi->max_ratio parameters, if set.
428  */
429 unsigned long bdi_dirty_limit(struct backing_dev_info *bdi, unsigned long dirty)
430 {
431         u64 bdi_dirty;
432         long numerator, denominator;
433
434         /*
435          * Calculate this BDI's share of the dirty ratio.
436          */
437         bdi_writeout_fraction(bdi, &numerator, &denominator);
438
439         bdi_dirty = (dirty * (100 - bdi_min_ratio)) / 100;
440         bdi_dirty *= numerator;
441         do_div(bdi_dirty, denominator);
442
443         bdi_dirty += (dirty * bdi->min_ratio) / 100;
444         if (bdi_dirty > (dirty * bdi->max_ratio) / 100)
445                 bdi_dirty = dirty * bdi->max_ratio / 100;
446
447         return bdi_dirty;
448 }
449
450 /*
451  * Dirty position control.
452  *
453  * (o) global/bdi setpoints
454  *
455  * We want the dirty pages be balanced around the global/bdi setpoints.
456  * When the number of dirty pages is higher/lower than the setpoint, the
457  * dirty position control ratio (and hence task dirty ratelimit) will be
458  * decreased/increased to bring the dirty pages back to the setpoint.
459  *
460  *     pos_ratio = 1 << RATELIMIT_CALC_SHIFT
461  *
462  *     if (dirty < setpoint) scale up   pos_ratio
463  *     if (dirty > setpoint) scale down pos_ratio
464  *
465  *     if (bdi_dirty < bdi_setpoint) scale up   pos_ratio
466  *     if (bdi_dirty > bdi_setpoint) scale down pos_ratio
467  *
468  *     task_ratelimit = dirty_ratelimit * pos_ratio >> RATELIMIT_CALC_SHIFT
469  *
470  * (o) global control line
471  *
472  *     ^ pos_ratio
473  *     |
474  *     |            |<===== global dirty control scope ======>|
475  * 2.0 .............*
476  *     |            .*
477  *     |            . *
478  *     |            .   *
479  *     |            .     *
480  *     |            .        *
481  *     |            .            *
482  * 1.0 ................................*
483  *     |            .                  .     *
484  *     |            .                  .          *
485  *     |            .                  .              *
486  *     |            .                  .                 *
487  *     |            .                  .                    *
488  *   0 +------------.------------------.----------------------*------------->
489  *           freerun^          setpoint^                 limit^   dirty pages
490  *
491  * (o) bdi control line
492  *
493  *     ^ pos_ratio
494  *     |
495  *     |            *
496  *     |              *
497  *     |                *
498  *     |                  *
499  *     |                    * |<=========== span ============>|
500  * 1.0 .......................*
501  *     |                      . *
502  *     |                      .   *
503  *     |                      .     *
504  *     |                      .       *
505  *     |                      .         *
506  *     |                      .           *
507  *     |                      .             *
508  *     |                      .               *
509  *     |                      .                 *
510  *     |                      .                   *
511  *     |                      .                     *
512  * 1/4 ...............................................* * * * * * * * * * * *
513  *     |                      .                         .
514  *     |                      .                           .
515  *     |                      .                             .
516  *   0 +----------------------.-------------------------------.------------->
517  *                bdi_setpoint^                    x_intercept^
518  *
519  * The bdi control line won't drop below pos_ratio=1/4, so that bdi_dirty can
520  * be smoothly throttled down to normal if it starts high in situations like
521  * - start writing to a slow SD card and a fast disk at the same time. The SD
522  *   card's bdi_dirty may rush to many times higher than bdi_setpoint.
523  * - the bdi dirty thresh drops quickly due to change of JBOD workload
524  */
525 static unsigned long bdi_position_ratio(struct backing_dev_info *bdi,
526                                         unsigned long thresh,
527                                         unsigned long bg_thresh,
528                                         unsigned long dirty,
529                                         unsigned long bdi_thresh,
530                                         unsigned long bdi_dirty)
531 {
532         unsigned long write_bw = bdi->avg_write_bandwidth;
533         unsigned long freerun = dirty_freerun_ceiling(thresh, bg_thresh);
534         unsigned long limit = hard_dirty_limit(thresh);
535         unsigned long x_intercept;
536         unsigned long setpoint;         /* dirty pages' target balance point */
537         unsigned long bdi_setpoint;
538         unsigned long span;
539         long long pos_ratio;            /* for scaling up/down the rate limit */
540         long x;
541
542         if (unlikely(dirty >= limit))
543                 return 0;
544
545         /*
546          * global setpoint
547          *
548          *                           setpoint - dirty 3
549          *        f(dirty) := 1.0 + (----------------)
550          *                           limit - setpoint
551          *
552          * it's a 3rd order polynomial that subjects to
553          *
554          * (1) f(freerun)  = 2.0 => rampup dirty_ratelimit reasonably fast
555          * (2) f(setpoint) = 1.0 => the balance point
556          * (3) f(limit)    = 0   => the hard limit
557          * (4) df/dx      <= 0   => negative feedback control
558          * (5) the closer to setpoint, the smaller |df/dx| (and the reverse)
559          *     => fast response on large errors; small oscillation near setpoint
560          */
561         setpoint = (freerun + limit) / 2;
562         x = div64_s64(((s64)setpoint - (s64)dirty) << RATELIMIT_CALC_SHIFT,
563                       (limit - setpoint) | 1);
564         pos_ratio = x;
565         pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
566         pos_ratio = pos_ratio * x >> RATELIMIT_CALC_SHIFT;
567         pos_ratio += 1 << RATELIMIT_CALC_SHIFT;
568
569         /*
570          * We have computed basic pos_ratio above based on global situation. If
571          * the bdi is over/under its share of dirty pages, we want to scale
572          * pos_ratio further down/up. That is done by the following mechanism.
573          */
574
575         /*
576          * bdi setpoint
577          *
578          *        f(bdi_dirty) := 1.0 + k * (bdi_dirty - bdi_setpoint)
579          *
580          *                        x_intercept - bdi_dirty
581          *                     := --------------------------
582          *                        x_intercept - bdi_setpoint
583          *
584          * The main bdi control line is a linear function that subjects to
585          *
586          * (1) f(bdi_setpoint) = 1.0
587          * (2) k = - 1 / (8 * write_bw)  (in single bdi case)
588          *     or equally: x_intercept = bdi_setpoint + 8 * write_bw
589          *
590          * For single bdi case, the dirty pages are observed to fluctuate
591          * regularly within range
592          *        [bdi_setpoint - write_bw/2, bdi_setpoint + write_bw/2]
593          * for various filesystems, where (2) can yield in a reasonable 12.5%
594          * fluctuation range for pos_ratio.
595          *
596          * For JBOD case, bdi_thresh (not bdi_dirty!) could fluctuate up to its
597          * own size, so move the slope over accordingly and choose a slope that
598          * yields 100% pos_ratio fluctuation on suddenly doubled bdi_thresh.
599          */
600         if (unlikely(bdi_thresh > thresh))
601                 bdi_thresh = thresh;
602         /*
603          * It's very possible that bdi_thresh is close to 0 not because the
604          * device is slow, but that it has remained inactive for long time.
605          * Honour such devices a reasonable good (hopefully IO efficient)
606          * threshold, so that the occasional writes won't be blocked and active
607          * writes can rampup the threshold quickly.
608          */
609         bdi_thresh = max(bdi_thresh, (limit - dirty) / 8);
610         /*
611          * scale global setpoint to bdi's:
612          *      bdi_setpoint = setpoint * bdi_thresh / thresh
613          */
614         x = div_u64((u64)bdi_thresh << 16, thresh | 1);
615         bdi_setpoint = setpoint * (u64)x >> 16;
616         /*
617          * Use span=(8*write_bw) in single bdi case as indicated by
618          * (thresh - bdi_thresh ~= 0) and transit to bdi_thresh in JBOD case.
619          *
620          *        bdi_thresh                    thresh - bdi_thresh
621          * span = ---------- * (8 * write_bw) + ------------------- * bdi_thresh
622          *          thresh                            thresh
623          */
624         span = (thresh - bdi_thresh + 8 * write_bw) * (u64)x >> 16;
625         x_intercept = bdi_setpoint + span;
626
627         if (bdi_dirty < x_intercept - span / 4) {
628                 pos_ratio = div64_u64(pos_ratio * (x_intercept - bdi_dirty),
629                                       (x_intercept - bdi_setpoint) | 1);
630         } else
631                 pos_ratio /= 4;
632
633         /*
634          * bdi reserve area, safeguard against dirty pool underrun and disk idle
635          * It may push the desired control point of global dirty pages higher
636          * than setpoint.
637          */
638         x_intercept = bdi_thresh / 2;
639         if (bdi_dirty < x_intercept) {
640                 if (bdi_dirty > x_intercept / 8)
641                         pos_ratio = div_u64(pos_ratio * x_intercept, bdi_dirty);
642                 else
643                         pos_ratio *= 8;
644         }
645
646         return pos_ratio;
647 }
648
649 static void bdi_update_write_bandwidth(struct backing_dev_info *bdi,
650                                        unsigned long elapsed,
651                                        unsigned long written)
652 {
653         const unsigned long period = roundup_pow_of_two(3 * HZ);
654         unsigned long avg = bdi->avg_write_bandwidth;
655         unsigned long old = bdi->write_bandwidth;
656         u64 bw;
657
658         /*
659          * bw = written * HZ / elapsed
660          *
661          *                   bw * elapsed + write_bandwidth * (period - elapsed)
662          * write_bandwidth = ---------------------------------------------------
663          *                                          period
664          *
665          * @written may have decreased due to account_page_redirty().
666          * Avoid underflowing @bw calculation.
667          */
668         bw = written - min(written, bdi->written_stamp);
669         bw *= HZ;
670         if (unlikely(elapsed > period)) {
671                 do_div(bw, elapsed);
672                 avg = bw;
673                 goto out;
674         }
675         bw += (u64)bdi->write_bandwidth * (period - elapsed);
676         bw >>= ilog2(period);
677
678         /*
679          * one more level of smoothing, for filtering out sudden spikes
680          */
681         if (avg > old && old >= (unsigned long)bw)
682                 avg -= (avg - old) >> 3;
683
684         if (avg < old && old <= (unsigned long)bw)
685                 avg += (old - avg) >> 3;
686
687 out:
688         bdi->write_bandwidth = bw;
689         bdi->avg_write_bandwidth = avg;
690 }
691
692 /*
693  * The global dirtyable memory and dirty threshold could be suddenly knocked
694  * down by a large amount (eg. on the startup of KVM in a swapless system).
695  * This may throw the system into deep dirty exceeded state and throttle
696  * heavy/light dirtiers alike. To retain good responsiveness, maintain
697  * global_dirty_limit for tracking slowly down to the knocked down dirty
698  * threshold.
699  */
700 static void update_dirty_limit(unsigned long thresh, unsigned long dirty)
701 {
702         unsigned long limit = global_dirty_limit;
703
704         /*
705          * Follow up in one step.
706          */
707         if (limit < thresh) {
708                 limit = thresh;
709                 goto update;
710         }
711
712         /*
713          * Follow down slowly. Use the higher one as the target, because thresh
714          * may drop below dirty. This is exactly the reason to introduce
715          * global_dirty_limit which is guaranteed to lie above the dirty pages.
716          */
717         thresh = max(thresh, dirty);
718         if (limit > thresh) {
719                 limit -= (limit - thresh) >> 5;
720                 goto update;
721         }
722         return;
723 update:
724         global_dirty_limit = limit;
725 }
726
727 static void global_update_bandwidth(unsigned long thresh,
728                                     unsigned long dirty,
729                                     unsigned long now)
730 {
731         static DEFINE_SPINLOCK(dirty_lock);
732         static unsigned long update_time = INITIAL_JIFFIES;
733
734         /*
735          * check locklessly first to optimize away locking for the most time
736          */
737         if (time_before(now, update_time + BANDWIDTH_INTERVAL))
738                 return;
739
740         spin_lock(&dirty_lock);
741         if (time_after_eq(now, update_time + BANDWIDTH_INTERVAL)) {
742                 update_dirty_limit(thresh, dirty);
743                 update_time = now;
744         }
745         spin_unlock(&dirty_lock);
746 }
747
748 /*
749  * Maintain bdi->dirty_ratelimit, the base dirty throttle rate.
750  *
751  * Normal bdi tasks will be curbed at or below it in long term.
752  * Obviously it should be around (write_bw / N) when there are N dd tasks.
753  */
754 static void bdi_update_dirty_ratelimit(struct backing_dev_info *bdi,
755                                        unsigned long thresh,
756                                        unsigned long bg_thresh,
757                                        unsigned long dirty,
758                                        unsigned long bdi_thresh,
759                                        unsigned long bdi_dirty,
760                                        unsigned long dirtied,
761                                        unsigned long elapsed)
762 {
763         unsigned long freerun = dirty_freerun_ceiling(thresh, bg_thresh);
764         unsigned long limit = hard_dirty_limit(thresh);
765         unsigned long setpoint = (freerun + limit) / 2;
766         unsigned long write_bw = bdi->avg_write_bandwidth;
767         unsigned long dirty_ratelimit = bdi->dirty_ratelimit;
768         unsigned long dirty_rate;
769         unsigned long task_ratelimit;
770         unsigned long balanced_dirty_ratelimit;
771         unsigned long pos_ratio;
772         unsigned long step;
773         unsigned long x;
774
775         /*
776          * The dirty rate will match the writeout rate in long term, except
777          * when dirty pages are truncated by userspace or re-dirtied by FS.
778          */
779         dirty_rate = (dirtied - bdi->dirtied_stamp) * HZ / elapsed;
780
781         pos_ratio = bdi_position_ratio(bdi, thresh, bg_thresh, dirty,
782                                        bdi_thresh, bdi_dirty);
783         /*
784          * task_ratelimit reflects each dd's dirty rate for the past 200ms.
785          */
786         task_ratelimit = (u64)dirty_ratelimit *
787                                         pos_ratio >> RATELIMIT_CALC_SHIFT;
788         task_ratelimit++; /* it helps rampup dirty_ratelimit from tiny values */
789
790         /*
791          * A linear estimation of the "balanced" throttle rate. The theory is,
792          * if there are N dd tasks, each throttled at task_ratelimit, the bdi's
793          * dirty_rate will be measured to be (N * task_ratelimit). So the below
794          * formula will yield the balanced rate limit (write_bw / N).
795          *
796          * Note that the expanded form is not a pure rate feedback:
797          *      rate_(i+1) = rate_(i) * (write_bw / dirty_rate)              (1)
798          * but also takes pos_ratio into account:
799          *      rate_(i+1) = rate_(i) * (write_bw / dirty_rate) * pos_ratio  (2)
800          *
801          * (1) is not realistic because pos_ratio also takes part in balancing
802          * the dirty rate.  Consider the state
803          *      pos_ratio = 0.5                                              (3)
804          *      rate = 2 * (write_bw / N)                                    (4)
805          * If (1) is used, it will stuck in that state! Because each dd will
806          * be throttled at
807          *      task_ratelimit = pos_ratio * rate = (write_bw / N)           (5)
808          * yielding
809          *      dirty_rate = N * task_ratelimit = write_bw                   (6)
810          * put (6) into (1) we get
811          *      rate_(i+1) = rate_(i)                                        (7)
812          *
813          * So we end up using (2) to always keep
814          *      rate_(i+1) ~= (write_bw / N)                                 (8)
815          * regardless of the value of pos_ratio. As long as (8) is satisfied,
816          * pos_ratio is able to drive itself to 1.0, which is not only where
817          * the dirty count meet the setpoint, but also where the slope of
818          * pos_ratio is most flat and hence task_ratelimit is least fluctuated.
819          */
820         balanced_dirty_ratelimit = div_u64((u64)task_ratelimit * write_bw,
821                                            dirty_rate | 1);
822
823         /*
824          * We could safely do this and return immediately:
825          *
826          *      bdi->dirty_ratelimit = balanced_dirty_ratelimit;
827          *
828          * However to get a more stable dirty_ratelimit, the below elaborated
829          * code makes use of task_ratelimit to filter out sigular points and
830          * limit the step size.
831          *
832          * The below code essentially only uses the relative value of
833          *
834          *      task_ratelimit - dirty_ratelimit
835          *      = (pos_ratio - 1) * dirty_ratelimit
836          *
837          * which reflects the direction and size of dirty position error.
838          */
839
840         /*
841          * dirty_ratelimit will follow balanced_dirty_ratelimit iff
842          * task_ratelimit is on the same side of dirty_ratelimit, too.
843          * For example, when
844          * - dirty_ratelimit > balanced_dirty_ratelimit
845          * - dirty_ratelimit > task_ratelimit (dirty pages are above setpoint)
846          * lowering dirty_ratelimit will help meet both the position and rate
847          * control targets. Otherwise, don't update dirty_ratelimit if it will
848          * only help meet the rate target. After all, what the users ultimately
849          * feel and care are stable dirty rate and small position error.
850          *
851          * |task_ratelimit - dirty_ratelimit| is used to limit the step size
852          * and filter out the sigular points of balanced_dirty_ratelimit. Which
853          * keeps jumping around randomly and can even leap far away at times
854          * due to the small 200ms estimation period of dirty_rate (we want to
855          * keep that period small to reduce time lags).
856          */
857         step = 0;
858         if (dirty < setpoint) {
859                 x = min(bdi->balanced_dirty_ratelimit,
860                          min(balanced_dirty_ratelimit, task_ratelimit));
861                 if (dirty_ratelimit < x)
862                         step = x - dirty_ratelimit;
863         } else {
864                 x = max(bdi->balanced_dirty_ratelimit,
865                          max(balanced_dirty_ratelimit, task_ratelimit));
866                 if (dirty_ratelimit > x)
867                         step = dirty_ratelimit - x;
868         }
869
870         /*
871          * Don't pursue 100% rate matching. It's impossible since the balanced
872          * rate itself is constantly fluctuating. So decrease the track speed
873          * when it gets close to the target. Helps eliminate pointless tremors.
874          */
875         step >>= dirty_ratelimit / (2 * step + 1);
876         /*
877          * Limit the tracking speed to avoid overshooting.
878          */
879         step = (step + 7) / 8;
880
881         if (dirty_ratelimit < balanced_dirty_ratelimit)
882                 dirty_ratelimit += step;
883         else
884                 dirty_ratelimit -= step;
885
886         bdi->dirty_ratelimit = max(dirty_ratelimit, 1UL);
887         bdi->balanced_dirty_ratelimit = balanced_dirty_ratelimit;
888
889         trace_bdi_dirty_ratelimit(bdi, dirty_rate, task_ratelimit);
890 }
891
892 void __bdi_update_bandwidth(struct backing_dev_info *bdi,
893                             unsigned long thresh,
894                             unsigned long bg_thresh,
895                             unsigned long dirty,
896                             unsigned long bdi_thresh,
897                             unsigned long bdi_dirty,
898                             unsigned long start_time)
899 {
900         unsigned long now = jiffies;
901         unsigned long elapsed = now - bdi->bw_time_stamp;
902         unsigned long dirtied;
903         unsigned long written;
904
905         /*
906          * rate-limit, only update once every 200ms.
907          */
908         if (elapsed < BANDWIDTH_INTERVAL)
909                 return;
910
911         dirtied = percpu_counter_read(&bdi->bdi_stat[BDI_DIRTIED]);
912         written = percpu_counter_read(&bdi->bdi_stat[BDI_WRITTEN]);
913
914         /*
915          * Skip quiet periods when disk bandwidth is under-utilized.
916          * (at least 1s idle time between two flusher runs)
917          */
918         if (elapsed > HZ && time_before(bdi->bw_time_stamp, start_time))
919                 goto snapshot;
920
921         if (thresh) {
922                 global_update_bandwidth(thresh, dirty, now);
923                 bdi_update_dirty_ratelimit(bdi, thresh, bg_thresh, dirty,
924                                            bdi_thresh, bdi_dirty,
925                                            dirtied, elapsed);
926         }
927         bdi_update_write_bandwidth(bdi, elapsed, written);
928
929 snapshot:
930         bdi->dirtied_stamp = dirtied;
931         bdi->written_stamp = written;
932         bdi->bw_time_stamp = now;
933 }
934
935 static void bdi_update_bandwidth(struct backing_dev_info *bdi,
936                                  unsigned long thresh,
937                                  unsigned long bg_thresh,
938                                  unsigned long dirty,
939                                  unsigned long bdi_thresh,
940                                  unsigned long bdi_dirty,
941                                  unsigned long start_time)
942 {
943         if (time_is_after_eq_jiffies(bdi->bw_time_stamp + BANDWIDTH_INTERVAL))
944                 return;
945         spin_lock(&bdi->wb.list_lock);
946         __bdi_update_bandwidth(bdi, thresh, bg_thresh, dirty,
947                                bdi_thresh, bdi_dirty, start_time);
948         spin_unlock(&bdi->wb.list_lock);
949 }
950
951 /*
952  * After a task dirtied this many pages, balance_dirty_pages_ratelimited_nr()
953  * will look to see if it needs to start dirty throttling.
954  *
955  * If dirty_poll_interval is too low, big NUMA machines will call the expensive
956  * global_page_state() too often. So scale it near-sqrt to the safety margin
957  * (the number of pages we may dirty without exceeding the dirty limits).
958  */
959 static unsigned long dirty_poll_interval(unsigned long dirty,
960                                          unsigned long thresh)
961 {
962         if (thresh > dirty)
963                 return 1UL << (ilog2(thresh - dirty) >> 1);
964
965         return 1;
966 }
967
968 static unsigned long bdi_max_pause(struct backing_dev_info *bdi,
969                                    unsigned long bdi_dirty)
970 {
971         unsigned long bw = bdi->avg_write_bandwidth;
972         unsigned long hi = ilog2(bw);
973         unsigned long lo = ilog2(bdi->dirty_ratelimit);
974         unsigned long t;
975
976         /* target for 20ms max pause on 1-dd case */
977         t = HZ / 50;
978
979         /*
980          * Scale up pause time for concurrent dirtiers in order to reduce CPU
981          * overheads.
982          *
983          * (N * 20ms) on 2^N concurrent tasks.
984          */
985         if (hi > lo)
986                 t += (hi - lo) * (20 * HZ) / 1024;
987
988         /*
989          * Limit pause time for small memory systems. If sleeping for too long
990          * time, a small pool of dirty/writeback pages may go empty and disk go
991          * idle.
992          *
993          * 8 serves as the safety ratio.
994          */
995         t = min(t, bdi_dirty * HZ / (8 * bw + 1));
996
997         /*
998          * The pause time will be settled within range (max_pause/4, max_pause).
999          * Apply a minimal value of 4 to get a non-zero max_pause/4.
1000          */
1001         return clamp_val(t, 4, MAX_PAUSE);
1002 }
1003
1004 /*
1005  * balance_dirty_pages() must be called by processes which are generating dirty
1006  * data.  It looks at the number of dirty pages in the machine and will force
1007  * the caller to wait once crossing the (background_thresh + dirty_thresh) / 2.
1008  * If we're over `background_thresh' then the writeback threads are woken to
1009  * perform some writeout.
1010  */
1011 static void balance_dirty_pages(struct address_space *mapping,
1012                                 unsigned long pages_dirtied)
1013 {
1014         unsigned long nr_reclaimable;   /* = file_dirty + unstable_nfs */
1015         unsigned long bdi_reclaimable;
1016         unsigned long nr_dirty;  /* = file_dirty + writeback + unstable_nfs */
1017         unsigned long bdi_dirty;
1018         unsigned long freerun;
1019         unsigned long background_thresh;
1020         unsigned long dirty_thresh;
1021         unsigned long bdi_thresh;
1022         long pause = 0;
1023         long uninitialized_var(max_pause);
1024         bool dirty_exceeded = false;
1025         unsigned long task_ratelimit;
1026         unsigned long uninitialized_var(dirty_ratelimit);
1027         unsigned long pos_ratio;
1028         struct backing_dev_info *bdi = mapping->backing_dev_info;
1029         unsigned long start_time = jiffies;
1030
1031         for (;;) {
1032                 /*
1033                  * Unstable writes are a feature of certain networked
1034                  * filesystems (i.e. NFS) in which data may have been
1035                  * written to the server's write cache, but has not yet
1036                  * been flushed to permanent storage.
1037                  */
1038                 nr_reclaimable = global_page_state(NR_FILE_DIRTY) +
1039                                         global_page_state(NR_UNSTABLE_NFS);
1040                 nr_dirty = nr_reclaimable + global_page_state(NR_WRITEBACK);
1041
1042                 global_dirty_limits(&background_thresh, &dirty_thresh);
1043
1044                 /*
1045                  * Throttle it only when the background writeback cannot
1046                  * catch-up. This avoids (excessively) small writeouts
1047                  * when the bdi limits are ramping up.
1048                  */
1049                 freerun = dirty_freerun_ceiling(dirty_thresh,
1050                                                 background_thresh);
1051                 if (nr_dirty <= freerun)
1052                         break;
1053
1054                 if (unlikely(!writeback_in_progress(bdi)))
1055                         bdi_start_background_writeback(bdi);
1056
1057                 /*
1058                  * bdi_thresh is not treated as some limiting factor as
1059                  * dirty_thresh, due to reasons
1060                  * - in JBOD setup, bdi_thresh can fluctuate a lot
1061                  * - in a system with HDD and USB key, the USB key may somehow
1062                  *   go into state (bdi_dirty >> bdi_thresh) either because
1063                  *   bdi_dirty starts high, or because bdi_thresh drops low.
1064                  *   In this case we don't want to hard throttle the USB key
1065                  *   dirtiers for 100 seconds until bdi_dirty drops under
1066                  *   bdi_thresh. Instead the auxiliary bdi control line in
1067                  *   bdi_position_ratio() will let the dirtier task progress
1068                  *   at some rate <= (write_bw / 2) for bringing down bdi_dirty.
1069                  */
1070                 bdi_thresh = bdi_dirty_limit(bdi, dirty_thresh);
1071
1072                 /*
1073                  * In order to avoid the stacked BDI deadlock we need
1074                  * to ensure we accurately count the 'dirty' pages when
1075                  * the threshold is low.
1076                  *
1077                  * Otherwise it would be possible to get thresh+n pages
1078                  * reported dirty, even though there are thresh-m pages
1079                  * actually dirty; with m+n sitting in the percpu
1080                  * deltas.
1081                  */
1082                 if (bdi_thresh < 2 * bdi_stat_error(bdi)) {
1083                         bdi_reclaimable = bdi_stat_sum(bdi, BDI_RECLAIMABLE);
1084                         bdi_dirty = bdi_reclaimable +
1085                                     bdi_stat_sum(bdi, BDI_WRITEBACK);
1086                 } else {
1087                         bdi_reclaimable = bdi_stat(bdi, BDI_RECLAIMABLE);
1088                         bdi_dirty = bdi_reclaimable +
1089                                     bdi_stat(bdi, BDI_WRITEBACK);
1090                 }
1091
1092                 dirty_exceeded = (bdi_dirty > bdi_thresh) ||
1093                                   (nr_dirty > dirty_thresh);
1094                 if (dirty_exceeded && !bdi->dirty_exceeded)
1095                         bdi->dirty_exceeded = 1;
1096
1097                 bdi_update_bandwidth(bdi, dirty_thresh, background_thresh,
1098                                      nr_dirty, bdi_thresh, bdi_dirty,
1099                                      start_time);
1100
1101                 max_pause = bdi_max_pause(bdi, bdi_dirty);
1102
1103                 dirty_ratelimit = bdi->dirty_ratelimit;
1104                 pos_ratio = bdi_position_ratio(bdi, dirty_thresh,
1105                                                background_thresh, nr_dirty,
1106                                                bdi_thresh, bdi_dirty);
1107                 task_ratelimit = ((u64)dirty_ratelimit * pos_ratio) >>
1108                                                         RATELIMIT_CALC_SHIFT;
1109                 if (unlikely(task_ratelimit == 0)) {
1110                         pause = max_pause;
1111                         goto pause;
1112                 }
1113                 pause = HZ * pages_dirtied / task_ratelimit;
1114                 if (unlikely(pause <= 0)) {
1115                         trace_balance_dirty_pages(bdi,
1116                                                   dirty_thresh,
1117                                                   background_thresh,
1118                                                   nr_dirty,
1119                                                   bdi_thresh,
1120                                                   bdi_dirty,
1121                                                   dirty_ratelimit,
1122                                                   task_ratelimit,
1123                                                   pages_dirtied,
1124                                                   pause,
1125                                                   start_time);
1126                         pause = 1; /* avoid resetting nr_dirtied_pause below */
1127                         break;
1128                 }
1129                 pause = min(pause, max_pause);
1130
1131 pause:
1132                 trace_balance_dirty_pages(bdi,
1133                                           dirty_thresh,
1134                                           background_thresh,
1135                                           nr_dirty,
1136                                           bdi_thresh,
1137                                           bdi_dirty,
1138                                           dirty_ratelimit,
1139                                           task_ratelimit,
1140                                           pages_dirtied,
1141                                           pause,
1142                                           start_time);
1143                 __set_current_state(TASK_KILLABLE);
1144                 io_schedule_timeout(pause);
1145
1146                 /*
1147                  * This is typically equal to (nr_dirty < dirty_thresh) and can
1148                  * also keep "1000+ dd on a slow USB stick" under control.
1149                  */
1150                 if (task_ratelimit)
1151                         break;
1152
1153                 /*
1154                  * In the case of an unresponding NFS server and the NFS dirty
1155                  * pages exceeds dirty_thresh, give the other good bdi's a pipe
1156                  * to go through, so that tasks on them still remain responsive.
1157                  *
1158                  * In theory 1 page is enough to keep the comsumer-producer
1159                  * pipe going: the flusher cleans 1 page => the task dirties 1
1160                  * more page. However bdi_dirty has accounting errors.  So use
1161                  * the larger and more IO friendly bdi_stat_error.
1162                  */
1163                 if (bdi_dirty <= bdi_stat_error(bdi))
1164                         break;
1165
1166                 if (fatal_signal_pending(current))
1167                         break;
1168         }
1169
1170         if (!dirty_exceeded && bdi->dirty_exceeded)
1171                 bdi->dirty_exceeded = 0;
1172
1173         current->nr_dirtied = 0;
1174         if (pause == 0) { /* in freerun area */
1175                 current->nr_dirtied_pause =
1176                                 dirty_poll_interval(nr_dirty, dirty_thresh);
1177         } else if (pause <= max_pause / 4 &&
1178                    pages_dirtied >= current->nr_dirtied_pause) {
1179                 current->nr_dirtied_pause = clamp_val(
1180                                         dirty_ratelimit * (max_pause / 2) / HZ,
1181                                         pages_dirtied + pages_dirtied / 8,
1182                                         pages_dirtied * 4);
1183         } else if (pause >= max_pause) {
1184                 current->nr_dirtied_pause = 1 | clamp_val(
1185                                         dirty_ratelimit * (max_pause / 2) / HZ,
1186                                         pages_dirtied / 4,
1187                                         pages_dirtied - pages_dirtied / 8);
1188         }
1189
1190         if (writeback_in_progress(bdi))
1191                 return;
1192
1193         /*
1194          * In laptop mode, we wait until hitting the higher threshold before
1195          * starting background writeout, and then write out all the way down
1196          * to the lower threshold.  So slow writers cause minimal disk activity.
1197          *
1198          * In normal mode, we start background writeout at the lower
1199          * background_thresh, to keep the amount of dirty memory low.
1200          */
1201         if (laptop_mode)
1202                 return;
1203
1204         if (nr_reclaimable > background_thresh)
1205                 bdi_start_background_writeback(bdi);
1206 }
1207
1208 static DEFINE_PER_CPU(int, bdp_ratelimits);
1209
1210 /**
1211  * balance_dirty_pages_ratelimited_nr - balance dirty memory state
1212  * @mapping: address_space which was dirtied
1213  * @nr_pages_dirtied: number of pages which the caller has just dirtied
1214  *
1215  * Processes which are dirtying memory should call in here once for each page
1216  * which was newly dirtied.  The function will periodically check the system's
1217  * dirty state and will initiate writeback if needed.
1218  *
1219  * On really big machines, get_writeback_state is expensive, so try to avoid
1220  * calling it too often (ratelimiting).  But once we're over the dirty memory
1221  * limit we decrease the ratelimiting by a lot, to prevent individual processes
1222  * from overshooting the limit by (ratelimit_pages) each.
1223  */
1224 void balance_dirty_pages_ratelimited_nr(struct address_space *mapping,
1225                                         unsigned long nr_pages_dirtied)
1226 {
1227         struct backing_dev_info *bdi = mapping->backing_dev_info;
1228         int ratelimit;
1229         int *p;
1230
1231         if (!bdi_cap_account_dirty(bdi))
1232                 return;
1233
1234         ratelimit = current->nr_dirtied_pause;
1235         if (bdi->dirty_exceeded)
1236                 ratelimit = min(ratelimit, 32 >> (PAGE_SHIFT - 10));
1237
1238         current->nr_dirtied += nr_pages_dirtied;
1239
1240         preempt_disable();
1241         /*
1242          * This prevents one CPU to accumulate too many dirtied pages without
1243          * calling into balance_dirty_pages(), which can happen when there are
1244          * 1000+ tasks, all of them start dirtying pages at exactly the same
1245          * time, hence all honoured too large initial task->nr_dirtied_pause.
1246          */
1247         p =  &__get_cpu_var(bdp_ratelimits);
1248         if (unlikely(current->nr_dirtied >= ratelimit))
1249                 *p = 0;
1250         else {
1251                 *p += nr_pages_dirtied;
1252                 if (unlikely(*p >= ratelimit_pages)) {
1253                         *p = 0;
1254                         ratelimit = 0;
1255                 }
1256         }
1257         preempt_enable();
1258
1259         if (unlikely(current->nr_dirtied >= ratelimit))
1260                 balance_dirty_pages(mapping, current->nr_dirtied);
1261 }
1262 EXPORT_SYMBOL(balance_dirty_pages_ratelimited_nr);
1263
1264 void throttle_vm_writeout(gfp_t gfp_mask)
1265 {
1266         unsigned long background_thresh;
1267         unsigned long dirty_thresh;
1268
1269         for ( ; ; ) {
1270                 global_dirty_limits(&background_thresh, &dirty_thresh);
1271
1272                 /*
1273                  * Boost the allowable dirty threshold a bit for page
1274                  * allocators so they don't get DoS'ed by heavy writers
1275                  */
1276                 dirty_thresh += dirty_thresh / 10;      /* wheeee... */
1277
1278                 if (global_page_state(NR_UNSTABLE_NFS) +
1279                         global_page_state(NR_WRITEBACK) <= dirty_thresh)
1280                                 break;
1281                 congestion_wait(BLK_RW_ASYNC, HZ/10);
1282
1283                 /*
1284                  * The caller might hold locks which can prevent IO completion
1285                  * or progress in the filesystem.  So we cannot just sit here
1286                  * waiting for IO to complete.
1287                  */
1288                 if ((gfp_mask & (__GFP_FS|__GFP_IO)) != (__GFP_FS|__GFP_IO))
1289                         break;
1290         }
1291 }
1292
1293 /*
1294  * sysctl handler for /proc/sys/vm/dirty_writeback_centisecs
1295  */
1296 int dirty_writeback_centisecs_handler(ctl_table *table, int write,
1297         void __user *buffer, size_t *length, loff_t *ppos)
1298 {
1299         proc_dointvec(table, write, buffer, length, ppos);
1300         bdi_arm_supers_timer();
1301         return 0;
1302 }
1303
1304 #ifdef CONFIG_BLOCK
1305 void laptop_mode_timer_fn(unsigned long data)
1306 {
1307         struct request_queue *q = (struct request_queue *)data;
1308         int nr_pages = global_page_state(NR_FILE_DIRTY) +
1309                 global_page_state(NR_UNSTABLE_NFS);
1310
1311         /*
1312          * We want to write everything out, not just down to the dirty
1313          * threshold
1314          */
1315         if (bdi_has_dirty_io(&q->backing_dev_info))
1316                 bdi_start_writeback(&q->backing_dev_info, nr_pages,
1317                                         WB_REASON_LAPTOP_TIMER);
1318 }
1319
1320 /*
1321  * We've spun up the disk and we're in laptop mode: schedule writeback
1322  * of all dirty data a few seconds from now.  If the flush is already scheduled
1323  * then push it back - the user is still using the disk.
1324  */
1325 void laptop_io_completion(struct backing_dev_info *info)
1326 {
1327         mod_timer(&info->laptop_mode_wb_timer, jiffies + laptop_mode);
1328 }
1329
1330 /*
1331  * We're in laptop mode and we've just synced. The sync's writes will have
1332  * caused another writeback to be scheduled by laptop_io_completion.
1333  * Nothing needs to be written back anymore, so we unschedule the writeback.
1334  */
1335 void laptop_sync_completion(void)
1336 {
1337         struct backing_dev_info *bdi;
1338
1339         rcu_read_lock();
1340
1341         list_for_each_entry_rcu(bdi, &bdi_list, bdi_list)
1342                 del_timer(&bdi->laptop_mode_wb_timer);
1343
1344         rcu_read_unlock();
1345 }
1346 #endif
1347
1348 /*
1349  * If ratelimit_pages is too high then we can get into dirty-data overload
1350  * if a large number of processes all perform writes at the same time.
1351  * If it is too low then SMP machines will call the (expensive)
1352  * get_writeback_state too often.
1353  *
1354  * Here we set ratelimit_pages to a level which ensures that when all CPUs are
1355  * dirtying in parallel, we cannot go more than 3% (1/32) over the dirty memory
1356  * thresholds.
1357  */
1358
1359 void writeback_set_ratelimit(void)
1360 {
1361         unsigned long background_thresh;
1362         unsigned long dirty_thresh;
1363         global_dirty_limits(&background_thresh, &dirty_thresh);
1364         ratelimit_pages = dirty_thresh / (num_online_cpus() * 32);
1365         if (ratelimit_pages < 16)
1366                 ratelimit_pages = 16;
1367 }
1368
1369 static int __cpuinit
1370 ratelimit_handler(struct notifier_block *self, unsigned long u, void *v)
1371 {
1372         writeback_set_ratelimit();
1373         return NOTIFY_DONE;
1374 }
1375
1376 static struct notifier_block __cpuinitdata ratelimit_nb = {
1377         .notifier_call  = ratelimit_handler,
1378         .next           = NULL,
1379 };
1380
1381 /*
1382  * Called early on to tune the page writeback dirty limits.
1383  *
1384  * We used to scale dirty pages according to how total memory
1385  * related to pages that could be allocated for buffers (by
1386  * comparing nr_free_buffer_pages() to vm_total_pages.
1387  *
1388  * However, that was when we used "dirty_ratio" to scale with
1389  * all memory, and we don't do that any more. "dirty_ratio"
1390  * is now applied to total non-HIGHPAGE memory (by subtracting
1391  * totalhigh_pages from vm_total_pages), and as such we can't
1392  * get into the old insane situation any more where we had
1393  * large amounts of dirty pages compared to a small amount of
1394  * non-HIGHMEM memory.
1395  *
1396  * But we might still want to scale the dirty_ratio by how
1397  * much memory the box has..
1398  */
1399 void __init page_writeback_init(void)
1400 {
1401         int shift;
1402
1403         writeback_set_ratelimit();
1404         register_cpu_notifier(&ratelimit_nb);
1405
1406         shift = calc_period_shift();
1407         prop_descriptor_init(&vm_completions, shift);
1408 }
1409
1410 /**
1411  * tag_pages_for_writeback - tag pages to be written by write_cache_pages
1412  * @mapping: address space structure to write
1413  * @start: starting page index
1414  * @end: ending page index (inclusive)
1415  *
1416  * This function scans the page range from @start to @end (inclusive) and tags
1417  * all pages that have DIRTY tag set with a special TOWRITE tag. The idea is
1418  * that write_cache_pages (or whoever calls this function) will then use
1419  * TOWRITE tag to identify pages eligible for writeback.  This mechanism is
1420  * used to avoid livelocking of writeback by a process steadily creating new
1421  * dirty pages in the file (thus it is important for this function to be quick
1422  * so that it can tag pages faster than a dirtying process can create them).
1423  */
1424 /*
1425  * We tag pages in batches of WRITEBACK_TAG_BATCH to reduce tree_lock latency.
1426  */
1427 void tag_pages_for_writeback(struct address_space *mapping,
1428                              pgoff_t start, pgoff_t end)
1429 {
1430 #define WRITEBACK_TAG_BATCH 4096
1431         unsigned long tagged;
1432
1433         do {
1434                 spin_lock_irq(&mapping->tree_lock);
1435                 tagged = radix_tree_range_tag_if_tagged(&mapping->page_tree,
1436                                 &start, end, WRITEBACK_TAG_BATCH,
1437                                 PAGECACHE_TAG_DIRTY, PAGECACHE_TAG_TOWRITE);
1438                 spin_unlock_irq(&mapping->tree_lock);
1439                 WARN_ON_ONCE(tagged > WRITEBACK_TAG_BATCH);
1440                 cond_resched();
1441                 /* We check 'start' to handle wrapping when end == ~0UL */
1442         } while (tagged >= WRITEBACK_TAG_BATCH && start);
1443 }
1444 EXPORT_SYMBOL(tag_pages_for_writeback);
1445
1446 /**
1447  * write_cache_pages - walk the list of dirty pages of the given address space and write all of them.
1448  * @mapping: address space structure to write
1449  * @wbc: subtract the number of written pages from *@wbc->nr_to_write
1450  * @writepage: function called for each page
1451  * @data: data passed to writepage function
1452  *
1453  * If a page is already under I/O, write_cache_pages() skips it, even
1454  * if it's dirty.  This is desirable behaviour for memory-cleaning writeback,
1455  * but it is INCORRECT for data-integrity system calls such as fsync().  fsync()
1456  * and msync() need to guarantee that all the data which was dirty at the time
1457  * the call was made get new I/O started against them.  If wbc->sync_mode is
1458  * WB_SYNC_ALL then we were called for data integrity and we must wait for
1459  * existing IO to complete.
1460  *
1461  * To avoid livelocks (when other process dirties new pages), we first tag
1462  * pages which should be written back with TOWRITE tag and only then start
1463  * writing them. For data-integrity sync we have to be careful so that we do
1464  * not miss some pages (e.g., because some other process has cleared TOWRITE
1465  * tag we set). The rule we follow is that TOWRITE tag can be cleared only
1466  * by the process clearing the DIRTY tag (and submitting the page for IO).
1467  */
1468 int write_cache_pages(struct address_space *mapping,
1469                       struct writeback_control *wbc, writepage_t writepage,
1470                       void *data)
1471 {
1472         int ret = 0;
1473         int done = 0;
1474         struct pagevec pvec;
1475         int nr_pages;
1476         pgoff_t uninitialized_var(writeback_index);
1477         pgoff_t index;
1478         pgoff_t end;            /* Inclusive */
1479         pgoff_t done_index;
1480         int cycled;
1481         int range_whole = 0;
1482         int tag;
1483
1484         pagevec_init(&pvec, 0);
1485         if (wbc->range_cyclic) {
1486                 writeback_index = mapping->writeback_index; /* prev offset */
1487                 index = writeback_index;
1488                 if (index == 0)
1489                         cycled = 1;
1490                 else
1491                         cycled = 0;
1492                 end = -1;
1493         } else {
1494                 index = wbc->range_start >> PAGE_CACHE_SHIFT;
1495                 end = wbc->range_end >> PAGE_CACHE_SHIFT;
1496                 if (wbc->range_start == 0 && wbc->range_end == LLONG_MAX)
1497                         range_whole = 1;
1498                 cycled = 1; /* ignore range_cyclic tests */
1499         }
1500         if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
1501                 tag = PAGECACHE_TAG_TOWRITE;
1502         else
1503                 tag = PAGECACHE_TAG_DIRTY;
1504 retry:
1505         if (wbc->sync_mode == WB_SYNC_ALL || wbc->tagged_writepages)
1506                 tag_pages_for_writeback(mapping, index, end);
1507         done_index = index;
1508         while (!done && (index <= end)) {
1509                 int i;
1510
1511                 nr_pages = pagevec_lookup_tag(&pvec, mapping, &index, tag,
1512                               min(end - index, (pgoff_t)PAGEVEC_SIZE-1) + 1);
1513                 if (nr_pages == 0)
1514                         break;
1515
1516                 for (i = 0; i < nr_pages; i++) {
1517                         struct page *page = pvec.pages[i];
1518
1519                         /*
1520                          * At this point, the page may be truncated or
1521                          * invalidated (changing page->mapping to NULL), or
1522                          * even swizzled back from swapper_space to tmpfs file
1523                          * mapping. However, page->index will not change
1524                          * because we have a reference on the page.
1525                          */
1526                         if (page->index > end) {
1527                                 /*
1528                                  * can't be range_cyclic (1st pass) because
1529                                  * end == -1 in that case.
1530                                  */
1531                                 done = 1;
1532                                 break;
1533                         }
1534
1535                         done_index = page->index;
1536
1537                         lock_page(page);
1538
1539                         /*
1540                          * Page truncated or invalidated. We can freely skip it
1541                          * then, even for data integrity operations: the page
1542                          * has disappeared concurrently, so there could be no
1543                          * real expectation of this data interity operation
1544                          * even if there is now a new, dirty page at the same
1545                          * pagecache address.
1546                          */
1547                         if (unlikely(page->mapping != mapping)) {
1548 continue_unlock:
1549                                 unlock_page(page);
1550                                 continue;
1551                         }
1552
1553                         if (!PageDirty(page)) {
1554                                 /* someone wrote it for us */
1555                                 goto continue_unlock;
1556                         }
1557
1558                         if (PageWriteback(page)) {
1559                                 if (wbc->sync_mode != WB_SYNC_NONE)
1560                                         wait_on_page_writeback(page);
1561                                 else
1562                                         goto continue_unlock;
1563                         }
1564
1565                         BUG_ON(PageWriteback(page));
1566                         if (!clear_page_dirty_for_io(page))
1567                                 goto continue_unlock;
1568
1569                         trace_wbc_writepage(wbc, mapping->backing_dev_info);
1570                         ret = (*writepage)(page, wbc, data);
1571                         if (unlikely(ret)) {
1572                                 if (ret == AOP_WRITEPAGE_ACTIVATE) {
1573                                         unlock_page(page);
1574                                         ret = 0;
1575                                 } else {
1576                                         /*
1577                                          * done_index is set past this page,
1578                                          * so media errors will not choke
1579                                          * background writeout for the entire
1580                                          * file. This has consequences for
1581                                          * range_cyclic semantics (ie. it may
1582                                          * not be suitable for data integrity
1583                                          * writeout).
1584                                          */
1585                                         done_index = page->index + 1;
1586                                         done = 1;
1587                                         break;
1588                                 }
1589                         }
1590
1591                         /*
1592                          * We stop writing back only if we are not doing
1593                          * integrity sync. In case of integrity sync we have to
1594                          * keep going until we have written all the pages
1595                          * we tagged for writeback prior to entering this loop.
1596                          */
1597                         if (--wbc->nr_to_write <= 0 &&
1598                             wbc->sync_mode == WB_SYNC_NONE) {
1599                                 done = 1;
1600                                 break;
1601                         }
1602                 }
1603                 pagevec_release(&pvec);
1604                 cond_resched();
1605         }
1606         if (!cycled && !done) {
1607                 /*
1608                  * range_cyclic:
1609                  * We hit the last page and there is more work to be done: wrap
1610                  * back to the start of the file
1611                  */
1612                 cycled = 1;
1613                 index = 0;
1614                 end = writeback_index - 1;
1615                 goto retry;
1616         }
1617         if (wbc->range_cyclic || (range_whole && wbc->nr_to_write > 0))
1618                 mapping->writeback_index = done_index;
1619
1620         return ret;
1621 }
1622 EXPORT_SYMBOL(write_cache_pages);
1623
1624 /*
1625  * Function used by generic_writepages to call the real writepage
1626  * function and set the mapping flags on error
1627  */
1628 static int __writepage(struct page *page, struct writeback_control *wbc,
1629                        void *data)
1630 {
1631         struct address_space *mapping = data;
1632         int ret = mapping->a_ops->writepage(page, wbc);
1633         mapping_set_error(mapping, ret);
1634         return ret;
1635 }
1636
1637 /**
1638  * generic_writepages - walk the list of dirty pages of the given address space and writepage() all of them.
1639  * @mapping: address space structure to write
1640  * @wbc: subtract the number of written pages from *@wbc->nr_to_write
1641  *
1642  * This is a library function, which implements the writepages()
1643  * address_space_operation.
1644  */
1645 int generic_writepages(struct address_space *mapping,
1646                        struct writeback_control *wbc)
1647 {
1648         struct blk_plug plug;
1649         int ret;
1650
1651         /* deal with chardevs and other special file */
1652         if (!mapping->a_ops->writepage)
1653                 return 0;
1654
1655         blk_start_plug(&plug);
1656         ret = write_cache_pages(mapping, wbc, __writepage, mapping);
1657         blk_finish_plug(&plug);
1658         return ret;
1659 }
1660
1661 EXPORT_SYMBOL(generic_writepages);
1662
1663 int do_writepages(struct address_space *mapping, struct writeback_control *wbc)
1664 {
1665         int ret;
1666
1667         if (wbc->nr_to_write <= 0)
1668                 return 0;
1669         if (mapping->a_ops->writepages)
1670                 ret = mapping->a_ops->writepages(mapping, wbc);
1671         else
1672                 ret = generic_writepages(mapping, wbc);
1673         return ret;
1674 }
1675
1676 /**
1677  * write_one_page - write out a single page and optionally wait on I/O
1678  * @page: the page to write
1679  * @wait: if true, wait on writeout
1680  *
1681  * The page must be locked by the caller and will be unlocked upon return.
1682  *
1683  * write_one_page() returns a negative error code if I/O failed.
1684  */
1685 int write_one_page(struct page *page, int wait)
1686 {
1687         struct address_space *mapping = page->mapping;
1688         int ret = 0;
1689         struct writeback_control wbc = {
1690                 .sync_mode = WB_SYNC_ALL,
1691                 .nr_to_write = 1,
1692         };
1693
1694         BUG_ON(!PageLocked(page));
1695
1696         if (wait)
1697                 wait_on_page_writeback(page);
1698
1699         if (clear_page_dirty_for_io(page)) {
1700                 page_cache_get(page);
1701                 ret = mapping->a_ops->writepage(page, &wbc);
1702                 if (ret == 0 && wait) {
1703                         wait_on_page_writeback(page);
1704                         if (PageError(page))
1705                                 ret = -EIO;
1706                 }
1707                 page_cache_release(page);
1708         } else {
1709                 unlock_page(page);
1710         }
1711         return ret;
1712 }
1713 EXPORT_SYMBOL(write_one_page);
1714
1715 /*
1716  * For address_spaces which do not use buffers nor write back.
1717  */
1718 int __set_page_dirty_no_writeback(struct page *page)
1719 {
1720         if (!PageDirty(page))
1721                 return !TestSetPageDirty(page);
1722         return 0;
1723 }
1724
1725 /*
1726  * Helper function for set_page_dirty family.
1727  * NOTE: This relies on being atomic wrt interrupts.
1728  */
1729 void account_page_dirtied(struct page *page, struct address_space *mapping)
1730 {
1731         if (mapping_cap_account_dirty(mapping)) {
1732                 __inc_zone_page_state(page, NR_FILE_DIRTY);
1733                 __inc_zone_page_state(page, NR_DIRTIED);
1734                 __inc_bdi_stat(mapping->backing_dev_info, BDI_RECLAIMABLE);
1735                 __inc_bdi_stat(mapping->backing_dev_info, BDI_DIRTIED);
1736                 task_io_account_write(PAGE_CACHE_SIZE);
1737         }
1738 }
1739 EXPORT_SYMBOL(account_page_dirtied);
1740
1741 /*
1742  * Helper function for set_page_writeback family.
1743  * NOTE: Unlike account_page_dirtied this does not rely on being atomic
1744  * wrt interrupts.
1745  */
1746 void account_page_writeback(struct page *page)
1747 {
1748         inc_zone_page_state(page, NR_WRITEBACK);
1749 }
1750 EXPORT_SYMBOL(account_page_writeback);
1751
1752 /*
1753  * For address_spaces which do not use buffers.  Just tag the page as dirty in
1754  * its radix tree.
1755  *
1756  * This is also used when a single buffer is being dirtied: we want to set the
1757  * page dirty in that case, but not all the buffers.  This is a "bottom-up"
1758  * dirtying, whereas __set_page_dirty_buffers() is a "top-down" dirtying.
1759  *
1760  * The caller must ensure this doesn't race with truncation.  Most will simply
1761  * hold the page lock, but e.g. zap_pte_range() calls with the page mapped and
1762  * the pte lock held, which also locks out truncation.
1763  */
1764 int __set_page_dirty_nobuffers(struct page *page)
1765 {
1766         if (!TestSetPageDirty(page)) {
1767                 struct address_space *mapping = page_mapping(page);
1768                 unsigned long flags;
1769
1770                 if (!mapping)
1771                         return 1;
1772
1773                 spin_lock_irqsave(&mapping->tree_lock, flags);
1774                 BUG_ON(page_mapping(page) != mapping);
1775                 WARN_ON_ONCE(!PagePrivate(page) && !PageUptodate(page));
1776                 account_page_dirtied(page, mapping);
1777                 radix_tree_tag_set(&mapping->page_tree, page_index(page),
1778                                    PAGECACHE_TAG_DIRTY);
1779                 spin_unlock_irqrestore(&mapping->tree_lock, flags);
1780                 if (mapping->host) {
1781                         /* !PageAnon && !swapper_space */
1782                         __mark_inode_dirty(mapping->host, I_DIRTY_PAGES);
1783                 }
1784                 return 1;
1785         }
1786         return 0;
1787 }
1788 EXPORT_SYMBOL(__set_page_dirty_nobuffers);
1789
1790 /*
1791  * Call this whenever redirtying a page, to de-account the dirty counters
1792  * (NR_DIRTIED, BDI_DIRTIED, tsk->nr_dirtied), so that they match the written
1793  * counters (NR_WRITTEN, BDI_WRITTEN) in long term. The mismatches will lead to
1794  * systematic errors in balanced_dirty_ratelimit and the dirty pages position
1795  * control.
1796  */
1797 void account_page_redirty(struct page *page)
1798 {
1799         struct address_space *mapping = page->mapping;
1800         if (mapping && mapping_cap_account_dirty(mapping)) {
1801                 current->nr_dirtied--;
1802                 dec_zone_page_state(page, NR_DIRTIED);
1803                 dec_bdi_stat(mapping->backing_dev_info, BDI_DIRTIED);
1804         }
1805 }
1806 EXPORT_SYMBOL(account_page_redirty);
1807
1808 /*
1809  * When a writepage implementation decides that it doesn't want to write this
1810  * page for some reason, it should redirty the locked page via
1811  * redirty_page_for_writepage() and it should then unlock the page and return 0
1812  */
1813 int redirty_page_for_writepage(struct writeback_control *wbc, struct page *page)
1814 {
1815         wbc->pages_skipped++;
1816         account_page_redirty(page);
1817         return __set_page_dirty_nobuffers(page);
1818 }
1819 EXPORT_SYMBOL(redirty_page_for_writepage);
1820
1821 /*
1822  * Dirty a page.
1823  *
1824  * For pages with a mapping this should be done under the page lock
1825  * for the benefit of asynchronous memory errors who prefer a consistent
1826  * dirty state. This rule can be broken in some special cases,
1827  * but should be better not to.
1828  *
1829  * If the mapping doesn't provide a set_page_dirty a_op, then
1830  * just fall through and assume that it wants buffer_heads.
1831  */
1832 int set_page_dirty(struct page *page)
1833 {
1834         struct address_space *mapping = page_mapping(page);
1835
1836         if (likely(mapping)) {
1837                 int (*spd)(struct page *) = mapping->a_ops->set_page_dirty;
1838                 /*
1839                  * readahead/lru_deactivate_page could remain
1840                  * PG_readahead/PG_reclaim due to race with end_page_writeback
1841                  * About readahead, if the page is written, the flags would be
1842                  * reset. So no problem.
1843                  * About lru_deactivate_page, if the page is redirty, the flag
1844                  * will be reset. So no problem. but if the page is used by readahead
1845                  * it will confuse readahead and make it restart the size rampup
1846                  * process. But it's a trivial problem.
1847                  */
1848                 ClearPageReclaim(page);
1849 #ifdef CONFIG_BLOCK
1850                 if (!spd)
1851                         spd = __set_page_dirty_buffers;
1852 #endif
1853                 return (*spd)(page);
1854         }
1855         if (!PageDirty(page)) {
1856                 if (!TestSetPageDirty(page))
1857                         return 1;
1858         }
1859         return 0;
1860 }
1861 EXPORT_SYMBOL(set_page_dirty);
1862
1863 /*
1864  * set_page_dirty() is racy if the caller has no reference against
1865  * page->mapping->host, and if the page is unlocked.  This is because another
1866  * CPU could truncate the page off the mapping and then free the mapping.
1867  *
1868  * Usually, the page _is_ locked, or the caller is a user-space process which
1869  * holds a reference on the inode by having an open file.
1870  *
1871  * In other cases, the page should be locked before running set_page_dirty().
1872  */
1873 int set_page_dirty_lock(struct page *page)
1874 {
1875         int ret;
1876
1877         lock_page(page);
1878         ret = set_page_dirty(page);
1879         unlock_page(page);
1880         return ret;
1881 }
1882 EXPORT_SYMBOL(set_page_dirty_lock);
1883
1884 /*
1885  * Clear a page's dirty flag, while caring for dirty memory accounting.
1886  * Returns true if the page was previously dirty.
1887  *
1888  * This is for preparing to put the page under writeout.  We leave the page
1889  * tagged as dirty in the radix tree so that a concurrent write-for-sync
1890  * can discover it via a PAGECACHE_TAG_DIRTY walk.  The ->writepage
1891  * implementation will run either set_page_writeback() or set_page_dirty(),
1892  * at which stage we bring the page's dirty flag and radix-tree dirty tag
1893  * back into sync.
1894  *
1895  * This incoherency between the page's dirty flag and radix-tree tag is
1896  * unfortunate, but it only exists while the page is locked.
1897  */
1898 int clear_page_dirty_for_io(struct page *page)
1899 {
1900         struct address_space *mapping = page_mapping(page);
1901
1902         BUG_ON(!PageLocked(page));
1903
1904         if (mapping && mapping_cap_account_dirty(mapping)) {
1905                 /*
1906                  * Yes, Virginia, this is indeed insane.
1907                  *
1908                  * We use this sequence to make sure that
1909                  *  (a) we account for dirty stats properly
1910                  *  (b) we tell the low-level filesystem to
1911                  *      mark the whole page dirty if it was
1912                  *      dirty in a pagetable. Only to then
1913                  *  (c) clean the page again and return 1 to
1914                  *      cause the writeback.
1915                  *
1916                  * This way we avoid all nasty races with the
1917                  * dirty bit in multiple places and clearing
1918                  * them concurrently from different threads.
1919                  *
1920                  * Note! Normally the "set_page_dirty(page)"
1921                  * has no effect on the actual dirty bit - since
1922                  * that will already usually be set. But we
1923                  * need the side effects, and it can help us
1924                  * avoid races.
1925                  *
1926                  * We basically use the page "master dirty bit"
1927                  * as a serialization point for all the different
1928                  * threads doing their things.
1929                  */
1930                 if (page_mkclean(page))
1931                         set_page_dirty(page);
1932                 /*
1933                  * We carefully synchronise fault handlers against
1934                  * installing a dirty pte and marking the page dirty
1935                  * at this point.  We do this by having them hold the
1936                  * page lock while dirtying the page, and pages are
1937                  * always locked coming in here, so we get the desired
1938                  * exclusion.
1939                  */
1940                 if (TestClearPageDirty(page)) {
1941                         dec_zone_page_state(page, NR_FILE_DIRTY);
1942                         dec_bdi_stat(mapping->backing_dev_info,
1943                                         BDI_RECLAIMABLE);
1944                         return 1;
1945                 }
1946                 return 0;
1947         }
1948         return TestClearPageDirty(page);
1949 }
1950 EXPORT_SYMBOL(clear_page_dirty_for_io);
1951
1952 int test_clear_page_writeback(struct page *page)
1953 {
1954         struct address_space *mapping = page_mapping(page);
1955         int ret;
1956
1957         if (mapping) {
1958                 struct backing_dev_info *bdi = mapping->backing_dev_info;
1959                 unsigned long flags;
1960
1961                 spin_lock_irqsave(&mapping->tree_lock, flags);
1962                 ret = TestClearPageWriteback(page);
1963                 if (ret) {
1964                         radix_tree_tag_clear(&mapping->page_tree,
1965                                                 page_index(page),
1966                                                 PAGECACHE_TAG_WRITEBACK);
1967                         if (bdi_cap_account_writeback(bdi)) {
1968                                 __dec_bdi_stat(bdi, BDI_WRITEBACK);
1969                                 __bdi_writeout_inc(bdi);
1970                         }
1971                 }
1972                 spin_unlock_irqrestore(&mapping->tree_lock, flags);
1973         } else {
1974                 ret = TestClearPageWriteback(page);
1975         }
1976         if (ret) {
1977                 dec_zone_page_state(page, NR_WRITEBACK);
1978                 inc_zone_page_state(page, NR_WRITTEN);
1979         }
1980         return ret;
1981 }
1982
1983 int test_set_page_writeback(struct page *page)
1984 {
1985         struct address_space *mapping = page_mapping(page);
1986         int ret;
1987
1988         if (mapping) {
1989                 struct backing_dev_info *bdi = mapping->backing_dev_info;
1990                 unsigned long flags;
1991
1992                 spin_lock_irqsave(&mapping->tree_lock, flags);
1993                 ret = TestSetPageWriteback(page);
1994                 if (!ret) {
1995                         radix_tree_tag_set(&mapping->page_tree,
1996                                                 page_index(page),
1997                                                 PAGECACHE_TAG_WRITEBACK);
1998                         if (bdi_cap_account_writeback(bdi))
1999                                 __inc_bdi_stat(bdi, BDI_WRITEBACK);
2000                 }
2001                 if (!PageDirty(page))
2002                         radix_tree_tag_clear(&mapping->page_tree,
2003                                                 page_index(page),
2004                                                 PAGECACHE_TAG_DIRTY);
2005                 radix_tree_tag_clear(&mapping->page_tree,
2006                                      page_index(page),
2007                                      PAGECACHE_TAG_TOWRITE);
2008                 spin_unlock_irqrestore(&mapping->tree_lock, flags);
2009         } else {
2010                 ret = TestSetPageWriteback(page);
2011         }
2012         if (!ret)
2013                 account_page_writeback(page);
2014         return ret;
2015
2016 }
2017 EXPORT_SYMBOL(test_set_page_writeback);
2018
2019 /*
2020  * Return true if any of the pages in the mapping are marked with the
2021  * passed tag.
2022  */
2023 int mapping_tagged(struct address_space *mapping, int tag)
2024 {
2025         return radix_tree_tagged(&mapping->page_tree, tag);
2026 }
2027 EXPORT_SYMBOL(mapping_tagged);