Merge "kfence: Use pt_regs to generate stack trace on faults" into tizen
[platform/kernel/linux-rpi.git] / mm / vmscan.c
1 // SPDX-License-Identifier: GPL-2.0
2 /*
3  *  linux/mm/vmscan.c
4  *
5  *  Copyright (C) 1991, 1992, 1993, 1994  Linus Torvalds
6  *
7  *  Swap reorganised 29.12.95, Stephen Tweedie.
8  *  kswapd added: 7.1.96  sct
9  *  Removed kswapd_ctl limits, and swap out as many pages as needed
10  *  to bring the system back to freepages.high: 2.4.97, Rik van Riel.
11  *  Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
12  *  Multiqueue VM started 5.8.00, Rik van Riel.
13  */
14
15 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
17 #include <linux/mm.h>
18 #include <linux/sched/mm.h>
19 #include <linux/module.h>
20 #include <linux/gfp.h>
21 #include <linux/kernel_stat.h>
22 #include <linux/swap.h>
23 #include <linux/pagemap.h>
24 #include <linux/init.h>
25 #include <linux/highmem.h>
26 #include <linux/vmpressure.h>
27 #include <linux/vmstat.h>
28 #include <linux/file.h>
29 #include <linux/writeback.h>
30 #include <linux/blkdev.h>
31 #include <linux/buffer_head.h>  /* for try_to_release_page(),
32                                         buffer_heads_over_limit */
33 #include <linux/mm_inline.h>
34 #include <linux/backing-dev.h>
35 #include <linux/rmap.h>
36 #include <linux/topology.h>
37 #include <linux/cpu.h>
38 #include <linux/cpuset.h>
39 #include <linux/compaction.h>
40 #include <linux/notifier.h>
41 #include <linux/rwsem.h>
42 #include <linux/delay.h>
43 #include <linux/kthread.h>
44 #include <linux/freezer.h>
45 #include <linux/memcontrol.h>
46 #include <linux/delayacct.h>
47 #include <linux/sysctl.h>
48 #include <linux/oom.h>
49 #include <linux/pagevec.h>
50 #include <linux/prefetch.h>
51 #include <linux/printk.h>
52 #include <linux/dax.h>
53 #include <linux/psi.h>
54
55 #include <asm/tlbflush.h>
56 #include <asm/div64.h>
57
58 #include <linux/swapops.h>
59 #include <linux/balloon_compaction.h>
60
61 #include "internal.h"
62
63 #define CREATE_TRACE_POINTS
64 #include <trace/events/vmscan.h>
65
66 struct scan_control {
67         /* How many pages shrink_list() should reclaim */
68         unsigned long nr_to_reclaim;
69
70         /*
71          * Nodemask of nodes allowed by the caller. If NULL, all nodes
72          * are scanned.
73          */
74         nodemask_t      *nodemask;
75
76         /*
77          * The memory cgroup that hit its limit and as a result is the
78          * primary target of this reclaim invocation.
79          */
80         struct mem_cgroup *target_mem_cgroup;
81
82         /*
83          * Scan pressure balancing between anon and file LRUs
84          */
85         unsigned long   anon_cost;
86         unsigned long   file_cost;
87
88         /* Can active pages be deactivated as part of reclaim? */
89 #define DEACTIVATE_ANON 1
90 #define DEACTIVATE_FILE 2
91         unsigned int may_deactivate:2;
92         unsigned int force_deactivate:1;
93         unsigned int skipped_deactivate:1;
94
95         /* Writepage batching in laptop mode; RECLAIM_WRITE */
96         unsigned int may_writepage:1;
97
98         /* Can mapped pages be reclaimed? */
99         unsigned int may_unmap:1;
100
101         /* Can pages be swapped as part of reclaim? */
102         unsigned int may_swap:1;
103
104         /*
105          * Cgroup memory below memory.low is protected as long as we
106          * don't threaten to OOM. If any cgroup is reclaimed at
107          * reduced force or passed over entirely due to its memory.low
108          * setting (memcg_low_skipped), and nothing is reclaimed as a
109          * result, then go back for one more cycle that reclaims the protected
110          * memory (memcg_low_reclaim) to avert OOM.
111          */
112         unsigned int memcg_low_reclaim:1;
113         unsigned int memcg_low_skipped:1;
114
115         unsigned int hibernation_mode:1;
116
117         /* One of the zones is ready for compaction */
118         unsigned int compaction_ready:1;
119
120         /* There is easily reclaimable cold cache in the current node */
121         unsigned int cache_trim_mode:1;
122
123         /* The file pages on the current node are dangerously low */
124         unsigned int file_is_tiny:1;
125
126         /* Allocation order */
127         s8 order;
128
129         /* Scan (total_size >> priority) pages at once */
130         s8 priority;
131
132         /* The highest zone to isolate pages for reclaim from */
133         s8 reclaim_idx;
134
135         /* This context's GFP mask */
136         gfp_t gfp_mask;
137
138         /* Incremented by the number of inactive pages that were scanned */
139         unsigned long nr_scanned;
140
141         /* Number of pages freed so far during a call to shrink_zones() */
142         unsigned long nr_reclaimed;
143
144         struct {
145                 unsigned int dirty;
146                 unsigned int unqueued_dirty;
147                 unsigned int congested;
148                 unsigned int writeback;
149                 unsigned int immediate;
150                 unsigned int file_taken;
151                 unsigned int taken;
152         } nr;
153
154         /* for recording the reclaimed slab by now */
155         struct reclaim_state reclaim_state;
156 };
157
158 #ifdef ARCH_HAS_PREFETCHW
159 #define prefetchw_prev_lru_page(_page, _base, _field)                   \
160         do {                                                            \
161                 if ((_page)->lru.prev != _base) {                       \
162                         struct page *prev;                              \
163                                                                         \
164                         prev = lru_to_page(&(_page->lru));              \
165                         prefetchw(&prev->_field);                       \
166                 }                                                       \
167         } while (0)
168 #else
169 #define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
170 #endif
171
172 /*
173  * From 0 .. 200.  Higher means more swappy.
174  */
175 int vm_swappiness = 60;
176
177 static void set_task_reclaim_state(struct task_struct *task,
178                                    struct reclaim_state *rs)
179 {
180         /* Check for an overwrite */
181         WARN_ON_ONCE(rs && task->reclaim_state);
182
183         /* Check for the nulling of an already-nulled member */
184         WARN_ON_ONCE(!rs && !task->reclaim_state);
185
186         task->reclaim_state = rs;
187 }
188
189 static LIST_HEAD(shrinker_list);
190 static DECLARE_RWSEM(shrinker_rwsem);
191
192 #ifdef CONFIG_MEMCG
193 /*
194  * We allow subsystems to populate their shrinker-related
195  * LRU lists before register_shrinker_prepared() is called
196  * for the shrinker, since we don't want to impose
197  * restrictions on their internal registration order.
198  * In this case shrink_slab_memcg() may find corresponding
199  * bit is set in the shrinkers map.
200  *
201  * This value is used by the function to detect registering
202  * shrinkers and to skip do_shrink_slab() calls for them.
203  */
204 #define SHRINKER_REGISTERING ((struct shrinker *)~0UL)
205
206 static DEFINE_IDR(shrinker_idr);
207 static int shrinker_nr_max;
208
209 static int prealloc_memcg_shrinker(struct shrinker *shrinker)
210 {
211         int id, ret = -ENOMEM;
212
213         down_write(&shrinker_rwsem);
214         /* This may call shrinker, so it must use down_read_trylock() */
215         id = idr_alloc(&shrinker_idr, SHRINKER_REGISTERING, 0, 0, GFP_KERNEL);
216         if (id < 0)
217                 goto unlock;
218
219         if (id >= shrinker_nr_max) {
220                 if (memcg_expand_shrinker_maps(id)) {
221                         idr_remove(&shrinker_idr, id);
222                         goto unlock;
223                 }
224
225                 shrinker_nr_max = id + 1;
226         }
227         shrinker->id = id;
228         ret = 0;
229 unlock:
230         up_write(&shrinker_rwsem);
231         return ret;
232 }
233
234 static void unregister_memcg_shrinker(struct shrinker *shrinker)
235 {
236         int id = shrinker->id;
237
238         BUG_ON(id < 0);
239
240         down_write(&shrinker_rwsem);
241         idr_remove(&shrinker_idr, id);
242         up_write(&shrinker_rwsem);
243 }
244
245 static bool cgroup_reclaim(struct scan_control *sc)
246 {
247         return sc->target_mem_cgroup;
248 }
249
250 /**
251  * writeback_throttling_sane - is the usual dirty throttling mechanism available?
252  * @sc: scan_control in question
253  *
254  * The normal page dirty throttling mechanism in balance_dirty_pages() is
255  * completely broken with the legacy memcg and direct stalling in
256  * shrink_page_list() is used for throttling instead, which lacks all the
257  * niceties such as fairness, adaptive pausing, bandwidth proportional
258  * allocation and configurability.
259  *
260  * This function tests whether the vmscan currently in progress can assume
261  * that the normal dirty throttling mechanism is operational.
262  */
263 static bool writeback_throttling_sane(struct scan_control *sc)
264 {
265         if (!cgroup_reclaim(sc))
266                 return true;
267 #ifdef CONFIG_CGROUP_WRITEBACK
268         if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
269                 return true;
270 #endif
271         return false;
272 }
273 #else
274 static int prealloc_memcg_shrinker(struct shrinker *shrinker)
275 {
276         return 0;
277 }
278
279 static void unregister_memcg_shrinker(struct shrinker *shrinker)
280 {
281 }
282
283 static bool cgroup_reclaim(struct scan_control *sc)
284 {
285         return false;
286 }
287
288 static bool writeback_throttling_sane(struct scan_control *sc)
289 {
290         return true;
291 }
292 #endif
293
294 /*
295  * This misses isolated pages which are not accounted for to save counters.
296  * As the data only determines if reclaim or compaction continues, it is
297  * not expected that isolated pages will be a dominating factor.
298  */
299 unsigned long zone_reclaimable_pages(struct zone *zone)
300 {
301         unsigned long nr;
302
303         nr = zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_FILE) +
304                 zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_FILE);
305         if (get_nr_swap_pages() > 0)
306                 nr += zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_ANON) +
307                         zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_ANON);
308
309         return nr;
310 }
311
312 /**
313  * lruvec_lru_size -  Returns the number of pages on the given LRU list.
314  * @lruvec: lru vector
315  * @lru: lru to use
316  * @zone_idx: zones to consider (use MAX_NR_ZONES for the whole LRU list)
317  */
318 unsigned long lruvec_lru_size(struct lruvec *lruvec, enum lru_list lru, int zone_idx)
319 {
320         unsigned long size = 0;
321         int zid;
322
323         for (zid = 0; zid <= zone_idx && zid < MAX_NR_ZONES; zid++) {
324                 struct zone *zone = &lruvec_pgdat(lruvec)->node_zones[zid];
325
326                 if (!managed_zone(zone))
327                         continue;
328
329                 if (!mem_cgroup_disabled())
330                         size += mem_cgroup_get_zone_lru_size(lruvec, lru, zid);
331                 else
332                         size += zone_page_state(zone, NR_ZONE_LRU_BASE + lru);
333         }
334         return size;
335 }
336
337 /*
338  * Add a shrinker callback to be called from the vm.
339  */
340 int prealloc_shrinker(struct shrinker *shrinker)
341 {
342         unsigned int size = sizeof(*shrinker->nr_deferred);
343
344         if (shrinker->flags & SHRINKER_NUMA_AWARE)
345                 size *= nr_node_ids;
346
347         shrinker->nr_deferred = kzalloc(size, GFP_KERNEL);
348         if (!shrinker->nr_deferred)
349                 return -ENOMEM;
350
351         if (shrinker->flags & SHRINKER_MEMCG_AWARE) {
352                 if (prealloc_memcg_shrinker(shrinker))
353                         goto free_deferred;
354         }
355
356         return 0;
357
358 free_deferred:
359         kfree(shrinker->nr_deferred);
360         shrinker->nr_deferred = NULL;
361         return -ENOMEM;
362 }
363
364 void free_prealloced_shrinker(struct shrinker *shrinker)
365 {
366         if (!shrinker->nr_deferred)
367                 return;
368
369         if (shrinker->flags & SHRINKER_MEMCG_AWARE)
370                 unregister_memcg_shrinker(shrinker);
371
372         kfree(shrinker->nr_deferred);
373         shrinker->nr_deferred = NULL;
374 }
375
376 void register_shrinker_prepared(struct shrinker *shrinker)
377 {
378         down_write(&shrinker_rwsem);
379         list_add_tail(&shrinker->list, &shrinker_list);
380 #ifdef CONFIG_MEMCG
381         if (shrinker->flags & SHRINKER_MEMCG_AWARE)
382                 idr_replace(&shrinker_idr, shrinker, shrinker->id);
383 #endif
384         up_write(&shrinker_rwsem);
385 }
386
387 int register_shrinker(struct shrinker *shrinker)
388 {
389         int err = prealloc_shrinker(shrinker);
390
391         if (err)
392                 return err;
393         register_shrinker_prepared(shrinker);
394         return 0;
395 }
396 EXPORT_SYMBOL(register_shrinker);
397
398 /*
399  * Remove one
400  */
401 void unregister_shrinker(struct shrinker *shrinker)
402 {
403         if (!shrinker->nr_deferred)
404                 return;
405         if (shrinker->flags & SHRINKER_MEMCG_AWARE)
406                 unregister_memcg_shrinker(shrinker);
407         down_write(&shrinker_rwsem);
408         list_del(&shrinker->list);
409         up_write(&shrinker_rwsem);
410         kfree(shrinker->nr_deferred);
411         shrinker->nr_deferred = NULL;
412 }
413 EXPORT_SYMBOL(unregister_shrinker);
414
415 #define SHRINK_BATCH 128
416
417 static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
418                                     struct shrinker *shrinker, int priority)
419 {
420         unsigned long freed = 0;
421         unsigned long long delta;
422         long total_scan;
423         long freeable;
424         long nr;
425         long new_nr;
426         int nid = shrinkctl->nid;
427         long batch_size = shrinker->batch ? shrinker->batch
428                                           : SHRINK_BATCH;
429         long scanned = 0, next_deferred;
430
431         if (!(shrinker->flags & SHRINKER_NUMA_AWARE))
432                 nid = 0;
433
434         freeable = shrinker->count_objects(shrinker, shrinkctl);
435         if (freeable == 0 || freeable == SHRINK_EMPTY)
436                 return freeable;
437
438         /*
439          * copy the current shrinker scan count into a local variable
440          * and zero it so that other concurrent shrinker invocations
441          * don't also do this scanning work.
442          */
443         nr = atomic_long_xchg(&shrinker->nr_deferred[nid], 0);
444
445         total_scan = nr;
446         if (shrinker->seeks) {
447                 delta = freeable >> priority;
448                 delta *= 4;
449                 do_div(delta, shrinker->seeks);
450         } else {
451                 /*
452                  * These objects don't require any IO to create. Trim
453                  * them aggressively under memory pressure to keep
454                  * them from causing refetches in the IO caches.
455                  */
456                 delta = freeable / 2;
457         }
458
459         total_scan += delta;
460         if (total_scan < 0) {
461                 pr_err("shrink_slab: %pS negative objects to delete nr=%ld\n",
462                        shrinker->scan_objects, total_scan);
463                 total_scan = freeable;
464                 next_deferred = nr;
465         } else
466                 next_deferred = total_scan;
467
468         /*
469          * We need to avoid excessive windup on filesystem shrinkers
470          * due to large numbers of GFP_NOFS allocations causing the
471          * shrinkers to return -1 all the time. This results in a large
472          * nr being built up so when a shrink that can do some work
473          * comes along it empties the entire cache due to nr >>>
474          * freeable. This is bad for sustaining a working set in
475          * memory.
476          *
477          * Hence only allow the shrinker to scan the entire cache when
478          * a large delta change is calculated directly.
479          */
480         if (delta < freeable / 4)
481                 total_scan = min(total_scan, freeable / 2);
482
483         /*
484          * Avoid risking looping forever due to too large nr value:
485          * never try to free more than twice the estimate number of
486          * freeable entries.
487          */
488         if (total_scan > freeable * 2)
489                 total_scan = freeable * 2;
490
491         trace_mm_shrink_slab_start(shrinker, shrinkctl, nr,
492                                    freeable, delta, total_scan, priority);
493
494         /*
495          * Normally, we should not scan less than batch_size objects in one
496          * pass to avoid too frequent shrinker calls, but if the slab has less
497          * than batch_size objects in total and we are really tight on memory,
498          * we will try to reclaim all available objects, otherwise we can end
499          * up failing allocations although there are plenty of reclaimable
500          * objects spread over several slabs with usage less than the
501          * batch_size.
502          *
503          * We detect the "tight on memory" situations by looking at the total
504          * number of objects we want to scan (total_scan). If it is greater
505          * than the total number of objects on slab (freeable), we must be
506          * scanning at high prio and therefore should try to reclaim as much as
507          * possible.
508          */
509         while (total_scan >= batch_size ||
510                total_scan >= freeable) {
511                 unsigned long ret;
512                 unsigned long nr_to_scan = min(batch_size, total_scan);
513
514                 shrinkctl->nr_to_scan = nr_to_scan;
515                 shrinkctl->nr_scanned = nr_to_scan;
516                 ret = shrinker->scan_objects(shrinker, shrinkctl);
517                 if (ret == SHRINK_STOP)
518                         break;
519                 freed += ret;
520
521                 count_vm_events(SLABS_SCANNED, shrinkctl->nr_scanned);
522                 total_scan -= shrinkctl->nr_scanned;
523                 scanned += shrinkctl->nr_scanned;
524
525                 cond_resched();
526         }
527
528         if (next_deferred >= scanned)
529                 next_deferred -= scanned;
530         else
531                 next_deferred = 0;
532         /*
533          * move the unused scan count back into the shrinker in a
534          * manner that handles concurrent updates. If we exhausted the
535          * scan, there is no need to do an update.
536          */
537         if (next_deferred > 0)
538                 new_nr = atomic_long_add_return(next_deferred,
539                                                 &shrinker->nr_deferred[nid]);
540         else
541                 new_nr = atomic_long_read(&shrinker->nr_deferred[nid]);
542
543         trace_mm_shrink_slab_end(shrinker, nid, freed, nr, new_nr, total_scan);
544         return freed;
545 }
546
547 #ifdef CONFIG_MEMCG
548 static unsigned long shrink_slab_memcg(gfp_t gfp_mask, int nid,
549                         struct mem_cgroup *memcg, int priority)
550 {
551         struct memcg_shrinker_map *map;
552         unsigned long ret, freed = 0;
553         int i;
554
555         if (!mem_cgroup_online(memcg))
556                 return 0;
557
558         if (!down_read_trylock(&shrinker_rwsem))
559                 return 0;
560
561         map = rcu_dereference_protected(memcg->nodeinfo[nid]->shrinker_map,
562                                         true);
563         if (unlikely(!map))
564                 goto unlock;
565
566         for_each_set_bit(i, map->map, shrinker_nr_max) {
567                 struct shrink_control sc = {
568                         .gfp_mask = gfp_mask,
569                         .nid = nid,
570                         .memcg = memcg,
571                 };
572                 struct shrinker *shrinker;
573
574                 shrinker = idr_find(&shrinker_idr, i);
575                 if (unlikely(!shrinker || shrinker == SHRINKER_REGISTERING)) {
576                         if (!shrinker)
577                                 clear_bit(i, map->map);
578                         continue;
579                 }
580
581                 /* Call non-slab shrinkers even though kmem is disabled */
582                 if (!memcg_kmem_enabled() &&
583                     !(shrinker->flags & SHRINKER_NONSLAB))
584                         continue;
585
586                 ret = do_shrink_slab(&sc, shrinker, priority);
587                 if (ret == SHRINK_EMPTY) {
588                         clear_bit(i, map->map);
589                         /*
590                          * After the shrinker reported that it had no objects to
591                          * free, but before we cleared the corresponding bit in
592                          * the memcg shrinker map, a new object might have been
593                          * added. To make sure, we have the bit set in this
594                          * case, we invoke the shrinker one more time and reset
595                          * the bit if it reports that it is not empty anymore.
596                          * The memory barrier here pairs with the barrier in
597                          * memcg_set_shrinker_bit():
598                          *
599                          * list_lru_add()     shrink_slab_memcg()
600                          *   list_add_tail()    clear_bit()
601                          *   <MB>               <MB>
602                          *   set_bit()          do_shrink_slab()
603                          */
604                         smp_mb__after_atomic();
605                         ret = do_shrink_slab(&sc, shrinker, priority);
606                         if (ret == SHRINK_EMPTY)
607                                 ret = 0;
608                         else
609                                 memcg_set_shrinker_bit(memcg, nid, i);
610                 }
611                 freed += ret;
612
613                 if (rwsem_is_contended(&shrinker_rwsem)) {
614                         freed = freed ? : 1;
615                         break;
616                 }
617         }
618 unlock:
619         up_read(&shrinker_rwsem);
620         return freed;
621 }
622 #else /* CONFIG_MEMCG */
623 static unsigned long shrink_slab_memcg(gfp_t gfp_mask, int nid,
624                         struct mem_cgroup *memcg, int priority)
625 {
626         return 0;
627 }
628 #endif /* CONFIG_MEMCG */
629
630 /**
631  * shrink_slab - shrink slab caches
632  * @gfp_mask: allocation context
633  * @nid: node whose slab caches to target
634  * @memcg: memory cgroup whose slab caches to target
635  * @priority: the reclaim priority
636  *
637  * Call the shrink functions to age shrinkable caches.
638  *
639  * @nid is passed along to shrinkers with SHRINKER_NUMA_AWARE set,
640  * unaware shrinkers will receive a node id of 0 instead.
641  *
642  * @memcg specifies the memory cgroup to target. Unaware shrinkers
643  * are called only if it is the root cgroup.
644  *
645  * @priority is sc->priority, we take the number of objects and >> by priority
646  * in order to get the scan target.
647  *
648  * Returns the number of reclaimed slab objects.
649  */
650 static unsigned long shrink_slab(gfp_t gfp_mask, int nid,
651                                  struct mem_cgroup *memcg,
652                                  int priority)
653 {
654         unsigned long ret, freed = 0;
655         struct shrinker *shrinker;
656
657         /*
658          * The root memcg might be allocated even though memcg is disabled
659          * via "cgroup_disable=memory" boot parameter.  This could make
660          * mem_cgroup_is_root() return false, then just run memcg slab
661          * shrink, but skip global shrink.  This may result in premature
662          * oom.
663          */
664         if (!mem_cgroup_disabled() && !mem_cgroup_is_root(memcg))
665                 return shrink_slab_memcg(gfp_mask, nid, memcg, priority);
666
667         if (!down_read_trylock(&shrinker_rwsem))
668                 goto out;
669
670         list_for_each_entry(shrinker, &shrinker_list, list) {
671                 struct shrink_control sc = {
672                         .gfp_mask = gfp_mask,
673                         .nid = nid,
674                         .memcg = memcg,
675                 };
676
677                 ret = do_shrink_slab(&sc, shrinker, priority);
678                 if (ret == SHRINK_EMPTY)
679                         ret = 0;
680                 freed += ret;
681                 /*
682                  * Bail out if someone want to register a new shrinker to
683                  * prevent the registration from being stalled for long periods
684                  * by parallel ongoing shrinking.
685                  */
686                 if (rwsem_is_contended(&shrinker_rwsem)) {
687                         freed = freed ? : 1;
688                         break;
689                 }
690         }
691
692         up_read(&shrinker_rwsem);
693 out:
694         cond_resched();
695         return freed;
696 }
697
698 void drop_slab_node(int nid)
699 {
700         unsigned long freed;
701
702         do {
703                 struct mem_cgroup *memcg = NULL;
704
705                 if (fatal_signal_pending(current))
706                         return;
707
708                 freed = 0;
709                 memcg = mem_cgroup_iter(NULL, NULL, NULL);
710                 do {
711                         freed += shrink_slab(GFP_KERNEL, nid, memcg, 0);
712                 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)) != NULL);
713         } while (freed > 10);
714 }
715
716 void drop_slab(void)
717 {
718         int nid;
719
720         for_each_online_node(nid)
721                 drop_slab_node(nid);
722 }
723
724 static inline int is_page_cache_freeable(struct page *page)
725 {
726         /*
727          * A freeable page cache page is referenced only by the caller
728          * that isolated the page, the page cache and optional buffer
729          * heads at page->private.
730          */
731         int page_cache_pins = thp_nr_pages(page);
732         return page_count(page) - page_has_private(page) == 1 + page_cache_pins;
733 }
734
735 static int may_write_to_inode(struct inode *inode)
736 {
737         if (current->flags & PF_SWAPWRITE)
738                 return 1;
739         if (!inode_write_congested(inode))
740                 return 1;
741         if (inode_to_bdi(inode) == current->backing_dev_info)
742                 return 1;
743         return 0;
744 }
745
746 /*
747  * We detected a synchronous write error writing a page out.  Probably
748  * -ENOSPC.  We need to propagate that into the address_space for a subsequent
749  * fsync(), msync() or close().
750  *
751  * The tricky part is that after writepage we cannot touch the mapping: nothing
752  * prevents it from being freed up.  But we have a ref on the page and once
753  * that page is locked, the mapping is pinned.
754  *
755  * We're allowed to run sleeping lock_page() here because we know the caller has
756  * __GFP_FS.
757  */
758 static void handle_write_error(struct address_space *mapping,
759                                 struct page *page, int error)
760 {
761         lock_page(page);
762         if (page_mapping(page) == mapping)
763                 mapping_set_error(mapping, error);
764         unlock_page(page);
765 }
766
767 /* possible outcome of pageout() */
768 typedef enum {
769         /* failed to write page out, page is locked */
770         PAGE_KEEP,
771         /* move page to the active list, page is locked */
772         PAGE_ACTIVATE,
773         /* page has been sent to the disk successfully, page is unlocked */
774         PAGE_SUCCESS,
775         /* page is clean and locked */
776         PAGE_CLEAN,
777 } pageout_t;
778
779 /*
780  * pageout is called by shrink_page_list() for each dirty page.
781  * Calls ->writepage().
782  */
783 static pageout_t pageout(struct page *page, struct address_space *mapping)
784 {
785         /*
786          * If the page is dirty, only perform writeback if that write
787          * will be non-blocking.  To prevent this allocation from being
788          * stalled by pagecache activity.  But note that there may be
789          * stalls if we need to run get_block().  We could test
790          * PagePrivate for that.
791          *
792          * If this process is currently in __generic_file_write_iter() against
793          * this page's queue, we can perform writeback even if that
794          * will block.
795          *
796          * If the page is swapcache, write it back even if that would
797          * block, for some throttling. This happens by accident, because
798          * swap_backing_dev_info is bust: it doesn't reflect the
799          * congestion state of the swapdevs.  Easy to fix, if needed.
800          */
801         if (!is_page_cache_freeable(page))
802                 return PAGE_KEEP;
803         if (!mapping) {
804                 /*
805                  * Some data journaling orphaned pages can have
806                  * page->mapping == NULL while being dirty with clean buffers.
807                  */
808                 if (page_has_private(page)) {
809                         if (try_to_free_buffers(page)) {
810                                 ClearPageDirty(page);
811                                 pr_info("%s: orphaned page\n", __func__);
812                                 return PAGE_CLEAN;
813                         }
814                 }
815                 return PAGE_KEEP;
816         }
817         if (mapping->a_ops->writepage == NULL)
818                 return PAGE_ACTIVATE;
819         if (!may_write_to_inode(mapping->host))
820                 return PAGE_KEEP;
821
822         if (clear_page_dirty_for_io(page)) {
823                 int res;
824                 struct writeback_control wbc = {
825                         .sync_mode = WB_SYNC_NONE,
826                         .nr_to_write = SWAP_CLUSTER_MAX,
827                         .range_start = 0,
828                         .range_end = LLONG_MAX,
829                         .for_reclaim = 1,
830                 };
831
832                 SetPageReclaim(page);
833                 res = mapping->a_ops->writepage(page, &wbc);
834                 if (res < 0)
835                         handle_write_error(mapping, page, res);
836                 if (res == AOP_WRITEPAGE_ACTIVATE) {
837                         ClearPageReclaim(page);
838                         return PAGE_ACTIVATE;
839                 }
840
841                 if (!PageWriteback(page)) {
842                         /* synchronous write or broken a_ops? */
843                         ClearPageReclaim(page);
844                 }
845                 trace_mm_vmscan_writepage(page);
846                 inc_node_page_state(page, NR_VMSCAN_WRITE);
847                 return PAGE_SUCCESS;
848         }
849
850         return PAGE_CLEAN;
851 }
852
853 /*
854  * Same as remove_mapping, but if the page is removed from the mapping, it
855  * gets returned with a refcount of 0.
856  */
857 static int __remove_mapping(struct address_space *mapping, struct page *page,
858                             bool reclaimed, struct mem_cgroup *target_memcg)
859 {
860         unsigned long flags;
861         int refcount;
862         void *shadow = NULL;
863
864         BUG_ON(!PageLocked(page));
865         BUG_ON(mapping != page_mapping(page));
866
867         xa_lock_irqsave(&mapping->i_pages, flags);
868         /*
869          * The non racy check for a busy page.
870          *
871          * Must be careful with the order of the tests. When someone has
872          * a ref to the page, it may be possible that they dirty it then
873          * drop the reference. So if PageDirty is tested before page_count
874          * here, then the following race may occur:
875          *
876          * get_user_pages(&page);
877          * [user mapping goes away]
878          * write_to(page);
879          *                              !PageDirty(page)    [good]
880          * SetPageDirty(page);
881          * put_page(page);
882          *                              !page_count(page)   [good, discard it]
883          *
884          * [oops, our write_to data is lost]
885          *
886          * Reversing the order of the tests ensures such a situation cannot
887          * escape unnoticed. The smp_rmb is needed to ensure the page->flags
888          * load is not satisfied before that of page->_refcount.
889          *
890          * Note that if SetPageDirty is always performed via set_page_dirty,
891          * and thus under the i_pages lock, then this ordering is not required.
892          */
893         refcount = 1 + compound_nr(page);
894         if (!page_ref_freeze(page, refcount))
895                 goto cannot_free;
896         /* note: atomic_cmpxchg in page_ref_freeze provides the smp_rmb */
897         if (unlikely(PageDirty(page))) {
898                 page_ref_unfreeze(page, refcount);
899                 goto cannot_free;
900         }
901
902         if (PageSwapCache(page)) {
903                 swp_entry_t swap = { .val = page_private(page) };
904                 mem_cgroup_swapout(page, swap);
905                 if (reclaimed && !mapping_exiting(mapping))
906                         shadow = workingset_eviction(page, target_memcg);
907                 __delete_from_swap_cache(page, swap, shadow);
908                 xa_unlock_irqrestore(&mapping->i_pages, flags);
909                 put_swap_page(page, swap);
910         } else {
911                 void (*freepage)(struct page *);
912
913                 freepage = mapping->a_ops->freepage;
914                 /*
915                  * Remember a shadow entry for reclaimed file cache in
916                  * order to detect refaults, thus thrashing, later on.
917                  *
918                  * But don't store shadows in an address space that is
919                  * already exiting.  This is not just an optimization,
920                  * inode reclaim needs to empty out the radix tree or
921                  * the nodes are lost.  Don't plant shadows behind its
922                  * back.
923                  *
924                  * We also don't store shadows for DAX mappings because the
925                  * only page cache pages found in these are zero pages
926                  * covering holes, and because we don't want to mix DAX
927                  * exceptional entries and shadow exceptional entries in the
928                  * same address_space.
929                  */
930                 if (reclaimed && page_is_file_lru(page) &&
931                     !mapping_exiting(mapping) && !dax_mapping(mapping))
932                         shadow = workingset_eviction(page, target_memcg);
933                 __delete_from_page_cache(page, shadow);
934                 xa_unlock_irqrestore(&mapping->i_pages, flags);
935
936                 if (freepage != NULL)
937                         freepage(page);
938         }
939
940         return 1;
941
942 cannot_free:
943         xa_unlock_irqrestore(&mapping->i_pages, flags);
944         return 0;
945 }
946
947 /*
948  * Attempt to detach a locked page from its ->mapping.  If it is dirty or if
949  * someone else has a ref on the page, abort and return 0.  If it was
950  * successfully detached, return 1.  Assumes the caller has a single ref on
951  * this page.
952  */
953 int remove_mapping(struct address_space *mapping, struct page *page)
954 {
955         if (__remove_mapping(mapping, page, false, NULL)) {
956                 /*
957                  * Unfreezing the refcount with 1 rather than 2 effectively
958                  * drops the pagecache ref for us without requiring another
959                  * atomic operation.
960                  */
961                 page_ref_unfreeze(page, 1);
962                 return 1;
963         }
964         return 0;
965 }
966
967 /**
968  * putback_lru_page - put previously isolated page onto appropriate LRU list
969  * @page: page to be put back to appropriate lru list
970  *
971  * Add previously isolated @page to appropriate LRU list.
972  * Page may still be unevictable for other reasons.
973  *
974  * lru_lock must not be held, interrupts must be enabled.
975  */
976 void putback_lru_page(struct page *page)
977 {
978         lru_cache_add(page);
979         put_page(page);         /* drop ref from isolate */
980 }
981
982 enum page_references {
983         PAGEREF_RECLAIM,
984         PAGEREF_RECLAIM_CLEAN,
985         PAGEREF_KEEP,
986         PAGEREF_ACTIVATE,
987 };
988
989 static enum page_references page_check_references(struct page *page,
990                                                   struct scan_control *sc)
991 {
992         int referenced_ptes, referenced_page;
993         unsigned long vm_flags;
994
995         referenced_ptes = page_referenced(page, 1, sc->target_mem_cgroup,
996                                           &vm_flags);
997         referenced_page = TestClearPageReferenced(page);
998
999         /*
1000          * Mlock lost the isolation race with us.  Let try_to_unmap()
1001          * move the page to the unevictable list.
1002          */
1003         if (vm_flags & VM_LOCKED)
1004                 return PAGEREF_RECLAIM;
1005
1006         if (referenced_ptes) {
1007                 /*
1008                  * All mapped pages start out with page table
1009                  * references from the instantiating fault, so we need
1010                  * to look twice if a mapped file page is used more
1011                  * than once.
1012                  *
1013                  * Mark it and spare it for another trip around the
1014                  * inactive list.  Another page table reference will
1015                  * lead to its activation.
1016                  *
1017                  * Note: the mark is set for activated pages as well
1018                  * so that recently deactivated but used pages are
1019                  * quickly recovered.
1020                  */
1021                 SetPageReferenced(page);
1022
1023                 if (referenced_page || referenced_ptes > 1)
1024                         return PAGEREF_ACTIVATE;
1025
1026                 /*
1027                  * Activate file-backed executable pages after first usage.
1028                  */
1029                 if ((vm_flags & VM_EXEC) && !PageSwapBacked(page))
1030                         return PAGEREF_ACTIVATE;
1031
1032                 return PAGEREF_KEEP;
1033         }
1034
1035         /* Reclaim if clean, defer dirty pages to writeback */
1036         if (referenced_page && !PageSwapBacked(page))
1037                 return PAGEREF_RECLAIM_CLEAN;
1038
1039         return PAGEREF_RECLAIM;
1040 }
1041
1042 /* Check if a page is dirty or under writeback */
1043 static void page_check_dirty_writeback(struct page *page,
1044                                        bool *dirty, bool *writeback)
1045 {
1046         struct address_space *mapping;
1047
1048         /*
1049          * Anonymous pages are not handled by flushers and must be written
1050          * from reclaim context. Do not stall reclaim based on them
1051          */
1052         if (!page_is_file_lru(page) ||
1053             (PageAnon(page) && !PageSwapBacked(page))) {
1054                 *dirty = false;
1055                 *writeback = false;
1056                 return;
1057         }
1058
1059         /* By default assume that the page flags are accurate */
1060         *dirty = PageDirty(page);
1061         *writeback = PageWriteback(page);
1062
1063         /* Verify dirty/writeback state if the filesystem supports it */
1064         if (!page_has_private(page))
1065                 return;
1066
1067         mapping = page_mapping(page);
1068         if (mapping && mapping->a_ops->is_dirty_writeback)
1069                 mapping->a_ops->is_dirty_writeback(page, dirty, writeback);
1070 }
1071
1072 /*
1073  * shrink_page_list() returns the number of reclaimed pages
1074  */
1075 static unsigned int shrink_page_list(struct list_head *page_list,
1076                                      struct pglist_data *pgdat,
1077                                      struct scan_control *sc,
1078                                      struct reclaim_stat *stat,
1079                                      bool ignore_references)
1080 {
1081         LIST_HEAD(ret_pages);
1082         LIST_HEAD(free_pages);
1083         unsigned int nr_reclaimed = 0;
1084         unsigned int pgactivate = 0;
1085
1086         memset(stat, 0, sizeof(*stat));
1087         cond_resched();
1088
1089         while (!list_empty(page_list)) {
1090                 struct address_space *mapping;
1091                 struct page *page;
1092                 enum page_references references = PAGEREF_RECLAIM;
1093                 bool dirty, writeback, may_enter_fs;
1094                 unsigned int nr_pages;
1095
1096                 cond_resched();
1097
1098                 page = lru_to_page(page_list);
1099                 list_del(&page->lru);
1100
1101                 if (!trylock_page(page))
1102                         goto keep;
1103
1104                 VM_BUG_ON_PAGE(PageActive(page), page);
1105
1106                 nr_pages = compound_nr(page);
1107
1108                 /* Account the number of base pages even though THP */
1109                 sc->nr_scanned += nr_pages;
1110
1111                 if (unlikely(!page_evictable(page)))
1112                         goto activate_locked;
1113
1114                 if (!sc->may_unmap && page_mapped(page))
1115                         goto keep_locked;
1116
1117                 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
1118                         (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
1119
1120                 /*
1121                  * The number of dirty pages determines if a node is marked
1122                  * reclaim_congested which affects wait_iff_congested. kswapd
1123                  * will stall and start writing pages if the tail of the LRU
1124                  * is all dirty unqueued pages.
1125                  */
1126                 page_check_dirty_writeback(page, &dirty, &writeback);
1127                 if (dirty || writeback)
1128                         stat->nr_dirty++;
1129
1130                 if (dirty && !writeback)
1131                         stat->nr_unqueued_dirty++;
1132
1133                 /*
1134                  * Treat this page as congested if the underlying BDI is or if
1135                  * pages are cycling through the LRU so quickly that the
1136                  * pages marked for immediate reclaim are making it to the
1137                  * end of the LRU a second time.
1138                  */
1139                 mapping = page_mapping(page);
1140                 if (((dirty || writeback) && mapping &&
1141                      inode_write_congested(mapping->host)) ||
1142                     (writeback && PageReclaim(page)))
1143                         stat->nr_congested++;
1144
1145                 /*
1146                  * If a page at the tail of the LRU is under writeback, there
1147                  * are three cases to consider.
1148                  *
1149                  * 1) If reclaim is encountering an excessive number of pages
1150                  *    under writeback and this page is both under writeback and
1151                  *    PageReclaim then it indicates that pages are being queued
1152                  *    for IO but are being recycled through the LRU before the
1153                  *    IO can complete. Waiting on the page itself risks an
1154                  *    indefinite stall if it is impossible to writeback the
1155                  *    page due to IO error or disconnected storage so instead
1156                  *    note that the LRU is being scanned too quickly and the
1157                  *    caller can stall after page list has been processed.
1158                  *
1159                  * 2) Global or new memcg reclaim encounters a page that is
1160                  *    not marked for immediate reclaim, or the caller does not
1161                  *    have __GFP_FS (or __GFP_IO if it's simply going to swap,
1162                  *    not to fs). In this case mark the page for immediate
1163                  *    reclaim and continue scanning.
1164                  *
1165                  *    Require may_enter_fs because we would wait on fs, which
1166                  *    may not have submitted IO yet. And the loop driver might
1167                  *    enter reclaim, and deadlock if it waits on a page for
1168                  *    which it is needed to do the write (loop masks off
1169                  *    __GFP_IO|__GFP_FS for this reason); but more thought
1170                  *    would probably show more reasons.
1171                  *
1172                  * 3) Legacy memcg encounters a page that is already marked
1173                  *    PageReclaim. memcg does not have any dirty pages
1174                  *    throttling so we could easily OOM just because too many
1175                  *    pages are in writeback and there is nothing else to
1176                  *    reclaim. Wait for the writeback to complete.
1177                  *
1178                  * In cases 1) and 2) we activate the pages to get them out of
1179                  * the way while we continue scanning for clean pages on the
1180                  * inactive list and refilling from the active list. The
1181                  * observation here is that waiting for disk writes is more
1182                  * expensive than potentially causing reloads down the line.
1183                  * Since they're marked for immediate reclaim, they won't put
1184                  * memory pressure on the cache working set any longer than it
1185                  * takes to write them to disk.
1186                  */
1187                 if (PageWriteback(page)) {
1188                         /* Case 1 above */
1189                         if (current_is_kswapd() &&
1190                             PageReclaim(page) &&
1191                             test_bit(PGDAT_WRITEBACK, &pgdat->flags)) {
1192                                 stat->nr_immediate++;
1193                                 goto activate_locked;
1194
1195                         /* Case 2 above */
1196                         } else if (writeback_throttling_sane(sc) ||
1197                             !PageReclaim(page) || !may_enter_fs) {
1198                                 /*
1199                                  * This is slightly racy - end_page_writeback()
1200                                  * might have just cleared PageReclaim, then
1201                                  * setting PageReclaim here end up interpreted
1202                                  * as PageReadahead - but that does not matter
1203                                  * enough to care.  What we do want is for this
1204                                  * page to have PageReclaim set next time memcg
1205                                  * reclaim reaches the tests above, so it will
1206                                  * then wait_on_page_writeback() to avoid OOM;
1207                                  * and it's also appropriate in global reclaim.
1208                                  */
1209                                 SetPageReclaim(page);
1210                                 stat->nr_writeback++;
1211                                 goto activate_locked;
1212
1213                         /* Case 3 above */
1214                         } else {
1215                                 unlock_page(page);
1216                                 wait_on_page_writeback(page);
1217                                 /* then go back and try same page again */
1218                                 list_add_tail(&page->lru, page_list);
1219                                 continue;
1220                         }
1221                 }
1222
1223                 if (!ignore_references)
1224                         references = page_check_references(page, sc);
1225
1226                 switch (references) {
1227                 case PAGEREF_ACTIVATE:
1228                         goto activate_locked;
1229                 case PAGEREF_KEEP:
1230                         stat->nr_ref_keep += nr_pages;
1231                         goto keep_locked;
1232                 case PAGEREF_RECLAIM:
1233                 case PAGEREF_RECLAIM_CLEAN:
1234                         ; /* try to reclaim the page below */
1235                 }
1236
1237                 /*
1238                  * Anonymous process memory has backing store?
1239                  * Try to allocate it some swap space here.
1240                  * Lazyfree page could be freed directly
1241                  */
1242                 if (PageAnon(page) && PageSwapBacked(page)) {
1243                         if (!PageSwapCache(page)) {
1244                                 if (!(sc->gfp_mask & __GFP_IO))
1245                                         goto keep_locked;
1246                                 if (page_maybe_dma_pinned(page))
1247                                         goto keep_locked;
1248                                 if (PageTransHuge(page)) {
1249                                         /* cannot split THP, skip it */
1250                                         if (!can_split_huge_page(page, NULL))
1251                                                 goto activate_locked;
1252                                         /*
1253                                          * Split pages without a PMD map right
1254                                          * away. Chances are some or all of the
1255                                          * tail pages can be freed without IO.
1256                                          */
1257                                         if (!compound_mapcount(page) &&
1258                                             split_huge_page_to_list(page,
1259                                                                     page_list))
1260                                                 goto activate_locked;
1261                                 }
1262                                 if (!add_to_swap(page)) {
1263                                         if (!PageTransHuge(page))
1264                                                 goto activate_locked_split;
1265                                         /* Fallback to swap normal pages */
1266                                         if (split_huge_page_to_list(page,
1267                                                                     page_list))
1268                                                 goto activate_locked;
1269 #ifdef CONFIG_TRANSPARENT_HUGEPAGE
1270                                         count_vm_event(THP_SWPOUT_FALLBACK);
1271 #endif
1272                                         if (!add_to_swap(page))
1273                                                 goto activate_locked_split;
1274                                 }
1275
1276                                 may_enter_fs = true;
1277
1278                                 /* Adding to swap updated mapping */
1279                                 mapping = page_mapping(page);
1280                         }
1281                 } else if (unlikely(PageTransHuge(page))) {
1282                         /* Split file THP */
1283                         if (split_huge_page_to_list(page, page_list))
1284                                 goto keep_locked;
1285                 }
1286
1287                 /*
1288                  * THP may get split above, need minus tail pages and update
1289                  * nr_pages to avoid accounting tail pages twice.
1290                  *
1291                  * The tail pages that are added into swap cache successfully
1292                  * reach here.
1293                  */
1294                 if ((nr_pages > 1) && !PageTransHuge(page)) {
1295                         sc->nr_scanned -= (nr_pages - 1);
1296                         nr_pages = 1;
1297                 }
1298
1299                 /*
1300                  * The page is mapped into the page tables of one or more
1301                  * processes. Try to unmap it here.
1302                  */
1303                 if (page_mapped(page)) {
1304                         enum ttu_flags flags = TTU_BATCH_FLUSH;
1305                         bool was_swapbacked = PageSwapBacked(page);
1306
1307                         if (unlikely(PageTransHuge(page)))
1308 #ifdef CONFIG_FINEGRAINED_THP
1309                         {
1310                                 if (nr_pages == HPAGE_PMD_NR)
1311                                         flags |= TTU_SPLIT_HUGE_PMD;
1312                                 else
1313                                         flags |= TTU_SPLIT_HUGE_PTE;
1314                         }
1315 #else /* CONFIG_FINEGRAINED_THP */
1316                                 flags |= TTU_SPLIT_HUGE_PMD;
1317 #endif /* CONFIG_FINEGRAINED_THP */
1318
1319                         if (!try_to_unmap(page, flags)) {
1320                                 stat->nr_unmap_fail += nr_pages;
1321                                 if (!was_swapbacked && PageSwapBacked(page))
1322                                         stat->nr_lazyfree_fail += nr_pages;
1323                                 goto activate_locked;
1324                         }
1325                 }
1326
1327                 if (PageDirty(page)) {
1328                         /*
1329                          * Only kswapd can writeback filesystem pages
1330                          * to avoid risk of stack overflow. But avoid
1331                          * injecting inefficient single-page IO into
1332                          * flusher writeback as much as possible: only
1333                          * write pages when we've encountered many
1334                          * dirty pages, and when we've already scanned
1335                          * the rest of the LRU for clean pages and see
1336                          * the same dirty pages again (PageReclaim).
1337                          */
1338                         if (page_is_file_lru(page) &&
1339                             (!current_is_kswapd() || !PageReclaim(page) ||
1340                              !test_bit(PGDAT_DIRTY, &pgdat->flags))) {
1341                                 /*
1342                                  * Immediately reclaim when written back.
1343                                  * Similar in principal to deactivate_page()
1344                                  * except we already have the page isolated
1345                                  * and know it's dirty
1346                                  */
1347                                 inc_node_page_state(page, NR_VMSCAN_IMMEDIATE);
1348                                 SetPageReclaim(page);
1349
1350                                 goto activate_locked;
1351                         }
1352
1353                         if (references == PAGEREF_RECLAIM_CLEAN)
1354                                 goto keep_locked;
1355                         if (!may_enter_fs)
1356                                 goto keep_locked;
1357                         if (!sc->may_writepage)
1358                                 goto keep_locked;
1359
1360                         /*
1361                          * Page is dirty. Flush the TLB if a writable entry
1362                          * potentially exists to avoid CPU writes after IO
1363                          * starts and then write it out here.
1364                          */
1365                         try_to_unmap_flush_dirty();
1366                         switch (pageout(page, mapping)) {
1367                         case PAGE_KEEP:
1368                                 goto keep_locked;
1369                         case PAGE_ACTIVATE:
1370                                 goto activate_locked;
1371                         case PAGE_SUCCESS:
1372                                 stat->nr_pageout += thp_nr_pages(page);
1373
1374                                 if (PageWriteback(page))
1375                                         goto keep;
1376                                 if (PageDirty(page))
1377                                         goto keep;
1378
1379                                 /*
1380                                  * A synchronous write - probably a ramdisk.  Go
1381                                  * ahead and try to reclaim the page.
1382                                  */
1383                                 if (!trylock_page(page))
1384                                         goto keep;
1385                                 if (PageDirty(page) || PageWriteback(page))
1386                                         goto keep_locked;
1387                                 mapping = page_mapping(page);
1388                         case PAGE_CLEAN:
1389                                 ; /* try to free the page below */
1390                         }
1391                 }
1392
1393                 /*
1394                  * If the page has buffers, try to free the buffer mappings
1395                  * associated with this page. If we succeed we try to free
1396                  * the page as well.
1397                  *
1398                  * We do this even if the page is PageDirty().
1399                  * try_to_release_page() does not perform I/O, but it is
1400                  * possible for a page to have PageDirty set, but it is actually
1401                  * clean (all its buffers are clean).  This happens if the
1402                  * buffers were written out directly, with submit_bh(). ext3
1403                  * will do this, as well as the blockdev mapping.
1404                  * try_to_release_page() will discover that cleanness and will
1405                  * drop the buffers and mark the page clean - it can be freed.
1406                  *
1407                  * Rarely, pages can have buffers and no ->mapping.  These are
1408                  * the pages which were not successfully invalidated in
1409                  * truncate_complete_page().  We try to drop those buffers here
1410                  * and if that worked, and the page is no longer mapped into
1411                  * process address space (page_count == 1) it can be freed.
1412                  * Otherwise, leave the page on the LRU so it is swappable.
1413                  */
1414                 if (page_has_private(page)) {
1415                         if (!try_to_release_page(page, sc->gfp_mask))
1416                                 goto activate_locked;
1417                         if (!mapping && page_count(page) == 1) {
1418                                 unlock_page(page);
1419                                 if (put_page_testzero(page))
1420                                         goto free_it;
1421                                 else {
1422                                         /*
1423                                          * rare race with speculative reference.
1424                                          * the speculative reference will free
1425                                          * this page shortly, so we may
1426                                          * increment nr_reclaimed here (and
1427                                          * leave it off the LRU).
1428                                          */
1429                                         nr_reclaimed++;
1430                                         continue;
1431                                 }
1432                         }
1433                 }
1434
1435                 if (PageAnon(page) && !PageSwapBacked(page)) {
1436                         /* follow __remove_mapping for reference */
1437                         if (!page_ref_freeze(page, 1))
1438                                 goto keep_locked;
1439                         if (PageDirty(page)) {
1440                                 page_ref_unfreeze(page, 1);
1441                                 goto keep_locked;
1442                         }
1443
1444                         count_vm_event(PGLAZYFREED);
1445                         count_memcg_page_event(page, PGLAZYFREED);
1446                 } else if (!mapping || !__remove_mapping(mapping, page, true,
1447                                                          sc->target_mem_cgroup))
1448                         goto keep_locked;
1449
1450                 unlock_page(page);
1451 free_it:
1452                 /*
1453                  * THP may get swapped out in a whole, need account
1454                  * all base pages.
1455                  */
1456                 nr_reclaimed += nr_pages;
1457
1458                 /*
1459                  * Is there need to periodically free_page_list? It would
1460                  * appear not as the counts should be low
1461                  */
1462                 if (unlikely(PageTransHuge(page)))
1463                         destroy_compound_page(page);
1464                 else
1465                         list_add(&page->lru, &free_pages);
1466                 continue;
1467
1468 activate_locked_split:
1469                 /*
1470                  * The tail pages that are failed to add into swap cache
1471                  * reach here.  Fixup nr_scanned and nr_pages.
1472                  */
1473                 if (nr_pages > 1) {
1474                         sc->nr_scanned -= (nr_pages - 1);
1475                         nr_pages = 1;
1476                 }
1477 activate_locked:
1478                 /* Not a candidate for swapping, so reclaim swap space. */
1479                 if (PageSwapCache(page) && (mem_cgroup_swap_full(page) ||
1480                                                 PageMlocked(page)))
1481                         try_to_free_swap(page);
1482                 VM_BUG_ON_PAGE(PageActive(page), page);
1483                 if (!PageMlocked(page)) {
1484                         int type = page_is_file_lru(page);
1485                         SetPageActive(page);
1486                         stat->nr_activate[type] += nr_pages;
1487                         count_memcg_page_event(page, PGACTIVATE);
1488                 }
1489 keep_locked:
1490                 unlock_page(page);
1491 keep:
1492                 list_add(&page->lru, &ret_pages);
1493                 VM_BUG_ON_PAGE(PageLRU(page) || PageUnevictable(page), page);
1494         }
1495
1496         pgactivate = stat->nr_activate[0] + stat->nr_activate[1];
1497
1498         mem_cgroup_uncharge_list(&free_pages);
1499         try_to_unmap_flush();
1500         free_unref_page_list(&free_pages);
1501
1502         list_splice(&ret_pages, page_list);
1503         count_vm_events(PGACTIVATE, pgactivate);
1504
1505         return nr_reclaimed;
1506 }
1507
1508 unsigned int reclaim_clean_pages_from_list(struct zone *zone,
1509                                             struct list_head *page_list)
1510 {
1511         struct scan_control sc = {
1512                 .gfp_mask = GFP_KERNEL,
1513                 .priority = DEF_PRIORITY,
1514                 .may_unmap = 1,
1515         };
1516         struct reclaim_stat stat;
1517         unsigned int nr_reclaimed;
1518         struct page *page, *next;
1519         LIST_HEAD(clean_pages);
1520
1521         list_for_each_entry_safe(page, next, page_list, lru) {
1522                 if (page_is_file_lru(page) && !PageDirty(page) &&
1523                     !__PageMovable(page) && !PageUnevictable(page)) {
1524                         ClearPageActive(page);
1525                         list_move(&page->lru, &clean_pages);
1526                 }
1527         }
1528
1529         nr_reclaimed = shrink_page_list(&clean_pages, zone->zone_pgdat, &sc,
1530                                         &stat, true);
1531         list_splice(&clean_pages, page_list);
1532         mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE,
1533                             -(long)nr_reclaimed);
1534         /*
1535          * Since lazyfree pages are isolated from file LRU from the beginning,
1536          * they will rotate back to anonymous LRU in the end if it failed to
1537          * discard so isolated count will be mismatched.
1538          * Compensate the isolated count for both LRU lists.
1539          */
1540         mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_ANON,
1541                             stat.nr_lazyfree_fail);
1542         mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE,
1543                             -(long)stat.nr_lazyfree_fail);
1544         return nr_reclaimed;
1545 }
1546
1547 /*
1548  * Attempt to remove the specified page from its LRU.  Only take this page
1549  * if it is of the appropriate PageActive status.  Pages which are being
1550  * freed elsewhere are also ignored.
1551  *
1552  * page:        page to consider
1553  * mode:        one of the LRU isolation modes defined above
1554  *
1555  * returns 0 on success, -ve errno on failure.
1556  */
1557 int __isolate_lru_page(struct page *page, isolate_mode_t mode)
1558 {
1559         int ret = -EINVAL;
1560
1561         /* Only take pages on the LRU. */
1562         if (!PageLRU(page))
1563                 return ret;
1564
1565         /* Compaction should not handle unevictable pages but CMA can do so */
1566         if (PageUnevictable(page) && !(mode & ISOLATE_UNEVICTABLE))
1567                 return ret;
1568
1569         ret = -EBUSY;
1570
1571         /*
1572          * To minimise LRU disruption, the caller can indicate that it only
1573          * wants to isolate pages it will be able to operate on without
1574          * blocking - clean pages for the most part.
1575          *
1576          * ISOLATE_ASYNC_MIGRATE is used to indicate that it only wants to pages
1577          * that it is possible to migrate without blocking
1578          */
1579         if (mode & ISOLATE_ASYNC_MIGRATE) {
1580                 /* All the caller can do on PageWriteback is block */
1581                 if (PageWriteback(page))
1582                         return ret;
1583
1584                 if (PageDirty(page)) {
1585                         struct address_space *mapping;
1586                         bool migrate_dirty;
1587
1588                         /*
1589                          * Only pages without mappings or that have a
1590                          * ->migratepage callback are possible to migrate
1591                          * without blocking. However, we can be racing with
1592                          * truncation so it's necessary to lock the page
1593                          * to stabilise the mapping as truncation holds
1594                          * the page lock until after the page is removed
1595                          * from the page cache.
1596                          */
1597                         if (!trylock_page(page))
1598                                 return ret;
1599
1600                         mapping = page_mapping(page);
1601                         migrate_dirty = !mapping || mapping->a_ops->migratepage;
1602                         unlock_page(page);
1603                         if (!migrate_dirty)
1604                                 return ret;
1605                 }
1606         }
1607
1608         if ((mode & ISOLATE_UNMAPPED) && page_mapped(page))
1609                 return ret;
1610
1611         if (likely(get_page_unless_zero(page))) {
1612                 /*
1613                  * Be careful not to clear PageLRU until after we're
1614                  * sure the page is not being freed elsewhere -- the
1615                  * page release code relies on it.
1616                  */
1617                 ClearPageLRU(page);
1618                 ret = 0;
1619         }
1620
1621         return ret;
1622 }
1623
1624
1625 /*
1626  * Update LRU sizes after isolating pages. The LRU size updates must
1627  * be complete before mem_cgroup_update_lru_size due to a sanity check.
1628  */
1629 static __always_inline void update_lru_sizes(struct lruvec *lruvec,
1630                         enum lru_list lru, unsigned long *nr_zone_taken)
1631 {
1632         int zid;
1633
1634         for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1635                 if (!nr_zone_taken[zid])
1636                         continue;
1637
1638                 update_lru_size(lruvec, lru, zid, -nr_zone_taken[zid]);
1639         }
1640
1641 }
1642
1643 /**
1644  * pgdat->lru_lock is heavily contended.  Some of the functions that
1645  * shrink the lists perform better by taking out a batch of pages
1646  * and working on them outside the LRU lock.
1647  *
1648  * For pagecache intensive workloads, this function is the hottest
1649  * spot in the kernel (apart from copy_*_user functions).
1650  *
1651  * Appropriate locks must be held before calling this function.
1652  *
1653  * @nr_to_scan: The number of eligible pages to look through on the list.
1654  * @lruvec:     The LRU vector to pull pages from.
1655  * @dst:        The temp list to put pages on to.
1656  * @nr_scanned: The number of pages that were scanned.
1657  * @sc:         The scan_control struct for this reclaim session
1658  * @lru:        LRU list id for isolating
1659  *
1660  * returns how many pages were moved onto *@dst.
1661  */
1662 static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
1663                 struct lruvec *lruvec, struct list_head *dst,
1664                 unsigned long *nr_scanned, struct scan_control *sc,
1665                 enum lru_list lru)
1666 {
1667         struct list_head *src = &lruvec->lists[lru];
1668         unsigned long nr_taken = 0;
1669         unsigned long nr_zone_taken[MAX_NR_ZONES] = { 0 };
1670         unsigned long nr_skipped[MAX_NR_ZONES] = { 0, };
1671         unsigned long skipped = 0;
1672         unsigned long scan, total_scan, nr_pages;
1673         LIST_HEAD(pages_skipped);
1674         isolate_mode_t mode = (sc->may_unmap ? 0 : ISOLATE_UNMAPPED);
1675
1676         total_scan = 0;
1677         scan = 0;
1678         while (scan < nr_to_scan && !list_empty(src)) {
1679                 struct page *page;
1680
1681                 page = lru_to_page(src);
1682                 prefetchw_prev_lru_page(page, src, flags);
1683
1684                 VM_BUG_ON_PAGE(!PageLRU(page), page);
1685
1686                 nr_pages = compound_nr(page);
1687                 total_scan += nr_pages;
1688
1689                 if (page_zonenum(page) > sc->reclaim_idx) {
1690                         list_move(&page->lru, &pages_skipped);
1691                         nr_skipped[page_zonenum(page)] += nr_pages;
1692                         continue;
1693                 }
1694
1695                 /*
1696                  * Do not count skipped pages because that makes the function
1697                  * return with no isolated pages if the LRU mostly contains
1698                  * ineligible pages.  This causes the VM to not reclaim any
1699                  * pages, triggering a premature OOM.
1700                  *
1701                  * Account all tail pages of THP.  This would not cause
1702                  * premature OOM since __isolate_lru_page() returns -EBUSY
1703                  * only when the page is being freed somewhere else.
1704                  */
1705                 scan += nr_pages;
1706                 switch (__isolate_lru_page(page, mode)) {
1707                 case 0:
1708                         nr_taken += nr_pages;
1709                         nr_zone_taken[page_zonenum(page)] += nr_pages;
1710                         list_move(&page->lru, dst);
1711                         break;
1712
1713                 case -EBUSY:
1714                         /* else it is being freed elsewhere */
1715                         list_move(&page->lru, src);
1716                         continue;
1717
1718                 default:
1719                         BUG();
1720                 }
1721         }
1722
1723         /*
1724          * Splice any skipped pages to the start of the LRU list. Note that
1725          * this disrupts the LRU order when reclaiming for lower zones but
1726          * we cannot splice to the tail. If we did then the SWAP_CLUSTER_MAX
1727          * scanning would soon rescan the same pages to skip and put the
1728          * system at risk of premature OOM.
1729          */
1730         if (!list_empty(&pages_skipped)) {
1731                 int zid;
1732
1733                 list_splice(&pages_skipped, src);
1734                 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1735                         if (!nr_skipped[zid])
1736                                 continue;
1737
1738                         __count_zid_vm_events(PGSCAN_SKIP, zid, nr_skipped[zid]);
1739                         skipped += nr_skipped[zid];
1740                 }
1741         }
1742         *nr_scanned = total_scan;
1743         trace_mm_vmscan_lru_isolate(sc->reclaim_idx, sc->order, nr_to_scan,
1744                                     total_scan, skipped, nr_taken, mode, lru);
1745         update_lru_sizes(lruvec, lru, nr_zone_taken);
1746         return nr_taken;
1747 }
1748
1749 /**
1750  * isolate_lru_page - tries to isolate a page from its LRU list
1751  * @page: page to isolate from its LRU list
1752  *
1753  * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1754  * vmstat statistic corresponding to whatever LRU list the page was on.
1755  *
1756  * Returns 0 if the page was removed from an LRU list.
1757  * Returns -EBUSY if the page was not on an LRU list.
1758  *
1759  * The returned page will have PageLRU() cleared.  If it was found on
1760  * the active list, it will have PageActive set.  If it was found on
1761  * the unevictable list, it will have the PageUnevictable bit set. That flag
1762  * may need to be cleared by the caller before letting the page go.
1763  *
1764  * The vmstat statistic corresponding to the list on which the page was
1765  * found will be decremented.
1766  *
1767  * Restrictions:
1768  *
1769  * (1) Must be called with an elevated refcount on the page. This is a
1770  *     fundamental difference from isolate_lru_pages (which is called
1771  *     without a stable reference).
1772  * (2) the lru_lock must not be held.
1773  * (3) interrupts must be enabled.
1774  */
1775 int isolate_lru_page(struct page *page)
1776 {
1777         int ret = -EBUSY;
1778
1779         VM_BUG_ON_PAGE(!page_count(page), page);
1780         WARN_RATELIMIT(PageTail(page), "trying to isolate tail page");
1781
1782         if (PageLRU(page)) {
1783                 pg_data_t *pgdat = page_pgdat(page);
1784                 struct lruvec *lruvec;
1785
1786                 spin_lock_irq(&pgdat->lru_lock);
1787                 lruvec = mem_cgroup_page_lruvec(page, pgdat);
1788                 if (PageLRU(page)) {
1789                         int lru = page_lru(page);
1790                         get_page(page);
1791                         ClearPageLRU(page);
1792                         del_page_from_lru_list(page, lruvec, lru);
1793                         ret = 0;
1794                 }
1795                 spin_unlock_irq(&pgdat->lru_lock);
1796         }
1797         return ret;
1798 }
1799
1800 /*
1801  * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and
1802  * then get rescheduled. When there are massive number of tasks doing page
1803  * allocation, such sleeping direct reclaimers may keep piling up on each CPU,
1804  * the LRU list will go small and be scanned faster than necessary, leading to
1805  * unnecessary swapping, thrashing and OOM.
1806  */
1807 static int too_many_isolated(struct pglist_data *pgdat, int file,
1808                 struct scan_control *sc)
1809 {
1810         unsigned long inactive, isolated;
1811
1812         if (current_is_kswapd())
1813                 return 0;
1814
1815         if (!writeback_throttling_sane(sc))
1816                 return 0;
1817
1818         if (file) {
1819                 inactive = node_page_state(pgdat, NR_INACTIVE_FILE);
1820                 isolated = node_page_state(pgdat, NR_ISOLATED_FILE);
1821         } else {
1822                 inactive = node_page_state(pgdat, NR_INACTIVE_ANON);
1823                 isolated = node_page_state(pgdat, NR_ISOLATED_ANON);
1824         }
1825
1826         /*
1827          * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they
1828          * won't get blocked by normal direct-reclaimers, forming a circular
1829          * deadlock.
1830          */
1831         if ((sc->gfp_mask & (__GFP_IO | __GFP_FS)) == (__GFP_IO | __GFP_FS))
1832                 inactive >>= 3;
1833
1834         return isolated > inactive;
1835 }
1836
1837 /*
1838  * This moves pages from @list to corresponding LRU list.
1839  *
1840  * We move them the other way if the page is referenced by one or more
1841  * processes, from rmap.
1842  *
1843  * If the pages are mostly unmapped, the processing is fast and it is
1844  * appropriate to hold zone_lru_lock across the whole operation.  But if
1845  * the pages are mapped, the processing is slow (page_referenced()) so we
1846  * should drop zone_lru_lock around each page.  It's impossible to balance
1847  * this, so instead we remove the pages from the LRU while processing them.
1848  * It is safe to rely on PG_active against the non-LRU pages in here because
1849  * nobody will play with that bit on a non-LRU page.
1850  *
1851  * The downside is that we have to touch page->_refcount against each page.
1852  * But we had to alter page->flags anyway.
1853  *
1854  * Returns the number of pages moved to the given lruvec.
1855  */
1856
1857 static unsigned noinline_for_stack move_pages_to_lru(struct lruvec *lruvec,
1858                                                      struct list_head *list)
1859 {
1860         struct pglist_data *pgdat = lruvec_pgdat(lruvec);
1861         int nr_pages, nr_moved = 0;
1862         LIST_HEAD(pages_to_free);
1863         struct page *page;
1864         enum lru_list lru;
1865
1866         while (!list_empty(list)) {
1867                 page = lru_to_page(list);
1868                 VM_BUG_ON_PAGE(PageLRU(page), page);
1869                 if (unlikely(!page_evictable(page))) {
1870                         list_del(&page->lru);
1871                         spin_unlock_irq(&pgdat->lru_lock);
1872                         putback_lru_page(page);
1873                         spin_lock_irq(&pgdat->lru_lock);
1874                         continue;
1875                 }
1876                 lruvec = mem_cgroup_page_lruvec(page, pgdat);
1877
1878                 SetPageLRU(page);
1879                 lru = page_lru(page);
1880
1881                 nr_pages = thp_nr_pages(page);
1882                 update_lru_size(lruvec, lru, page_zonenum(page), nr_pages);
1883                 list_move(&page->lru, &lruvec->lists[lru]);
1884
1885                 if (put_page_testzero(page)) {
1886                         __ClearPageLRU(page);
1887                         __ClearPageActive(page);
1888                         del_page_from_lru_list(page, lruvec, lru);
1889
1890                         if (unlikely(PageCompound(page))) {
1891                                 spin_unlock_irq(&pgdat->lru_lock);
1892                                 destroy_compound_page(page);
1893                                 spin_lock_irq(&pgdat->lru_lock);
1894                         } else
1895                                 list_add(&page->lru, &pages_to_free);
1896                 } else {
1897                         nr_moved += nr_pages;
1898                         if (PageActive(page))
1899                                 workingset_age_nonresident(lruvec, nr_pages);
1900                 }
1901         }
1902
1903         /*
1904          * To save our caller's stack, now use input list for pages to free.
1905          */
1906         list_splice(&pages_to_free, list);
1907
1908         return nr_moved;
1909 }
1910
1911 /*
1912  * If a kernel thread (such as nfsd for loop-back mounts) services
1913  * a backing device by writing to the page cache it sets PF_LOCAL_THROTTLE.
1914  * In that case we should only throttle if the backing device it is
1915  * writing to is congested.  In other cases it is safe to throttle.
1916  */
1917 static int current_may_throttle(void)
1918 {
1919         return !(current->flags & PF_LOCAL_THROTTLE) ||
1920                 current->backing_dev_info == NULL ||
1921                 bdi_write_congested(current->backing_dev_info);
1922 }
1923
1924 /*
1925  * shrink_inactive_list() is a helper for shrink_node().  It returns the number
1926  * of reclaimed pages
1927  */
1928 static noinline_for_stack unsigned long
1929 shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec,
1930                      struct scan_control *sc, enum lru_list lru)
1931 {
1932         LIST_HEAD(page_list);
1933         unsigned long nr_scanned;
1934         unsigned int nr_reclaimed = 0;
1935         unsigned long nr_taken;
1936         struct reclaim_stat stat;
1937         bool file = is_file_lru(lru);
1938         enum vm_event_item item;
1939         struct pglist_data *pgdat = lruvec_pgdat(lruvec);
1940         bool stalled = false;
1941
1942         while (unlikely(too_many_isolated(pgdat, file, sc))) {
1943                 if (stalled)
1944                         return 0;
1945
1946                 /* wait a bit for the reclaimer. */
1947                 msleep(100);
1948                 stalled = true;
1949
1950                 /* We are about to die and free our memory. Return now. */
1951                 if (fatal_signal_pending(current))
1952                         return SWAP_CLUSTER_MAX;
1953         }
1954
1955         lru_add_drain();
1956
1957         spin_lock_irq(&pgdat->lru_lock);
1958
1959         nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &page_list,
1960                                      &nr_scanned, sc, lru);
1961
1962         __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
1963         item = current_is_kswapd() ? PGSCAN_KSWAPD : PGSCAN_DIRECT;
1964         if (!cgroup_reclaim(sc))
1965                 __count_vm_events(item, nr_scanned);
1966         __count_memcg_events(lruvec_memcg(lruvec), item, nr_scanned);
1967         __count_vm_events(PGSCAN_ANON + file, nr_scanned);
1968
1969         spin_unlock_irq(&pgdat->lru_lock);
1970
1971         if (nr_taken == 0)
1972                 return 0;
1973
1974         nr_reclaimed = shrink_page_list(&page_list, pgdat, sc, &stat, false);
1975
1976         spin_lock_irq(&pgdat->lru_lock);
1977
1978         move_pages_to_lru(lruvec, &page_list);
1979
1980         __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
1981         lru_note_cost(lruvec, file, stat.nr_pageout);
1982         item = current_is_kswapd() ? PGSTEAL_KSWAPD : PGSTEAL_DIRECT;
1983         if (!cgroup_reclaim(sc))
1984                 __count_vm_events(item, nr_reclaimed);
1985         __count_memcg_events(lruvec_memcg(lruvec), item, nr_reclaimed);
1986         __count_vm_events(PGSTEAL_ANON + file, nr_reclaimed);
1987
1988         spin_unlock_irq(&pgdat->lru_lock);
1989
1990         mem_cgroup_uncharge_list(&page_list);
1991         free_unref_page_list(&page_list);
1992
1993         /*
1994          * If dirty pages are scanned that are not queued for IO, it
1995          * implies that flushers are not doing their job. This can
1996          * happen when memory pressure pushes dirty pages to the end of
1997          * the LRU before the dirty limits are breached and the dirty
1998          * data has expired. It can also happen when the proportion of
1999          * dirty pages grows not through writes but through memory
2000          * pressure reclaiming all the clean cache. And in some cases,
2001          * the flushers simply cannot keep up with the allocation
2002          * rate. Nudge the flusher threads in case they are asleep.
2003          */
2004         if (stat.nr_unqueued_dirty == nr_taken)
2005                 wakeup_flusher_threads(WB_REASON_VMSCAN);
2006
2007         sc->nr.dirty += stat.nr_dirty;
2008         sc->nr.congested += stat.nr_congested;
2009         sc->nr.unqueued_dirty += stat.nr_unqueued_dirty;
2010         sc->nr.writeback += stat.nr_writeback;
2011         sc->nr.immediate += stat.nr_immediate;
2012         sc->nr.taken += nr_taken;
2013         if (file)
2014                 sc->nr.file_taken += nr_taken;
2015
2016         trace_mm_vmscan_lru_shrink_inactive(pgdat->node_id,
2017                         nr_scanned, nr_reclaimed, &stat, sc->priority, file);
2018         return nr_reclaimed;
2019 }
2020
2021 static void shrink_active_list(unsigned long nr_to_scan,
2022                                struct lruvec *lruvec,
2023                                struct scan_control *sc,
2024                                enum lru_list lru)
2025 {
2026         unsigned long nr_taken;
2027         unsigned long nr_scanned;
2028         unsigned long vm_flags;
2029         LIST_HEAD(l_hold);      /* The pages which were snipped off */
2030         LIST_HEAD(l_active);
2031         LIST_HEAD(l_inactive);
2032         struct page *page;
2033         unsigned nr_deactivate, nr_activate;
2034         unsigned nr_rotated = 0;
2035         int file = is_file_lru(lru);
2036         struct pglist_data *pgdat = lruvec_pgdat(lruvec);
2037
2038         lru_add_drain();
2039
2040         spin_lock_irq(&pgdat->lru_lock);
2041
2042         nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &l_hold,
2043                                      &nr_scanned, sc, lru);
2044
2045         __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
2046
2047         if (!cgroup_reclaim(sc))
2048                 __count_vm_events(PGREFILL, nr_scanned);
2049         __count_memcg_events(lruvec_memcg(lruvec), PGREFILL, nr_scanned);
2050
2051         spin_unlock_irq(&pgdat->lru_lock);
2052
2053         while (!list_empty(&l_hold)) {
2054                 cond_resched();
2055                 page = lru_to_page(&l_hold);
2056                 list_del(&page->lru);
2057
2058                 if (unlikely(!page_evictable(page))) {
2059                         putback_lru_page(page);
2060                         continue;
2061                 }
2062
2063                 if (unlikely(buffer_heads_over_limit)) {
2064                         if (page_has_private(page) && trylock_page(page)) {
2065                                 if (page_has_private(page))
2066                                         try_to_release_page(page, 0);
2067                                 unlock_page(page);
2068                         }
2069                 }
2070
2071                 if (page_referenced(page, 0, sc->target_mem_cgroup,
2072                                     &vm_flags)) {
2073                         /*
2074                          * Identify referenced, file-backed active pages and
2075                          * give them one more trip around the active list. So
2076                          * that executable code get better chances to stay in
2077                          * memory under moderate memory pressure.  Anon pages
2078                          * are not likely to be evicted by use-once streaming
2079                          * IO, plus JVM can create lots of anon VM_EXEC pages,
2080                          * so we ignore them here.
2081                          */
2082                         if ((vm_flags & VM_EXEC) && page_is_file_lru(page)) {
2083                                 nr_rotated += thp_nr_pages(page);
2084                                 list_add(&page->lru, &l_active);
2085                                 continue;
2086                         }
2087                 }
2088
2089                 ClearPageActive(page);  /* we are de-activating */
2090                 SetPageWorkingset(page);
2091                 list_add(&page->lru, &l_inactive);
2092         }
2093
2094         /*
2095          * Move pages back to the lru list.
2096          */
2097         spin_lock_irq(&pgdat->lru_lock);
2098
2099         nr_activate = move_pages_to_lru(lruvec, &l_active);
2100         nr_deactivate = move_pages_to_lru(lruvec, &l_inactive);
2101         /* Keep all free pages in l_active list */
2102         list_splice(&l_inactive, &l_active);
2103
2104         __count_vm_events(PGDEACTIVATE, nr_deactivate);
2105         __count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE, nr_deactivate);
2106
2107         __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
2108         spin_unlock_irq(&pgdat->lru_lock);
2109
2110         mem_cgroup_uncharge_list(&l_active);
2111         free_unref_page_list(&l_active);
2112         trace_mm_vmscan_lru_shrink_active(pgdat->node_id, nr_taken, nr_activate,
2113                         nr_deactivate, nr_rotated, sc->priority, file);
2114 }
2115
2116 unsigned long reclaim_pages(struct list_head *page_list)
2117 {
2118         int nid = NUMA_NO_NODE;
2119         unsigned int nr_reclaimed = 0;
2120         LIST_HEAD(node_page_list);
2121         struct reclaim_stat dummy_stat;
2122         struct page *page;
2123         struct scan_control sc = {
2124                 .gfp_mask = GFP_KERNEL,
2125                 .priority = DEF_PRIORITY,
2126                 .may_writepage = 1,
2127                 .may_unmap = 1,
2128                 .may_swap = 1,
2129         };
2130
2131         while (!list_empty(page_list)) {
2132                 page = lru_to_page(page_list);
2133                 if (nid == NUMA_NO_NODE) {
2134                         nid = page_to_nid(page);
2135                         INIT_LIST_HEAD(&node_page_list);
2136                 }
2137
2138                 if (nid == page_to_nid(page)) {
2139                         ClearPageActive(page);
2140                         list_move(&page->lru, &node_page_list);
2141                         continue;
2142                 }
2143
2144                 nr_reclaimed += shrink_page_list(&node_page_list,
2145                                                 NODE_DATA(nid),
2146                                                 &sc, &dummy_stat, false);
2147                 while (!list_empty(&node_page_list)) {
2148                         page = lru_to_page(&node_page_list);
2149                         list_del(&page->lru);
2150                         putback_lru_page(page);
2151                 }
2152
2153                 nid = NUMA_NO_NODE;
2154         }
2155
2156         if (!list_empty(&node_page_list)) {
2157                 nr_reclaimed += shrink_page_list(&node_page_list,
2158                                                 NODE_DATA(nid),
2159                                                 &sc, &dummy_stat, false);
2160                 while (!list_empty(&node_page_list)) {
2161                         page = lru_to_page(&node_page_list);
2162                         list_del(&page->lru);
2163                         putback_lru_page(page);
2164                 }
2165         }
2166
2167         return nr_reclaimed;
2168 }
2169
2170 static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
2171                                  struct lruvec *lruvec, struct scan_control *sc)
2172 {
2173         if (is_active_lru(lru)) {
2174                 if (sc->may_deactivate & (1 << is_file_lru(lru)))
2175                         shrink_active_list(nr_to_scan, lruvec, sc, lru);
2176                 else
2177                         sc->skipped_deactivate = 1;
2178                 return 0;
2179         }
2180
2181         return shrink_inactive_list(nr_to_scan, lruvec, sc, lru);
2182 }
2183
2184 /*
2185  * The inactive anon list should be small enough that the VM never has
2186  * to do too much work.
2187  *
2188  * The inactive file list should be small enough to leave most memory
2189  * to the established workingset on the scan-resistant active list,
2190  * but large enough to avoid thrashing the aggregate readahead window.
2191  *
2192  * Both inactive lists should also be large enough that each inactive
2193  * page has a chance to be referenced again before it is reclaimed.
2194  *
2195  * If that fails and refaulting is observed, the inactive list grows.
2196  *
2197  * The inactive_ratio is the target ratio of ACTIVE to INACTIVE pages
2198  * on this LRU, maintained by the pageout code. An inactive_ratio
2199  * of 3 means 3:1 or 25% of the pages are kept on the inactive list.
2200  *
2201  * total     target    max
2202  * memory    ratio     inactive
2203  * -------------------------------------
2204  *   10MB       1         5MB
2205  *  100MB       1        50MB
2206  *    1GB       3       250MB
2207  *   10GB      10       0.9GB
2208  *  100GB      31         3GB
2209  *    1TB     101        10GB
2210  *   10TB     320        32GB
2211  */
2212 static bool inactive_is_low(struct lruvec *lruvec, enum lru_list inactive_lru)
2213 {
2214         enum lru_list active_lru = inactive_lru + LRU_ACTIVE;
2215         unsigned long inactive, active;
2216         unsigned long inactive_ratio;
2217         unsigned long gb;
2218
2219         inactive = lruvec_page_state(lruvec, NR_LRU_BASE + inactive_lru);
2220         active = lruvec_page_state(lruvec, NR_LRU_BASE + active_lru);
2221
2222         gb = (inactive + active) >> (30 - PAGE_SHIFT);
2223         if (gb)
2224                 inactive_ratio = int_sqrt(10 * gb);
2225         else
2226                 inactive_ratio = 1;
2227
2228         return inactive * inactive_ratio < active;
2229 }
2230
2231 enum scan_balance {
2232         SCAN_EQUAL,
2233         SCAN_FRACT,
2234         SCAN_ANON,
2235         SCAN_FILE,
2236 };
2237
2238 /*
2239  * Determine how aggressively the anon and file LRU lists should be
2240  * scanned.  The relative value of each set of LRU lists is determined
2241  * by looking at the fraction of the pages scanned we did rotate back
2242  * onto the active list instead of evict.
2243  *
2244  * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan
2245  * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan
2246  */
2247 static void get_scan_count(struct lruvec *lruvec, struct scan_control *sc,
2248                            unsigned long *nr)
2249 {
2250         struct mem_cgroup *memcg = lruvec_memcg(lruvec);
2251         unsigned long anon_cost, file_cost, total_cost;
2252         int swappiness = mem_cgroup_swappiness(memcg);
2253         u64 fraction[ANON_AND_FILE];
2254         u64 denominator = 0;    /* gcc */
2255         enum scan_balance scan_balance;
2256         unsigned long ap, fp;
2257         enum lru_list lru;
2258
2259         /* If we have no swap space, do not bother scanning anon pages. */
2260         if (!sc->may_swap || mem_cgroup_get_nr_swap_pages(memcg) <= 0) {
2261                 scan_balance = SCAN_FILE;
2262                 goto out;
2263         }
2264
2265         /*
2266          * Global reclaim will swap to prevent OOM even with no
2267          * swappiness, but memcg users want to use this knob to
2268          * disable swapping for individual groups completely when
2269          * using the memory controller's swap limit feature would be
2270          * too expensive.
2271          */
2272         if (cgroup_reclaim(sc) && !swappiness) {
2273                 scan_balance = SCAN_FILE;
2274                 goto out;
2275         }
2276
2277         /*
2278          * Do not apply any pressure balancing cleverness when the
2279          * system is close to OOM, scan both anon and file equally
2280          * (unless the swappiness setting disagrees with swapping).
2281          */
2282         if (!sc->priority && swappiness) {
2283                 scan_balance = SCAN_EQUAL;
2284                 goto out;
2285         }
2286
2287         /*
2288          * If the system is almost out of file pages, force-scan anon.
2289          */
2290         if (sc->file_is_tiny) {
2291                 scan_balance = SCAN_ANON;
2292                 goto out;
2293         }
2294
2295         /*
2296          * If there is enough inactive page cache, we do not reclaim
2297          * anything from the anonymous working right now.
2298          */
2299         if (sc->cache_trim_mode) {
2300                 scan_balance = SCAN_FILE;
2301                 goto out;
2302         }
2303
2304         scan_balance = SCAN_FRACT;
2305         /*
2306          * Calculate the pressure balance between anon and file pages.
2307          *
2308          * The amount of pressure we put on each LRU is inversely
2309          * proportional to the cost of reclaiming each list, as
2310          * determined by the share of pages that are refaulting, times
2311          * the relative IO cost of bringing back a swapped out
2312          * anonymous page vs reloading a filesystem page (swappiness).
2313          *
2314          * Although we limit that influence to ensure no list gets
2315          * left behind completely: at least a third of the pressure is
2316          * applied, before swappiness.
2317          *
2318          * With swappiness at 100, anon and file have equal IO cost.
2319          */
2320         total_cost = sc->anon_cost + sc->file_cost;
2321         anon_cost = total_cost + sc->anon_cost;
2322         file_cost = total_cost + sc->file_cost;
2323         total_cost = anon_cost + file_cost;
2324
2325         ap = swappiness * (total_cost + 1);
2326         ap /= anon_cost + 1;
2327
2328         fp = (200 - swappiness) * (total_cost + 1);
2329         fp /= file_cost + 1;
2330
2331         fraction[0] = ap;
2332         fraction[1] = fp;
2333         denominator = ap + fp;
2334 out:
2335         for_each_evictable_lru(lru) {
2336                 int file = is_file_lru(lru);
2337                 unsigned long lruvec_size;
2338                 unsigned long low, min;
2339                 unsigned long scan;
2340
2341                 lruvec_size = lruvec_lru_size(lruvec, lru, sc->reclaim_idx);
2342                 mem_cgroup_protection(sc->target_mem_cgroup, memcg,
2343                                       &min, &low);
2344
2345                 if (min || low) {
2346                         /*
2347                          * Scale a cgroup's reclaim pressure by proportioning
2348                          * its current usage to its memory.low or memory.min
2349                          * setting.
2350                          *
2351                          * This is important, as otherwise scanning aggression
2352                          * becomes extremely binary -- from nothing as we
2353                          * approach the memory protection threshold, to totally
2354                          * nominal as we exceed it.  This results in requiring
2355                          * setting extremely liberal protection thresholds. It
2356                          * also means we simply get no protection at all if we
2357                          * set it too low, which is not ideal.
2358                          *
2359                          * If there is any protection in place, we reduce scan
2360                          * pressure by how much of the total memory used is
2361                          * within protection thresholds.
2362                          *
2363                          * There is one special case: in the first reclaim pass,
2364                          * we skip over all groups that are within their low
2365                          * protection. If that fails to reclaim enough pages to
2366                          * satisfy the reclaim goal, we come back and override
2367                          * the best-effort low protection. However, we still
2368                          * ideally want to honor how well-behaved groups are in
2369                          * that case instead of simply punishing them all
2370                          * equally. As such, we reclaim them based on how much
2371                          * memory they are using, reducing the scan pressure
2372                          * again by how much of the total memory used is under
2373                          * hard protection.
2374                          */
2375                         unsigned long cgroup_size = mem_cgroup_size(memcg);
2376                         unsigned long protection;
2377
2378                         /* memory.low scaling, make sure we retry before OOM */
2379                         if (!sc->memcg_low_reclaim && low > min) {
2380                                 protection = low;
2381                                 sc->memcg_low_skipped = 1;
2382                         } else {
2383                                 protection = min;
2384                         }
2385
2386                         /* Avoid TOCTOU with earlier protection check */
2387                         cgroup_size = max(cgroup_size, protection);
2388
2389                         scan = lruvec_size - lruvec_size * protection /
2390                                 (cgroup_size + 1);
2391
2392                         /*
2393                          * Minimally target SWAP_CLUSTER_MAX pages to keep
2394                          * reclaim moving forwards, avoiding decrementing
2395                          * sc->priority further than desirable.
2396                          */
2397                         scan = max(scan, SWAP_CLUSTER_MAX);
2398                 } else {
2399                         scan = lruvec_size;
2400                 }
2401
2402                 scan >>= sc->priority;
2403
2404                 /*
2405                  * If the cgroup's already been deleted, make sure to
2406                  * scrape out the remaining cache.
2407                  */
2408                 if (!scan && !mem_cgroup_online(memcg))
2409                         scan = min(lruvec_size, SWAP_CLUSTER_MAX);
2410
2411                 switch (scan_balance) {
2412                 case SCAN_EQUAL:
2413                         /* Scan lists relative to size */
2414                         break;
2415                 case SCAN_FRACT:
2416                         /*
2417                          * Scan types proportional to swappiness and
2418                          * their relative recent reclaim efficiency.
2419                          * Make sure we don't miss the last page on
2420                          * the offlined memory cgroups because of a
2421                          * round-off error.
2422                          */
2423                         scan = mem_cgroup_online(memcg) ?
2424                                div64_u64(scan * fraction[file], denominator) :
2425                                DIV64_U64_ROUND_UP(scan * fraction[file],
2426                                                   denominator);
2427                         break;
2428                 case SCAN_FILE:
2429                 case SCAN_ANON:
2430                         /* Scan one type exclusively */
2431                         if ((scan_balance == SCAN_FILE) != file)
2432                                 scan = 0;
2433                         break;
2434                 default:
2435                         /* Look ma, no brain */
2436                         BUG();
2437                 }
2438
2439                 nr[lru] = scan;
2440         }
2441 }
2442
2443 static void shrink_lruvec(struct lruvec *lruvec, struct scan_control *sc)
2444 {
2445         unsigned long nr[NR_LRU_LISTS];
2446         unsigned long targets[NR_LRU_LISTS];
2447         unsigned long nr_to_scan;
2448         enum lru_list lru;
2449         unsigned long nr_reclaimed = 0;
2450         unsigned long nr_to_reclaim = sc->nr_to_reclaim;
2451         struct blk_plug plug;
2452         bool scan_adjusted;
2453
2454         get_scan_count(lruvec, sc, nr);
2455
2456         /* Record the original scan target for proportional adjustments later */
2457         memcpy(targets, nr, sizeof(nr));
2458
2459         /*
2460          * Global reclaiming within direct reclaim at DEF_PRIORITY is a normal
2461          * event that can occur when there is little memory pressure e.g.
2462          * multiple streaming readers/writers. Hence, we do not abort scanning
2463          * when the requested number of pages are reclaimed when scanning at
2464          * DEF_PRIORITY on the assumption that the fact we are direct
2465          * reclaiming implies that kswapd is not keeping up and it is best to
2466          * do a batch of work at once. For memcg reclaim one check is made to
2467          * abort proportional reclaim if either the file or anon lru has already
2468          * dropped to zero at the first pass.
2469          */
2470         scan_adjusted = (!cgroup_reclaim(sc) && !current_is_kswapd() &&
2471                          sc->priority == DEF_PRIORITY);
2472
2473         blk_start_plug(&plug);
2474         while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
2475                                         nr[LRU_INACTIVE_FILE]) {
2476                 unsigned long nr_anon, nr_file, percentage;
2477                 unsigned long nr_scanned;
2478
2479                 for_each_evictable_lru(lru) {
2480                         if (nr[lru]) {
2481                                 nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX);
2482                                 nr[lru] -= nr_to_scan;
2483
2484                                 nr_reclaimed += shrink_list(lru, nr_to_scan,
2485                                                             lruvec, sc);
2486                         }
2487                 }
2488
2489                 cond_resched();
2490
2491                 if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
2492                         continue;
2493
2494                 /*
2495                  * For kswapd and memcg, reclaim at least the number of pages
2496                  * requested. Ensure that the anon and file LRUs are scanned
2497                  * proportionally what was requested by get_scan_count(). We
2498                  * stop reclaiming one LRU and reduce the amount scanning
2499                  * proportional to the original scan target.
2500                  */
2501                 nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE];
2502                 nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON];
2503
2504                 /*
2505                  * It's just vindictive to attack the larger once the smaller
2506                  * has gone to zero.  And given the way we stop scanning the
2507                  * smaller below, this makes sure that we only make one nudge
2508                  * towards proportionality once we've got nr_to_reclaim.
2509                  */
2510                 if (!nr_file || !nr_anon)
2511                         break;
2512
2513                 if (nr_file > nr_anon) {
2514                         unsigned long scan_target = targets[LRU_INACTIVE_ANON] +
2515                                                 targets[LRU_ACTIVE_ANON] + 1;
2516                         lru = LRU_BASE;
2517                         percentage = nr_anon * 100 / scan_target;
2518                 } else {
2519                         unsigned long scan_target = targets[LRU_INACTIVE_FILE] +
2520                                                 targets[LRU_ACTIVE_FILE] + 1;
2521                         lru = LRU_FILE;
2522                         percentage = nr_file * 100 / scan_target;
2523                 }
2524
2525                 /* Stop scanning the smaller of the LRU */
2526                 nr[lru] = 0;
2527                 nr[lru + LRU_ACTIVE] = 0;
2528
2529                 /*
2530                  * Recalculate the other LRU scan count based on its original
2531                  * scan target and the percentage scanning already complete
2532                  */
2533                 lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE;
2534                 nr_scanned = targets[lru] - nr[lru];
2535                 nr[lru] = targets[lru] * (100 - percentage) / 100;
2536                 nr[lru] -= min(nr[lru], nr_scanned);
2537
2538                 lru += LRU_ACTIVE;
2539                 nr_scanned = targets[lru] - nr[lru];
2540                 nr[lru] = targets[lru] * (100 - percentage) / 100;
2541                 nr[lru] -= min(nr[lru], nr_scanned);
2542
2543                 scan_adjusted = true;
2544         }
2545         blk_finish_plug(&plug);
2546         sc->nr_reclaimed += nr_reclaimed;
2547
2548         /*
2549          * Even if we did not try to evict anon pages at all, we want to
2550          * rebalance the anon lru active/inactive ratio.
2551          */
2552         if (total_swap_pages && inactive_is_low(lruvec, LRU_INACTIVE_ANON))
2553                 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
2554                                    sc, LRU_ACTIVE_ANON);
2555 }
2556
2557 /* Use reclaim/compaction for costly allocs or under memory pressure */
2558 static bool in_reclaim_compaction(struct scan_control *sc)
2559 {
2560         if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
2561                         (sc->order > PAGE_ALLOC_COSTLY_ORDER ||
2562                          sc->priority < DEF_PRIORITY - 2))
2563                 return true;
2564
2565         return false;
2566 }
2567
2568 /*
2569  * Reclaim/compaction is used for high-order allocation requests. It reclaims
2570  * order-0 pages before compacting the zone. should_continue_reclaim() returns
2571  * true if more pages should be reclaimed such that when the page allocator
2572  * calls try_to_compact_pages() that it will have enough free pages to succeed.
2573  * It will give up earlier than that if there is difficulty reclaiming pages.
2574  */
2575 static inline bool should_continue_reclaim(struct pglist_data *pgdat,
2576                                         unsigned long nr_reclaimed,
2577                                         struct scan_control *sc)
2578 {
2579         unsigned long pages_for_compaction;
2580         unsigned long inactive_lru_pages;
2581         int z;
2582
2583         /* If not in reclaim/compaction mode, stop */
2584         if (!in_reclaim_compaction(sc))
2585                 return false;
2586
2587         /*
2588          * Stop if we failed to reclaim any pages from the last SWAP_CLUSTER_MAX
2589          * number of pages that were scanned. This will return to the caller
2590          * with the risk reclaim/compaction and the resulting allocation attempt
2591          * fails. In the past we have tried harder for __GFP_RETRY_MAYFAIL
2592          * allocations through requiring that the full LRU list has been scanned
2593          * first, by assuming that zero delta of sc->nr_scanned means full LRU
2594          * scan, but that approximation was wrong, and there were corner cases
2595          * where always a non-zero amount of pages were scanned.
2596          */
2597         if (!nr_reclaimed)
2598                 return false;
2599
2600         /* If compaction would go ahead or the allocation would succeed, stop */
2601         for (z = 0; z <= sc->reclaim_idx; z++) {
2602                 struct zone *zone = &pgdat->node_zones[z];
2603                 if (!managed_zone(zone))
2604                         continue;
2605
2606                 switch (compaction_suitable(zone, sc->order, 0, sc->reclaim_idx)) {
2607                 case COMPACT_SUCCESS:
2608                 case COMPACT_CONTINUE:
2609                         return false;
2610                 default:
2611                         /* check next zone */
2612                         ;
2613                 }
2614         }
2615
2616         /*
2617          * If we have not reclaimed enough pages for compaction and the
2618          * inactive lists are large enough, continue reclaiming
2619          */
2620         pages_for_compaction = compact_gap(sc->order);
2621         inactive_lru_pages = node_page_state(pgdat, NR_INACTIVE_FILE);
2622         if (get_nr_swap_pages() > 0)
2623                 inactive_lru_pages += node_page_state(pgdat, NR_INACTIVE_ANON);
2624
2625         return inactive_lru_pages > pages_for_compaction;
2626 }
2627
2628 static void shrink_node_memcgs(pg_data_t *pgdat, struct scan_control *sc)
2629 {
2630         struct mem_cgroup *target_memcg = sc->target_mem_cgroup;
2631         struct mem_cgroup *memcg;
2632
2633         memcg = mem_cgroup_iter(target_memcg, NULL, NULL);
2634         do {
2635                 struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
2636                 unsigned long reclaimed;
2637                 unsigned long scanned;
2638
2639                 /*
2640                  * This loop can become CPU-bound when target memcgs
2641                  * aren't eligible for reclaim - either because they
2642                  * don't have any reclaimable pages, or because their
2643                  * memory is explicitly protected. Avoid soft lockups.
2644                  */
2645                 cond_resched();
2646
2647                 mem_cgroup_calculate_protection(target_memcg, memcg);
2648
2649                 if (mem_cgroup_below_min(memcg)) {
2650                         /*
2651                          * Hard protection.
2652                          * If there is no reclaimable memory, OOM.
2653                          */
2654                         continue;
2655                 } else if (mem_cgroup_below_low(memcg)) {
2656                         /*
2657                          * Soft protection.
2658                          * Respect the protection only as long as
2659                          * there is an unprotected supply
2660                          * of reclaimable memory from other cgroups.
2661                          */
2662                         if (!sc->memcg_low_reclaim) {
2663                                 sc->memcg_low_skipped = 1;
2664                                 continue;
2665                         }
2666                         memcg_memory_event(memcg, MEMCG_LOW);
2667                 }
2668
2669                 reclaimed = sc->nr_reclaimed;
2670                 scanned = sc->nr_scanned;
2671
2672                 shrink_lruvec(lruvec, sc);
2673
2674                 shrink_slab(sc->gfp_mask, pgdat->node_id, memcg,
2675                             sc->priority);
2676
2677                 /* Record the group's reclaim efficiency */
2678                 vmpressure(sc->gfp_mask, memcg, false,
2679                            sc->nr_scanned - scanned,
2680                            sc->nr_reclaimed - reclaimed);
2681
2682         } while ((memcg = mem_cgroup_iter(target_memcg, memcg, NULL)));
2683 }
2684
2685 static void shrink_node(pg_data_t *pgdat, struct scan_control *sc)
2686 {
2687         struct reclaim_state *reclaim_state = current->reclaim_state;
2688         unsigned long nr_reclaimed, nr_scanned;
2689         struct lruvec *target_lruvec;
2690         bool reclaimable = false;
2691         unsigned long file;
2692
2693         target_lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup, pgdat);
2694
2695 again:
2696         memset(&sc->nr, 0, sizeof(sc->nr));
2697
2698         nr_reclaimed = sc->nr_reclaimed;
2699         nr_scanned = sc->nr_scanned;
2700
2701         /*
2702          * Determine the scan balance between anon and file LRUs.
2703          */
2704         spin_lock_irq(&pgdat->lru_lock);
2705         sc->anon_cost = target_lruvec->anon_cost;
2706         sc->file_cost = target_lruvec->file_cost;
2707         spin_unlock_irq(&pgdat->lru_lock);
2708
2709         /*
2710          * Target desirable inactive:active list ratios for the anon
2711          * and file LRU lists.
2712          */
2713         if (!sc->force_deactivate) {
2714                 unsigned long refaults;
2715
2716                 refaults = lruvec_page_state(target_lruvec,
2717                                 WORKINGSET_ACTIVATE_ANON);
2718                 if (refaults != target_lruvec->refaults[0] ||
2719                         inactive_is_low(target_lruvec, LRU_INACTIVE_ANON))
2720                         sc->may_deactivate |= DEACTIVATE_ANON;
2721                 else
2722                         sc->may_deactivate &= ~DEACTIVATE_ANON;
2723
2724                 /*
2725                  * When refaults are being observed, it means a new
2726                  * workingset is being established. Deactivate to get
2727                  * rid of any stale active pages quickly.
2728                  */
2729                 refaults = lruvec_page_state(target_lruvec,
2730                                 WORKINGSET_ACTIVATE_FILE);
2731                 if (refaults != target_lruvec->refaults[1] ||
2732                     inactive_is_low(target_lruvec, LRU_INACTIVE_FILE))
2733                         sc->may_deactivate |= DEACTIVATE_FILE;
2734                 else
2735                         sc->may_deactivate &= ~DEACTIVATE_FILE;
2736         } else
2737                 sc->may_deactivate = DEACTIVATE_ANON | DEACTIVATE_FILE;
2738
2739         /*
2740          * If we have plenty of inactive file pages that aren't
2741          * thrashing, try to reclaim those first before touching
2742          * anonymous pages.
2743          */
2744         file = lruvec_page_state(target_lruvec, NR_INACTIVE_FILE);
2745         if (file >> sc->priority && !(sc->may_deactivate & DEACTIVATE_FILE))
2746                 sc->cache_trim_mode = 1;
2747         else
2748                 sc->cache_trim_mode = 0;
2749
2750         /*
2751          * Prevent the reclaimer from falling into the cache trap: as
2752          * cache pages start out inactive, every cache fault will tip
2753          * the scan balance towards the file LRU.  And as the file LRU
2754          * shrinks, so does the window for rotation from references.
2755          * This means we have a runaway feedback loop where a tiny
2756          * thrashing file LRU becomes infinitely more attractive than
2757          * anon pages.  Try to detect this based on file LRU size.
2758          */
2759         if (!cgroup_reclaim(sc)) {
2760                 unsigned long total_high_wmark = 0;
2761                 unsigned long free, anon;
2762                 int z;
2763
2764                 free = sum_zone_node_page_state(pgdat->node_id, NR_FREE_PAGES);
2765                 file = node_page_state(pgdat, NR_ACTIVE_FILE) +
2766                            node_page_state(pgdat, NR_INACTIVE_FILE);
2767
2768                 for (z = 0; z < MAX_NR_ZONES; z++) {
2769                         struct zone *zone = &pgdat->node_zones[z];
2770                         if (!managed_zone(zone))
2771                                 continue;
2772
2773                         total_high_wmark += high_wmark_pages(zone);
2774                 }
2775
2776                 /*
2777                  * Consider anon: if that's low too, this isn't a
2778                  * runaway file reclaim problem, but rather just
2779                  * extreme pressure. Reclaim as per usual then.
2780                  */
2781                 anon = node_page_state(pgdat, NR_INACTIVE_ANON);
2782
2783                 sc->file_is_tiny =
2784                         file + free <= total_high_wmark &&
2785                         !(sc->may_deactivate & DEACTIVATE_ANON) &&
2786                         anon >> sc->priority;
2787         }
2788
2789         shrink_node_memcgs(pgdat, sc);
2790
2791         if (reclaim_state) {
2792                 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
2793                 reclaim_state->reclaimed_slab = 0;
2794         }
2795
2796         /* Record the subtree's reclaim efficiency */
2797         vmpressure(sc->gfp_mask, sc->target_mem_cgroup, true,
2798                    sc->nr_scanned - nr_scanned,
2799                    sc->nr_reclaimed - nr_reclaimed);
2800
2801         if (sc->nr_reclaimed - nr_reclaimed)
2802                 reclaimable = true;
2803
2804         if (current_is_kswapd()) {
2805                 /*
2806                  * If reclaim is isolating dirty pages under writeback,
2807                  * it implies that the long-lived page allocation rate
2808                  * is exceeding the page laundering rate. Either the
2809                  * global limits are not being effective at throttling
2810                  * processes due to the page distribution throughout
2811                  * zones or there is heavy usage of a slow backing
2812                  * device. The only option is to throttle from reclaim
2813                  * context which is not ideal as there is no guarantee
2814                  * the dirtying process is throttled in the same way
2815                  * balance_dirty_pages() manages.
2816                  *
2817                  * Once a node is flagged PGDAT_WRITEBACK, kswapd will
2818                  * count the number of pages under pages flagged for
2819                  * immediate reclaim and stall if any are encountered
2820                  * in the nr_immediate check below.
2821                  */
2822                 if (sc->nr.writeback && sc->nr.writeback == sc->nr.taken)
2823                         set_bit(PGDAT_WRITEBACK, &pgdat->flags);
2824
2825                 /* Allow kswapd to start writing pages during reclaim.*/
2826                 if (sc->nr.unqueued_dirty == sc->nr.file_taken)
2827                         set_bit(PGDAT_DIRTY, &pgdat->flags);
2828
2829                 /*
2830                  * If kswapd scans pages marked for immediate
2831                  * reclaim and under writeback (nr_immediate), it
2832                  * implies that pages are cycling through the LRU
2833                  * faster than they are written so also forcibly stall.
2834                  */
2835                 if (sc->nr.immediate)
2836                         congestion_wait(BLK_RW_ASYNC, HZ/10);
2837         }
2838
2839         /*
2840          * Tag a node/memcg as congested if all the dirty pages
2841          * scanned were backed by a congested BDI and
2842          * wait_iff_congested will stall.
2843          *
2844          * Legacy memcg will stall in page writeback so avoid forcibly
2845          * stalling in wait_iff_congested().
2846          */
2847         if ((current_is_kswapd() ||
2848              (cgroup_reclaim(sc) && writeback_throttling_sane(sc))) &&
2849             sc->nr.dirty && sc->nr.dirty == sc->nr.congested)
2850                 set_bit(LRUVEC_CONGESTED, &target_lruvec->flags);
2851
2852         /*
2853          * Stall direct reclaim for IO completions if underlying BDIs
2854          * and node is congested. Allow kswapd to continue until it
2855          * starts encountering unqueued dirty pages or cycling through
2856          * the LRU too quickly.
2857          */
2858         if (!current_is_kswapd() && current_may_throttle() &&
2859             !sc->hibernation_mode &&
2860             test_bit(LRUVEC_CONGESTED, &target_lruvec->flags))
2861                 wait_iff_congested(BLK_RW_ASYNC, HZ/10);
2862
2863         if (should_continue_reclaim(pgdat, sc->nr_reclaimed - nr_reclaimed,
2864                                     sc))
2865                 goto again;
2866
2867         /*
2868          * Kswapd gives up on balancing particular nodes after too
2869          * many failures to reclaim anything from them and goes to
2870          * sleep. On reclaim progress, reset the failure counter. A
2871          * successful direct reclaim run will revive a dormant kswapd.
2872          */
2873         if (reclaimable)
2874                 pgdat->kswapd_failures = 0;
2875 }
2876
2877 /*
2878  * Returns true if compaction should go ahead for a costly-order request, or
2879  * the allocation would already succeed without compaction. Return false if we
2880  * should reclaim first.
2881  */
2882 static inline bool compaction_ready(struct zone *zone, struct scan_control *sc)
2883 {
2884         unsigned long watermark;
2885         enum compact_result suitable;
2886
2887         suitable = compaction_suitable(zone, sc->order, 0, sc->reclaim_idx);
2888         if (suitable == COMPACT_SUCCESS)
2889                 /* Allocation should succeed already. Don't reclaim. */
2890                 return true;
2891         if (suitable == COMPACT_SKIPPED)
2892                 /* Compaction cannot yet proceed. Do reclaim. */
2893                 return false;
2894
2895         /*
2896          * Compaction is already possible, but it takes time to run and there
2897          * are potentially other callers using the pages just freed. So proceed
2898          * with reclaim to make a buffer of free pages available to give
2899          * compaction a reasonable chance of completing and allocating the page.
2900          * Note that we won't actually reclaim the whole buffer in one attempt
2901          * as the target watermark in should_continue_reclaim() is lower. But if
2902          * we are already above the high+gap watermark, don't reclaim at all.
2903          */
2904         watermark = high_wmark_pages(zone) + compact_gap(sc->order);
2905
2906         return zone_watermark_ok_safe(zone, 0, watermark, sc->reclaim_idx);
2907 }
2908
2909 /*
2910  * This is the direct reclaim path, for page-allocating processes.  We only
2911  * try to reclaim pages from zones which will satisfy the caller's allocation
2912  * request.
2913  *
2914  * If a zone is deemed to be full of pinned pages then just give it a light
2915  * scan then give up on it.
2916  */
2917 static void shrink_zones(struct zonelist *zonelist, struct scan_control *sc)
2918 {
2919         struct zoneref *z;
2920         struct zone *zone;
2921         unsigned long nr_soft_reclaimed;
2922         unsigned long nr_soft_scanned;
2923         gfp_t orig_mask;
2924         pg_data_t *last_pgdat = NULL;
2925
2926         /*
2927          * If the number of buffer_heads in the machine exceeds the maximum
2928          * allowed level, force direct reclaim to scan the highmem zone as
2929          * highmem pages could be pinning lowmem pages storing buffer_heads
2930          */
2931         orig_mask = sc->gfp_mask;
2932         if (buffer_heads_over_limit) {
2933                 sc->gfp_mask |= __GFP_HIGHMEM;
2934                 sc->reclaim_idx = gfp_zone(sc->gfp_mask);
2935         }
2936
2937         for_each_zone_zonelist_nodemask(zone, z, zonelist,
2938                                         sc->reclaim_idx, sc->nodemask) {
2939                 /*
2940                  * Take care memory controller reclaiming has small influence
2941                  * to global LRU.
2942                  */
2943                 if (!cgroup_reclaim(sc)) {
2944                         if (!cpuset_zone_allowed(zone,
2945                                                  GFP_KERNEL | __GFP_HARDWALL))
2946                                 continue;
2947
2948                         /*
2949                          * If we already have plenty of memory free for
2950                          * compaction in this zone, don't free any more.
2951                          * Even though compaction is invoked for any
2952                          * non-zero order, only frequent costly order
2953                          * reclamation is disruptive enough to become a
2954                          * noticeable problem, like transparent huge
2955                          * page allocations.
2956                          */
2957                         if (IS_ENABLED(CONFIG_COMPACTION) &&
2958                             sc->order > PAGE_ALLOC_COSTLY_ORDER &&
2959                             compaction_ready(zone, sc)) {
2960                                 sc->compaction_ready = true;
2961                                 continue;
2962                         }
2963
2964                         /*
2965                          * Shrink each node in the zonelist once. If the
2966                          * zonelist is ordered by zone (not the default) then a
2967                          * node may be shrunk multiple times but in that case
2968                          * the user prefers lower zones being preserved.
2969                          */
2970                         if (zone->zone_pgdat == last_pgdat)
2971                                 continue;
2972
2973                         /*
2974                          * This steals pages from memory cgroups over softlimit
2975                          * and returns the number of reclaimed pages and
2976                          * scanned pages. This works for global memory pressure
2977                          * and balancing, not for a memcg's limit.
2978                          */
2979                         nr_soft_scanned = 0;
2980                         nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone->zone_pgdat,
2981                                                 sc->order, sc->gfp_mask,
2982                                                 &nr_soft_scanned);
2983                         sc->nr_reclaimed += nr_soft_reclaimed;
2984                         sc->nr_scanned += nr_soft_scanned;
2985                         /* need some check for avoid more shrink_zone() */
2986                 }
2987
2988                 /* See comment about same check for global reclaim above */
2989                 if (zone->zone_pgdat == last_pgdat)
2990                         continue;
2991                 last_pgdat = zone->zone_pgdat;
2992                 shrink_node(zone->zone_pgdat, sc);
2993         }
2994
2995         /*
2996          * Restore to original mask to avoid the impact on the caller if we
2997          * promoted it to __GFP_HIGHMEM.
2998          */
2999         sc->gfp_mask = orig_mask;
3000 }
3001
3002 static void snapshot_refaults(struct mem_cgroup *target_memcg, pg_data_t *pgdat)
3003 {
3004         struct lruvec *target_lruvec;
3005         unsigned long refaults;
3006
3007         target_lruvec = mem_cgroup_lruvec(target_memcg, pgdat);
3008         refaults = lruvec_page_state(target_lruvec, WORKINGSET_ACTIVATE_ANON);
3009         target_lruvec->refaults[0] = refaults;
3010         refaults = lruvec_page_state(target_lruvec, WORKINGSET_ACTIVATE_FILE);
3011         target_lruvec->refaults[1] = refaults;
3012 }
3013
3014 /*
3015  * This is the main entry point to direct page reclaim.
3016  *
3017  * If a full scan of the inactive list fails to free enough memory then we
3018  * are "out of memory" and something needs to be killed.
3019  *
3020  * If the caller is !__GFP_FS then the probability of a failure is reasonably
3021  * high - the zone may be full of dirty or under-writeback pages, which this
3022  * caller can't do much about.  We kick the writeback threads and take explicit
3023  * naps in the hope that some of these pages can be written.  But if the
3024  * allocating task holds filesystem locks which prevent writeout this might not
3025  * work, and the allocation attempt will fail.
3026  *
3027  * returns:     0, if no pages reclaimed
3028  *              else, the number of pages reclaimed
3029  */
3030 static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
3031                                           struct scan_control *sc)
3032 {
3033         int initial_priority = sc->priority;
3034         pg_data_t *last_pgdat;
3035         struct zoneref *z;
3036         struct zone *zone;
3037 retry:
3038         delayacct_freepages_start();
3039
3040         if (!cgroup_reclaim(sc))
3041                 __count_zid_vm_events(ALLOCSTALL, sc->reclaim_idx, 1);
3042
3043         do {
3044                 vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup,
3045                                 sc->priority);
3046                 sc->nr_scanned = 0;
3047                 shrink_zones(zonelist, sc);
3048
3049                 if (sc->nr_reclaimed >= sc->nr_to_reclaim)
3050                         break;
3051
3052                 if (sc->compaction_ready)
3053                         break;
3054
3055                 /*
3056                  * If we're getting trouble reclaiming, start doing
3057                  * writepage even in laptop mode.
3058                  */
3059                 if (sc->priority < DEF_PRIORITY - 2)
3060                         sc->may_writepage = 1;
3061         } while (--sc->priority >= 0);
3062
3063         last_pgdat = NULL;
3064         for_each_zone_zonelist_nodemask(zone, z, zonelist, sc->reclaim_idx,
3065                                         sc->nodemask) {
3066                 if (zone->zone_pgdat == last_pgdat)
3067                         continue;
3068                 last_pgdat = zone->zone_pgdat;
3069
3070                 snapshot_refaults(sc->target_mem_cgroup, zone->zone_pgdat);
3071
3072                 if (cgroup_reclaim(sc)) {
3073                         struct lruvec *lruvec;
3074
3075                         lruvec = mem_cgroup_lruvec(sc->target_mem_cgroup,
3076                                                    zone->zone_pgdat);
3077                         clear_bit(LRUVEC_CONGESTED, &lruvec->flags);
3078                 }
3079         }
3080
3081         delayacct_freepages_end();
3082
3083         if (sc->nr_reclaimed)
3084                 return sc->nr_reclaimed;
3085
3086         /* Aborted reclaim to try compaction? don't OOM, then */
3087         if (sc->compaction_ready)
3088                 return 1;
3089
3090         /*
3091          * We make inactive:active ratio decisions based on the node's
3092          * composition of memory, but a restrictive reclaim_idx or a
3093          * memory.low cgroup setting can exempt large amounts of
3094          * memory from reclaim. Neither of which are very common, so
3095          * instead of doing costly eligibility calculations of the
3096          * entire cgroup subtree up front, we assume the estimates are
3097          * good, and retry with forcible deactivation if that fails.
3098          */
3099         if (sc->skipped_deactivate) {
3100                 sc->priority = initial_priority;
3101                 sc->force_deactivate = 1;
3102                 sc->skipped_deactivate = 0;
3103                 goto retry;
3104         }
3105
3106         /* Untapped cgroup reserves?  Don't OOM, retry. */
3107         if (sc->memcg_low_skipped) {
3108                 sc->priority = initial_priority;
3109                 sc->force_deactivate = 0;
3110                 sc->memcg_low_reclaim = 1;
3111                 sc->memcg_low_skipped = 0;
3112                 goto retry;
3113         }
3114
3115         return 0;
3116 }
3117
3118 static bool allow_direct_reclaim(pg_data_t *pgdat)
3119 {
3120         struct zone *zone;
3121         unsigned long pfmemalloc_reserve = 0;
3122         unsigned long free_pages = 0;
3123         int i;
3124         bool wmark_ok;
3125
3126         if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
3127                 return true;
3128
3129         for (i = 0; i <= ZONE_NORMAL; i++) {
3130                 zone = &pgdat->node_zones[i];
3131                 if (!managed_zone(zone))
3132                         continue;
3133
3134                 if (!zone_reclaimable_pages(zone))
3135                         continue;
3136
3137                 pfmemalloc_reserve += min_wmark_pages(zone);
3138                 free_pages += zone_page_state(zone, NR_FREE_PAGES);
3139         }
3140
3141         /* If there are no reserves (unexpected config) then do not throttle */
3142         if (!pfmemalloc_reserve)
3143                 return true;
3144
3145         wmark_ok = free_pages > pfmemalloc_reserve / 2;
3146
3147         /* kswapd must be awake if processes are being throttled */
3148         if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) {
3149                 if (READ_ONCE(pgdat->kswapd_highest_zoneidx) > ZONE_NORMAL)
3150                         WRITE_ONCE(pgdat->kswapd_highest_zoneidx, ZONE_NORMAL);
3151
3152                 wake_up_interruptible(&pgdat->kswapd_wait);
3153         }
3154
3155         return wmark_ok;
3156 }
3157
3158 /*
3159  * Throttle direct reclaimers if backing storage is backed by the network
3160  * and the PFMEMALLOC reserve for the preferred node is getting dangerously
3161  * depleted. kswapd will continue to make progress and wake the processes
3162  * when the low watermark is reached.
3163  *
3164  * Returns true if a fatal signal was delivered during throttling. If this
3165  * happens, the page allocator should not consider triggering the OOM killer.
3166  */
3167 static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist,
3168                                         nodemask_t *nodemask)
3169 {
3170         struct zoneref *z;
3171         struct zone *zone;
3172         pg_data_t *pgdat = NULL;
3173
3174         /*
3175          * Kernel threads should not be throttled as they may be indirectly
3176          * responsible for cleaning pages necessary for reclaim to make forward
3177          * progress. kjournald for example may enter direct reclaim while
3178          * committing a transaction where throttling it could forcing other
3179          * processes to block on log_wait_commit().
3180          */
3181         if (current->flags & PF_KTHREAD)
3182                 goto out;
3183
3184         /*
3185          * If a fatal signal is pending, this process should not throttle.
3186          * It should return quickly so it can exit and free its memory
3187          */
3188         if (fatal_signal_pending(current))
3189                 goto out;
3190
3191         /*
3192          * Check if the pfmemalloc reserves are ok by finding the first node
3193          * with a usable ZONE_NORMAL or lower zone. The expectation is that
3194          * GFP_KERNEL will be required for allocating network buffers when
3195          * swapping over the network so ZONE_HIGHMEM is unusable.
3196          *
3197          * Throttling is based on the first usable node and throttled processes
3198          * wait on a queue until kswapd makes progress and wakes them. There
3199          * is an affinity then between processes waking up and where reclaim
3200          * progress has been made assuming the process wakes on the same node.
3201          * More importantly, processes running on remote nodes will not compete
3202          * for remote pfmemalloc reserves and processes on different nodes
3203          * should make reasonable progress.
3204          */
3205         for_each_zone_zonelist_nodemask(zone, z, zonelist,
3206                                         gfp_zone(gfp_mask), nodemask) {
3207                 if (zone_idx(zone) > ZONE_NORMAL)
3208                         continue;
3209
3210                 /* Throttle based on the first usable node */
3211                 pgdat = zone->zone_pgdat;
3212                 if (allow_direct_reclaim(pgdat))
3213                         goto out;
3214                 break;
3215         }
3216
3217         /* If no zone was usable by the allocation flags then do not throttle */
3218         if (!pgdat)
3219                 goto out;
3220
3221         /* Account for the throttling */
3222         count_vm_event(PGSCAN_DIRECT_THROTTLE);
3223
3224         /*
3225          * If the caller cannot enter the filesystem, it's possible that it
3226          * is due to the caller holding an FS lock or performing a journal
3227          * transaction in the case of a filesystem like ext[3|4]. In this case,
3228          * it is not safe to block on pfmemalloc_wait as kswapd could be
3229          * blocked waiting on the same lock. Instead, throttle for up to a
3230          * second before continuing.
3231          */
3232         if (!(gfp_mask & __GFP_FS)) {
3233                 wait_event_interruptible_timeout(pgdat->pfmemalloc_wait,
3234                         allow_direct_reclaim(pgdat), HZ);
3235
3236                 goto check_pending;
3237         }
3238
3239         /* Throttle until kswapd wakes the process */
3240         wait_event_killable(zone->zone_pgdat->pfmemalloc_wait,
3241                 allow_direct_reclaim(pgdat));
3242
3243 check_pending:
3244         if (fatal_signal_pending(current))
3245                 return true;
3246
3247 out:
3248         return false;
3249 }
3250
3251 unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
3252                                 gfp_t gfp_mask, nodemask_t *nodemask)
3253 {
3254         unsigned long nr_reclaimed;
3255         struct scan_control sc = {
3256                 .nr_to_reclaim = SWAP_CLUSTER_MAX,
3257                 .gfp_mask = current_gfp_context(gfp_mask),
3258                 .reclaim_idx = gfp_zone(gfp_mask),
3259                 .order = order,
3260                 .nodemask = nodemask,
3261                 .priority = DEF_PRIORITY,
3262                 .may_writepage = !laptop_mode,
3263                 .may_unmap = 1,
3264                 .may_swap = 1,
3265         };
3266
3267         /*
3268          * scan_control uses s8 fields for order, priority, and reclaim_idx.
3269          * Confirm they are large enough for max values.
3270          */
3271         BUILD_BUG_ON(MAX_ORDER > S8_MAX);
3272         BUILD_BUG_ON(DEF_PRIORITY > S8_MAX);
3273         BUILD_BUG_ON(MAX_NR_ZONES > S8_MAX);
3274
3275         /*
3276          * Do not enter reclaim if fatal signal was delivered while throttled.
3277          * 1 is returned so that the page allocator does not OOM kill at this
3278          * point.
3279          */
3280         if (throttle_direct_reclaim(sc.gfp_mask, zonelist, nodemask))
3281                 return 1;
3282
3283         set_task_reclaim_state(current, &sc.reclaim_state);
3284         trace_mm_vmscan_direct_reclaim_begin(order, sc.gfp_mask);
3285
3286         nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
3287
3288         trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
3289         set_task_reclaim_state(current, NULL);
3290
3291         return nr_reclaimed;
3292 }
3293
3294 #ifdef CONFIG_MEMCG
3295
3296 /* Only used by soft limit reclaim. Do not reuse for anything else. */
3297 unsigned long mem_cgroup_shrink_node(struct mem_cgroup *memcg,
3298                                                 gfp_t gfp_mask, bool noswap,
3299                                                 pg_data_t *pgdat,
3300                                                 unsigned long *nr_scanned)
3301 {
3302         struct lruvec *lruvec = mem_cgroup_lruvec(memcg, pgdat);
3303         struct scan_control sc = {
3304                 .nr_to_reclaim = SWAP_CLUSTER_MAX,
3305                 .target_mem_cgroup = memcg,
3306                 .may_writepage = !laptop_mode,
3307                 .may_unmap = 1,
3308                 .reclaim_idx = MAX_NR_ZONES - 1,
3309                 .may_swap = !noswap,
3310         };
3311
3312         WARN_ON_ONCE(!current->reclaim_state);
3313
3314         sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
3315                         (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
3316
3317         trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order,
3318                                                       sc.gfp_mask);
3319
3320         /*
3321          * NOTE: Although we can get the priority field, using it
3322          * here is not a good idea, since it limits the pages we can scan.
3323          * if we don't reclaim here, the shrink_node from balance_pgdat
3324          * will pick up pages from other mem cgroup's as well. We hack
3325          * the priority and make it zero.
3326          */
3327         shrink_lruvec(lruvec, &sc);
3328
3329         trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
3330
3331         *nr_scanned = sc.nr_scanned;
3332
3333         return sc.nr_reclaimed;
3334 }
3335
3336 unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
3337                                            unsigned long nr_pages,
3338                                            gfp_t gfp_mask,
3339                                            bool may_swap)
3340 {
3341         unsigned long nr_reclaimed;
3342         unsigned int noreclaim_flag;
3343         struct scan_control sc = {
3344                 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
3345                 .gfp_mask = (current_gfp_context(gfp_mask) & GFP_RECLAIM_MASK) |
3346                                 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK),
3347                 .reclaim_idx = MAX_NR_ZONES - 1,
3348                 .target_mem_cgroup = memcg,
3349                 .priority = DEF_PRIORITY,
3350                 .may_writepage = !laptop_mode,
3351                 .may_unmap = 1,
3352                 .may_swap = may_swap,
3353         };
3354         /*
3355          * Traverse the ZONELIST_FALLBACK zonelist of the current node to put
3356          * equal pressure on all the nodes. This is based on the assumption that
3357          * the reclaim does not bail out early.
3358          */
3359         struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
3360
3361         set_task_reclaim_state(current, &sc.reclaim_state);
3362         trace_mm_vmscan_memcg_reclaim_begin(0, sc.gfp_mask);
3363         noreclaim_flag = memalloc_noreclaim_save();
3364
3365         nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
3366
3367         memalloc_noreclaim_restore(noreclaim_flag);
3368         trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
3369         set_task_reclaim_state(current, NULL);
3370
3371         return nr_reclaimed;
3372 }
3373 #endif
3374
3375 static void age_active_anon(struct pglist_data *pgdat,
3376                                 struct scan_control *sc)
3377 {
3378         struct mem_cgroup *memcg;
3379         struct lruvec *lruvec;
3380
3381         if (!total_swap_pages)
3382                 return;
3383
3384         lruvec = mem_cgroup_lruvec(NULL, pgdat);
3385         if (!inactive_is_low(lruvec, LRU_INACTIVE_ANON))
3386                 return;
3387
3388         memcg = mem_cgroup_iter(NULL, NULL, NULL);
3389         do {
3390                 lruvec = mem_cgroup_lruvec(memcg, pgdat);
3391                 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
3392                                    sc, LRU_ACTIVE_ANON);
3393                 memcg = mem_cgroup_iter(NULL, memcg, NULL);
3394         } while (memcg);
3395 }
3396
3397 static bool pgdat_watermark_boosted(pg_data_t *pgdat, int highest_zoneidx)
3398 {
3399         int i;
3400         struct zone *zone;
3401
3402         /*
3403          * Check for watermark boosts top-down as the higher zones
3404          * are more likely to be boosted. Both watermarks and boosts
3405          * should not be checked at the same time as reclaim would
3406          * start prematurely when there is no boosting and a lower
3407          * zone is balanced.
3408          */
3409         for (i = highest_zoneidx; i >= 0; i--) {
3410                 zone = pgdat->node_zones + i;
3411                 if (!managed_zone(zone))
3412                         continue;
3413
3414                 if (zone->watermark_boost)
3415                         return true;
3416         }
3417
3418         return false;
3419 }
3420
3421 /*
3422  * Returns true if there is an eligible zone balanced for the request order
3423  * and highest_zoneidx
3424  */
3425 static bool pgdat_balanced(pg_data_t *pgdat, int order, int highest_zoneidx)
3426 {
3427         int i;
3428         unsigned long mark = -1;
3429         struct zone *zone;
3430
3431         /*
3432          * Check watermarks bottom-up as lower zones are more likely to
3433          * meet watermarks.
3434          */
3435         for (i = 0; i <= highest_zoneidx; i++) {
3436                 zone = pgdat->node_zones + i;
3437
3438                 if (!managed_zone(zone))
3439                         continue;
3440
3441                 mark = high_wmark_pages(zone);
3442                 if (zone_watermark_ok_safe(zone, order, mark, highest_zoneidx))
3443                         return true;
3444         }
3445
3446         /*
3447          * If a node has no populated zone within highest_zoneidx, it does not
3448          * need balancing by definition. This can happen if a zone-restricted
3449          * allocation tries to wake a remote kswapd.
3450          */
3451         if (mark == -1)
3452                 return true;
3453
3454         return false;
3455 }
3456
3457 /* Clear pgdat state for congested, dirty or under writeback. */
3458 static void clear_pgdat_congested(pg_data_t *pgdat)
3459 {
3460         struct lruvec *lruvec = mem_cgroup_lruvec(NULL, pgdat);
3461
3462         clear_bit(LRUVEC_CONGESTED, &lruvec->flags);
3463         clear_bit(PGDAT_DIRTY, &pgdat->flags);
3464         clear_bit(PGDAT_WRITEBACK, &pgdat->flags);
3465 }
3466
3467 /*
3468  * Prepare kswapd for sleeping. This verifies that there are no processes
3469  * waiting in throttle_direct_reclaim() and that watermarks have been met.
3470  *
3471  * Returns true if kswapd is ready to sleep
3472  */
3473 static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order,
3474                                 int highest_zoneidx)
3475 {
3476         /*
3477          * The throttled processes are normally woken up in balance_pgdat() as
3478          * soon as allow_direct_reclaim() is true. But there is a potential
3479          * race between when kswapd checks the watermarks and a process gets
3480          * throttled. There is also a potential race if processes get
3481          * throttled, kswapd wakes, a large process exits thereby balancing the
3482          * zones, which causes kswapd to exit balance_pgdat() before reaching
3483          * the wake up checks. If kswapd is going to sleep, no process should
3484          * be sleeping on pfmemalloc_wait, so wake them now if necessary. If
3485          * the wake up is premature, processes will wake kswapd and get
3486          * throttled again. The difference from wake ups in balance_pgdat() is
3487          * that here we are under prepare_to_wait().
3488          */
3489         if (waitqueue_active(&pgdat->pfmemalloc_wait))
3490                 wake_up_all(&pgdat->pfmemalloc_wait);
3491
3492         /* Hopeless node, leave it to direct reclaim */
3493         if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
3494                 return true;
3495
3496         if (pgdat_balanced(pgdat, order, highest_zoneidx)) {
3497                 clear_pgdat_congested(pgdat);
3498                 return true;
3499         }
3500
3501         return false;
3502 }
3503
3504 /*
3505  * kswapd shrinks a node of pages that are at or below the highest usable
3506  * zone that is currently unbalanced.
3507  *
3508  * Returns true if kswapd scanned at least the requested number of pages to
3509  * reclaim or if the lack of progress was due to pages under writeback.
3510  * This is used to determine if the scanning priority needs to be raised.
3511  */
3512 static bool kswapd_shrink_node(pg_data_t *pgdat,
3513                                struct scan_control *sc)
3514 {
3515         struct zone *zone;
3516         int z;
3517
3518         /* Reclaim a number of pages proportional to the number of zones */
3519         sc->nr_to_reclaim = 0;
3520         for (z = 0; z <= sc->reclaim_idx; z++) {
3521                 zone = pgdat->node_zones + z;
3522                 if (!managed_zone(zone))
3523                         continue;
3524
3525                 sc->nr_to_reclaim += max(high_wmark_pages(zone), SWAP_CLUSTER_MAX);
3526         }
3527
3528         /*
3529          * Historically care was taken to put equal pressure on all zones but
3530          * now pressure is applied based on node LRU order.
3531          */
3532         shrink_node(pgdat, sc);
3533
3534         /*
3535          * Fragmentation may mean that the system cannot be rebalanced for
3536          * high-order allocations. If twice the allocation size has been
3537          * reclaimed then recheck watermarks only at order-0 to prevent
3538          * excessive reclaim. Assume that a process requested a high-order
3539          * can direct reclaim/compact.
3540          */
3541         if (sc->order && sc->nr_reclaimed >= compact_gap(sc->order))
3542                 sc->order = 0;
3543
3544         return sc->nr_scanned >= sc->nr_to_reclaim;
3545 }
3546
3547 /*
3548  * For kswapd, balance_pgdat() will reclaim pages across a node from zones
3549  * that are eligible for use by the caller until at least one zone is
3550  * balanced.
3551  *
3552  * Returns the order kswapd finished reclaiming at.
3553  *
3554  * kswapd scans the zones in the highmem->normal->dma direction.  It skips
3555  * zones which have free_pages > high_wmark_pages(zone), but once a zone is
3556  * found to have free_pages <= high_wmark_pages(zone), any page in that zone
3557  * or lower is eligible for reclaim until at least one usable zone is
3558  * balanced.
3559  */
3560 static int balance_pgdat(pg_data_t *pgdat, int order, int highest_zoneidx)
3561 {
3562         int i;
3563         unsigned long nr_soft_reclaimed;
3564         unsigned long nr_soft_scanned;
3565         unsigned long pflags;
3566         unsigned long nr_boost_reclaim;
3567         unsigned long zone_boosts[MAX_NR_ZONES] = { 0, };
3568         bool boosted;
3569         struct zone *zone;
3570         struct scan_control sc = {
3571                 .gfp_mask = GFP_KERNEL,
3572                 .order = order,
3573                 .may_unmap = 1,
3574         };
3575
3576         set_task_reclaim_state(current, &sc.reclaim_state);
3577         psi_memstall_enter(&pflags);
3578         __fs_reclaim_acquire();
3579
3580         count_vm_event(PAGEOUTRUN);
3581
3582         /*
3583          * Account for the reclaim boost. Note that the zone boost is left in
3584          * place so that parallel allocations that are near the watermark will
3585          * stall or direct reclaim until kswapd is finished.
3586          */
3587         nr_boost_reclaim = 0;
3588         for (i = 0; i <= highest_zoneidx; i++) {
3589                 zone = pgdat->node_zones + i;
3590                 if (!managed_zone(zone))
3591                         continue;
3592
3593                 nr_boost_reclaim += zone->watermark_boost;
3594                 zone_boosts[i] = zone->watermark_boost;
3595         }
3596         boosted = nr_boost_reclaim;
3597
3598 restart:
3599         sc.priority = DEF_PRIORITY;
3600         do {
3601                 unsigned long nr_reclaimed = sc.nr_reclaimed;
3602                 bool raise_priority = true;
3603                 bool balanced;
3604                 bool ret;
3605
3606                 sc.reclaim_idx = highest_zoneidx;
3607
3608                 /*
3609                  * If the number of buffer_heads exceeds the maximum allowed
3610                  * then consider reclaiming from all zones. This has a dual
3611                  * purpose -- on 64-bit systems it is expected that
3612                  * buffer_heads are stripped during active rotation. On 32-bit
3613                  * systems, highmem pages can pin lowmem memory and shrinking
3614                  * buffers can relieve lowmem pressure. Reclaim may still not
3615                  * go ahead if all eligible zones for the original allocation
3616                  * request are balanced to avoid excessive reclaim from kswapd.
3617                  */
3618                 if (buffer_heads_over_limit) {
3619                         for (i = MAX_NR_ZONES - 1; i >= 0; i--) {
3620                                 zone = pgdat->node_zones + i;
3621                                 if (!managed_zone(zone))
3622                                         continue;
3623
3624                                 sc.reclaim_idx = i;
3625                                 break;
3626                         }
3627                 }
3628
3629                 /*
3630                  * If the pgdat is imbalanced then ignore boosting and preserve
3631                  * the watermarks for a later time and restart. Note that the
3632                  * zone watermarks will be still reset at the end of balancing
3633                  * on the grounds that the normal reclaim should be enough to
3634                  * re-evaluate if boosting is required when kswapd next wakes.
3635                  */
3636                 balanced = pgdat_balanced(pgdat, sc.order, highest_zoneidx);
3637                 if (!balanced && nr_boost_reclaim) {
3638                         nr_boost_reclaim = 0;
3639                         goto restart;
3640                 }
3641
3642                 /*
3643                  * If boosting is not active then only reclaim if there are no
3644                  * eligible zones. Note that sc.reclaim_idx is not used as
3645                  * buffer_heads_over_limit may have adjusted it.
3646                  */
3647                 if (!nr_boost_reclaim && balanced)
3648                         goto out;
3649
3650                 /* Limit the priority of boosting to avoid reclaim writeback */
3651                 if (nr_boost_reclaim && sc.priority == DEF_PRIORITY - 2)
3652                         raise_priority = false;
3653
3654                 /*
3655                  * Do not writeback or swap pages for boosted reclaim. The
3656                  * intent is to relieve pressure not issue sub-optimal IO
3657                  * from reclaim context. If no pages are reclaimed, the
3658                  * reclaim will be aborted.
3659                  */
3660                 sc.may_writepage = !laptop_mode && !nr_boost_reclaim;
3661                 sc.may_swap = !nr_boost_reclaim;
3662
3663                 /*
3664                  * Do some background aging of the anon list, to give
3665                  * pages a chance to be referenced before reclaiming. All
3666                  * pages are rotated regardless of classzone as this is
3667                  * about consistent aging.
3668                  */
3669                 age_active_anon(pgdat, &sc);
3670
3671                 /*
3672                  * If we're getting trouble reclaiming, start doing writepage
3673                  * even in laptop mode.
3674                  */
3675                 if (sc.priority < DEF_PRIORITY - 2)
3676                         sc.may_writepage = 1;
3677
3678                 /* Call soft limit reclaim before calling shrink_node. */
3679                 sc.nr_scanned = 0;
3680                 nr_soft_scanned = 0;
3681                 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(pgdat, sc.order,
3682                                                 sc.gfp_mask, &nr_soft_scanned);
3683                 sc.nr_reclaimed += nr_soft_reclaimed;
3684
3685                 /*
3686                  * There should be no need to raise the scanning priority if
3687                  * enough pages are already being scanned that that high
3688                  * watermark would be met at 100% efficiency.
3689                  */
3690                 if (kswapd_shrink_node(pgdat, &sc))
3691                         raise_priority = false;
3692
3693                 /*
3694                  * If the low watermark is met there is no need for processes
3695                  * to be throttled on pfmemalloc_wait as they should not be
3696                  * able to safely make forward progress. Wake them
3697                  */
3698                 if (waitqueue_active(&pgdat->pfmemalloc_wait) &&
3699                                 allow_direct_reclaim(pgdat))
3700                         wake_up_all(&pgdat->pfmemalloc_wait);
3701
3702                 /* Check if kswapd should be suspending */
3703                 __fs_reclaim_release();
3704                 ret = try_to_freeze();
3705                 __fs_reclaim_acquire();
3706                 if (ret || kthread_should_stop())
3707                         break;
3708
3709                 /*
3710                  * Raise priority if scanning rate is too low or there was no
3711                  * progress in reclaiming pages
3712                  */
3713                 nr_reclaimed = sc.nr_reclaimed - nr_reclaimed;
3714                 nr_boost_reclaim -= min(nr_boost_reclaim, nr_reclaimed);
3715
3716                 /*
3717                  * If reclaim made no progress for a boost, stop reclaim as
3718                  * IO cannot be queued and it could be an infinite loop in
3719                  * extreme circumstances.
3720                  */
3721                 if (nr_boost_reclaim && !nr_reclaimed)
3722                         break;
3723
3724                 if (raise_priority || !nr_reclaimed)
3725                         sc.priority--;
3726         } while (sc.priority >= 1);
3727
3728         if (!sc.nr_reclaimed)
3729                 pgdat->kswapd_failures++;
3730
3731 out:
3732         /* If reclaim was boosted, account for the reclaim done in this pass */
3733         if (boosted) {
3734                 unsigned long flags;
3735
3736                 for (i = 0; i <= highest_zoneidx; i++) {
3737                         if (!zone_boosts[i])
3738                                 continue;
3739
3740                         /* Increments are under the zone lock */
3741                         zone = pgdat->node_zones + i;
3742                         spin_lock_irqsave(&zone->lock, flags);
3743                         zone->watermark_boost -= min(zone->watermark_boost, zone_boosts[i]);
3744                         spin_unlock_irqrestore(&zone->lock, flags);
3745                 }
3746
3747                 /*
3748                  * As there is now likely space, wakeup kcompact to defragment
3749                  * pageblocks.
3750                  */
3751                 wakeup_kcompactd(pgdat, pageblock_order, highest_zoneidx);
3752         }
3753
3754         snapshot_refaults(NULL, pgdat);
3755         __fs_reclaim_release();
3756         psi_memstall_leave(&pflags);
3757         set_task_reclaim_state(current, NULL);
3758
3759         /*
3760          * Return the order kswapd stopped reclaiming at as
3761          * prepare_kswapd_sleep() takes it into account. If another caller
3762          * entered the allocator slow path while kswapd was awake, order will
3763          * remain at the higher level.
3764          */
3765         return sc.order;
3766 }
3767
3768 /*
3769  * The pgdat->kswapd_highest_zoneidx is used to pass the highest zone index to
3770  * be reclaimed by kswapd from the waker. If the value is MAX_NR_ZONES which is
3771  * not a valid index then either kswapd runs for first time or kswapd couldn't
3772  * sleep after previous reclaim attempt (node is still unbalanced). In that
3773  * case return the zone index of the previous kswapd reclaim cycle.
3774  */
3775 static enum zone_type kswapd_highest_zoneidx(pg_data_t *pgdat,
3776                                            enum zone_type prev_highest_zoneidx)
3777 {
3778         enum zone_type curr_idx = READ_ONCE(pgdat->kswapd_highest_zoneidx);
3779
3780         return curr_idx == MAX_NR_ZONES ? prev_highest_zoneidx : curr_idx;
3781 }
3782
3783 static void kswapd_try_to_sleep(pg_data_t *pgdat, int alloc_order, int reclaim_order,
3784                                 unsigned int highest_zoneidx)
3785 {
3786         long remaining = 0;
3787         DEFINE_WAIT(wait);
3788
3789         if (freezing(current) || kthread_should_stop())
3790                 return;
3791
3792         prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3793
3794         /*
3795          * Try to sleep for a short interval. Note that kcompactd will only be
3796          * woken if it is possible to sleep for a short interval. This is
3797          * deliberate on the assumption that if reclaim cannot keep an
3798          * eligible zone balanced that it's also unlikely that compaction will
3799          * succeed.
3800          */
3801         if (prepare_kswapd_sleep(pgdat, reclaim_order, highest_zoneidx)) {
3802                 /*
3803                  * Compaction records what page blocks it recently failed to
3804                  * isolate pages from and skips them in the future scanning.
3805                  * When kswapd is going to sleep, it is reasonable to assume
3806                  * that pages and compaction may succeed so reset the cache.
3807                  */
3808                 reset_isolation_suitable(pgdat);
3809
3810                 /*
3811                  * We have freed the memory, now we should compact it to make
3812                  * allocation of the requested order possible.
3813                  */
3814                 wakeup_kcompactd(pgdat, alloc_order, highest_zoneidx);
3815
3816                 remaining = schedule_timeout(HZ/10);
3817
3818                 /*
3819                  * If woken prematurely then reset kswapd_highest_zoneidx and
3820                  * order. The values will either be from a wakeup request or
3821                  * the previous request that slept prematurely.
3822                  */
3823                 if (remaining) {
3824                         WRITE_ONCE(pgdat->kswapd_highest_zoneidx,
3825                                         kswapd_highest_zoneidx(pgdat,
3826                                                         highest_zoneidx));
3827
3828                         if (READ_ONCE(pgdat->kswapd_order) < reclaim_order)
3829                                 WRITE_ONCE(pgdat->kswapd_order, reclaim_order);
3830                 }
3831
3832                 finish_wait(&pgdat->kswapd_wait, &wait);
3833                 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3834         }
3835
3836         /*
3837          * After a short sleep, check if it was a premature sleep. If not, then
3838          * go fully to sleep until explicitly woken up.
3839          */
3840         if (!remaining &&
3841             prepare_kswapd_sleep(pgdat, reclaim_order, highest_zoneidx)) {
3842                 trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
3843
3844                 /*
3845                  * vmstat counters are not perfectly accurate and the estimated
3846                  * value for counters such as NR_FREE_PAGES can deviate from the
3847                  * true value by nr_online_cpus * threshold. To avoid the zone
3848                  * watermarks being breached while under pressure, we reduce the
3849                  * per-cpu vmstat threshold while kswapd is awake and restore
3850                  * them before going back to sleep.
3851                  */
3852                 set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold);
3853
3854                 if (!kthread_should_stop())
3855                         schedule();
3856
3857                 set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold);
3858         } else {
3859                 if (remaining)
3860                         count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
3861                 else
3862                         count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
3863         }
3864         finish_wait(&pgdat->kswapd_wait, &wait);
3865 }
3866
3867 /*
3868  * The background pageout daemon, started as a kernel thread
3869  * from the init process.
3870  *
3871  * This basically trickles out pages so that we have _some_
3872  * free memory available even if there is no other activity
3873  * that frees anything up. This is needed for things like routing
3874  * etc, where we otherwise might have all activity going on in
3875  * asynchronous contexts that cannot page things out.
3876  *
3877  * If there are applications that are active memory-allocators
3878  * (most normal use), this basically shouldn't matter.
3879  */
3880 static int kswapd(void *p)
3881 {
3882         unsigned int alloc_order, reclaim_order;
3883         unsigned int highest_zoneidx = MAX_NR_ZONES - 1;
3884         pg_data_t *pgdat = (pg_data_t*)p;
3885         struct task_struct *tsk = current;
3886         const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
3887
3888         if (!cpumask_empty(cpumask))
3889                 set_cpus_allowed_ptr(tsk, cpumask);
3890
3891         /*
3892          * Tell the memory management that we're a "memory allocator",
3893          * and that if we need more memory we should get access to it
3894          * regardless (see "__alloc_pages()"). "kswapd" should
3895          * never get caught in the normal page freeing logic.
3896          *
3897          * (Kswapd normally doesn't need memory anyway, but sometimes
3898          * you need a small amount of memory in order to be able to
3899          * page out something else, and this flag essentially protects
3900          * us from recursively trying to free more memory as we're
3901          * trying to free the first piece of memory in the first place).
3902          */
3903         tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
3904         set_freezable();
3905
3906         WRITE_ONCE(pgdat->kswapd_order, 0);
3907         WRITE_ONCE(pgdat->kswapd_highest_zoneidx, MAX_NR_ZONES);
3908         for ( ; ; ) {
3909                 bool ret;
3910
3911                 alloc_order = reclaim_order = READ_ONCE(pgdat->kswapd_order);
3912                 highest_zoneidx = kswapd_highest_zoneidx(pgdat,
3913                                                         highest_zoneidx);
3914
3915 kswapd_try_sleep:
3916                 kswapd_try_to_sleep(pgdat, alloc_order, reclaim_order,
3917                                         highest_zoneidx);
3918
3919                 /* Read the new order and highest_zoneidx */
3920                 alloc_order = reclaim_order = READ_ONCE(pgdat->kswapd_order);
3921                 highest_zoneidx = kswapd_highest_zoneidx(pgdat,
3922                                                         highest_zoneidx);
3923                 WRITE_ONCE(pgdat->kswapd_order, 0);
3924                 WRITE_ONCE(pgdat->kswapd_highest_zoneidx, MAX_NR_ZONES);
3925
3926                 ret = try_to_freeze();
3927                 if (kthread_should_stop())
3928                         break;
3929
3930                 /*
3931                  * We can speed up thawing tasks if we don't call balance_pgdat
3932                  * after returning from the refrigerator
3933                  */
3934                 if (ret)
3935                         continue;
3936
3937                 /*
3938                  * Reclaim begins at the requested order but if a high-order
3939                  * reclaim fails then kswapd falls back to reclaiming for
3940                  * order-0. If that happens, kswapd will consider sleeping
3941                  * for the order it finished reclaiming at (reclaim_order)
3942                  * but kcompactd is woken to compact for the original
3943                  * request (alloc_order).
3944                  */
3945                 trace_mm_vmscan_kswapd_wake(pgdat->node_id, highest_zoneidx,
3946                                                 alloc_order);
3947                 reclaim_order = balance_pgdat(pgdat, alloc_order,
3948                                                 highest_zoneidx);
3949                 if (reclaim_order < alloc_order)
3950                         goto kswapd_try_sleep;
3951         }
3952
3953         tsk->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD);
3954
3955         return 0;
3956 }
3957
3958 /*
3959  * A zone is low on free memory or too fragmented for high-order memory.  If
3960  * kswapd should reclaim (direct reclaim is deferred), wake it up for the zone's
3961  * pgdat.  It will wake up kcompactd after reclaiming memory.  If kswapd reclaim
3962  * has failed or is not needed, still wake up kcompactd if only compaction is
3963  * needed.
3964  */
3965 void wakeup_kswapd(struct zone *zone, gfp_t gfp_flags, int order,
3966                    enum zone_type highest_zoneidx)
3967 {
3968         pg_data_t *pgdat;
3969         enum zone_type curr_idx;
3970
3971         if (!managed_zone(zone))
3972                 return;
3973
3974         if (!cpuset_zone_allowed(zone, gfp_flags))
3975                 return;
3976
3977         pgdat = zone->zone_pgdat;
3978         curr_idx = READ_ONCE(pgdat->kswapd_highest_zoneidx);
3979
3980         if (curr_idx == MAX_NR_ZONES || curr_idx < highest_zoneidx)
3981                 WRITE_ONCE(pgdat->kswapd_highest_zoneidx, highest_zoneidx);
3982
3983         if (READ_ONCE(pgdat->kswapd_order) < order)
3984                 WRITE_ONCE(pgdat->kswapd_order, order);
3985
3986         if (!waitqueue_active(&pgdat->kswapd_wait))
3987                 return;
3988
3989         /* Hopeless node, leave it to direct reclaim if possible */
3990         if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES ||
3991             (pgdat_balanced(pgdat, order, highest_zoneidx) &&
3992              !pgdat_watermark_boosted(pgdat, highest_zoneidx))) {
3993                 /*
3994                  * There may be plenty of free memory available, but it's too
3995                  * fragmented for high-order allocations.  Wake up kcompactd
3996                  * and rely on compaction_suitable() to determine if it's
3997                  * needed.  If it fails, it will defer subsequent attempts to
3998                  * ratelimit its work.
3999                  */
4000                 if (!(gfp_flags & __GFP_DIRECT_RECLAIM))
4001                         wakeup_kcompactd(pgdat, order, highest_zoneidx);
4002                 return;
4003         }
4004
4005         trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, highest_zoneidx, order,
4006                                       gfp_flags);
4007         wake_up_interruptible(&pgdat->kswapd_wait);
4008 }
4009
4010 #ifdef CONFIG_HIBERNATION
4011 /*
4012  * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
4013  * freed pages.
4014  *
4015  * Rather than trying to age LRUs the aim is to preserve the overall
4016  * LRU order by reclaiming preferentially
4017  * inactive > active > active referenced > active mapped
4018  */
4019 unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
4020 {
4021         struct scan_control sc = {
4022                 .nr_to_reclaim = nr_to_reclaim,
4023                 .gfp_mask = GFP_HIGHUSER_MOVABLE,
4024                 .reclaim_idx = MAX_NR_ZONES - 1,
4025                 .priority = DEF_PRIORITY,
4026                 .may_writepage = 1,
4027                 .may_unmap = 1,
4028                 .may_swap = 1,
4029                 .hibernation_mode = 1,
4030         };
4031         struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
4032         unsigned long nr_reclaimed;
4033         unsigned int noreclaim_flag;
4034
4035         fs_reclaim_acquire(sc.gfp_mask);
4036         noreclaim_flag = memalloc_noreclaim_save();
4037         set_task_reclaim_state(current, &sc.reclaim_state);
4038
4039         nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
4040
4041         set_task_reclaim_state(current, NULL);
4042         memalloc_noreclaim_restore(noreclaim_flag);
4043         fs_reclaim_release(sc.gfp_mask);
4044
4045         return nr_reclaimed;
4046 }
4047 #endif /* CONFIG_HIBERNATION */
4048
4049 /*
4050  * This kswapd start function will be called by init and node-hot-add.
4051  * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
4052  */
4053 int kswapd_run(int nid)
4054 {
4055         pg_data_t *pgdat = NODE_DATA(nid);
4056         int ret = 0;
4057
4058         if (pgdat->kswapd)
4059                 return 0;
4060
4061         pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
4062         if (IS_ERR(pgdat->kswapd)) {
4063                 /* failure at boot is fatal */
4064                 BUG_ON(system_state < SYSTEM_RUNNING);
4065                 pr_err("Failed to start kswapd on node %d\n", nid);
4066                 ret = PTR_ERR(pgdat->kswapd);
4067                 pgdat->kswapd = NULL;
4068         }
4069         return ret;
4070 }
4071
4072 /*
4073  * Called by memory hotplug when all memory in a node is offlined.  Caller must
4074  * hold mem_hotplug_begin/end().
4075  */
4076 void kswapd_stop(int nid)
4077 {
4078         struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
4079
4080         if (kswapd) {
4081                 kthread_stop(kswapd);
4082                 NODE_DATA(nid)->kswapd = NULL;
4083         }
4084 }
4085
4086 static int __init kswapd_init(void)
4087 {
4088         int nid;
4089
4090         swap_setup();
4091         for_each_node_state(nid, N_MEMORY)
4092                 kswapd_run(nid);
4093         return 0;
4094 }
4095
4096 module_init(kswapd_init)
4097
4098 #ifdef CONFIG_NUMA
4099 /*
4100  * Node reclaim mode
4101  *
4102  * If non-zero call node_reclaim when the number of free pages falls below
4103  * the watermarks.
4104  */
4105 int node_reclaim_mode __read_mostly;
4106
4107 /*
4108  * These bit locations are exposed in the vm.zone_reclaim_mode sysctl
4109  * ABI.  New bits are OK, but existing bits can never change.
4110  */
4111 #define RECLAIM_ZONE  (1<<0)   /* Run shrink_inactive_list on the zone */
4112 #define RECLAIM_WRITE (1<<1)   /* Writeout pages during reclaim */
4113 #define RECLAIM_UNMAP (1<<2)   /* Unmap pages during reclaim */
4114
4115 /*
4116  * Priority for NODE_RECLAIM. This determines the fraction of pages
4117  * of a node considered for each zone_reclaim. 4 scans 1/16th of
4118  * a zone.
4119  */
4120 #define NODE_RECLAIM_PRIORITY 4
4121
4122 /*
4123  * Percentage of pages in a zone that must be unmapped for node_reclaim to
4124  * occur.
4125  */
4126 int sysctl_min_unmapped_ratio = 1;
4127
4128 /*
4129  * If the number of slab pages in a zone grows beyond this percentage then
4130  * slab reclaim needs to occur.
4131  */
4132 int sysctl_min_slab_ratio = 5;
4133
4134 static inline unsigned long node_unmapped_file_pages(struct pglist_data *pgdat)
4135 {
4136         unsigned long file_mapped = node_page_state(pgdat, NR_FILE_MAPPED);
4137         unsigned long file_lru = node_page_state(pgdat, NR_INACTIVE_FILE) +
4138                 node_page_state(pgdat, NR_ACTIVE_FILE);
4139
4140         /*
4141          * It's possible for there to be more file mapped pages than
4142          * accounted for by the pages on the file LRU lists because
4143          * tmpfs pages accounted for as ANON can also be FILE_MAPPED
4144          */
4145         return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
4146 }
4147
4148 /* Work out how many page cache pages we can reclaim in this reclaim_mode */
4149 static unsigned long node_pagecache_reclaimable(struct pglist_data *pgdat)
4150 {
4151         unsigned long nr_pagecache_reclaimable;
4152         unsigned long delta = 0;
4153
4154         /*
4155          * If RECLAIM_UNMAP is set, then all file pages are considered
4156          * potentially reclaimable. Otherwise, we have to worry about
4157          * pages like swapcache and node_unmapped_file_pages() provides
4158          * a better estimate
4159          */
4160         if (node_reclaim_mode & RECLAIM_UNMAP)
4161                 nr_pagecache_reclaimable = node_page_state(pgdat, NR_FILE_PAGES);
4162         else
4163                 nr_pagecache_reclaimable = node_unmapped_file_pages(pgdat);
4164
4165         /* If we can't clean pages, remove dirty pages from consideration */
4166         if (!(node_reclaim_mode & RECLAIM_WRITE))
4167                 delta += node_page_state(pgdat, NR_FILE_DIRTY);
4168
4169         /* Watch for any possible underflows due to delta */
4170         if (unlikely(delta > nr_pagecache_reclaimable))
4171                 delta = nr_pagecache_reclaimable;
4172
4173         return nr_pagecache_reclaimable - delta;
4174 }
4175
4176 /*
4177  * Try to free up some pages from this node through reclaim.
4178  */
4179 static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
4180 {
4181         /* Minimum pages needed in order to stay on node */
4182         const unsigned long nr_pages = 1 << order;
4183         struct task_struct *p = current;
4184         unsigned int noreclaim_flag;
4185         struct scan_control sc = {
4186                 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
4187                 .gfp_mask = current_gfp_context(gfp_mask),
4188                 .order = order,
4189                 .priority = NODE_RECLAIM_PRIORITY,
4190                 .may_writepage = !!(node_reclaim_mode & RECLAIM_WRITE),
4191                 .may_unmap = !!(node_reclaim_mode & RECLAIM_UNMAP),
4192                 .may_swap = 1,
4193                 .reclaim_idx = gfp_zone(gfp_mask),
4194         };
4195
4196         trace_mm_vmscan_node_reclaim_begin(pgdat->node_id, order,
4197                                            sc.gfp_mask);
4198
4199         cond_resched();
4200         fs_reclaim_acquire(sc.gfp_mask);
4201         /*
4202          * We need to be able to allocate from the reserves for RECLAIM_UNMAP
4203          * and we also need to be able to write out pages for RECLAIM_WRITE
4204          * and RECLAIM_UNMAP.
4205          */
4206         noreclaim_flag = memalloc_noreclaim_save();
4207         p->flags |= PF_SWAPWRITE;
4208         set_task_reclaim_state(p, &sc.reclaim_state);
4209
4210         if (node_pagecache_reclaimable(pgdat) > pgdat->min_unmapped_pages) {
4211                 /*
4212                  * Free memory by calling shrink node with increasing
4213                  * priorities until we have enough memory freed.
4214                  */
4215                 do {
4216                         shrink_node(pgdat, &sc);
4217                 } while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0);
4218         }
4219
4220         set_task_reclaim_state(p, NULL);
4221         current->flags &= ~PF_SWAPWRITE;
4222         memalloc_noreclaim_restore(noreclaim_flag);
4223         fs_reclaim_release(sc.gfp_mask);
4224
4225         trace_mm_vmscan_node_reclaim_end(sc.nr_reclaimed);
4226
4227         return sc.nr_reclaimed >= nr_pages;
4228 }
4229
4230 int node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
4231 {
4232         int ret;
4233
4234         /*
4235          * Node reclaim reclaims unmapped file backed pages and
4236          * slab pages if we are over the defined limits.
4237          *
4238          * A small portion of unmapped file backed pages is needed for
4239          * file I/O otherwise pages read by file I/O will be immediately
4240          * thrown out if the node is overallocated. So we do not reclaim
4241          * if less than a specified percentage of the node is used by
4242          * unmapped file backed pages.
4243          */
4244         if (node_pagecache_reclaimable(pgdat) <= pgdat->min_unmapped_pages &&
4245             node_page_state_pages(pgdat, NR_SLAB_RECLAIMABLE_B) <=
4246             pgdat->min_slab_pages)
4247                 return NODE_RECLAIM_FULL;
4248
4249         /*
4250          * Do not scan if the allocation should not be delayed.
4251          */
4252         if (!gfpflags_allow_blocking(gfp_mask) || (current->flags & PF_MEMALLOC))
4253                 return NODE_RECLAIM_NOSCAN;
4254
4255         /*
4256          * Only run node reclaim on the local node or on nodes that do not
4257          * have associated processors. This will favor the local processor
4258          * over remote processors and spread off node memory allocations
4259          * as wide as possible.
4260          */
4261         if (node_state(pgdat->node_id, N_CPU) && pgdat->node_id != numa_node_id())
4262                 return NODE_RECLAIM_NOSCAN;
4263
4264         if (test_and_set_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags))
4265                 return NODE_RECLAIM_NOSCAN;
4266
4267         ret = __node_reclaim(pgdat, gfp_mask, order);
4268         clear_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags);
4269
4270         if (!ret)
4271                 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
4272
4273         return ret;
4274 }
4275 #endif
4276
4277 /**
4278  * check_move_unevictable_pages - check pages for evictability and move to
4279  * appropriate zone lru list
4280  * @pvec: pagevec with lru pages to check
4281  *
4282  * Checks pages for evictability, if an evictable page is in the unevictable
4283  * lru list, moves it to the appropriate evictable lru list. This function
4284  * should be only used for lru pages.
4285  */
4286 void check_move_unevictable_pages(struct pagevec *pvec)
4287 {
4288         struct lruvec *lruvec;
4289         struct pglist_data *pgdat = NULL;
4290         int pgscanned = 0;
4291         int pgrescued = 0;
4292         int i;
4293
4294         for (i = 0; i < pvec->nr; i++) {
4295                 struct page *page = pvec->pages[i];
4296                 struct pglist_data *pagepgdat = page_pgdat(page);
4297                 int nr_pages;
4298
4299                 if (PageTransTail(page))
4300                         continue;
4301
4302                 nr_pages = thp_nr_pages(page);
4303                 pgscanned += nr_pages;
4304
4305                 if (pagepgdat != pgdat) {
4306                         if (pgdat)
4307                                 spin_unlock_irq(&pgdat->lru_lock);
4308                         pgdat = pagepgdat;
4309                         spin_lock_irq(&pgdat->lru_lock);
4310                 }
4311                 lruvec = mem_cgroup_page_lruvec(page, pgdat);
4312
4313                 if (!PageLRU(page) || !PageUnevictable(page))
4314                         continue;
4315
4316                 if (page_evictable(page)) {
4317                         enum lru_list lru = page_lru_base_type(page);
4318
4319                         VM_BUG_ON_PAGE(PageActive(page), page);
4320                         ClearPageUnevictable(page);
4321                         del_page_from_lru_list(page, lruvec, LRU_UNEVICTABLE);
4322                         add_page_to_lru_list(page, lruvec, lru);
4323                         pgrescued += nr_pages;
4324                 }
4325         }
4326
4327         if (pgdat) {
4328                 __count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued);
4329                 __count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
4330                 spin_unlock_irq(&pgdat->lru_lock);
4331         }
4332 }
4333 EXPORT_SYMBOL_GPL(check_move_unevictable_pages);