blob: 3830066018c15e4695eecfa61e8deb1fa0385865 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070015#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
16
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/mm.h>
Ingo Molnar5b3cc152017-02-02 20:43:54 +010018#include <linux/sched/mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070021#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>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070026#include <linux/vmpressure.h>
Andrew Mortone129b5c2006-09-27 01:50:00 -070027#include <linux/vmstat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070028#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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034#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>
Mel Gorman3e7d3442011-01-13 15:45:56 -080039#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070040#include <linux/notifier.h>
41#include <linux/rwsem.h>
Rafael J. Wysocki248a0302006-03-22 00:09:04 -080042#include <linux/delay.h>
Yasunori Goto3218ae12006-06-27 02:53:33 -070043#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080044#include <linux/freezer.h>
Balbir Singh66e17072008-02-07 00:13:56 -080045#include <linux/memcontrol.h>
Keika Kobayashi873b4772008-07-25 01:48:52 -070046#include <linux/delayacct.h>
Lee Schermerhornaf936a12008-10-18 20:26:53 -070047#include <linux/sysctl.h>
KOSAKI Motohiro929bea72011-04-14 15:22:12 -070048#include <linux/oom.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070049#include <linux/prefetch.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070050#include <linux/printk.h>
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080051#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070052
53#include <asm/tlbflush.h>
54#include <asm/div64.h>
55
56#include <linux/swapops.h>
Rafael Aquini117aad12013-09-30 13:45:16 -070057#include <linux/balloon_compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070058
Nick Piggin0f8053a2006-03-22 00:08:33 -080059#include "internal.h"
60
Mel Gorman33906bc2010-08-09 17:19:16 -070061#define CREATE_TRACE_POINTS
62#include <trace/events/vmscan.h>
63
Linus Torvalds1da177e2005-04-16 15:20:36 -070064struct scan_control {
KOSAKI Motohiro22fba332009-12-14 17:59:10 -080065 /* How many pages shrink_list() should reclaim */
66 unsigned long nr_to_reclaim;
67
Johannes Weineree814fe2014-08-06 16:06:19 -070068 /*
69 * Nodemask of nodes allowed by the caller. If NULL, all nodes
70 * are scanned.
71 */
72 nodemask_t *nodemask;
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -070073
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -070074 /*
Johannes Weinerf16015f2012-01-12 17:17:52 -080075 * The memory cgroup that hit its limit and as a result is the
76 * primary target of this reclaim invocation.
77 */
78 struct mem_cgroup *target_mem_cgroup;
Balbir Singh66e17072008-02-07 00:13:56 -080079
Johannes Weiner1276ad62017-02-24 14:56:11 -080080 /* Writepage batching in laptop mode; RECLAIM_WRITE */
Johannes Weineree814fe2014-08-06 16:06:19 -070081 unsigned int may_writepage:1;
82
83 /* Can mapped pages be reclaimed? */
84 unsigned int may_unmap:1;
85
86 /* Can pages be swapped as part of reclaim? */
87 unsigned int may_swap:1;
88
Yisheng Xied6622f62017-05-03 14:53:57 -070089 /*
90 * Cgroups are not reclaimed below their configured memory.low,
91 * unless we threaten to OOM. If any cgroups are skipped due to
92 * memory.low and nothing was reclaimed, go back for memory.low.
93 */
94 unsigned int memcg_low_reclaim:1;
95 unsigned int memcg_low_skipped:1;
Johannes Weiner241994ed2015-02-11 15:26:06 -080096
Johannes Weineree814fe2014-08-06 16:06:19 -070097 unsigned int hibernation_mode:1;
98
99 /* One of the zones is ready for compaction */
100 unsigned int compaction_ready:1;
101
Greg Thelenbb451fd2018-08-17 15:45:19 -0700102 /* Allocation order */
103 s8 order;
104
105 /* Scan (total_size >> priority) pages at once */
106 s8 priority;
107
108 /* The highest zone to isolate pages for reclaim from */
109 s8 reclaim_idx;
110
111 /* This context's GFP mask */
112 gfp_t gfp_mask;
113
Johannes Weineree814fe2014-08-06 16:06:19 -0700114 /* Incremented by the number of inactive pages that were scanned */
115 unsigned long nr_scanned;
116
117 /* Number of pages freed so far during a call to shrink_zones() */
118 unsigned long nr_reclaimed;
Andrey Ryabinind108c772018-04-10 16:27:59 -0700119
120 struct {
121 unsigned int dirty;
122 unsigned int unqueued_dirty;
123 unsigned int congested;
124 unsigned int writeback;
125 unsigned int immediate;
126 unsigned int file_taken;
127 unsigned int taken;
128 } nr;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129};
130
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131#ifdef ARCH_HAS_PREFETCH
132#define prefetch_prev_lru_page(_page, _base, _field) \
133 do { \
134 if ((_page)->lru.prev != _base) { \
135 struct page *prev; \
136 \
137 prev = lru_to_page(&(_page->lru)); \
138 prefetch(&prev->_field); \
139 } \
140 } while (0)
141#else
142#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
143#endif
144
145#ifdef ARCH_HAS_PREFETCHW
146#define prefetchw_prev_lru_page(_page, _base, _field) \
147 do { \
148 if ((_page)->lru.prev != _base) { \
149 struct page *prev; \
150 \
151 prev = lru_to_page(&(_page->lru)); \
152 prefetchw(&prev->_field); \
153 } \
154 } while (0)
155#else
156#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
157#endif
158
159/*
160 * From 0 .. 100. Higher means more swappy.
161 */
162int vm_swappiness = 60;
Wang Sheng-Huid0480be2014-08-06 16:07:07 -0700163/*
164 * The total number of pages which are beyond the high watermark within all
165 * zones.
166 */
167unsigned long vm_total_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700168
169static LIST_HEAD(shrinker_list);
170static DECLARE_RWSEM(shrinker_rwsem);
171
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700172#ifdef CONFIG_MEMCG_KMEM
Kirill Tkhai7e010df2018-08-17 15:48:34 -0700173
174/*
175 * We allow subsystems to populate their shrinker-related
176 * LRU lists before register_shrinker_prepared() is called
177 * for the shrinker, since we don't want to impose
178 * restrictions on their internal registration order.
179 * In this case shrink_slab_memcg() may find corresponding
180 * bit is set in the shrinkers map.
181 *
182 * This value is used by the function to detect registering
183 * shrinkers and to skip do_shrink_slab() calls for them.
184 */
185#define SHRINKER_REGISTERING ((struct shrinker *)~0UL)
186
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700187static DEFINE_IDR(shrinker_idr);
188static int shrinker_nr_max;
189
190static int prealloc_memcg_shrinker(struct shrinker *shrinker)
191{
192 int id, ret = -ENOMEM;
193
194 down_write(&shrinker_rwsem);
195 /* This may call shrinker, so it must use down_read_trylock() */
Kirill Tkhai7e010df2018-08-17 15:48:34 -0700196 id = idr_alloc(&shrinker_idr, SHRINKER_REGISTERING, 0, 0, GFP_KERNEL);
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700197 if (id < 0)
198 goto unlock;
199
Kirill Tkhai0a4465d2018-08-17 15:47:37 -0700200 if (id >= shrinker_nr_max) {
201 if (memcg_expand_shrinker_maps(id)) {
202 idr_remove(&shrinker_idr, id);
203 goto unlock;
204 }
205
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700206 shrinker_nr_max = id + 1;
Kirill Tkhai0a4465d2018-08-17 15:47:37 -0700207 }
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700208 shrinker->id = id;
209 ret = 0;
210unlock:
211 up_write(&shrinker_rwsem);
212 return ret;
213}
214
215static void unregister_memcg_shrinker(struct shrinker *shrinker)
216{
217 int id = shrinker->id;
218
219 BUG_ON(id < 0);
220
221 down_write(&shrinker_rwsem);
222 idr_remove(&shrinker_idr, id);
223 up_write(&shrinker_rwsem);
224}
225#else /* CONFIG_MEMCG_KMEM */
226static int prealloc_memcg_shrinker(struct shrinker *shrinker)
227{
228 return 0;
229}
230
231static void unregister_memcg_shrinker(struct shrinker *shrinker)
232{
233}
234#endif /* CONFIG_MEMCG_KMEM */
235
Andrew Mortonc255a452012-07-31 16:43:02 -0700236#ifdef CONFIG_MEMCG
Johannes Weiner89b5fae2012-01-12 17:17:50 -0800237static bool global_reclaim(struct scan_control *sc)
238{
Johannes Weinerf16015f2012-01-12 17:17:52 -0800239 return !sc->target_mem_cgroup;
Johannes Weiner89b5fae2012-01-12 17:17:50 -0800240}
Tejun Heo97c93412015-05-22 18:23:36 -0400241
242/**
243 * sane_reclaim - is the usual dirty throttling mechanism operational?
244 * @sc: scan_control in question
245 *
246 * The normal page dirty throttling mechanism in balance_dirty_pages() is
247 * completely broken with the legacy memcg and direct stalling in
248 * shrink_page_list() is used for throttling instead, which lacks all the
249 * niceties such as fairness, adaptive pausing, bandwidth proportional
250 * allocation and configurability.
251 *
252 * This function tests whether the vmscan currently in progress can assume
253 * that the normal dirty throttling mechanism is operational.
254 */
255static bool sane_reclaim(struct scan_control *sc)
256{
257 struct mem_cgroup *memcg = sc->target_mem_cgroup;
258
259 if (!memcg)
260 return true;
261#ifdef CONFIG_CGROUP_WRITEBACK
Linus Torvalds69234ac2015-11-05 14:51:32 -0800262 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
Tejun Heo97c93412015-05-22 18:23:36 -0400263 return true;
264#endif
265 return false;
266}
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -0700267
268static void set_memcg_congestion(pg_data_t *pgdat,
269 struct mem_cgroup *memcg,
270 bool congested)
271{
272 struct mem_cgroup_per_node *mn;
273
274 if (!memcg)
275 return;
276
277 mn = mem_cgroup_nodeinfo(memcg, pgdat->node_id);
278 WRITE_ONCE(mn->congested, congested);
279}
280
281static bool memcg_congested(pg_data_t *pgdat,
282 struct mem_cgroup *memcg)
283{
284 struct mem_cgroup_per_node *mn;
285
286 mn = mem_cgroup_nodeinfo(memcg, pgdat->node_id);
287 return READ_ONCE(mn->congested);
288
289}
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800290#else
Johannes Weiner89b5fae2012-01-12 17:17:50 -0800291static bool global_reclaim(struct scan_control *sc)
292{
293 return true;
294}
Tejun Heo97c93412015-05-22 18:23:36 -0400295
296static bool sane_reclaim(struct scan_control *sc)
297{
298 return true;
299}
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -0700300
301static inline void set_memcg_congestion(struct pglist_data *pgdat,
302 struct mem_cgroup *memcg, bool congested)
303{
304}
305
306static inline bool memcg_congested(struct pglist_data *pgdat,
307 struct mem_cgroup *memcg)
308{
309 return false;
310
311}
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800312#endif
313
Mel Gorman5a1c84b2016-07-28 15:47:31 -0700314/*
315 * This misses isolated pages which are not accounted for to save counters.
316 * As the data only determines if reclaim or compaction continues, it is
317 * not expected that isolated pages will be a dominating factor.
318 */
319unsigned long zone_reclaimable_pages(struct zone *zone)
320{
321 unsigned long nr;
322
323 nr = zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_FILE) +
324 zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_FILE);
325 if (get_nr_swap_pages() > 0)
326 nr += zone_page_state_snapshot(zone, NR_ZONE_INACTIVE_ANON) +
327 zone_page_state_snapshot(zone, NR_ZONE_ACTIVE_ANON);
328
329 return nr;
330}
331
Michal Hockofd538802017-02-22 15:45:58 -0800332/**
333 * lruvec_lru_size - Returns the number of pages on the given LRU list.
334 * @lruvec: lru vector
335 * @lru: lru to use
336 * @zone_idx: zones to consider (use MAX_NR_ZONES for the whole LRU list)
337 */
338unsigned long lruvec_lru_size(struct lruvec *lruvec, enum lru_list lru, int zone_idx)
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800339{
Michal Hockofd538802017-02-22 15:45:58 -0800340 unsigned long lru_size;
341 int zid;
342
Hugh Dickinsc3c787e2012-05-29 15:06:52 -0700343 if (!mem_cgroup_disabled())
Michal Hockofd538802017-02-22 15:45:58 -0800344 lru_size = mem_cgroup_get_lru_size(lruvec, lru);
345 else
346 lru_size = node_page_state(lruvec_pgdat(lruvec), NR_LRU_BASE + lru);
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800347
Michal Hockofd538802017-02-22 15:45:58 -0800348 for (zid = zone_idx + 1; zid < MAX_NR_ZONES; zid++) {
349 struct zone *zone = &lruvec_pgdat(lruvec)->node_zones[zid];
350 unsigned long size;
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800351
Michal Hockofd538802017-02-22 15:45:58 -0800352 if (!managed_zone(zone))
353 continue;
Michal Hockob4536f0c82017-01-10 16:58:04 -0800354
Michal Hockofd538802017-02-22 15:45:58 -0800355 if (!mem_cgroup_disabled())
356 size = mem_cgroup_get_zone_lru_size(lruvec, lru, zid);
357 else
358 size = zone_page_state(&lruvec_pgdat(lruvec)->node_zones[zid],
359 NR_ZONE_LRU_BASE + lru);
360 lru_size -= min(size, lru_size);
361 }
362
363 return lru_size;
364
Michal Hockob4536f0c82017-01-10 16:58:04 -0800365}
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*
Glauber Costa1d3d4432013-08-28 10:18:04 +1000368 * Add a shrinker callback to be called from the vm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 */
Tetsuo Handa8e049442018-04-04 19:53:07 +0900370int prealloc_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700371{
Glauber Costa1d3d4432013-08-28 10:18:04 +1000372 size_t size = sizeof(*shrinker->nr_deferred);
373
Glauber Costa1d3d4432013-08-28 10:18:04 +1000374 if (shrinker->flags & SHRINKER_NUMA_AWARE)
375 size *= nr_node_ids;
376
377 shrinker->nr_deferred = kzalloc(size, GFP_KERNEL);
378 if (!shrinker->nr_deferred)
379 return -ENOMEM;
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700380
381 if (shrinker->flags & SHRINKER_MEMCG_AWARE) {
382 if (prealloc_memcg_shrinker(shrinker))
383 goto free_deferred;
384 }
385
Tetsuo Handa8e049442018-04-04 19:53:07 +0900386 return 0;
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700387
388free_deferred:
389 kfree(shrinker->nr_deferred);
390 shrinker->nr_deferred = NULL;
391 return -ENOMEM;
Tetsuo Handa8e049442018-04-04 19:53:07 +0900392}
Glauber Costa1d3d4432013-08-28 10:18:04 +1000393
Tetsuo Handa8e049442018-04-04 19:53:07 +0900394void free_prealloced_shrinker(struct shrinker *shrinker)
395{
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700396 if (!shrinker->nr_deferred)
397 return;
398
399 if (shrinker->flags & SHRINKER_MEMCG_AWARE)
400 unregister_memcg_shrinker(shrinker);
401
Tetsuo Handa8e049442018-04-04 19:53:07 +0900402 kfree(shrinker->nr_deferred);
403 shrinker->nr_deferred = NULL;
404}
405
406void register_shrinker_prepared(struct shrinker *shrinker)
407{
Rusty Russell8e1f9362007-07-17 04:03:17 -0700408 down_write(&shrinker_rwsem);
409 list_add_tail(&shrinker->list, &shrinker_list);
Kirill Tkhai7e010df2018-08-17 15:48:34 -0700410#ifdef CONFIG_MEMCG_KMEM
Kirill Tkhai8df4a442018-08-21 21:51:49 -0700411 if (shrinker->flags & SHRINKER_MEMCG_AWARE)
412 idr_replace(&shrinker_idr, shrinker, shrinker->id);
Kirill Tkhai7e010df2018-08-17 15:48:34 -0700413#endif
Rusty Russell8e1f9362007-07-17 04:03:17 -0700414 up_write(&shrinker_rwsem);
Tetsuo Handa8e049442018-04-04 19:53:07 +0900415}
416
417int register_shrinker(struct shrinker *shrinker)
418{
419 int err = prealloc_shrinker(shrinker);
420
421 if (err)
422 return err;
423 register_shrinker_prepared(shrinker);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000424 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700425}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700426EXPORT_SYMBOL(register_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
428/*
429 * Remove one
430 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700431void unregister_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Tetsuo Handabb422a72017-12-18 20:31:41 +0900433 if (!shrinker->nr_deferred)
434 return;
Kirill Tkhaib4c2b232018-08-17 15:47:29 -0700435 if (shrinker->flags & SHRINKER_MEMCG_AWARE)
436 unregister_memcg_shrinker(shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700437 down_write(&shrinker_rwsem);
438 list_del(&shrinker->list);
439 up_write(&shrinker_rwsem);
Andrew Vaginae393322013-10-16 13:46:46 -0700440 kfree(shrinker->nr_deferred);
Tetsuo Handabb422a72017-12-18 20:31:41 +0900441 shrinker->nr_deferred = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700442}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700443EXPORT_SYMBOL(unregister_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700444
445#define SHRINK_BATCH 128
Glauber Costa1d3d4432013-08-28 10:18:04 +1000446
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800447static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
Josef Bacik9092c712018-01-31 16:16:26 -0800448 struct shrinker *shrinker, int priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700449{
Glauber Costa1d3d4432013-08-28 10:18:04 +1000450 unsigned long freed = 0;
451 unsigned long long delta;
452 long total_scan;
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700453 long freeable;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000454 long nr;
455 long new_nr;
456 int nid = shrinkctl->nid;
457 long batch_size = shrinker->batch ? shrinker->batch
458 : SHRINK_BATCH;
Shaohua Li5f33a082016-12-12 16:41:50 -0800459 long scanned = 0, next_deferred;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000460
Kirill Tkhaiac7fb3a2018-08-17 15:48:30 -0700461 if (!(shrinker->flags & SHRINKER_NUMA_AWARE))
462 nid = 0;
463
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700464 freeable = shrinker->count_objects(shrinker, shrinkctl);
Kirill Tkhai9b996462018-08-17 15:48:21 -0700465 if (freeable == 0 || freeable == SHRINK_EMPTY)
466 return freeable;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000467
468 /*
469 * copy the current shrinker scan count into a local variable
470 * and zero it so that other concurrent shrinker invocations
471 * don't also do this scanning work.
472 */
473 nr = atomic_long_xchg(&shrinker->nr_deferred[nid], 0);
474
475 total_scan = nr;
Josef Bacik9092c712018-01-31 16:16:26 -0800476 delta = freeable >> priority;
477 delta *= 4;
478 do_div(delta, shrinker->seeks);
Roman Gushchin172b06c32018-09-20 12:22:46 -0700479
Glauber Costa1d3d4432013-08-28 10:18:04 +1000480 total_scan += delta;
481 if (total_scan < 0) {
Pintu Kumar8612c662014-12-10 15:42:58 -0800482 pr_err("shrink_slab: %pF negative objects to delete nr=%ld\n",
Dave Chinnera0b02132013-08-28 10:18:16 +1000483 shrinker->scan_objects, total_scan);
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700484 total_scan = freeable;
Shaohua Li5f33a082016-12-12 16:41:50 -0800485 next_deferred = nr;
486 } else
487 next_deferred = total_scan;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000488
489 /*
490 * We need to avoid excessive windup on filesystem shrinkers
491 * due to large numbers of GFP_NOFS allocations causing the
492 * shrinkers to return -1 all the time. This results in a large
493 * nr being built up so when a shrink that can do some work
494 * comes along it empties the entire cache due to nr >>>
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700495 * freeable. This is bad for sustaining a working set in
Glauber Costa1d3d4432013-08-28 10:18:04 +1000496 * memory.
497 *
498 * Hence only allow the shrinker to scan the entire cache when
499 * a large delta change is calculated directly.
500 */
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700501 if (delta < freeable / 4)
502 total_scan = min(total_scan, freeable / 2);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000503
504 /*
505 * Avoid risking looping forever due to too large nr value:
506 * never try to free more than twice the estimate number of
507 * freeable entries.
508 */
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700509 if (total_scan > freeable * 2)
510 total_scan = freeable * 2;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000511
512 trace_mm_shrink_slab_start(shrinker, shrinkctl, nr,
Josef Bacik9092c712018-01-31 16:16:26 -0800513 freeable, delta, total_scan, priority);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000514
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800515 /*
516 * Normally, we should not scan less than batch_size objects in one
517 * pass to avoid too frequent shrinker calls, but if the slab has less
518 * than batch_size objects in total and we are really tight on memory,
519 * we will try to reclaim all available objects, otherwise we can end
520 * up failing allocations although there are plenty of reclaimable
521 * objects spread over several slabs with usage less than the
522 * batch_size.
523 *
524 * We detect the "tight on memory" situations by looking at the total
525 * number of objects we want to scan (total_scan). If it is greater
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700526 * than the total number of objects on slab (freeable), we must be
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800527 * scanning at high prio and therefore should try to reclaim as much as
528 * possible.
529 */
530 while (total_scan >= batch_size ||
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700531 total_scan >= freeable) {
Dave Chinnera0b02132013-08-28 10:18:16 +1000532 unsigned long ret;
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800533 unsigned long nr_to_scan = min(batch_size, total_scan);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000534
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800535 shrinkctl->nr_to_scan = nr_to_scan;
Chris Wilsond460acb2017-09-06 16:19:26 -0700536 shrinkctl->nr_scanned = nr_to_scan;
Dave Chinnera0b02132013-08-28 10:18:16 +1000537 ret = shrinker->scan_objects(shrinker, shrinkctl);
538 if (ret == SHRINK_STOP)
539 break;
540 freed += ret;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000541
Chris Wilsond460acb2017-09-06 16:19:26 -0700542 count_vm_events(SLABS_SCANNED, shrinkctl->nr_scanned);
543 total_scan -= shrinkctl->nr_scanned;
544 scanned += shrinkctl->nr_scanned;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000545
546 cond_resched();
547 }
548
Shaohua Li5f33a082016-12-12 16:41:50 -0800549 if (next_deferred >= scanned)
550 next_deferred -= scanned;
551 else
552 next_deferred = 0;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000553 /*
554 * move the unused scan count back into the shrinker in a
555 * manner that handles concurrent updates. If we exhausted the
556 * scan, there is no need to do an update.
557 */
Shaohua Li5f33a082016-12-12 16:41:50 -0800558 if (next_deferred > 0)
559 new_nr = atomic_long_add_return(next_deferred,
Glauber Costa1d3d4432013-08-28 10:18:04 +1000560 &shrinker->nr_deferred[nid]);
561 else
562 new_nr = atomic_long_read(&shrinker->nr_deferred[nid]);
563
Dave Hansendf9024a2014-06-04 16:08:07 -0700564 trace_mm_shrink_slab_end(shrinker, nid, freed, nr, new_nr, total_scan);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000565 return freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566}
567
Kirill Tkhaib0dedc42018-08-17 15:48:14 -0700568#ifdef CONFIG_MEMCG_KMEM
569static unsigned long shrink_slab_memcg(gfp_t gfp_mask, int nid,
570 struct mem_cgroup *memcg, int priority)
571{
572 struct memcg_shrinker_map *map;
Kirill Tkhaib8e57ef2018-10-05 15:52:10 -0700573 unsigned long ret, freed = 0;
574 int i;
Kirill Tkhaib0dedc42018-08-17 15:48:14 -0700575
576 if (!memcg_kmem_enabled() || !mem_cgroup_online(memcg))
577 return 0;
578
579 if (!down_read_trylock(&shrinker_rwsem))
580 return 0;
581
582 map = rcu_dereference_protected(memcg->nodeinfo[nid]->shrinker_map,
583 true);
584 if (unlikely(!map))
585 goto unlock;
586
587 for_each_set_bit(i, map->map, shrinker_nr_max) {
588 struct shrink_control sc = {
589 .gfp_mask = gfp_mask,
590 .nid = nid,
591 .memcg = memcg,
592 };
593 struct shrinker *shrinker;
594
595 shrinker = idr_find(&shrinker_idr, i);
Kirill Tkhai7e010df2018-08-17 15:48:34 -0700596 if (unlikely(!shrinker || shrinker == SHRINKER_REGISTERING)) {
597 if (!shrinker)
598 clear_bit(i, map->map);
Kirill Tkhaib0dedc42018-08-17 15:48:14 -0700599 continue;
600 }
601
Kirill Tkhaib0dedc42018-08-17 15:48:14 -0700602 ret = do_shrink_slab(&sc, shrinker, priority);
Kirill Tkhaif90280d2018-08-17 15:48:25 -0700603 if (ret == SHRINK_EMPTY) {
604 clear_bit(i, map->map);
605 /*
606 * After the shrinker reported that it had no objects to
607 * free, but before we cleared the corresponding bit in
608 * the memcg shrinker map, a new object might have been
609 * added. To make sure, we have the bit set in this
610 * case, we invoke the shrinker one more time and reset
611 * the bit if it reports that it is not empty anymore.
612 * The memory barrier here pairs with the barrier in
613 * memcg_set_shrinker_bit():
614 *
615 * list_lru_add() shrink_slab_memcg()
616 * list_add_tail() clear_bit()
617 * <MB> <MB>
618 * set_bit() do_shrink_slab()
619 */
620 smp_mb__after_atomic();
621 ret = do_shrink_slab(&sc, shrinker, priority);
622 if (ret == SHRINK_EMPTY)
623 ret = 0;
624 else
625 memcg_set_shrinker_bit(memcg, nid, i);
626 }
Kirill Tkhaib0dedc42018-08-17 15:48:14 -0700627 freed += ret;
628
629 if (rwsem_is_contended(&shrinker_rwsem)) {
630 freed = freed ? : 1;
631 break;
632 }
633 }
634unlock:
635 up_read(&shrinker_rwsem);
636 return freed;
637}
638#else /* CONFIG_MEMCG_KMEM */
639static unsigned long shrink_slab_memcg(gfp_t gfp_mask, int nid,
640 struct mem_cgroup *memcg, int priority)
641{
642 return 0;
643}
644#endif /* CONFIG_MEMCG_KMEM */
645
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800646/**
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800647 * shrink_slab - shrink slab caches
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800648 * @gfp_mask: allocation context
649 * @nid: node whose slab caches to target
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800650 * @memcg: memory cgroup whose slab caches to target
Josef Bacik9092c712018-01-31 16:16:26 -0800651 * @priority: the reclaim priority
Linus Torvalds1da177e2005-04-16 15:20:36 -0700652 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800653 * Call the shrink functions to age shrinkable caches.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700654 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800655 * @nid is passed along to shrinkers with SHRINKER_NUMA_AWARE set,
656 * unaware shrinkers will receive a node id of 0 instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 *
Vladimir Davydovaeed1d322018-08-17 15:48:17 -0700658 * @memcg specifies the memory cgroup to target. Unaware shrinkers
659 * are called only if it is the root cgroup.
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800660 *
Josef Bacik9092c712018-01-31 16:16:26 -0800661 * @priority is sc->priority, we take the number of objects and >> by priority
662 * in order to get the scan target.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700663 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800664 * Returns the number of reclaimed slab objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 */
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800666static unsigned long shrink_slab(gfp_t gfp_mask, int nid,
667 struct mem_cgroup *memcg,
Josef Bacik9092c712018-01-31 16:16:26 -0800668 int priority)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700669{
Kirill Tkhaib8e57ef2018-10-05 15:52:10 -0700670 unsigned long ret, freed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700671 struct shrinker *shrinker;
672
Vladimir Davydovaeed1d322018-08-17 15:48:17 -0700673 if (!mem_cgroup_is_root(memcg))
Kirill Tkhaib0dedc42018-08-17 15:48:14 -0700674 return shrink_slab_memcg(gfp_mask, nid, memcg, priority);
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800675
Tetsuo Handae830c632018-04-05 16:23:35 -0700676 if (!down_read_trylock(&shrinker_rwsem))
Minchan Kimf06590b2011-05-24 17:11:11 -0700677 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678
679 list_for_each_entry(shrinker, &shrinker_list, list) {
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800680 struct shrink_control sc = {
681 .gfp_mask = gfp_mask,
682 .nid = nid,
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800683 .memcg = memcg,
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800684 };
Vladimir Davydovec970972014-01-23 15:53:23 -0800685
Kirill Tkhai9b996462018-08-17 15:48:21 -0700686 ret = do_shrink_slab(&sc, shrinker, priority);
687 if (ret == SHRINK_EMPTY)
688 ret = 0;
689 freed += ret;
Minchan Kime4966122018-01-31 16:16:55 -0800690 /*
691 * Bail out if someone want to register a new shrinker to
692 * prevent the regsitration from being stalled for long periods
693 * by parallel ongoing shrinking.
694 */
695 if (rwsem_is_contended(&shrinker_rwsem)) {
696 freed = freed ? : 1;
697 break;
698 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699 }
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800700
Linus Torvalds1da177e2005-04-16 15:20:36 -0700701 up_read(&shrinker_rwsem);
Minchan Kimf06590b2011-05-24 17:11:11 -0700702out:
703 cond_resched();
Dave Chinner24f7c6b2013-08-28 10:17:56 +1000704 return freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700705}
706
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800707void drop_slab_node(int nid)
708{
709 unsigned long freed;
710
711 do {
712 struct mem_cgroup *memcg = NULL;
713
714 freed = 0;
Vladimir Davydovaeed1d322018-08-17 15:48:17 -0700715 memcg = mem_cgroup_iter(NULL, NULL, NULL);
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800716 do {
Josef Bacik9092c712018-01-31 16:16:26 -0800717 freed += shrink_slab(GFP_KERNEL, nid, memcg, 0);
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800718 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)) != NULL);
719 } while (freed > 10);
720}
721
722void drop_slab(void)
723{
724 int nid;
725
726 for_each_online_node(nid)
727 drop_slab_node(nid);
728}
729
Linus Torvalds1da177e2005-04-16 15:20:36 -0700730static inline int is_page_cache_freeable(struct page *page)
731{
Johannes Weinerceddc3a2009-09-21 17:03:00 -0700732 /*
733 * A freeable page cache page is referenced only by the caller
734 * that isolated the page, the page cache radix tree and
735 * optional buffer heads at page->private.
736 */
Huang Yingbd4c82c22017-09-06 16:22:49 -0700737 int radix_pins = PageTransHuge(page) && PageSwapCache(page) ?
738 HPAGE_PMD_NR : 1;
739 return page_count(page) - page_has_private(page) == 1 + radix_pins;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700740}
741
Tejun Heo703c2702015-05-22 17:13:44 -0400742static int may_write_to_inode(struct inode *inode, struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700743{
Christoph Lameter930d9152006-01-08 01:00:47 -0800744 if (current->flags & PF_SWAPWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700745 return 1;
Tejun Heo703c2702015-05-22 17:13:44 -0400746 if (!inode_write_congested(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700747 return 1;
Tejun Heo703c2702015-05-22 17:13:44 -0400748 if (inode_to_bdi(inode) == current->backing_dev_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 return 1;
750 return 0;
751}
752
753/*
754 * We detected a synchronous write error writing a page out. Probably
755 * -ENOSPC. We need to propagate that into the address_space for a subsequent
756 * fsync(), msync() or close().
757 *
758 * The tricky part is that after writepage we cannot touch the mapping: nothing
759 * prevents it from being freed up. But we have a ref on the page and once
760 * that page is locked, the mapping is pinned.
761 *
762 * We're allowed to run sleeping lock_page() here because we know the caller has
763 * __GFP_FS.
764 */
765static void handle_write_error(struct address_space *mapping,
766 struct page *page, int error)
767{
Jens Axboe7eaceac2011-03-10 08:52:07 +0100768 lock_page(page);
Guillaume Chazarain3e9f45b2007-05-08 00:23:25 -0700769 if (page_mapping(page) == mapping)
770 mapping_set_error(mapping, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771 unlock_page(page);
772}
773
Christoph Lameter04e62a22006-06-23 02:03:38 -0700774/* possible outcome of pageout() */
775typedef enum {
776 /* failed to write page out, page is locked */
777 PAGE_KEEP,
778 /* move page to the active list, page is locked */
779 PAGE_ACTIVATE,
780 /* page has been sent to the disk successfully, page is unlocked */
781 PAGE_SUCCESS,
782 /* page is clean and locked */
783 PAGE_CLEAN,
784} pageout_t;
785
Linus Torvalds1da177e2005-04-16 15:20:36 -0700786/*
Andrew Morton1742f192006-03-22 00:08:21 -0800787 * pageout is called by shrink_page_list() for each dirty page.
788 * Calls ->writepage().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700789 */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700790static pageout_t pageout(struct page *page, struct address_space *mapping,
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -0700791 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700792{
793 /*
794 * If the page is dirty, only perform writeback if that write
795 * will be non-blocking. To prevent this allocation from being
796 * stalled by pagecache activity. But note that there may be
797 * stalls if we need to run get_block(). We could test
798 * PagePrivate for that.
799 *
Al Viro81742022014-04-03 03:17:43 -0400800 * If this process is currently in __generic_file_write_iter() against
Linus Torvalds1da177e2005-04-16 15:20:36 -0700801 * this page's queue, we can perform writeback even if that
802 * will block.
803 *
804 * If the page is swapcache, write it back even if that would
805 * block, for some throttling. This happens by accident, because
806 * swap_backing_dev_info is bust: it doesn't reflect the
807 * congestion state of the swapdevs. Easy to fix, if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700808 */
809 if (!is_page_cache_freeable(page))
810 return PAGE_KEEP;
811 if (!mapping) {
812 /*
813 * Some data journaling orphaned pages can have
814 * page->mapping == NULL while being dirty with clean buffers.
815 */
David Howells266cf652009-04-03 16:42:36 +0100816 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700817 if (try_to_free_buffers(page)) {
818 ClearPageDirty(page);
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -0700819 pr_info("%s: orphaned page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700820 return PAGE_CLEAN;
821 }
822 }
823 return PAGE_KEEP;
824 }
825 if (mapping->a_ops->writepage == NULL)
826 return PAGE_ACTIVATE;
Tejun Heo703c2702015-05-22 17:13:44 -0400827 if (!may_write_to_inode(mapping->host, sc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700828 return PAGE_KEEP;
829
830 if (clear_page_dirty_for_io(page)) {
831 int res;
832 struct writeback_control wbc = {
833 .sync_mode = WB_SYNC_NONE,
834 .nr_to_write = SWAP_CLUSTER_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700835 .range_start = 0,
836 .range_end = LLONG_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 .for_reclaim = 1,
838 };
839
840 SetPageReclaim(page);
841 res = mapping->a_ops->writepage(page, &wbc);
842 if (res < 0)
843 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800844 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700845 ClearPageReclaim(page);
846 return PAGE_ACTIVATE;
847 }
Andy Whitcroftc661b072007-08-22 14:01:26 -0700848
Linus Torvalds1da177e2005-04-16 15:20:36 -0700849 if (!PageWriteback(page)) {
850 /* synchronous write or broken a_ops? */
851 ClearPageReclaim(page);
852 }
yalin wang3aa23852016-01-14 15:18:30 -0800853 trace_mm_vmscan_writepage(page);
Mel Gormanc4a25632016-07-28 15:46:23 -0700854 inc_node_page_state(page, NR_VMSCAN_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700855 return PAGE_SUCCESS;
856 }
857
858 return PAGE_CLEAN;
859}
860
Andrew Mortona649fd92006-10-17 00:09:36 -0700861/*
Nick Piggine2867812008-07-25 19:45:30 -0700862 * Same as remove_mapping, but if the page is removed from the mapping, it
863 * gets returned with a refcount of 0.
Andrew Mortona649fd92006-10-17 00:09:36 -0700864 */
Johannes Weinera5289102014-04-03 14:47:51 -0700865static int __remove_mapping(struct address_space *mapping, struct page *page,
866 bool reclaimed)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800867{
Greg Thelenc4843a72015-05-22 17:13:16 -0400868 unsigned long flags;
Huang Yingbd4c82c22017-09-06 16:22:49 -0700869 int refcount;
Greg Thelenc4843a72015-05-22 17:13:16 -0400870
Nick Piggin28e4d962006-09-25 23:31:23 -0700871 BUG_ON(!PageLocked(page));
872 BUG_ON(mapping != page_mapping(page));
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800873
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700874 xa_lock_irqsave(&mapping->i_pages, flags);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800875 /*
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700876 * The non racy check for a busy page.
877 *
878 * Must be careful with the order of the tests. When someone has
879 * a ref to the page, it may be possible that they dirty it then
880 * drop the reference. So if PageDirty is tested before page_count
881 * here, then the following race may occur:
882 *
883 * get_user_pages(&page);
884 * [user mapping goes away]
885 * write_to(page);
886 * !PageDirty(page) [good]
887 * SetPageDirty(page);
888 * put_page(page);
889 * !page_count(page) [good, discard it]
890 *
891 * [oops, our write_to data is lost]
892 *
893 * Reversing the order of the tests ensures such a situation cannot
894 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
Joonsoo Kim0139aa72016-05-19 17:10:49 -0700895 * load is not satisfied before that of page->_refcount.
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700896 *
897 * Note that if SetPageDirty is always performed via set_page_dirty,
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700898 * and thus under the i_pages lock, then this ordering is not required.
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800899 */
Huang Yingbd4c82c22017-09-06 16:22:49 -0700900 if (unlikely(PageTransHuge(page)) && PageSwapCache(page))
901 refcount = 1 + HPAGE_PMD_NR;
902 else
903 refcount = 2;
904 if (!page_ref_freeze(page, refcount))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800905 goto cannot_free;
Jiang Biao1c4c3b92018-08-21 21:53:13 -0700906 /* note: atomic_cmpxchg in page_ref_freeze provides the smp_rmb */
Nick Piggine2867812008-07-25 19:45:30 -0700907 if (unlikely(PageDirty(page))) {
Huang Yingbd4c82c22017-09-06 16:22:49 -0700908 page_ref_unfreeze(page, refcount);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800909 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700910 }
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800911
912 if (PageSwapCache(page)) {
913 swp_entry_t swap = { .val = page_private(page) };
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700914 mem_cgroup_swapout(page, swap);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800915 __delete_from_swap_cache(page);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700916 xa_unlock_irqrestore(&mapping->i_pages, flags);
Minchan Kim75f6d6d2017-07-06 15:37:21 -0700917 put_swap_page(page, swap);
Nick Piggine2867812008-07-25 19:45:30 -0700918 } else {
Linus Torvalds6072d132010-12-01 13:35:19 -0500919 void (*freepage)(struct page *);
Johannes Weinera5289102014-04-03 14:47:51 -0700920 void *shadow = NULL;
Linus Torvalds6072d132010-12-01 13:35:19 -0500921
922 freepage = mapping->a_ops->freepage;
Johannes Weinera5289102014-04-03 14:47:51 -0700923 /*
924 * Remember a shadow entry for reclaimed file cache in
925 * order to detect refaults, thus thrashing, later on.
926 *
927 * But don't store shadows in an address space that is
928 * already exiting. This is not just an optizimation,
929 * inode reclaim needs to empty out the radix tree or
930 * the nodes are lost. Don't plant shadows behind its
931 * back.
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800932 *
933 * We also don't store shadows for DAX mappings because the
934 * only page cache pages found in these are zero pages
935 * covering holes, and because we don't want to mix DAX
936 * exceptional entries and shadow exceptional entries in the
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700937 * same address_space.
Johannes Weinera5289102014-04-03 14:47:51 -0700938 */
939 if (reclaimed && page_is_file_cache(page) &&
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800940 !mapping_exiting(mapping) && !dax_mapping(mapping))
Johannes Weinera5289102014-04-03 14:47:51 -0700941 shadow = workingset_eviction(mapping, page);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700942 __delete_from_page_cache(page, shadow);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700943 xa_unlock_irqrestore(&mapping->i_pages, flags);
Linus Torvalds6072d132010-12-01 13:35:19 -0500944
945 if (freepage != NULL)
946 freepage(page);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800947 }
948
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800949 return 1;
950
951cannot_free:
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700952 xa_unlock_irqrestore(&mapping->i_pages, flags);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800953 return 0;
954}
955
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956/*
Nick Piggine2867812008-07-25 19:45:30 -0700957 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
958 * someone else has a ref on the page, abort and return 0. If it was
959 * successfully detached, return 1. Assumes the caller has a single ref on
960 * this page.
961 */
962int remove_mapping(struct address_space *mapping, struct page *page)
963{
Johannes Weinera5289102014-04-03 14:47:51 -0700964 if (__remove_mapping(mapping, page, false)) {
Nick Piggine2867812008-07-25 19:45:30 -0700965 /*
966 * Unfreezing the refcount with 1 rather than 2 effectively
967 * drops the pagecache ref for us without requiring another
968 * atomic operation.
969 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700970 page_ref_unfreeze(page, 1);
Nick Piggine2867812008-07-25 19:45:30 -0700971 return 1;
972 }
973 return 0;
974}
975
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700976/**
977 * putback_lru_page - put previously isolated page onto appropriate LRU list
978 * @page: page to be put back to appropriate lru list
979 *
980 * Add previously isolated @page to appropriate LRU list.
981 * Page may still be unevictable for other reasons.
982 *
983 * lru_lock must not be held, interrupts must be enabled.
984 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700985void putback_lru_page(struct page *page)
986{
Shakeel Butt9c4e6b12018-02-21 14:45:28 -0800987 lru_cache_add(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700988 put_page(page); /* drop ref from isolate */
989}
990
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800991enum page_references {
992 PAGEREF_RECLAIM,
993 PAGEREF_RECLAIM_CLEAN,
Johannes Weiner645747462010-03-05 13:42:22 -0800994 PAGEREF_KEEP,
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800995 PAGEREF_ACTIVATE,
996};
997
998static enum page_references page_check_references(struct page *page,
999 struct scan_control *sc)
1000{
Johannes Weiner645747462010-03-05 13:42:22 -08001001 int referenced_ptes, referenced_page;
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001002 unsigned long vm_flags;
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001003
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001004 referenced_ptes = page_referenced(page, 1, sc->target_mem_cgroup,
1005 &vm_flags);
Johannes Weiner645747462010-03-05 13:42:22 -08001006 referenced_page = TestClearPageReferenced(page);
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001007
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001008 /*
1009 * Mlock lost the isolation race with us. Let try_to_unmap()
1010 * move the page to the unevictable list.
1011 */
1012 if (vm_flags & VM_LOCKED)
1013 return PAGEREF_RECLAIM;
1014
Johannes Weiner645747462010-03-05 13:42:22 -08001015 if (referenced_ptes) {
Michal Hockoe48982732012-05-29 15:06:45 -07001016 if (PageSwapBacked(page))
Johannes Weiner645747462010-03-05 13:42:22 -08001017 return PAGEREF_ACTIVATE;
1018 /*
1019 * All mapped pages start out with page table
1020 * references from the instantiating fault, so we need
1021 * to look twice if a mapped file page is used more
1022 * than once.
1023 *
1024 * Mark it and spare it for another trip around the
1025 * inactive list. Another page table reference will
1026 * lead to its activation.
1027 *
1028 * Note: the mark is set for activated pages as well
1029 * so that recently deactivated but used pages are
1030 * quickly recovered.
1031 */
1032 SetPageReferenced(page);
1033
Konstantin Khlebnikov34dbc672012-01-10 15:06:59 -08001034 if (referenced_page || referenced_ptes > 1)
Johannes Weiner645747462010-03-05 13:42:22 -08001035 return PAGEREF_ACTIVATE;
1036
Konstantin Khlebnikovc909e992012-01-10 15:07:03 -08001037 /*
1038 * Activate file-backed executable pages after first usage.
1039 */
1040 if (vm_flags & VM_EXEC)
1041 return PAGEREF_ACTIVATE;
1042
Johannes Weiner645747462010-03-05 13:42:22 -08001043 return PAGEREF_KEEP;
1044 }
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001045
1046 /* Reclaim if clean, defer dirty pages to writeback */
KOSAKI Motohiro2e302442010-10-26 14:21:46 -07001047 if (referenced_page && !PageSwapBacked(page))
Johannes Weiner645747462010-03-05 13:42:22 -08001048 return PAGEREF_RECLAIM_CLEAN;
1049
1050 return PAGEREF_RECLAIM;
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001051}
1052
Mel Gormane2be15f2013-07-03 15:01:57 -07001053/* Check if a page is dirty or under writeback */
1054static void page_check_dirty_writeback(struct page *page,
1055 bool *dirty, bool *writeback)
1056{
Mel Gormanb4597222013-07-03 15:02:05 -07001057 struct address_space *mapping;
1058
Mel Gormane2be15f2013-07-03 15:01:57 -07001059 /*
1060 * Anonymous pages are not handled by flushers and must be written
1061 * from reclaim context. Do not stall reclaim based on them
1062 */
Shaohua Li802a3a92017-05-03 14:52:32 -07001063 if (!page_is_file_cache(page) ||
1064 (PageAnon(page) && !PageSwapBacked(page))) {
Mel Gormane2be15f2013-07-03 15:01:57 -07001065 *dirty = false;
1066 *writeback = false;
1067 return;
1068 }
1069
1070 /* By default assume that the page flags are accurate */
1071 *dirty = PageDirty(page);
1072 *writeback = PageWriteback(page);
Mel Gormanb4597222013-07-03 15:02:05 -07001073
1074 /* Verify dirty/writeback state if the filesystem supports it */
1075 if (!page_has_private(page))
1076 return;
1077
1078 mapping = page_mapping(page);
1079 if (mapping && mapping->a_ops->is_dirty_writeback)
1080 mapping->a_ops->is_dirty_writeback(page, dirty, writeback);
Mel Gormane2be15f2013-07-03 15:01:57 -07001081}
1082
Nick Piggine2867812008-07-25 19:45:30 -07001083/*
Andrew Morton1742f192006-03-22 00:08:21 -08001084 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001085 */
Andrew Morton1742f192006-03-22 00:08:21 -08001086static unsigned long shrink_page_list(struct list_head *page_list,
Mel Gorman599d0c92016-07-28 15:45:31 -07001087 struct pglist_data *pgdat,
Mel Gormanf84f6e22011-10-31 17:07:51 -07001088 struct scan_control *sc,
Minchan Kim02c6de82012-10-08 16:31:55 -07001089 enum ttu_flags ttu_flags,
Michal Hocko3c710c12017-02-22 15:44:27 -08001090 struct reclaim_stat *stat,
Minchan Kim02c6de82012-10-08 16:31:55 -07001091 bool force_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001092{
1093 LIST_HEAD(ret_pages);
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001094 LIST_HEAD(free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001095 int pgactivate = 0;
Michal Hocko3c710c12017-02-22 15:44:27 -08001096 unsigned nr_unqueued_dirty = 0;
1097 unsigned nr_dirty = 0;
1098 unsigned nr_congested = 0;
1099 unsigned nr_reclaimed = 0;
1100 unsigned nr_writeback = 0;
1101 unsigned nr_immediate = 0;
Michal Hocko5bccd162017-02-22 15:44:30 -08001102 unsigned nr_ref_keep = 0;
1103 unsigned nr_unmap_fail = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104
1105 cond_resched();
1106
Linus Torvalds1da177e2005-04-16 15:20:36 -07001107 while (!list_empty(page_list)) {
1108 struct address_space *mapping;
1109 struct page *page;
1110 int may_enter_fs;
Minchan Kim02c6de82012-10-08 16:31:55 -07001111 enum page_references references = PAGEREF_RECLAIM_CLEAN;
Mel Gormane2be15f2013-07-03 15:01:57 -07001112 bool dirty, writeback;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001113
1114 cond_resched();
1115
1116 page = lru_to_page(page_list);
1117 list_del(&page->lru);
1118
Nick Piggin529ae9a2008-08-02 12:01:03 +02001119 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001120 goto keep;
1121
Sasha Levin309381fea2014-01-23 15:52:54 -08001122 VM_BUG_ON_PAGE(PageActive(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001123
1124 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -08001125
Hugh Dickins39b5f292012-10-08 16:33:18 -07001126 if (unlikely(!page_evictable(page)))
Minchan Kimad6b6702017-05-03 14:54:13 -07001127 goto activate_locked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001128
Johannes Weinera6dc60f82009-03-31 15:19:30 -07001129 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -08001130 goto keep_locked;
1131
Linus Torvalds1da177e2005-04-16 15:20:36 -07001132 /* Double the slab pressure for mapped and swapcache pages */
Shaohua Li802a3a92017-05-03 14:52:32 -07001133 if ((page_mapped(page) || PageSwapCache(page)) &&
1134 !(PageAnon(page) && !PageSwapBacked(page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001135 sc->nr_scanned++;
1136
Andy Whitcroftc661b072007-08-22 14:01:26 -07001137 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
1138 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
1139
Mel Gorman283aba92013-07-03 15:01:51 -07001140 /*
Andrey Ryabinin894befe2018-04-10 16:27:51 -07001141 * The number of dirty pages determines if a node is marked
Mel Gormane2be15f2013-07-03 15:01:57 -07001142 * reclaim_congested which affects wait_iff_congested. kswapd
1143 * will stall and start writing pages if the tail of the LRU
1144 * is all dirty unqueued pages.
1145 */
1146 page_check_dirty_writeback(page, &dirty, &writeback);
1147 if (dirty || writeback)
1148 nr_dirty++;
1149
1150 if (dirty && !writeback)
1151 nr_unqueued_dirty++;
1152
Mel Gormand04e8ac2013-07-03 15:02:03 -07001153 /*
1154 * Treat this page as congested if the underlying BDI is or if
1155 * pages are cycling through the LRU so quickly that the
1156 * pages marked for immediate reclaim are making it to the
1157 * end of the LRU a second time.
1158 */
Mel Gormane2be15f2013-07-03 15:01:57 -07001159 mapping = page_mapping(page);
Jamie Liu1da58ee2014-12-10 15:43:20 -08001160 if (((dirty || writeback) && mapping &&
Tejun Heo703c2702015-05-22 17:13:44 -04001161 inode_write_congested(mapping->host)) ||
Mel Gormand04e8ac2013-07-03 15:02:03 -07001162 (writeback && PageReclaim(page)))
Mel Gormane2be15f2013-07-03 15:01:57 -07001163 nr_congested++;
1164
1165 /*
Mel Gorman283aba92013-07-03 15:01:51 -07001166 * If a page at the tail of the LRU is under writeback, there
1167 * are three cases to consider.
1168 *
1169 * 1) If reclaim is encountering an excessive number of pages
1170 * under writeback and this page is both under writeback and
1171 * PageReclaim then it indicates that pages are being queued
1172 * for IO but are being recycled through the LRU before the
1173 * IO can complete. Waiting on the page itself risks an
1174 * indefinite stall if it is impossible to writeback the
1175 * page due to IO error or disconnected storage so instead
Mel Gormanb1a6f212013-07-03 15:01:58 -07001176 * note that the LRU is being scanned too quickly and the
1177 * caller can stall after page list has been processed.
Mel Gorman283aba92013-07-03 15:01:51 -07001178 *
Tejun Heo97c93412015-05-22 18:23:36 -04001179 * 2) Global or new memcg reclaim encounters a page that is
Michal Hockoecf5fc62015-08-04 14:36:58 -07001180 * not marked for immediate reclaim, or the caller does not
1181 * have __GFP_FS (or __GFP_IO if it's simply going to swap,
1182 * not to fs). In this case mark the page for immediate
Tejun Heo97c93412015-05-22 18:23:36 -04001183 * reclaim and continue scanning.
Mel Gorman283aba92013-07-03 15:01:51 -07001184 *
Michal Hockoecf5fc62015-08-04 14:36:58 -07001185 * Require may_enter_fs because we would wait on fs, which
1186 * may not have submitted IO yet. And the loop driver might
Mel Gorman283aba92013-07-03 15:01:51 -07001187 * enter reclaim, and deadlock if it waits on a page for
1188 * which it is needed to do the write (loop masks off
1189 * __GFP_IO|__GFP_FS for this reason); but more thought
1190 * would probably show more reasons.
1191 *
Hugh Dickins7fadc822015-09-08 15:03:46 -07001192 * 3) Legacy memcg encounters a page that is already marked
Mel Gorman283aba92013-07-03 15:01:51 -07001193 * PageReclaim. memcg does not have any dirty pages
1194 * throttling so we could easily OOM just because too many
1195 * pages are in writeback and there is nothing else to
1196 * reclaim. Wait for the writeback to complete.
Johannes Weinerc55e8d02017-02-24 14:56:23 -08001197 *
1198 * In cases 1) and 2) we activate the pages to get them out of
1199 * the way while we continue scanning for clean pages on the
1200 * inactive list and refilling from the active list. The
1201 * observation here is that waiting for disk writes is more
1202 * expensive than potentially causing reloads down the line.
1203 * Since they're marked for immediate reclaim, they won't put
1204 * memory pressure on the cache working set any longer than it
1205 * takes to write them to disk.
Mel Gorman283aba92013-07-03 15:01:51 -07001206 */
Andy Whitcroftc661b072007-08-22 14:01:26 -07001207 if (PageWriteback(page)) {
Mel Gorman283aba92013-07-03 15:01:51 -07001208 /* Case 1 above */
1209 if (current_is_kswapd() &&
1210 PageReclaim(page) &&
Mel Gorman599d0c92016-07-28 15:45:31 -07001211 test_bit(PGDAT_WRITEBACK, &pgdat->flags)) {
Mel Gormanb1a6f212013-07-03 15:01:58 -07001212 nr_immediate++;
Johannes Weinerc55e8d02017-02-24 14:56:23 -08001213 goto activate_locked;
Mel Gorman283aba92013-07-03 15:01:51 -07001214
1215 /* Case 2 above */
Tejun Heo97c93412015-05-22 18:23:36 -04001216 } else if (sane_reclaim(sc) ||
Michal Hockoecf5fc62015-08-04 14:36:58 -07001217 !PageReclaim(page) || !may_enter_fs) {
Hugh Dickinsc3b94f42012-07-31 16:45:59 -07001218 /*
1219 * This is slightly racy - end_page_writeback()
1220 * might have just cleared PageReclaim, then
1221 * setting PageReclaim here end up interpreted
1222 * as PageReadahead - but that does not matter
1223 * enough to care. What we do want is for this
1224 * page to have PageReclaim set next time memcg
1225 * reclaim reaches the tests above, so it will
1226 * then wait_on_page_writeback() to avoid OOM;
1227 * and it's also appropriate in global reclaim.
1228 */
1229 SetPageReclaim(page);
Michal Hockoe62e3842012-07-31 16:45:55 -07001230 nr_writeback++;
Johannes Weinerc55e8d02017-02-24 14:56:23 -08001231 goto activate_locked;
Mel Gorman283aba92013-07-03 15:01:51 -07001232
1233 /* Case 3 above */
1234 } else {
Hugh Dickins7fadc822015-09-08 15:03:46 -07001235 unlock_page(page);
Mel Gorman283aba92013-07-03 15:01:51 -07001236 wait_on_page_writeback(page);
Hugh Dickins7fadc822015-09-08 15:03:46 -07001237 /* then go back and try same page again */
1238 list_add_tail(&page->lru, page_list);
1239 continue;
Michal Hockoe62e3842012-07-31 16:45:55 -07001240 }
Andy Whitcroftc661b072007-08-22 14:01:26 -07001241 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001242
Minchan Kim02c6de82012-10-08 16:31:55 -07001243 if (!force_reclaim)
1244 references = page_check_references(page, sc);
1245
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001246 switch (references) {
1247 case PAGEREF_ACTIVATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 goto activate_locked;
Johannes Weiner645747462010-03-05 13:42:22 -08001249 case PAGEREF_KEEP:
Michal Hocko5bccd162017-02-22 15:44:30 -08001250 nr_ref_keep++;
Johannes Weiner645747462010-03-05 13:42:22 -08001251 goto keep_locked;
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001252 case PAGEREF_RECLAIM:
1253 case PAGEREF_RECLAIM_CLEAN:
1254 ; /* try to reclaim the page below */
1255 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256
Linus Torvalds1da177e2005-04-16 15:20:36 -07001257 /*
1258 * Anonymous process memory has backing store?
1259 * Try to allocate it some swap space here.
Shaohua Li802a3a92017-05-03 14:52:32 -07001260 * Lazyfree page could be freed directly
Linus Torvalds1da177e2005-04-16 15:20:36 -07001261 */
Huang Yingbd4c82c22017-09-06 16:22:49 -07001262 if (PageAnon(page) && PageSwapBacked(page)) {
1263 if (!PageSwapCache(page)) {
1264 if (!(sc->gfp_mask & __GFP_IO))
1265 goto keep_locked;
1266 if (PageTransHuge(page)) {
1267 /* cannot split THP, skip it */
1268 if (!can_split_huge_page(page, NULL))
1269 goto activate_locked;
1270 /*
1271 * Split pages without a PMD map right
1272 * away. Chances are some or all of the
1273 * tail pages can be freed without IO.
1274 */
1275 if (!compound_mapcount(page) &&
1276 split_huge_page_to_list(page,
1277 page_list))
1278 goto activate_locked;
1279 }
1280 if (!add_to_swap(page)) {
1281 if (!PageTransHuge(page))
1282 goto activate_locked;
1283 /* Fallback to swap normal pages */
1284 if (split_huge_page_to_list(page,
1285 page_list))
1286 goto activate_locked;
Huang Yingfe490cc2017-09-06 16:22:52 -07001287#ifdef CONFIG_TRANSPARENT_HUGEPAGE
1288 count_vm_event(THP_SWPOUT_FALLBACK);
1289#endif
Huang Yingbd4c82c22017-09-06 16:22:49 -07001290 if (!add_to_swap(page))
1291 goto activate_locked;
1292 }
Minchan Kim0f074652017-07-06 15:37:24 -07001293
Huang Yingbd4c82c22017-09-06 16:22:49 -07001294 may_enter_fs = 1;
1295
1296 /* Adding to swap updated mapping */
1297 mapping = page_mapping(page);
Minchan Kim0f074652017-07-06 15:37:24 -07001298 }
Kirill A. Shutemov7751b2d2016-07-26 15:25:56 -07001299 } else if (unlikely(PageTransHuge(page))) {
1300 /* Split file THP */
1301 if (split_huge_page_to_list(page, page_list))
1302 goto keep_locked;
Mel Gormane2be15f2013-07-03 15:01:57 -07001303 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 /*
1306 * The page is mapped into the page tables of one or more
1307 * processes. Try to unmap it here.
1308 */
Shaohua Li802a3a92017-05-03 14:52:32 -07001309 if (page_mapped(page)) {
Huang Yingbd4c82c22017-09-06 16:22:49 -07001310 enum ttu_flags flags = ttu_flags | TTU_BATCH_FLUSH;
1311
1312 if (unlikely(PageTransHuge(page)))
1313 flags |= TTU_SPLIT_HUGE_PMD;
1314 if (!try_to_unmap(page, flags)) {
Michal Hocko5bccd162017-02-22 15:44:30 -08001315 nr_unmap_fail++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001316 goto activate_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001317 }
1318 }
1319
1320 if (PageDirty(page)) {
Mel Gormanee728862011-10-31 17:07:38 -07001321 /*
Johannes Weiner4eda4822017-02-24 14:56:20 -08001322 * Only kswapd can writeback filesystem pages
1323 * to avoid risk of stack overflow. But avoid
1324 * injecting inefficient single-page IO into
1325 * flusher writeback as much as possible: only
1326 * write pages when we've encountered many
1327 * dirty pages, and when we've already scanned
1328 * the rest of the LRU for clean pages and see
1329 * the same dirty pages again (PageReclaim).
Mel Gormanee728862011-10-31 17:07:38 -07001330 */
Mel Gormanf84f6e22011-10-31 17:07:51 -07001331 if (page_is_file_cache(page) &&
Johannes Weiner4eda4822017-02-24 14:56:20 -08001332 (!current_is_kswapd() || !PageReclaim(page) ||
1333 !test_bit(PGDAT_DIRTY, &pgdat->flags))) {
Mel Gorman49ea7eb2011-10-31 17:07:59 -07001334 /*
1335 * Immediately reclaim when written back.
1336 * Similar in principal to deactivate_page()
1337 * except we already have the page isolated
1338 * and know it's dirty
1339 */
Mel Gormanc4a25632016-07-28 15:46:23 -07001340 inc_node_page_state(page, NR_VMSCAN_IMMEDIATE);
Mel Gorman49ea7eb2011-10-31 17:07:59 -07001341 SetPageReclaim(page);
1342
Johannes Weinerc55e8d02017-02-24 14:56:23 -08001343 goto activate_locked;
Mel Gormanee728862011-10-31 17:07:38 -07001344 }
1345
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001346 if (references == PAGEREF_RECLAIM_CLEAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -07001348 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -08001350 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001351 goto keep_locked;
1352
Mel Gormand950c942015-09-04 15:47:35 -07001353 /*
1354 * Page is dirty. Flush the TLB if a writable entry
1355 * potentially exists to avoid CPU writes after IO
1356 * starts and then write it out here.
1357 */
1358 try_to_unmap_flush_dirty();
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001359 switch (pageout(page, mapping, sc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001360 case PAGE_KEEP:
1361 goto keep_locked;
1362 case PAGE_ACTIVATE:
1363 goto activate_locked;
1364 case PAGE_SUCCESS:
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001365 if (PageWriteback(page))
Mel Gorman41ac1992012-05-29 15:06:19 -07001366 goto keep;
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001367 if (PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 goto keep;
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001369
Linus Torvalds1da177e2005-04-16 15:20:36 -07001370 /*
1371 * A synchronous write - probably a ramdisk. Go
1372 * ahead and try to reclaim the page.
1373 */
Nick Piggin529ae9a2008-08-02 12:01:03 +02001374 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001375 goto keep;
1376 if (PageDirty(page) || PageWriteback(page))
1377 goto keep_locked;
1378 mapping = page_mapping(page);
1379 case PAGE_CLEAN:
1380 ; /* try to free the page below */
1381 }
1382 }
1383
1384 /*
1385 * If the page has buffers, try to free the buffer mappings
1386 * associated with this page. If we succeed we try to free
1387 * the page as well.
1388 *
1389 * We do this even if the page is PageDirty().
1390 * try_to_release_page() does not perform I/O, but it is
1391 * possible for a page to have PageDirty set, but it is actually
1392 * clean (all its buffers are clean). This happens if the
1393 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001394 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395 * try_to_release_page() will discover that cleanness and will
1396 * drop the buffers and mark the page clean - it can be freed.
1397 *
1398 * Rarely, pages can have buffers and no ->mapping. These are
1399 * the pages which were not successfully invalidated in
1400 * truncate_complete_page(). We try to drop those buffers here
1401 * and if that worked, and the page is no longer mapped into
1402 * process address space (page_count == 1) it can be freed.
1403 * Otherwise, leave the page on the LRU so it is swappable.
1404 */
David Howells266cf652009-04-03 16:42:36 +01001405 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001406 if (!try_to_release_page(page, sc->gfp_mask))
1407 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -07001408 if (!mapping && page_count(page) == 1) {
1409 unlock_page(page);
1410 if (put_page_testzero(page))
1411 goto free_it;
1412 else {
1413 /*
1414 * rare race with speculative reference.
1415 * the speculative reference will free
1416 * this page shortly, so we may
1417 * increment nr_reclaimed here (and
1418 * leave it off the LRU).
1419 */
1420 nr_reclaimed++;
1421 continue;
1422 }
1423 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001424 }
1425
Shaohua Li802a3a92017-05-03 14:52:32 -07001426 if (PageAnon(page) && !PageSwapBacked(page)) {
1427 /* follow __remove_mapping for reference */
1428 if (!page_ref_freeze(page, 1))
1429 goto keep_locked;
1430 if (PageDirty(page)) {
1431 page_ref_unfreeze(page, 1);
1432 goto keep_locked;
1433 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001434
Shaohua Li802a3a92017-05-03 14:52:32 -07001435 count_vm_event(PGLAZYFREED);
Roman Gushchin22621852017-07-06 15:40:25 -07001436 count_memcg_page_event(page, PGLAZYFREED);
Shaohua Li802a3a92017-05-03 14:52:32 -07001437 } else if (!mapping || !__remove_mapping(mapping, page, true))
1438 goto keep_locked;
Nick Piggina978d6f2008-10-18 20:26:58 -07001439 /*
1440 * At this point, we have no other references and there is
1441 * no way to pick any more up (removed from LRU, removed
1442 * from pagecache). Can use non-atomic bitops now (and
1443 * we obviously don't have to worry about waking up a process
1444 * waiting on the page lock, because there are no references.
1445 */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08001446 __ClearPageLocked(page);
Nick Piggine2867812008-07-25 19:45:30 -07001447free_it:
Andrew Morton05ff5132006-03-22 00:08:20 -08001448 nr_reclaimed++;
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001449
1450 /*
1451 * Is there need to periodically free_page_list? It would
1452 * appear not as the counts should be low
1453 */
Huang Yingbd4c82c22017-09-06 16:22:49 -07001454 if (unlikely(PageTransHuge(page))) {
1455 mem_cgroup_uncharge(page);
1456 (*get_compound_page_dtor(page))(page);
1457 } else
1458 list_add(&page->lru, &free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001459 continue;
1460
1461activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -07001462 /* Not a candidate for swapping, so reclaim swap space. */
Minchan Kimad6b6702017-05-03 14:54:13 -07001463 if (PageSwapCache(page) && (mem_cgroup_swap_full(page) ||
1464 PageMlocked(page)))
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08001465 try_to_free_swap(page);
Sasha Levin309381fea2014-01-23 15:52:54 -08001466 VM_BUG_ON_PAGE(PageActive(page), page);
Minchan Kimad6b6702017-05-03 14:54:13 -07001467 if (!PageMlocked(page)) {
1468 SetPageActive(page);
1469 pgactivate++;
Roman Gushchin22621852017-07-06 15:40:25 -07001470 count_memcg_page_event(page, PGACTIVATE);
Minchan Kimad6b6702017-05-03 14:54:13 -07001471 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001472keep_locked:
1473 unlock_page(page);
1474keep:
1475 list_add(&page->lru, &ret_pages);
Sasha Levin309381fea2014-01-23 15:52:54 -08001476 VM_BUG_ON_PAGE(PageLRU(page) || PageUnevictable(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001477 }
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001478
Johannes Weiner747db952014-08-08 14:19:24 -07001479 mem_cgroup_uncharge_list(&free_pages);
Mel Gorman72b252a2015-09-04 15:47:32 -07001480 try_to_unmap_flush();
Mel Gorman2d4894b2017-11-15 17:37:59 -08001481 free_unref_page_list(&free_pages);
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001482
Linus Torvalds1da177e2005-04-16 15:20:36 -07001483 list_splice(&ret_pages, page_list);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001484 count_vm_events(PGACTIVATE, pgactivate);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001485
Michal Hocko3c710c12017-02-22 15:44:27 -08001486 if (stat) {
1487 stat->nr_dirty = nr_dirty;
1488 stat->nr_congested = nr_congested;
1489 stat->nr_unqueued_dirty = nr_unqueued_dirty;
1490 stat->nr_writeback = nr_writeback;
1491 stat->nr_immediate = nr_immediate;
Michal Hocko5bccd162017-02-22 15:44:30 -08001492 stat->nr_activate = pgactivate;
1493 stat->nr_ref_keep = nr_ref_keep;
1494 stat->nr_unmap_fail = nr_unmap_fail;
Michal Hocko3c710c12017-02-22 15:44:27 -08001495 }
Andrew Morton05ff5132006-03-22 00:08:20 -08001496 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497}
1498
Minchan Kim02c6de82012-10-08 16:31:55 -07001499unsigned long reclaim_clean_pages_from_list(struct zone *zone,
1500 struct list_head *page_list)
1501{
1502 struct scan_control sc = {
1503 .gfp_mask = GFP_KERNEL,
1504 .priority = DEF_PRIORITY,
1505 .may_unmap = 1,
1506 };
Michal Hocko3c710c12017-02-22 15:44:27 -08001507 unsigned long ret;
Minchan Kim02c6de82012-10-08 16:31:55 -07001508 struct page *page, *next;
1509 LIST_HEAD(clean_pages);
1510
1511 list_for_each_entry_safe(page, next, page_list, lru) {
Rafael Aquini117aad12013-09-30 13:45:16 -07001512 if (page_is_file_cache(page) && !PageDirty(page) &&
Minchan Kimb1123ea62016-07-26 15:23:09 -07001513 !__PageMovable(page)) {
Minchan Kim02c6de82012-10-08 16:31:55 -07001514 ClearPageActive(page);
1515 list_move(&page->lru, &clean_pages);
1516 }
1517 }
1518
Mel Gorman599d0c92016-07-28 15:45:31 -07001519 ret = shrink_page_list(&clean_pages, zone->zone_pgdat, &sc,
Shaohua Lia128ca72017-05-03 14:52:22 -07001520 TTU_IGNORE_ACCESS, NULL, true);
Minchan Kim02c6de82012-10-08 16:31:55 -07001521 list_splice(&clean_pages, page_list);
Mel Gorman599d0c92016-07-28 15:45:31 -07001522 mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE, -ret);
Minchan Kim02c6de82012-10-08 16:31:55 -07001523 return ret;
1524}
1525
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001526/*
1527 * Attempt to remove the specified page from its LRU. Only take this page
1528 * if it is of the appropriate PageActive status. Pages which are being
1529 * freed elsewhere are also ignored.
1530 *
1531 * page: page to consider
1532 * mode: one of the LRU isolation modes defined above
1533 *
1534 * returns 0 on success, -ve errno on failure.
1535 */
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001536int __isolate_lru_page(struct page *page, isolate_mode_t mode)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001537{
1538 int ret = -EINVAL;
1539
1540 /* Only take pages on the LRU. */
1541 if (!PageLRU(page))
1542 return ret;
1543
Minchan Kime46a2872012-10-08 16:33:48 -07001544 /* Compaction should not handle unevictable pages but CMA can do so */
1545 if (PageUnevictable(page) && !(mode & ISOLATE_UNEVICTABLE))
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001546 return ret;
1547
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001548 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001549
Mel Gormanc8244932012-01-12 17:19:38 -08001550 /*
1551 * To minimise LRU disruption, the caller can indicate that it only
1552 * wants to isolate pages it will be able to operate on without
1553 * blocking - clean pages for the most part.
1554 *
Mel Gormanc8244932012-01-12 17:19:38 -08001555 * ISOLATE_ASYNC_MIGRATE is used to indicate that it only wants to pages
1556 * that it is possible to migrate without blocking
1557 */
Johannes Weiner1276ad62017-02-24 14:56:11 -08001558 if (mode & ISOLATE_ASYNC_MIGRATE) {
Mel Gormanc8244932012-01-12 17:19:38 -08001559 /* All the caller can do on PageWriteback is block */
1560 if (PageWriteback(page))
1561 return ret;
1562
1563 if (PageDirty(page)) {
1564 struct address_space *mapping;
Mel Gorman69d763f2018-01-31 16:19:52 -08001565 bool migrate_dirty;
Mel Gormanc8244932012-01-12 17:19:38 -08001566
Mel Gormanc8244932012-01-12 17:19:38 -08001567 /*
1568 * Only pages without mappings or that have a
1569 * ->migratepage callback are possible to migrate
Mel Gorman69d763f2018-01-31 16:19:52 -08001570 * without blocking. However, we can be racing with
1571 * truncation so it's necessary to lock the page
1572 * to stabilise the mapping as truncation holds
1573 * the page lock until after the page is removed
1574 * from the page cache.
Mel Gormanc8244932012-01-12 17:19:38 -08001575 */
Mel Gorman69d763f2018-01-31 16:19:52 -08001576 if (!trylock_page(page))
1577 return ret;
1578
Mel Gormanc8244932012-01-12 17:19:38 -08001579 mapping = page_mapping(page);
Hugh Dickins145e1a72018-06-01 16:50:50 -07001580 migrate_dirty = !mapping || mapping->a_ops->migratepage;
Mel Gorman69d763f2018-01-31 16:19:52 -08001581 unlock_page(page);
1582 if (!migrate_dirty)
Mel Gormanc8244932012-01-12 17:19:38 -08001583 return ret;
1584 }
1585 }
Minchan Kim39deaf82011-10-31 17:06:51 -07001586
Minchan Kimf80c0672011-10-31 17:06:55 -07001587 if ((mode & ISOLATE_UNMAPPED) && page_mapped(page))
1588 return ret;
1589
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001590 if (likely(get_page_unless_zero(page))) {
1591 /*
1592 * Be careful not to clear PageLRU until after we're
1593 * sure the page is not being freed elsewhere -- the
1594 * page release code relies on it.
1595 */
1596 ClearPageLRU(page);
1597 ret = 0;
1598 }
1599
1600 return ret;
1601}
1602
Mel Gorman7ee36a12016-07-28 15:47:17 -07001603
1604/*
1605 * Update LRU sizes after isolating pages. The LRU size updates must
1606 * be complete before mem_cgroup_update_lru_size due to a santity check.
1607 */
1608static __always_inline void update_lru_sizes(struct lruvec *lruvec,
Michal Hockob4536f0c82017-01-10 16:58:04 -08001609 enum lru_list lru, unsigned long *nr_zone_taken)
Mel Gorman7ee36a12016-07-28 15:47:17 -07001610{
Mel Gorman7ee36a12016-07-28 15:47:17 -07001611 int zid;
1612
Mel Gorman7ee36a12016-07-28 15:47:17 -07001613 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1614 if (!nr_zone_taken[zid])
1615 continue;
1616
1617 __update_lru_size(lruvec, lru, zid, -nr_zone_taken[zid]);
Michal Hockob4536f0c82017-01-10 16:58:04 -08001618#ifdef CONFIG_MEMCG
1619 mem_cgroup_update_lru_size(lruvec, lru, zid, -nr_zone_taken[zid]);
1620#endif
Mel Gorman7ee36a12016-07-28 15:47:17 -07001621 }
Mel Gorman7ee36a12016-07-28 15:47:17 -07001622
Mel Gorman7ee36a12016-07-28 15:47:17 -07001623}
1624
Christoph Lameter49d2e9c2006-01-08 01:00:48 -08001625/*
Mel Gormana52633d2016-07-28 15:45:28 -07001626 * zone_lru_lock is heavily contended. Some of the functions that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001627 * shrink the lists perform better by taking out a batch of pages
1628 * and working on them outside the LRU lock.
1629 *
1630 * For pagecache intensive workloads, this function is the hottest
1631 * spot in the kernel (apart from copy_*_user functions).
1632 *
1633 * Appropriate locks must be held before calling this function.
1634 *
Minchan Kim791b48b2017-05-12 15:47:06 -07001635 * @nr_to_scan: The number of eligible pages to look through on the list.
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001636 * @lruvec: The LRU vector to pull pages from.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 * @dst: The temp list to put pages on to.
Hugh Dickinsf6260122012-01-12 17:20:06 -08001638 * @nr_scanned: The number of pages that were scanned.
Rik van Rielfe2c2a12012-03-21 16:33:51 -07001639 * @sc: The scan_control struct for this reclaim session
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001640 * @mode: One of the LRU isolation modes
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001641 * @lru: LRU list id for isolating
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 *
1643 * returns how many pages were moved onto *@dst.
1644 */
Andrew Morton69e05942006-03-22 00:08:19 -08001645static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001646 struct lruvec *lruvec, struct list_head *dst,
Rik van Rielfe2c2a12012-03-21 16:33:51 -07001647 unsigned long *nr_scanned, struct scan_control *sc,
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001648 isolate_mode_t mode, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001649{
Hugh Dickins75b00af2012-05-29 15:07:09 -07001650 struct list_head *src = &lruvec->lists[lru];
Andrew Morton69e05942006-03-22 00:08:19 -08001651 unsigned long nr_taken = 0;
Mel Gorman599d0c92016-07-28 15:45:31 -07001652 unsigned long nr_zone_taken[MAX_NR_ZONES] = { 0 };
Mel Gorman7cc30fc2016-07-28 15:46:59 -07001653 unsigned long nr_skipped[MAX_NR_ZONES] = { 0, };
Johannes Weiner3db65812017-05-03 14:52:13 -07001654 unsigned long skipped = 0;
Minchan Kim791b48b2017-05-12 15:47:06 -07001655 unsigned long scan, total_scan, nr_pages;
Mel Gormanb2e18752016-07-28 15:45:37 -07001656 LIST_HEAD(pages_skipped);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001657
Minchan Kim791b48b2017-05-12 15:47:06 -07001658 scan = 0;
1659 for (total_scan = 0;
1660 scan < nr_to_scan && nr_taken < nr_to_scan && !list_empty(src);
1661 total_scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001662 struct page *page;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 page = lru_to_page(src);
1665 prefetchw_prev_lru_page(page, src, flags);
1666
Sasha Levin309381fea2014-01-23 15:52:54 -08001667 VM_BUG_ON_PAGE(!PageLRU(page), page);
Nick Piggin8d438f92006-03-22 00:07:59 -08001668
Mel Gormanb2e18752016-07-28 15:45:37 -07001669 if (page_zonenum(page) > sc->reclaim_idx) {
1670 list_move(&page->lru, &pages_skipped);
Mel Gorman7cc30fc2016-07-28 15:46:59 -07001671 nr_skipped[page_zonenum(page)]++;
Mel Gormanb2e18752016-07-28 15:45:37 -07001672 continue;
1673 }
1674
Minchan Kim791b48b2017-05-12 15:47:06 -07001675 /*
1676 * Do not count skipped pages because that makes the function
1677 * return with no isolated pages if the LRU mostly contains
1678 * ineligible pages. This causes the VM to not reclaim any
1679 * pages, triggering a premature OOM.
1680 */
1681 scan++;
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001682 switch (__isolate_lru_page(page, mode)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001683 case 0:
Mel Gorman599d0c92016-07-28 15:45:31 -07001684 nr_pages = hpage_nr_pages(page);
1685 nr_taken += nr_pages;
1686 nr_zone_taken[page_zonenum(page)] += nr_pages;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001687 list_move(&page->lru, dst);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001688 break;
Nick Piggin46453a62006-03-22 00:07:58 -08001689
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001690 case -EBUSY:
1691 /* else it is being freed elsewhere */
1692 list_move(&page->lru, src);
1693 continue;
1694
1695 default:
1696 BUG();
1697 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001698 }
1699
Mel Gormanb2e18752016-07-28 15:45:37 -07001700 /*
1701 * Splice any skipped pages to the start of the LRU list. Note that
1702 * this disrupts the LRU order when reclaiming for lower zones but
1703 * we cannot splice to the tail. If we did then the SWAP_CLUSTER_MAX
1704 * scanning would soon rescan the same pages to skip and put the
1705 * system at risk of premature OOM.
1706 */
Mel Gorman7cc30fc2016-07-28 15:46:59 -07001707 if (!list_empty(&pages_skipped)) {
1708 int zid;
1709
Johannes Weiner3db65812017-05-03 14:52:13 -07001710 list_splice(&pages_skipped, src);
Mel Gorman7cc30fc2016-07-28 15:46:59 -07001711 for (zid = 0; zid < MAX_NR_ZONES; zid++) {
1712 if (!nr_skipped[zid])
1713 continue;
1714
1715 __count_zid_vm_events(PGSCAN_SKIP, zid, nr_skipped[zid]);
Michal Hocko1265e3a2017-02-22 15:44:21 -08001716 skipped += nr_skipped[zid];
Mel Gorman7cc30fc2016-07-28 15:46:59 -07001717 }
1718 }
Minchan Kim791b48b2017-05-12 15:47:06 -07001719 *nr_scanned = total_scan;
Michal Hocko1265e3a2017-02-22 15:44:21 -08001720 trace_mm_vmscan_lru_isolate(sc->reclaim_idx, sc->order, nr_to_scan,
Minchan Kim791b48b2017-05-12 15:47:06 -07001721 total_scan, skipped, nr_taken, mode, lru);
Michal Hockob4536f0c82017-01-10 16:58:04 -08001722 update_lru_sizes(lruvec, lru, nr_zone_taken);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001723 return nr_taken;
1724}
1725
Nick Piggin62695a82008-10-18 20:26:09 -07001726/**
1727 * isolate_lru_page - tries to isolate a page from its LRU list
1728 * @page: page to isolate from its LRU list
1729 *
1730 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1731 * vmstat statistic corresponding to whatever LRU list the page was on.
1732 *
1733 * Returns 0 if the page was removed from an LRU list.
1734 * Returns -EBUSY if the page was not on an LRU list.
1735 *
1736 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001737 * the active list, it will have PageActive set. If it was found on
1738 * the unevictable list, it will have the PageUnevictable bit set. That flag
1739 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001740 *
1741 * The vmstat statistic corresponding to the list on which the page was
1742 * found will be decremented.
1743 *
1744 * Restrictions:
Mike Rapoporta5d09be2018-02-06 15:42:19 -08001745 *
Nick Piggin62695a82008-10-18 20:26:09 -07001746 * (1) Must be called with an elevated refcount on the page. This is a
1747 * fundamentnal difference from isolate_lru_pages (which is called
1748 * without a stable reference).
1749 * (2) the lru_lock must not be held.
1750 * (3) interrupts must be enabled.
1751 */
1752int isolate_lru_page(struct page *page)
1753{
1754 int ret = -EBUSY;
1755
Sasha Levin309381fea2014-01-23 15:52:54 -08001756 VM_BUG_ON_PAGE(!page_count(page), page);
Kirill A. Shutemovcf2a82e2016-02-05 15:36:36 -08001757 WARN_RATELIMIT(PageTail(page), "trying to isolate tail page");
Konstantin Khlebnikov0c917312011-05-24 17:12:21 -07001758
Nick Piggin62695a82008-10-18 20:26:09 -07001759 if (PageLRU(page)) {
1760 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001761 struct lruvec *lruvec;
Nick Piggin62695a82008-10-18 20:26:09 -07001762
Mel Gormana52633d2016-07-28 15:45:28 -07001763 spin_lock_irq(zone_lru_lock(zone));
Mel Gorman599d0c92016-07-28 15:45:31 -07001764 lruvec = mem_cgroup_page_lruvec(page, zone->zone_pgdat);
Konstantin Khlebnikov0c917312011-05-24 17:12:21 -07001765 if (PageLRU(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001766 int lru = page_lru(page);
Konstantin Khlebnikov0c917312011-05-24 17:12:21 -07001767 get_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001768 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001769 del_page_from_lru_list(page, lruvec, lru);
1770 ret = 0;
Nick Piggin62695a82008-10-18 20:26:09 -07001771 }
Mel Gormana52633d2016-07-28 15:45:28 -07001772 spin_unlock_irq(zone_lru_lock(zone));
Nick Piggin62695a82008-10-18 20:26:09 -07001773 }
1774 return ret;
1775}
1776
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001777/*
Fengguang Wud37dd5d2012-12-18 14:23:28 -08001778 * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and
1779 * then get resheduled. When there are massive number of tasks doing page
1780 * allocation, such sleeping direct reclaimers may keep piling up on each CPU,
1781 * the LRU list will go small and be scanned faster than necessary, leading to
1782 * unnecessary swapping, thrashing and OOM.
Rik van Riel35cd7812009-09-21 17:01:38 -07001783 */
Mel Gorman599d0c92016-07-28 15:45:31 -07001784static int too_many_isolated(struct pglist_data *pgdat, int file,
Rik van Riel35cd7812009-09-21 17:01:38 -07001785 struct scan_control *sc)
1786{
1787 unsigned long inactive, isolated;
1788
1789 if (current_is_kswapd())
1790 return 0;
1791
Tejun Heo97c93412015-05-22 18:23:36 -04001792 if (!sane_reclaim(sc))
Rik van Riel35cd7812009-09-21 17:01:38 -07001793 return 0;
1794
1795 if (file) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001796 inactive = node_page_state(pgdat, NR_INACTIVE_FILE);
1797 isolated = node_page_state(pgdat, NR_ISOLATED_FILE);
Rik van Riel35cd7812009-09-21 17:01:38 -07001798 } else {
Mel Gorman599d0c92016-07-28 15:45:31 -07001799 inactive = node_page_state(pgdat, NR_INACTIVE_ANON);
1800 isolated = node_page_state(pgdat, NR_ISOLATED_ANON);
Rik van Riel35cd7812009-09-21 17:01:38 -07001801 }
1802
Fengguang Wu3cf23842012-12-18 14:23:31 -08001803 /*
1804 * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they
1805 * won't get blocked by normal direct-reclaimers, forming a circular
1806 * deadlock.
1807 */
Mel Gormand0164ad2015-11-06 16:28:21 -08001808 if ((sc->gfp_mask & (__GFP_IO | __GFP_FS)) == (__GFP_IO | __GFP_FS))
Fengguang Wu3cf23842012-12-18 14:23:31 -08001809 inactive >>= 3;
1810
Rik van Riel35cd7812009-09-21 17:01:38 -07001811 return isolated > inactive;
1812}
1813
Mel Gorman66635622010-08-09 17:19:30 -07001814static noinline_for_stack void
Hugh Dickins75b00af2012-05-29 15:07:09 -07001815putback_inactive_pages(struct lruvec *lruvec, struct list_head *page_list)
Mel Gorman66635622010-08-09 17:19:30 -07001816{
Konstantin Khlebnikov27ac81d2012-05-29 15:07:00 -07001817 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
Mel Gorman599d0c92016-07-28 15:45:31 -07001818 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Hugh Dickins3f797682012-01-12 17:20:07 -08001819 LIST_HEAD(pages_to_free);
Mel Gorman66635622010-08-09 17:19:30 -07001820
Mel Gorman66635622010-08-09 17:19:30 -07001821 /*
1822 * Put back any unfreeable pages.
1823 */
Mel Gorman66635622010-08-09 17:19:30 -07001824 while (!list_empty(page_list)) {
Hugh Dickins3f797682012-01-12 17:20:07 -08001825 struct page *page = lru_to_page(page_list);
Mel Gorman66635622010-08-09 17:19:30 -07001826 int lru;
Hugh Dickins3f797682012-01-12 17:20:07 -08001827
Sasha Levin309381fea2014-01-23 15:52:54 -08001828 VM_BUG_ON_PAGE(PageLRU(page), page);
Mel Gorman66635622010-08-09 17:19:30 -07001829 list_del(&page->lru);
Hugh Dickins39b5f292012-10-08 16:33:18 -07001830 if (unlikely(!page_evictable(page))) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001831 spin_unlock_irq(&pgdat->lru_lock);
Mel Gorman66635622010-08-09 17:19:30 -07001832 putback_lru_page(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07001833 spin_lock_irq(&pgdat->lru_lock);
Mel Gorman66635622010-08-09 17:19:30 -07001834 continue;
1835 }
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001836
Mel Gorman599d0c92016-07-28 15:45:31 -07001837 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001838
Linus Torvalds7a608572011-01-17 14:42:19 -08001839 SetPageLRU(page);
Mel Gorman66635622010-08-09 17:19:30 -07001840 lru = page_lru(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001841 add_page_to_lru_list(page, lruvec, lru);
1842
Mel Gorman66635622010-08-09 17:19:30 -07001843 if (is_active_lru(lru)) {
1844 int file = is_file_lru(lru);
Rik van Riel9992af12011-01-13 15:47:13 -08001845 int numpages = hpage_nr_pages(page);
1846 reclaim_stat->recent_rotated[file] += numpages;
Mel Gorman66635622010-08-09 17:19:30 -07001847 }
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001848 if (put_page_testzero(page)) {
1849 __ClearPageLRU(page);
1850 __ClearPageActive(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001851 del_page_from_lru_list(page, lruvec, lru);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001852
1853 if (unlikely(PageCompound(page))) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001854 spin_unlock_irq(&pgdat->lru_lock);
Johannes Weiner747db952014-08-08 14:19:24 -07001855 mem_cgroup_uncharge(page);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001856 (*get_compound_page_dtor(page))(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07001857 spin_lock_irq(&pgdat->lru_lock);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001858 } else
1859 list_add(&page->lru, &pages_to_free);
Mel Gorman66635622010-08-09 17:19:30 -07001860 }
1861 }
Mel Gorman66635622010-08-09 17:19:30 -07001862
Hugh Dickins3f797682012-01-12 17:20:07 -08001863 /*
1864 * To save our caller's stack, now use input list for pages to free.
1865 */
1866 list_splice(&pages_to_free, page_list);
Mel Gorman66635622010-08-09 17:19:30 -07001867}
1868
1869/*
NeilBrown399ba0b2014-06-04 16:07:42 -07001870 * If a kernel thread (such as nfsd for loop-back mounts) services
1871 * a backing device by writing to the page cache it sets PF_LESS_THROTTLE.
1872 * In that case we should only throttle if the backing device it is
1873 * writing to is congested. In other cases it is safe to throttle.
1874 */
1875static int current_may_throttle(void)
1876{
1877 return !(current->flags & PF_LESS_THROTTLE) ||
1878 current->backing_dev_info == NULL ||
1879 bdi_write_congested(current->backing_dev_info);
1880}
1881
1882/*
Mel Gormanb2e18752016-07-28 15:45:37 -07001883 * shrink_inactive_list() is a helper for shrink_node(). It returns the number
Andrew Morton1742f192006-03-22 00:08:21 -08001884 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001885 */
Mel Gorman66635622010-08-09 17:19:30 -07001886static noinline_for_stack unsigned long
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001887shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07001888 struct scan_control *sc, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001889{
1890 LIST_HEAD(page_list);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001891 unsigned long nr_scanned;
Andrew Morton05ff5132006-03-22 00:08:20 -08001892 unsigned long nr_reclaimed = 0;
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001893 unsigned long nr_taken;
Michal Hocko3c710c12017-02-22 15:44:27 -08001894 struct reclaim_stat stat = {};
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001895 isolate_mode_t isolate_mode = 0;
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001896 int file = is_file_lru(lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07001897 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001898 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
Michal Hockodb73ee02017-09-06 16:21:11 -07001899 bool stalled = false;
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001900
Mel Gorman599d0c92016-07-28 15:45:31 -07001901 while (unlikely(too_many_isolated(pgdat, file, sc))) {
Michal Hockodb73ee02017-09-06 16:21:11 -07001902 if (stalled)
1903 return 0;
1904
1905 /* wait a bit for the reclaimer. */
1906 msleep(100);
1907 stalled = true;
Rik van Riel35cd7812009-09-21 17:01:38 -07001908
1909 /* We are about to die and free our memory. Return now. */
1910 if (fatal_signal_pending(current))
1911 return SWAP_CLUSTER_MAX;
1912 }
1913
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 lru_add_drain();
Minchan Kimf80c0672011-10-31 17:06:55 -07001915
1916 if (!sc->may_unmap)
Hillf Danton61317282012-03-21 16:33:48 -07001917 isolate_mode |= ISOLATE_UNMAPPED;
Minchan Kimf80c0672011-10-31 17:06:55 -07001918
Mel Gorman599d0c92016-07-28 15:45:31 -07001919 spin_lock_irq(&pgdat->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001920
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001921 nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &page_list,
1922 &nr_scanned, sc, isolate_mode, lru);
Konstantin Khlebnikov95d918f2012-05-29 15:06:59 -07001923
Mel Gorman599d0c92016-07-28 15:45:31 -07001924 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07001925 reclaim_stat->recent_scanned[file] += nr_taken;
Konstantin Khlebnikov95d918f2012-05-29 15:06:59 -07001926
Roman Gushchin22621852017-07-06 15:40:25 -07001927 if (current_is_kswapd()) {
1928 if (global_reclaim(sc))
Mel Gorman599d0c92016-07-28 15:45:31 -07001929 __count_vm_events(PGSCAN_KSWAPD, nr_scanned);
Roman Gushchin22621852017-07-06 15:40:25 -07001930 count_memcg_events(lruvec_memcg(lruvec), PGSCAN_KSWAPD,
1931 nr_scanned);
1932 } else {
1933 if (global_reclaim(sc))
Mel Gorman599d0c92016-07-28 15:45:31 -07001934 __count_vm_events(PGSCAN_DIRECT, nr_scanned);
Roman Gushchin22621852017-07-06 15:40:25 -07001935 count_memcg_events(lruvec_memcg(lruvec), PGSCAN_DIRECT,
1936 nr_scanned);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001937 }
Mel Gorman599d0c92016-07-28 15:45:31 -07001938 spin_unlock_irq(&pgdat->lru_lock);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001939
Hillf Dantond563c052012-03-21 16:34:02 -07001940 if (nr_taken == 0)
Mel Gorman66635622010-08-09 17:19:30 -07001941 return 0;
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001942
Shaohua Lia128ca72017-05-03 14:52:22 -07001943 nr_reclaimed = shrink_page_list(&page_list, pgdat, sc, 0,
Michal Hocko3c710c12017-02-22 15:44:27 -08001944 &stat, false);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001945
Mel Gorman599d0c92016-07-28 15:45:31 -07001946 spin_lock_irq(&pgdat->lru_lock);
Hugh Dickins3f797682012-01-12 17:20:07 -08001947
Roman Gushchin22621852017-07-06 15:40:25 -07001948 if (current_is_kswapd()) {
1949 if (global_reclaim(sc))
Mel Gorman599d0c92016-07-28 15:45:31 -07001950 __count_vm_events(PGSTEAL_KSWAPD, nr_reclaimed);
Roman Gushchin22621852017-07-06 15:40:25 -07001951 count_memcg_events(lruvec_memcg(lruvec), PGSTEAL_KSWAPD,
1952 nr_reclaimed);
1953 } else {
1954 if (global_reclaim(sc))
Mel Gorman599d0c92016-07-28 15:45:31 -07001955 __count_vm_events(PGSTEAL_DIRECT, nr_reclaimed);
Roman Gushchin22621852017-07-06 15:40:25 -07001956 count_memcg_events(lruvec_memcg(lruvec), PGSTEAL_DIRECT,
1957 nr_reclaimed);
Ying Han904249a2012-04-25 16:01:48 -07001958 }
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001959
Konstantin Khlebnikov27ac81d2012-05-29 15:07:00 -07001960 putback_inactive_pages(lruvec, &page_list);
Hugh Dickins3f797682012-01-12 17:20:07 -08001961
Mel Gorman599d0c92016-07-28 15:45:31 -07001962 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
Hugh Dickins3f797682012-01-12 17:20:07 -08001963
Mel Gorman599d0c92016-07-28 15:45:31 -07001964 spin_unlock_irq(&pgdat->lru_lock);
Hugh Dickins3f797682012-01-12 17:20:07 -08001965
Johannes Weiner747db952014-08-08 14:19:24 -07001966 mem_cgroup_uncharge_list(&page_list);
Mel Gorman2d4894b2017-11-15 17:37:59 -08001967 free_unref_page_list(&page_list);
Mel Gormane11da5b2010-10-26 14:21:40 -07001968
Mel Gorman92df3a72011-10-31 17:07:56 -07001969 /*
Andrey Ryabinin1c610d52018-03-22 16:17:42 -07001970 * If dirty pages are scanned that are not queued for IO, it
1971 * implies that flushers are not doing their job. This can
1972 * happen when memory pressure pushes dirty pages to the end of
1973 * the LRU before the dirty limits are breached and the dirty
1974 * data has expired. It can also happen when the proportion of
1975 * dirty pages grows not through writes but through memory
1976 * pressure reclaiming all the clean cache. And in some cases,
1977 * the flushers simply cannot keep up with the allocation
1978 * rate. Nudge the flusher threads in case they are asleep.
1979 */
1980 if (stat.nr_unqueued_dirty == nr_taken)
1981 wakeup_flusher_threads(WB_REASON_VMSCAN);
1982
Andrey Ryabinind108c772018-04-10 16:27:59 -07001983 sc->nr.dirty += stat.nr_dirty;
1984 sc->nr.congested += stat.nr_congested;
1985 sc->nr.unqueued_dirty += stat.nr_unqueued_dirty;
1986 sc->nr.writeback += stat.nr_writeback;
1987 sc->nr.immediate += stat.nr_immediate;
1988 sc->nr.taken += nr_taken;
1989 if (file)
1990 sc->nr.file_taken += nr_taken;
Mel Gorman8e950282013-07-03 15:02:02 -07001991
Mel Gorman599d0c92016-07-28 15:45:31 -07001992 trace_mm_vmscan_lru_shrink_inactive(pgdat->node_id,
Steven Rostedtd51d1e62018-04-10 16:28:07 -07001993 nr_scanned, nr_reclaimed, &stat, sc->priority, file);
Andrew Morton05ff5132006-03-22 00:08:20 -08001994 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001995}
1996
Martin Bligh3bb1a8522006-10-28 10:38:24 -07001997/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001998 * This moves pages from the active list to the inactive list.
1999 *
2000 * We move them the other way if the page is referenced by one or more
2001 * processes, from rmap.
2002 *
2003 * If the pages are mostly unmapped, the processing is fast and it is
Mel Gormana52633d2016-07-28 15:45:28 -07002004 * appropriate to hold zone_lru_lock across the whole operation. But if
Linus Torvalds1da177e2005-04-16 15:20:36 -07002005 * the pages are mapped, the processing is slow (page_referenced()) so we
Mel Gormana52633d2016-07-28 15:45:28 -07002006 * should drop zone_lru_lock around each page. It's impossible to balance
Linus Torvalds1da177e2005-04-16 15:20:36 -07002007 * this, so instead we remove the pages from the LRU while processing them.
2008 * It is safe to rely on PG_active against the non-LRU pages in here because
2009 * nobody will play with that bit on a non-LRU page.
2010 *
Joonsoo Kim0139aa72016-05-19 17:10:49 -07002011 * The downside is that we have to touch page->_refcount against each page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002012 * But we had to alter page->flags anyway.
Michal Hocko9d998b42017-02-22 15:44:18 -08002013 *
2014 * Returns the number of pages moved to the given lru.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002015 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002016
Michal Hocko9d998b42017-02-22 15:44:18 -08002017static unsigned move_active_pages_to_lru(struct lruvec *lruvec,
Wu Fengguang3eb41402009-06-16 15:33:13 -07002018 struct list_head *list,
Hugh Dickins2bcf8872012-01-12 17:19:56 -08002019 struct list_head *pages_to_free,
Wu Fengguang3eb41402009-06-16 15:33:13 -07002020 enum lru_list lru)
2021{
Mel Gorman599d0c92016-07-28 15:45:31 -07002022 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Wu Fengguang3eb41402009-06-16 15:33:13 -07002023 struct page *page;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002024 int nr_pages;
Michal Hocko9d998b42017-02-22 15:44:18 -08002025 int nr_moved = 0;
Wu Fengguang3eb41402009-06-16 15:33:13 -07002026
Wu Fengguang3eb41402009-06-16 15:33:13 -07002027 while (!list_empty(list)) {
2028 page = lru_to_page(list);
Mel Gorman599d0c92016-07-28 15:45:31 -07002029 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Wu Fengguang3eb41402009-06-16 15:33:13 -07002030
Sasha Levin309381fea2014-01-23 15:52:54 -08002031 VM_BUG_ON_PAGE(PageLRU(page), page);
Wu Fengguang3eb41402009-06-16 15:33:13 -07002032 SetPageLRU(page);
2033
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002034 nr_pages = hpage_nr_pages(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002035 update_lru_size(lruvec, lru, page_zonenum(page), nr_pages);
Johannes Weiner925b7672012-01-12 17:18:15 -08002036 list_move(&page->lru, &lruvec->lists[lru]);
Wu Fengguang3eb41402009-06-16 15:33:13 -07002037
Hugh Dickins2bcf8872012-01-12 17:19:56 -08002038 if (put_page_testzero(page)) {
2039 __ClearPageLRU(page);
2040 __ClearPageActive(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07002041 del_page_from_lru_list(page, lruvec, lru);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08002042
2043 if (unlikely(PageCompound(page))) {
Mel Gorman599d0c92016-07-28 15:45:31 -07002044 spin_unlock_irq(&pgdat->lru_lock);
Johannes Weiner747db952014-08-08 14:19:24 -07002045 mem_cgroup_uncharge(page);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08002046 (*get_compound_page_dtor(page))(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07002047 spin_lock_irq(&pgdat->lru_lock);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08002048 } else
2049 list_add(&page->lru, pages_to_free);
Michal Hocko9d998b42017-02-22 15:44:18 -08002050 } else {
2051 nr_moved += nr_pages;
Wu Fengguang3eb41402009-06-16 15:33:13 -07002052 }
2053 }
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07002054
Roman Gushchin22621852017-07-06 15:40:25 -07002055 if (!is_active_lru(lru)) {
Michal Hockof0958902017-02-22 15:45:55 -08002056 __count_vm_events(PGDEACTIVATE, nr_moved);
Roman Gushchin22621852017-07-06 15:40:25 -07002057 count_memcg_events(lruvec_memcg(lruvec), PGDEACTIVATE,
2058 nr_moved);
2059 }
Michal Hocko9d998b42017-02-22 15:44:18 -08002060
2061 return nr_moved;
Wu Fengguang3eb41402009-06-16 15:33:13 -07002062}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002063
Hugh Dickinsf6260122012-01-12 17:20:06 -08002064static void shrink_active_list(unsigned long nr_to_scan,
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07002065 struct lruvec *lruvec,
Johannes Weinerf16015f2012-01-12 17:17:52 -08002066 struct scan_control *sc,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002067 enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07002069 unsigned long nr_taken;
Hugh Dickinsf6260122012-01-12 17:20:06 -08002070 unsigned long nr_scanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07002071 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002072 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07002073 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07002074 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002075 struct page *page;
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07002076 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
Michal Hocko9d998b42017-02-22 15:44:18 -08002077 unsigned nr_deactivate, nr_activate;
2078 unsigned nr_rotated = 0;
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07002079 isolate_mode_t isolate_mode = 0;
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07002080 int file = is_file_lru(lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07002081 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002082
2083 lru_add_drain();
Minchan Kimf80c0672011-10-31 17:06:55 -07002084
2085 if (!sc->may_unmap)
Hillf Danton61317282012-03-21 16:33:48 -07002086 isolate_mode |= ISOLATE_UNMAPPED;
Minchan Kimf80c0672011-10-31 17:06:55 -07002087
Mel Gorman599d0c92016-07-28 15:45:31 -07002088 spin_lock_irq(&pgdat->lru_lock);
Johannes Weiner925b7672012-01-12 17:18:15 -08002089
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07002090 nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &l_hold,
2091 &nr_scanned, sc, isolate_mode, lru);
Johannes Weiner89b5fae2012-01-12 17:17:50 -08002092
Mel Gorman599d0c92016-07-28 15:45:31 -07002093 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
Johannes Weinerb7c46d12009-09-21 17:02:56 -07002094 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002095
Mel Gorman599d0c92016-07-28 15:45:31 -07002096 __count_vm_events(PGREFILL, nr_scanned);
Roman Gushchin22621852017-07-06 15:40:25 -07002097 count_memcg_events(lruvec_memcg(lruvec), PGREFILL, nr_scanned);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07002098
Mel Gorman599d0c92016-07-28 15:45:31 -07002099 spin_unlock_irq(&pgdat->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002100
Linus Torvalds1da177e2005-04-16 15:20:36 -07002101 while (!list_empty(&l_hold)) {
2102 cond_resched();
2103 page = lru_to_page(&l_hold);
2104 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07002105
Hugh Dickins39b5f292012-10-08 16:33:18 -07002106 if (unlikely(!page_evictable(page))) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07002107 putback_lru_page(page);
2108 continue;
2109 }
2110
Mel Gormancc715d92012-03-21 16:34:00 -07002111 if (unlikely(buffer_heads_over_limit)) {
2112 if (page_has_private(page) && trylock_page(page)) {
2113 if (page_has_private(page))
2114 try_to_release_page(page, 0);
2115 unlock_page(page);
2116 }
2117 }
2118
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07002119 if (page_referenced(page, 0, sc->target_mem_cgroup,
2120 &vm_flags)) {
Rik van Riel9992af12011-01-13 15:47:13 -08002121 nr_rotated += hpage_nr_pages(page);
Wu Fengguang8cab4752009-06-16 15:33:12 -07002122 /*
2123 * Identify referenced, file-backed active pages and
2124 * give them one more trip around the active list. So
2125 * that executable code get better chances to stay in
2126 * memory under moderate memory pressure. Anon pages
2127 * are not likely to be evicted by use-once streaming
2128 * IO, plus JVM can create lots of anon VM_EXEC pages,
2129 * so we ignore them here.
2130 */
Wu Fengguang41e20982009-10-26 16:49:53 -07002131 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07002132 list_add(&page->lru, &l_active);
2133 continue;
2134 }
2135 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07002136
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07002137 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002138 list_add(&page->lru, &l_inactive);
2139 }
2140
Andrew Mortonb5557492009-01-06 14:40:13 -08002141 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07002142 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08002143 */
Mel Gorman599d0c92016-07-28 15:45:31 -07002144 spin_lock_irq(&pgdat->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002145 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07002146 * Count referenced pages from currently used mappings as rotated,
2147 * even though only some of them are actually re-activated. This
2148 * helps balance scan pressure between file and anonymous pages in
Jerome Marchand7c0db9e2014-08-06 16:08:01 -07002149 * get_scan_count.
Rik van Riel7e9cd482008-10-18 20:26:35 -07002150 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07002151 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07002152
Michal Hocko9d998b42017-02-22 15:44:18 -08002153 nr_activate = move_active_pages_to_lru(lruvec, &l_active, &l_hold, lru);
2154 nr_deactivate = move_active_pages_to_lru(lruvec, &l_inactive, &l_hold, lru - LRU_ACTIVE);
Mel Gorman599d0c92016-07-28 15:45:31 -07002155 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
2156 spin_unlock_irq(&pgdat->lru_lock);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08002157
Johannes Weiner747db952014-08-08 14:19:24 -07002158 mem_cgroup_uncharge_list(&l_hold);
Mel Gorman2d4894b2017-11-15 17:37:59 -08002159 free_unref_page_list(&l_hold);
Michal Hocko9d998b42017-02-22 15:44:18 -08002160 trace_mm_vmscan_lru_shrink_active(pgdat->node_id, nr_taken, nr_activate,
2161 nr_deactivate, nr_rotated, sc->priority, file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162}
2163
Rik van Riel59dc76b2016-05-20 16:56:31 -07002164/*
2165 * The inactive anon list should be small enough that the VM never has
2166 * to do too much work.
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002167 *
Rik van Riel59dc76b2016-05-20 16:56:31 -07002168 * The inactive file list should be small enough to leave most memory
2169 * to the established workingset on the scan-resistant active list,
2170 * but large enough to avoid thrashing the aggregate readahead window.
2171 *
2172 * Both inactive lists should also be large enough that each inactive
2173 * page has a chance to be referenced again before it is reclaimed.
2174 *
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002175 * If that fails and refaulting is observed, the inactive list grows.
2176 *
Rik van Riel59dc76b2016-05-20 16:56:31 -07002177 * The inactive_ratio is the target ratio of ACTIVE to INACTIVE pages
Andrey Ryabinin3a50d142017-11-15 17:34:15 -08002178 * on this LRU, maintained by the pageout code. An inactive_ratio
Rik van Riel59dc76b2016-05-20 16:56:31 -07002179 * of 3 means 3:1 or 25% of the pages are kept on the inactive list.
2180 *
2181 * total target max
2182 * memory ratio inactive
2183 * -------------------------------------
2184 * 10MB 1 5MB
2185 * 100MB 1 50MB
2186 * 1GB 3 250MB
2187 * 10GB 10 0.9GB
2188 * 100GB 31 3GB
2189 * 1TB 101 10GB
2190 * 10TB 320 32GB
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002191 */
Mel Gormanf8d1a312016-07-28 15:47:34 -07002192static bool inactive_list_is_low(struct lruvec *lruvec, bool file,
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002193 struct mem_cgroup *memcg,
2194 struct scan_control *sc, bool actual_reclaim)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08002195{
Michal Hockofd538802017-02-22 15:45:58 -08002196 enum lru_list active_lru = file * LRU_FILE + LRU_ACTIVE;
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002197 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
2198 enum lru_list inactive_lru = file * LRU_FILE;
2199 unsigned long inactive, active;
2200 unsigned long inactive_ratio;
2201 unsigned long refaults;
Rik van Riel59dc76b2016-05-20 16:56:31 -07002202 unsigned long gb;
2203
Minchan Kim74e3f3c2010-10-26 14:21:31 -07002204 /*
2205 * If we don't have swap space, anonymous page deactivation
2206 * is pointless.
2207 */
Rik van Riel59dc76b2016-05-20 16:56:31 -07002208 if (!file && !total_swap_pages)
Yaowei Bai42e2e452015-11-05 18:47:36 -08002209 return false;
Minchan Kim74e3f3c2010-10-26 14:21:31 -07002210
Michal Hockofd538802017-02-22 15:45:58 -08002211 inactive = lruvec_lru_size(lruvec, inactive_lru, sc->reclaim_idx);
2212 active = lruvec_lru_size(lruvec, active_lru, sc->reclaim_idx);
Mel Gormanf8d1a312016-07-28 15:47:34 -07002213
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002214 if (memcg)
Johannes Weinerccda7f42017-05-03 14:55:16 -07002215 refaults = memcg_page_state(memcg, WORKINGSET_ACTIVATE);
Rik van Rielb39415b2009-12-14 17:59:48 -08002216 else
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002217 refaults = node_page_state(pgdat, WORKINGSET_ACTIVATE);
Rik van Riel59dc76b2016-05-20 16:56:31 -07002218
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002219 /*
2220 * When refaults are being observed, it means a new workingset
2221 * is being established. Disable active list protection to get
2222 * rid of the stale workingset quickly.
2223 */
2224 if (file && actual_reclaim && lruvec->refaults != refaults) {
2225 inactive_ratio = 0;
2226 } else {
2227 gb = (inactive + active) >> (30 - PAGE_SHIFT);
2228 if (gb)
2229 inactive_ratio = int_sqrt(10 * gb);
2230 else
2231 inactive_ratio = 1;
2232 }
2233
2234 if (actual_reclaim)
2235 trace_mm_vmscan_inactive_list_is_low(pgdat->node_id, sc->reclaim_idx,
2236 lruvec_lru_size(lruvec, inactive_lru, MAX_NR_ZONES), inactive,
2237 lruvec_lru_size(lruvec, active_lru, MAX_NR_ZONES), active,
2238 inactive_ratio, file);
Michal Hockofd538802017-02-22 15:45:58 -08002239
Rik van Riel59dc76b2016-05-20 16:56:31 -07002240 return inactive * inactive_ratio < active;
Rik van Rielb39415b2009-12-14 17:59:48 -08002241}
2242
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002243static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002244 struct lruvec *lruvec, struct mem_cgroup *memcg,
2245 struct scan_control *sc)
Christoph Lameterb69408e2008-10-18 20:26:14 -07002246{
Rik van Rielb39415b2009-12-14 17:59:48 -08002247 if (is_active_lru(lru)) {
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002248 if (inactive_list_is_low(lruvec, is_file_lru(lru),
2249 memcg, sc, true))
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07002250 shrink_active_list(nr_to_scan, lruvec, sc, lru);
Rik van Riel556adec2008-10-18 20:26:34 -07002251 return 0;
2252 }
2253
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07002254 return shrink_inactive_list(nr_to_scan, lruvec, sc, lru);
Christoph Lameterb69408e2008-10-18 20:26:14 -07002255}
2256
Johannes Weiner9a265112013-02-22 16:32:17 -08002257enum scan_balance {
2258 SCAN_EQUAL,
2259 SCAN_FRACT,
2260 SCAN_ANON,
2261 SCAN_FILE,
2262};
2263
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002265 * Determine how aggressively the anon and file LRU lists should be
2266 * scanned. The relative value of each set of LRU lists is determined
2267 * by looking at the fraction of the pages scanned we did rotate back
2268 * onto the active list instead of evict.
2269 *
Wanpeng Libe7bd592012-06-14 20:41:02 +08002270 * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan
2271 * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002272 */
Vladimir Davydov33377672016-01-20 15:02:59 -08002273static void get_scan_count(struct lruvec *lruvec, struct mem_cgroup *memcg,
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002274 struct scan_control *sc, unsigned long *nr,
2275 unsigned long *lru_pages)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002276{
Vladimir Davydov33377672016-01-20 15:02:59 -08002277 int swappiness = mem_cgroup_swappiness(memcg);
Konstantin Khlebnikov90126372012-05-29 15:07:01 -07002278 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
Johannes Weiner9a265112013-02-22 16:32:17 -08002279 u64 fraction[2];
2280 u64 denominator = 0; /* gcc */
Mel Gorman599d0c92016-07-28 15:45:31 -07002281 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Johannes Weiner9a265112013-02-22 16:32:17 -08002282 unsigned long anon_prio, file_prio;
2283 enum scan_balance scan_balance;
Johannes Weiner0bf14572014-04-08 16:04:10 -07002284 unsigned long anon, file;
Johannes Weiner9a265112013-02-22 16:32:17 -08002285 unsigned long ap, fp;
2286 enum lru_list lru;
Shaohua Li76a33fc2010-05-24 14:32:36 -07002287
2288 /* If we have no swap space, do not bother scanning anon pages. */
Vladimir Davydovd8b38432016-01-20 15:03:07 -08002289 if (!sc->may_swap || mem_cgroup_get_nr_swap_pages(memcg) <= 0) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002290 scan_balance = SCAN_FILE;
Shaohua Li76a33fc2010-05-24 14:32:36 -07002291 goto out;
2292 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002293
Johannes Weiner10316b32013-02-22 16:32:14 -08002294 /*
2295 * Global reclaim will swap to prevent OOM even with no
2296 * swappiness, but memcg users want to use this knob to
2297 * disable swapping for individual groups completely when
2298 * using the memory controller's swap limit feature would be
2299 * too expensive.
2300 */
Johannes Weiner02695172014-08-06 16:06:17 -07002301 if (!global_reclaim(sc) && !swappiness) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002302 scan_balance = SCAN_FILE;
Johannes Weiner10316b32013-02-22 16:32:14 -08002303 goto out;
2304 }
2305
2306 /*
2307 * Do not apply any pressure balancing cleverness when the
2308 * system is close to OOM, scan both anon and file equally
2309 * (unless the swappiness setting disagrees with swapping).
2310 */
Johannes Weiner02695172014-08-06 16:06:17 -07002311 if (!sc->priority && swappiness) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002312 scan_balance = SCAN_EQUAL;
Johannes Weiner10316b32013-02-22 16:32:14 -08002313 goto out;
2314 }
2315
Johannes Weiner11d16c22013-02-22 16:32:15 -08002316 /*
Johannes Weiner62376252014-05-06 12:50:07 -07002317 * Prevent the reclaimer from falling into the cache trap: as
2318 * cache pages start out inactive, every cache fault will tip
2319 * the scan balance towards the file LRU. And as the file LRU
2320 * shrinks, so does the window for rotation from references.
2321 * This means we have a runaway feedback loop where a tiny
2322 * thrashing file LRU becomes infinitely more attractive than
2323 * anon pages. Try to detect this based on file LRU size.
2324 */
2325 if (global_reclaim(sc)) {
Mel Gorman599d0c92016-07-28 15:45:31 -07002326 unsigned long pgdatfile;
2327 unsigned long pgdatfree;
2328 int z;
2329 unsigned long total_high_wmark = 0;
Johannes Weiner62376252014-05-06 12:50:07 -07002330
Mel Gorman599d0c92016-07-28 15:45:31 -07002331 pgdatfree = sum_zone_node_page_state(pgdat->node_id, NR_FREE_PAGES);
2332 pgdatfile = node_page_state(pgdat, NR_ACTIVE_FILE) +
2333 node_page_state(pgdat, NR_INACTIVE_FILE);
Jerome Marchand2ab051e2014-08-06 16:08:03 -07002334
Mel Gorman599d0c92016-07-28 15:45:31 -07002335 for (z = 0; z < MAX_NR_ZONES; z++) {
2336 struct zone *zone = &pgdat->node_zones[z];
Mel Gorman6aa303d2016-09-01 16:14:55 -07002337 if (!managed_zone(zone))
Mel Gorman599d0c92016-07-28 15:45:31 -07002338 continue;
2339
2340 total_high_wmark += high_wmark_pages(zone);
2341 }
2342
2343 if (unlikely(pgdatfile + pgdatfree <= total_high_wmark)) {
David Rientjes06226222017-07-10 15:47:20 -07002344 /*
2345 * Force SCAN_ANON if there are enough inactive
2346 * anonymous pages on the LRU in eligible zones.
2347 * Otherwise, the small LRU gets thrashed.
2348 */
2349 if (!inactive_list_is_low(lruvec, false, memcg, sc, false) &&
2350 lruvec_lru_size(lruvec, LRU_INACTIVE_ANON, sc->reclaim_idx)
2351 >> sc->priority) {
2352 scan_balance = SCAN_ANON;
2353 goto out;
2354 }
Johannes Weiner62376252014-05-06 12:50:07 -07002355 }
2356 }
2357
2358 /*
Vladimir Davydov316bda02016-01-14 15:19:38 -08002359 * If there is enough inactive page cache, i.e. if the size of the
2360 * inactive list is greater than that of the active list *and* the
2361 * inactive list actually has some pages to scan on this priority, we
2362 * do not reclaim anything from the anonymous working set right now.
2363 * Without the second condition we could end up never scanning an
2364 * lruvec even if it has plenty of old anonymous pages unless the
2365 * system is under heavy pressure.
Johannes Weiner7c5bd702013-02-22 16:32:10 -08002366 */
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002367 if (!inactive_list_is_low(lruvec, true, memcg, sc, false) &&
Michal Hocko71ab6cf2017-02-22 15:46:01 -08002368 lruvec_lru_size(lruvec, LRU_INACTIVE_FILE, sc->reclaim_idx) >> sc->priority) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002369 scan_balance = SCAN_FILE;
Johannes Weiner7c5bd702013-02-22 16:32:10 -08002370 goto out;
2371 }
2372
Johannes Weiner9a265112013-02-22 16:32:17 -08002373 scan_balance = SCAN_FRACT;
2374
Johannes Weiner7c5bd702013-02-22 16:32:10 -08002375 /*
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07002376 * With swappiness at 100, anonymous and file have the same priority.
2377 * This scanning priority is essentially the inverse of IO cost.
2378 */
Johannes Weiner02695172014-08-06 16:06:17 -07002379 anon_prio = swappiness;
Hugh Dickins75b00af2012-05-29 15:07:09 -07002380 file_prio = 200 - anon_prio;
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07002381
2382 /*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002383 * OK, so we have swap space and a fair amount of page cache
2384 * pages. We use the recently rotated / recently scanned
2385 * ratios to determine how valuable each cache is.
2386 *
2387 * Because workloads change over time (and to avoid overflow)
2388 * we keep these statistics as a floating average, which ends
2389 * up weighing recent references more than old ones.
2390 *
2391 * anon in [0], file in [1]
2392 */
Jerome Marchand2ab051e2014-08-06 16:08:03 -07002393
Michal Hockofd538802017-02-22 15:45:58 -08002394 anon = lruvec_lru_size(lruvec, LRU_ACTIVE_ANON, MAX_NR_ZONES) +
2395 lruvec_lru_size(lruvec, LRU_INACTIVE_ANON, MAX_NR_ZONES);
2396 file = lruvec_lru_size(lruvec, LRU_ACTIVE_FILE, MAX_NR_ZONES) +
2397 lruvec_lru_size(lruvec, LRU_INACTIVE_FILE, MAX_NR_ZONES);
Jerome Marchand2ab051e2014-08-06 16:08:03 -07002398
Mel Gorman599d0c92016-07-28 15:45:31 -07002399 spin_lock_irq(&pgdat->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002400 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002401 reclaim_stat->recent_scanned[0] /= 2;
2402 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002403 }
2404
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002405 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002406 reclaim_stat->recent_scanned[1] /= 2;
2407 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002408 }
2409
2410 /*
Rik van Riel00d80892008-11-19 15:36:44 -08002411 * The amount of pressure on anon vs file pages is inversely
2412 * proportional to the fraction of recently scanned pages on
2413 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002414 */
Satoru Moriyafe350042012-05-29 15:06:47 -07002415 ap = anon_prio * (reclaim_stat->recent_scanned[0] + 1);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002416 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002417
Satoru Moriyafe350042012-05-29 15:06:47 -07002418 fp = file_prio * (reclaim_stat->recent_scanned[1] + 1);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002419 fp /= reclaim_stat->recent_rotated[1] + 1;
Mel Gorman599d0c92016-07-28 15:45:31 -07002420 spin_unlock_irq(&pgdat->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002421
Shaohua Li76a33fc2010-05-24 14:32:36 -07002422 fraction[0] = ap;
2423 fraction[1] = fp;
2424 denominator = ap + fp + 1;
2425out:
Johannes Weiner688035f2017-05-03 14:52:07 -07002426 *lru_pages = 0;
2427 for_each_evictable_lru(lru) {
2428 int file = is_file_lru(lru);
2429 unsigned long size;
2430 unsigned long scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002431
Johannes Weiner688035f2017-05-03 14:52:07 -07002432 size = lruvec_lru_size(lruvec, lru, sc->reclaim_idx);
2433 scan = size >> sc->priority;
2434 /*
2435 * If the cgroup's already been deleted, make sure to
2436 * scrape out the remaining cache.
2437 */
2438 if (!scan && !mem_cgroup_online(memcg))
2439 scan = min(size, SWAP_CLUSTER_MAX);
Johannes Weiner9a265112013-02-22 16:32:17 -08002440
Johannes Weiner688035f2017-05-03 14:52:07 -07002441 switch (scan_balance) {
2442 case SCAN_EQUAL:
2443 /* Scan lists relative to size */
2444 break;
2445 case SCAN_FRACT:
Johannes Weiner9a265112013-02-22 16:32:17 -08002446 /*
Johannes Weiner688035f2017-05-03 14:52:07 -07002447 * Scan types proportional to swappiness and
2448 * their relative recent reclaim efficiency.
Roman Gushchina5e88092018-10-26 15:03:27 -07002449 * Make sure we don't miss the last page
2450 * because of a round-off error.
Johannes Weiner9a265112013-02-22 16:32:17 -08002451 */
Roman Gushchina5e88092018-10-26 15:03:27 -07002452 scan = DIV64_U64_ROUND_UP(scan * fraction[file],
2453 denominator);
Johannes Weiner688035f2017-05-03 14:52:07 -07002454 break;
2455 case SCAN_FILE:
2456 case SCAN_ANON:
2457 /* Scan one type exclusively */
2458 if ((scan_balance == SCAN_FILE) != file) {
2459 size = 0;
2460 scan = 0;
2461 }
2462 break;
2463 default:
2464 /* Look ma, no brain */
2465 BUG();
Johannes Weiner9a265112013-02-22 16:32:17 -08002466 }
Johannes Weiner688035f2017-05-03 14:52:07 -07002467
2468 *lru_pages += size;
2469 nr[lru] = scan;
Shaohua Li76a33fc2010-05-24 14:32:36 -07002470 }
Wu Fengguang6e08a362009-06-16 15:32:29 -07002471}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002472
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002473/*
Mel Gormana9dd0a82016-07-28 15:46:02 -07002474 * This is a basic per-node page freer. Used by both kswapd and direct reclaim.
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002475 */
Mel Gormana9dd0a82016-07-28 15:46:02 -07002476static void shrink_node_memcg(struct pglist_data *pgdat, struct mem_cgroup *memcg,
Vladimir Davydov33377672016-01-20 15:02:59 -08002477 struct scan_control *sc, unsigned long *lru_pages)
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002478{
Mel Gormanef8f2322016-07-28 15:46:05 -07002479 struct lruvec *lruvec = mem_cgroup_lruvec(pgdat, memcg);
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002480 unsigned long nr[NR_LRU_LISTS];
Mel Gormane82e0562013-07-03 15:01:44 -07002481 unsigned long targets[NR_LRU_LISTS];
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002482 unsigned long nr_to_scan;
2483 enum lru_list lru;
2484 unsigned long nr_reclaimed = 0;
2485 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
2486 struct blk_plug plug;
Mel Gorman1a501902014-06-04 16:10:49 -07002487 bool scan_adjusted;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002488
Vladimir Davydov33377672016-01-20 15:02:59 -08002489 get_scan_count(lruvec, memcg, sc, nr, lru_pages);
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002490
Mel Gormane82e0562013-07-03 15:01:44 -07002491 /* Record the original scan target for proportional adjustments later */
2492 memcpy(targets, nr, sizeof(nr));
2493
Mel Gorman1a501902014-06-04 16:10:49 -07002494 /*
2495 * Global reclaiming within direct reclaim at DEF_PRIORITY is a normal
2496 * event that can occur when there is little memory pressure e.g.
2497 * multiple streaming readers/writers. Hence, we do not abort scanning
2498 * when the requested number of pages are reclaimed when scanning at
2499 * DEF_PRIORITY on the assumption that the fact we are direct
2500 * reclaiming implies that kswapd is not keeping up and it is best to
2501 * do a batch of work at once. For memcg reclaim one check is made to
2502 * abort proportional reclaim if either the file or anon lru has already
2503 * dropped to zero at the first pass.
2504 */
2505 scan_adjusted = (global_reclaim(sc) && !current_is_kswapd() &&
2506 sc->priority == DEF_PRIORITY);
2507
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002508 blk_start_plug(&plug);
2509 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
2510 nr[LRU_INACTIVE_FILE]) {
Mel Gormane82e0562013-07-03 15:01:44 -07002511 unsigned long nr_anon, nr_file, percentage;
2512 unsigned long nr_scanned;
2513
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002514 for_each_evictable_lru(lru) {
2515 if (nr[lru]) {
2516 nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX);
2517 nr[lru] -= nr_to_scan;
2518
2519 nr_reclaimed += shrink_list(lru, nr_to_scan,
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002520 lruvec, memcg, sc);
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002521 }
2522 }
Mel Gormane82e0562013-07-03 15:01:44 -07002523
Michal Hockobd041732016-12-02 17:26:48 -08002524 cond_resched();
2525
Mel Gormane82e0562013-07-03 15:01:44 -07002526 if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
2527 continue;
2528
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002529 /*
Mel Gormane82e0562013-07-03 15:01:44 -07002530 * For kswapd and memcg, reclaim at least the number of pages
Mel Gorman1a501902014-06-04 16:10:49 -07002531 * requested. Ensure that the anon and file LRUs are scanned
Mel Gormane82e0562013-07-03 15:01:44 -07002532 * proportionally what was requested by get_scan_count(). We
2533 * stop reclaiming one LRU and reduce the amount scanning
2534 * proportional to the original scan target.
2535 */
2536 nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE];
2537 nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON];
2538
Mel Gorman1a501902014-06-04 16:10:49 -07002539 /*
2540 * It's just vindictive to attack the larger once the smaller
2541 * has gone to zero. And given the way we stop scanning the
2542 * smaller below, this makes sure that we only make one nudge
2543 * towards proportionality once we've got nr_to_reclaim.
2544 */
2545 if (!nr_file || !nr_anon)
2546 break;
2547
Mel Gormane82e0562013-07-03 15:01:44 -07002548 if (nr_file > nr_anon) {
2549 unsigned long scan_target = targets[LRU_INACTIVE_ANON] +
2550 targets[LRU_ACTIVE_ANON] + 1;
2551 lru = LRU_BASE;
2552 percentage = nr_anon * 100 / scan_target;
2553 } else {
2554 unsigned long scan_target = targets[LRU_INACTIVE_FILE] +
2555 targets[LRU_ACTIVE_FILE] + 1;
2556 lru = LRU_FILE;
2557 percentage = nr_file * 100 / scan_target;
2558 }
2559
2560 /* Stop scanning the smaller of the LRU */
2561 nr[lru] = 0;
2562 nr[lru + LRU_ACTIVE] = 0;
2563
2564 /*
2565 * Recalculate the other LRU scan count based on its original
2566 * scan target and the percentage scanning already complete
2567 */
2568 lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE;
2569 nr_scanned = targets[lru] - nr[lru];
2570 nr[lru] = targets[lru] * (100 - percentage) / 100;
2571 nr[lru] -= min(nr[lru], nr_scanned);
2572
2573 lru += LRU_ACTIVE;
2574 nr_scanned = targets[lru] - nr[lru];
2575 nr[lru] = targets[lru] * (100 - percentage) / 100;
2576 nr[lru] -= min(nr[lru], nr_scanned);
2577
2578 scan_adjusted = true;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002579 }
2580 blk_finish_plug(&plug);
2581 sc->nr_reclaimed += nr_reclaimed;
2582
2583 /*
2584 * Even if we did not try to evict anon pages at all, we want to
2585 * rebalance the anon lru active/inactive ratio.
2586 */
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002587 if (inactive_list_is_low(lruvec, false, memcg, sc, true))
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002588 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
2589 sc, LRU_ACTIVE_ANON);
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002590}
2591
Mel Gorman23b9da52012-05-29 15:06:20 -07002592/* Use reclaim/compaction for costly allocs or under memory pressure */
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002593static bool in_reclaim_compaction(struct scan_control *sc)
Mel Gorman23b9da52012-05-29 15:06:20 -07002594{
Kirill A. Shutemovd84da3f2012-12-11 16:00:31 -08002595 if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
Mel Gorman23b9da52012-05-29 15:06:20 -07002596 (sc->order > PAGE_ALLOC_COSTLY_ORDER ||
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002597 sc->priority < DEF_PRIORITY - 2))
Mel Gorman23b9da52012-05-29 15:06:20 -07002598 return true;
2599
2600 return false;
2601}
2602
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002603/*
Mel Gorman23b9da52012-05-29 15:06:20 -07002604 * Reclaim/compaction is used for high-order allocation requests. It reclaims
2605 * order-0 pages before compacting the zone. should_continue_reclaim() returns
2606 * true if more pages should be reclaimed such that when the page allocator
2607 * calls try_to_compact_zone() that it will have enough free pages to succeed.
2608 * It will give up earlier than that if there is difficulty reclaiming pages.
Mel Gorman3e7d3442011-01-13 15:45:56 -08002609 */
Mel Gormana9dd0a82016-07-28 15:46:02 -07002610static inline bool should_continue_reclaim(struct pglist_data *pgdat,
Mel Gorman3e7d3442011-01-13 15:45:56 -08002611 unsigned long nr_reclaimed,
2612 unsigned long nr_scanned,
2613 struct scan_control *sc)
2614{
2615 unsigned long pages_for_compaction;
2616 unsigned long inactive_lru_pages;
Mel Gormana9dd0a82016-07-28 15:46:02 -07002617 int z;
Mel Gorman3e7d3442011-01-13 15:45:56 -08002618
2619 /* If not in reclaim/compaction mode, stop */
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002620 if (!in_reclaim_compaction(sc))
Mel Gorman3e7d3442011-01-13 15:45:56 -08002621 return false;
2622
Mel Gorman28765922011-02-25 14:44:20 -08002623 /* Consider stopping depending on scan and reclaim activity */
Michal Hockodcda9b02017-07-12 14:36:45 -07002624 if (sc->gfp_mask & __GFP_RETRY_MAYFAIL) {
Mel Gorman28765922011-02-25 14:44:20 -08002625 /*
Michal Hockodcda9b02017-07-12 14:36:45 -07002626 * For __GFP_RETRY_MAYFAIL allocations, stop reclaiming if the
Mel Gorman28765922011-02-25 14:44:20 -08002627 * full LRU list has been scanned and we are still failing
2628 * to reclaim pages. This full LRU scan is potentially
Michal Hockodcda9b02017-07-12 14:36:45 -07002629 * expensive but a __GFP_RETRY_MAYFAIL caller really wants to succeed
Mel Gorman28765922011-02-25 14:44:20 -08002630 */
2631 if (!nr_reclaimed && !nr_scanned)
2632 return false;
2633 } else {
2634 /*
Michal Hockodcda9b02017-07-12 14:36:45 -07002635 * For non-__GFP_RETRY_MAYFAIL allocations which can presumably
Mel Gorman28765922011-02-25 14:44:20 -08002636 * fail without consequence, stop if we failed to reclaim
2637 * any pages from the last SWAP_CLUSTER_MAX number of
2638 * pages that were scanned. This will return to the
2639 * caller faster at the risk reclaim/compaction and
2640 * the resulting allocation attempt fails
2641 */
2642 if (!nr_reclaimed)
2643 return false;
2644 }
Mel Gorman3e7d3442011-01-13 15:45:56 -08002645
2646 /*
2647 * If we have not reclaimed enough pages for compaction and the
2648 * inactive lists are large enough, continue reclaiming
2649 */
Vlastimil Babka9861a622016-10-07 16:57:53 -07002650 pages_for_compaction = compact_gap(sc->order);
Mel Gormana9dd0a82016-07-28 15:46:02 -07002651 inactive_lru_pages = node_page_state(pgdat, NR_INACTIVE_FILE);
Shaohua Liec8acf22013-02-22 16:34:38 -08002652 if (get_nr_swap_pages() > 0)
Mel Gormana9dd0a82016-07-28 15:46:02 -07002653 inactive_lru_pages += node_page_state(pgdat, NR_INACTIVE_ANON);
Mel Gorman3e7d3442011-01-13 15:45:56 -08002654 if (sc->nr_reclaimed < pages_for_compaction &&
2655 inactive_lru_pages > pages_for_compaction)
2656 return true;
2657
2658 /* If compaction would go ahead or the allocation would succeed, stop */
Mel Gormana9dd0a82016-07-28 15:46:02 -07002659 for (z = 0; z <= sc->reclaim_idx; z++) {
2660 struct zone *zone = &pgdat->node_zones[z];
Mel Gorman6aa303d2016-09-01 16:14:55 -07002661 if (!managed_zone(zone))
Mel Gormana9dd0a82016-07-28 15:46:02 -07002662 continue;
2663
2664 switch (compaction_suitable(zone, sc->order, 0, sc->reclaim_idx)) {
Vlastimil Babkacf378312016-10-07 16:57:41 -07002665 case COMPACT_SUCCESS:
Mel Gormana9dd0a82016-07-28 15:46:02 -07002666 case COMPACT_CONTINUE:
2667 return false;
2668 default:
2669 /* check next zone */
2670 ;
2671 }
Mel Gorman3e7d3442011-01-13 15:45:56 -08002672 }
Mel Gormana9dd0a82016-07-28 15:46:02 -07002673 return true;
Mel Gorman3e7d3442011-01-13 15:45:56 -08002674}
2675
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -07002676static bool pgdat_memcg_congested(pg_data_t *pgdat, struct mem_cgroup *memcg)
2677{
2678 return test_bit(PGDAT_CONGESTED, &pgdat->flags) ||
2679 (memcg && memcg_congested(pgdat, memcg));
2680}
2681
Mel Gorman970a39a2016-07-28 15:46:35 -07002682static bool shrink_node(pg_data_t *pgdat, struct scan_control *sc)
Johannes Weinerf16015f2012-01-12 17:17:52 -08002683{
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002684 struct reclaim_state *reclaim_state = current->reclaim_state;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002685 unsigned long nr_reclaimed, nr_scanned;
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002686 bool reclaimable = false;
Johannes Weinerf16015f2012-01-12 17:17:52 -08002687
Johannes Weiner56600482012-01-12 17:17:59 -08002688 do {
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002689 struct mem_cgroup *root = sc->target_mem_cgroup;
2690 struct mem_cgroup_reclaim_cookie reclaim = {
Mel Gormanef8f2322016-07-28 15:46:05 -07002691 .pgdat = pgdat,
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002692 .priority = sc->priority,
2693 };
Mel Gormana9dd0a82016-07-28 15:46:02 -07002694 unsigned long node_lru_pages = 0;
Andrew Morton694fbc02013-09-24 15:27:37 -07002695 struct mem_cgroup *memcg;
Johannes Weiner56600482012-01-12 17:17:59 -08002696
Andrey Ryabinind108c772018-04-10 16:27:59 -07002697 memset(&sc->nr, 0, sizeof(sc->nr));
2698
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002699 nr_reclaimed = sc->nr_reclaimed;
2700 nr_scanned = sc->nr_scanned;
Konstantin Khlebnikovf9be23d2012-05-29 15:07:02 -07002701
Andrew Morton694fbc02013-09-24 15:27:37 -07002702 memcg = mem_cgroup_iter(root, NULL, &reclaim);
2703 do {
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002704 unsigned long lru_pages;
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002705 unsigned long reclaimed;
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002706 unsigned long scanned;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002707
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07002708 switch (mem_cgroup_protected(root, memcg)) {
2709 case MEMCG_PROT_MIN:
2710 /*
2711 * Hard protection.
2712 * If there is no reclaimable memory, OOM.
2713 */
2714 continue;
2715 case MEMCG_PROT_LOW:
2716 /*
2717 * Soft protection.
2718 * Respect the protection only as long as
2719 * there is an unprotected supply
2720 * of reclaimable memory from other cgroups.
2721 */
Yisheng Xied6622f62017-05-03 14:53:57 -07002722 if (!sc->memcg_low_reclaim) {
2723 sc->memcg_low_skipped = 1;
Johannes Weiner241994ed2015-02-11 15:26:06 -08002724 continue;
Yisheng Xied6622f62017-05-03 14:53:57 -07002725 }
Johannes Weinere27be242018-04-10 16:29:45 -07002726 memcg_memory_event(memcg, MEMCG_LOW);
Roman Gushchinbf8d5d52018-06-07 17:07:46 -07002727 break;
2728 case MEMCG_PROT_NONE:
2729 break;
Johannes Weiner241994ed2015-02-11 15:26:06 -08002730 }
2731
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002732 reclaimed = sc->nr_reclaimed;
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002733 scanned = sc->nr_scanned;
Mel Gormana9dd0a82016-07-28 15:46:02 -07002734 shrink_node_memcg(pgdat, memcg, sc, &lru_pages);
2735 node_lru_pages += lru_pages;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002736
Vladimir Davydovaeed1d322018-08-17 15:48:17 -07002737 shrink_slab(sc->gfp_mask, pgdat->node_id,
2738 memcg, sc->priority);
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002739
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002740 /* Record the group's reclaim efficiency */
2741 vmpressure(sc->gfp_mask, memcg, false,
2742 sc->nr_scanned - scanned,
2743 sc->nr_reclaimed - reclaimed);
2744
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002745 /*
Michal Hockoa394cb82013-02-22 16:32:30 -08002746 * Direct reclaim and kswapd have to scan all memory
2747 * cgroups to fulfill the overall scan target for the
Mel Gormana9dd0a82016-07-28 15:46:02 -07002748 * node.
Michal Hockoa394cb82013-02-22 16:32:30 -08002749 *
2750 * Limit reclaim, on the other hand, only cares about
2751 * nr_to_reclaim pages to be reclaimed and it will
2752 * retry with decreasing priority if one round over the
2753 * whole hierarchy is not sufficient.
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002754 */
Michal Hockoa394cb82013-02-22 16:32:30 -08002755 if (!global_reclaim(sc) &&
2756 sc->nr_reclaimed >= sc->nr_to_reclaim) {
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002757 mem_cgroup_iter_break(root, memcg);
2758 break;
2759 }
Johannes Weiner241994ed2015-02-11 15:26:06 -08002760 } while ((memcg = mem_cgroup_iter(root, memcg, &reclaim)));
Anton Vorontsov70ddf632013-04-29 15:08:31 -07002761
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002762 if (reclaim_state) {
2763 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
2764 reclaim_state->reclaimed_slab = 0;
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002765 }
2766
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002767 /* Record the subtree's reclaim efficiency */
2768 vmpressure(sc->gfp_mask, sc->target_mem_cgroup, true,
Anton Vorontsov70ddf632013-04-29 15:08:31 -07002769 sc->nr_scanned - nr_scanned,
2770 sc->nr_reclaimed - nr_reclaimed);
2771
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002772 if (sc->nr_reclaimed - nr_reclaimed)
2773 reclaimable = true;
2774
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -07002775 if (current_is_kswapd()) {
2776 /*
2777 * If reclaim is isolating dirty pages under writeback,
2778 * it implies that the long-lived page allocation rate
2779 * is exceeding the page laundering rate. Either the
2780 * global limits are not being effective at throttling
2781 * processes due to the page distribution throughout
2782 * zones or there is heavy usage of a slow backing
2783 * device. The only option is to throttle from reclaim
2784 * context which is not ideal as there is no guarantee
2785 * the dirtying process is throttled in the same way
2786 * balance_dirty_pages() manages.
2787 *
2788 * Once a node is flagged PGDAT_WRITEBACK, kswapd will
2789 * count the number of pages under pages flagged for
2790 * immediate reclaim and stall if any are encountered
2791 * in the nr_immediate check below.
2792 */
2793 if (sc->nr.writeback && sc->nr.writeback == sc->nr.taken)
2794 set_bit(PGDAT_WRITEBACK, &pgdat->flags);
Andrey Ryabinind108c772018-04-10 16:27:59 -07002795
Andrey Ryabinind108c772018-04-10 16:27:59 -07002796 /*
2797 * Tag a node as congested if all the dirty pages
2798 * scanned were backed by a congested BDI and
2799 * wait_iff_congested will stall.
2800 */
2801 if (sc->nr.dirty && sc->nr.dirty == sc->nr.congested)
2802 set_bit(PGDAT_CONGESTED, &pgdat->flags);
2803
2804 /* Allow kswapd to start writing pages during reclaim.*/
2805 if (sc->nr.unqueued_dirty == sc->nr.file_taken)
2806 set_bit(PGDAT_DIRTY, &pgdat->flags);
2807
2808 /*
2809 * If kswapd scans pages marked marked for immediate
2810 * reclaim and under writeback (nr_immediate), it
2811 * implies that pages are cycling through the LRU
2812 * faster than they are written so also forcibly stall.
2813 */
2814 if (sc->nr.immediate)
2815 congestion_wait(BLK_RW_ASYNC, HZ/10);
2816 }
2817
2818 /*
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -07002819 * Legacy memcg will stall in page writeback so avoid forcibly
2820 * stalling in wait_iff_congested().
2821 */
2822 if (!global_reclaim(sc) && sane_reclaim(sc) &&
2823 sc->nr.dirty && sc->nr.dirty == sc->nr.congested)
2824 set_memcg_congestion(pgdat, root, true);
2825
2826 /*
Andrey Ryabinind108c772018-04-10 16:27:59 -07002827 * Stall direct reclaim for IO completions if underlying BDIs
2828 * and node is congested. Allow kswapd to continue until it
2829 * starts encountering unqueued dirty pages or cycling through
2830 * the LRU too quickly.
2831 */
2832 if (!sc->hibernation_mode && !current_is_kswapd() &&
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -07002833 current_may_throttle() && pgdat_memcg_congested(pgdat, root))
2834 wait_iff_congested(BLK_RW_ASYNC, HZ/10);
Andrey Ryabinind108c772018-04-10 16:27:59 -07002835
Mel Gormana9dd0a82016-07-28 15:46:02 -07002836 } while (should_continue_reclaim(pgdat, sc->nr_reclaimed - nr_reclaimed,
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002837 sc->nr_scanned - nr_scanned, sc));
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002838
Johannes Weinerc73322d2017-05-03 14:51:51 -07002839 /*
2840 * Kswapd gives up on balancing particular nodes after too
2841 * many failures to reclaim anything from them and goes to
2842 * sleep. On reclaim progress, reset the failure counter. A
2843 * successful direct reclaim run will revive a dormant kswapd.
2844 */
2845 if (reclaimable)
2846 pgdat->kswapd_failures = 0;
2847
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002848 return reclaimable;
Johannes Weinerf16015f2012-01-12 17:17:52 -08002849}
2850
Vlastimil Babka53853e22014-10-09 15:27:02 -07002851/*
Vlastimil Babkafdd4c6142016-10-07 16:58:03 -07002852 * Returns true if compaction should go ahead for a costly-order request, or
2853 * the allocation would already succeed without compaction. Return false if we
2854 * should reclaim first.
Vlastimil Babka53853e22014-10-09 15:27:02 -07002855 */
Mel Gorman4f588332016-07-28 15:46:38 -07002856static inline bool compaction_ready(struct zone *zone, struct scan_control *sc)
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002857{
Mel Gorman31483b62016-07-28 15:45:46 -07002858 unsigned long watermark;
Vlastimil Babkafdd4c6142016-10-07 16:58:03 -07002859 enum compact_result suitable;
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002860
Vlastimil Babkafdd4c6142016-10-07 16:58:03 -07002861 suitable = compaction_suitable(zone, sc->order, 0, sc->reclaim_idx);
2862 if (suitable == COMPACT_SUCCESS)
2863 /* Allocation should succeed already. Don't reclaim. */
2864 return true;
2865 if (suitable == COMPACT_SKIPPED)
2866 /* Compaction cannot yet proceed. Do reclaim. */
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002867 return false;
2868
Vlastimil Babkafdd4c6142016-10-07 16:58:03 -07002869 /*
2870 * Compaction is already possible, but it takes time to run and there
2871 * are potentially other callers using the pages just freed. So proceed
2872 * with reclaim to make a buffer of free pages available to give
2873 * compaction a reasonable chance of completing and allocating the page.
2874 * Note that we won't actually reclaim the whole buffer in one attempt
2875 * as the target watermark in should_continue_reclaim() is lower. But if
2876 * we are already above the high+gap watermark, don't reclaim at all.
2877 */
2878 watermark = high_wmark_pages(zone) + compact_gap(sc->order);
2879
2880 return zone_watermark_ok_safe(zone, 0, watermark, sc->reclaim_idx);
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002881}
2882
Linus Torvalds1da177e2005-04-16 15:20:36 -07002883/*
2884 * This is the direct reclaim path, for page-allocating processes. We only
2885 * try to reclaim pages from zones which will satisfy the caller's allocation
2886 * request.
2887 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002888 * If a zone is deemed to be full of pinned pages then just give it a light
2889 * scan then give up on it.
2890 */
Michal Hocko0a0337e2016-05-20 16:57:00 -07002891static void shrink_zones(struct zonelist *zonelist, struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002892{
Mel Gormandd1a2392008-04-28 02:12:17 -07002893 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07002894 struct zone *zone;
Andrew Morton0608f432013-09-24 15:27:41 -07002895 unsigned long nr_soft_reclaimed;
2896 unsigned long nr_soft_scanned;
Weijie Yang619d0d762014-04-07 15:36:59 -07002897 gfp_t orig_mask;
Mel Gorman79dafcd2016-07-28 15:45:53 -07002898 pg_data_t *last_pgdat = NULL;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002899
Mel Gormancc715d92012-03-21 16:34:00 -07002900 /*
2901 * If the number of buffer_heads in the machine exceeds the maximum
2902 * allowed level, force direct reclaim to scan the highmem zone as
2903 * highmem pages could be pinning lowmem pages storing buffer_heads
2904 */
Weijie Yang619d0d762014-04-07 15:36:59 -07002905 orig_mask = sc->gfp_mask;
Mel Gormanb2e18752016-07-28 15:45:37 -07002906 if (buffer_heads_over_limit) {
Mel Gormancc715d92012-03-21 16:34:00 -07002907 sc->gfp_mask |= __GFP_HIGHMEM;
Mel Gorman4f588332016-07-28 15:46:38 -07002908 sc->reclaim_idx = gfp_zone(sc->gfp_mask);
Mel Gormanb2e18752016-07-28 15:45:37 -07002909 }
Mel Gormancc715d92012-03-21 16:34:00 -07002910
Mel Gormand4debc62010-08-09 17:19:29 -07002911 for_each_zone_zonelist_nodemask(zone, z, zonelist,
Mel Gormanb2e18752016-07-28 15:45:37 -07002912 sc->reclaim_idx, sc->nodemask) {
Mel Gormanb2e18752016-07-28 15:45:37 -07002913 /*
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002914 * Take care memory controller reclaiming has small influence
2915 * to global LRU.
2916 */
Johannes Weiner89b5fae2012-01-12 17:17:50 -08002917 if (global_reclaim(sc)) {
Vladimir Davydov344736f2014-10-20 15:50:30 +04002918 if (!cpuset_zone_allowed(zone,
2919 GFP_KERNEL | __GFP_HARDWALL))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002920 continue;
Vladimir Davydov65ec02c2014-04-03 14:47:20 -07002921
Johannes Weiner0b064962014-08-06 16:06:12 -07002922 /*
2923 * If we already have plenty of memory free for
2924 * compaction in this zone, don't free any more.
2925 * Even though compaction is invoked for any
2926 * non-zero order, only frequent costly order
2927 * reclamation is disruptive enough to become a
2928 * noticeable problem, like transparent huge
2929 * page allocations.
2930 */
2931 if (IS_ENABLED(CONFIG_COMPACTION) &&
2932 sc->order > PAGE_ALLOC_COSTLY_ORDER &&
Mel Gorman4f588332016-07-28 15:46:38 -07002933 compaction_ready(zone, sc)) {
Johannes Weiner0b064962014-08-06 16:06:12 -07002934 sc->compaction_ready = true;
2935 continue;
Rik van Riele0887c12011-10-31 17:09:31 -07002936 }
Johannes Weiner0b064962014-08-06 16:06:12 -07002937
Andrew Morton0608f432013-09-24 15:27:41 -07002938 /*
Mel Gorman79dafcd2016-07-28 15:45:53 -07002939 * Shrink each node in the zonelist once. If the
2940 * zonelist is ordered by zone (not the default) then a
2941 * node may be shrunk multiple times but in that case
2942 * the user prefers lower zones being preserved.
2943 */
2944 if (zone->zone_pgdat == last_pgdat)
2945 continue;
2946
2947 /*
Andrew Morton0608f432013-09-24 15:27:41 -07002948 * This steals pages from memory cgroups over softlimit
2949 * and returns the number of reclaimed pages and
2950 * scanned pages. This works for global memory pressure
2951 * and balancing, not for a memcg's limit.
2952 */
2953 nr_soft_scanned = 0;
Mel Gormanef8f2322016-07-28 15:46:05 -07002954 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone->zone_pgdat,
Andrew Morton0608f432013-09-24 15:27:41 -07002955 sc->order, sc->gfp_mask,
2956 &nr_soft_scanned);
2957 sc->nr_reclaimed += nr_soft_reclaimed;
2958 sc->nr_scanned += nr_soft_scanned;
KAMEZAWA Hiroyukiac34a1a2011-06-27 16:18:12 -07002959 /* need some check for avoid more shrink_zone() */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002960 }
Nick Piggin408d8542006-09-25 23:31:27 -07002961
Mel Gorman79dafcd2016-07-28 15:45:53 -07002962 /* See comment about same check for global reclaim above */
2963 if (zone->zone_pgdat == last_pgdat)
2964 continue;
2965 last_pgdat = zone->zone_pgdat;
Mel Gorman970a39a2016-07-28 15:46:35 -07002966 shrink_node(zone->zone_pgdat, sc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002967 }
Mel Gormane0c23272011-10-31 17:09:33 -07002968
Vladimir Davydov65ec02c2014-04-03 14:47:20 -07002969 /*
Weijie Yang619d0d762014-04-07 15:36:59 -07002970 * Restore to original mask to avoid the impact on the caller if we
2971 * promoted it to __GFP_HIGHMEM.
2972 */
2973 sc->gfp_mask = orig_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002974}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002975
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002976static void snapshot_refaults(struct mem_cgroup *root_memcg, pg_data_t *pgdat)
2977{
2978 struct mem_cgroup *memcg;
2979
2980 memcg = mem_cgroup_iter(root_memcg, NULL, NULL);
2981 do {
2982 unsigned long refaults;
2983 struct lruvec *lruvec;
2984
2985 if (memcg)
Johannes Weinerccda7f42017-05-03 14:55:16 -07002986 refaults = memcg_page_state(memcg, WORKINGSET_ACTIVATE);
Johannes Weiner2a2e4882017-05-03 14:55:03 -07002987 else
2988 refaults = node_page_state(pgdat, WORKINGSET_ACTIVATE);
2989
2990 lruvec = mem_cgroup_lruvec(pgdat, memcg);
2991 lruvec->refaults = refaults;
2992 } while ((memcg = mem_cgroup_iter(root_memcg, memcg, NULL)));
2993}
2994
Linus Torvalds1da177e2005-04-16 15:20:36 -07002995/*
2996 * This is the main entry point to direct page reclaim.
2997 *
2998 * If a full scan of the inactive list fails to free enough memory then we
2999 * are "out of memory" and something needs to be killed.
3000 *
3001 * If the caller is !__GFP_FS then the probability of a failure is reasonably
3002 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02003003 * caller can't do much about. We kick the writeback threads and take explicit
3004 * naps in the hope that some of these pages can be written. But if the
3005 * allocating task holds filesystem locks which prevent writeout this might not
3006 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07003007 *
3008 * returns: 0, if no pages reclaimed
3009 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07003010 */
Mel Gormandac1d272008-04-28 02:12:12 -07003011static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Vladimir Davydov3115cd92014-04-03 14:47:22 -07003012 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003013{
Johannes Weiner241994ed2015-02-11 15:26:06 -08003014 int initial_priority = sc->priority;
Johannes Weiner2a2e4882017-05-03 14:55:03 -07003015 pg_data_t *last_pgdat;
3016 struct zoneref *z;
3017 struct zone *zone;
Johannes Weiner241994ed2015-02-11 15:26:06 -08003018retry:
Keika Kobayashi873b4772008-07-25 01:48:52 -07003019 delayacct_freepages_start();
3020
Johannes Weiner89b5fae2012-01-12 17:17:50 -08003021 if (global_reclaim(sc))
Mel Gorman7cc30fc2016-07-28 15:46:59 -07003022 __count_zid_vm_events(ALLOCSTALL, sc->reclaim_idx, 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003023
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003024 do {
Anton Vorontsov70ddf632013-04-29 15:08:31 -07003025 vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup,
3026 sc->priority);
Balbir Singh66e17072008-02-07 00:13:56 -08003027 sc->nr_scanned = 0;
Michal Hocko0a0337e2016-05-20 16:57:00 -07003028 shrink_zones(zonelist, sc);
Mel Gormane0c23272011-10-31 17:09:33 -07003029
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07003030 if (sc->nr_reclaimed >= sc->nr_to_reclaim)
Johannes Weiner0b064962014-08-06 16:06:12 -07003031 break;
3032
3033 if (sc->compaction_ready)
3034 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003035
3036 /*
Minchan Kim0e50ce32013-02-22 16:35:37 -08003037 * If we're getting trouble reclaiming, start doing
3038 * writepage even in laptop mode.
3039 */
3040 if (sc->priority < DEF_PRIORITY - 2)
3041 sc->may_writepage = 1;
Johannes Weiner0b064962014-08-06 16:06:12 -07003042 } while (--sc->priority >= 0);
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07003043
Johannes Weiner2a2e4882017-05-03 14:55:03 -07003044 last_pgdat = NULL;
3045 for_each_zone_zonelist_nodemask(zone, z, zonelist, sc->reclaim_idx,
3046 sc->nodemask) {
3047 if (zone->zone_pgdat == last_pgdat)
3048 continue;
3049 last_pgdat = zone->zone_pgdat;
3050 snapshot_refaults(sc->target_mem_cgroup, zone->zone_pgdat);
Andrey Ryabinine3c1ac52018-04-10 16:28:03 -07003051 set_memcg_congestion(last_pgdat, sc->target_mem_cgroup, false);
Johannes Weiner2a2e4882017-05-03 14:55:03 -07003052 }
3053
Keika Kobayashi873b4772008-07-25 01:48:52 -07003054 delayacct_freepages_end();
3055
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07003056 if (sc->nr_reclaimed)
3057 return sc->nr_reclaimed;
3058
Mel Gorman0cee34f2012-01-12 17:19:49 -08003059 /* Aborted reclaim to try compaction? don't OOM, then */
Johannes Weiner0b064962014-08-06 16:06:12 -07003060 if (sc->compaction_ready)
Mel Gorman73350842012-01-12 17:19:33 -08003061 return 1;
3062
Johannes Weiner241994ed2015-02-11 15:26:06 -08003063 /* Untapped cgroup reserves? Don't OOM, retry. */
Yisheng Xied6622f62017-05-03 14:53:57 -07003064 if (sc->memcg_low_skipped) {
Johannes Weiner241994ed2015-02-11 15:26:06 -08003065 sc->priority = initial_priority;
Yisheng Xied6622f62017-05-03 14:53:57 -07003066 sc->memcg_low_reclaim = 1;
3067 sc->memcg_low_skipped = 0;
Johannes Weiner241994ed2015-02-11 15:26:06 -08003068 goto retry;
3069 }
3070
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07003071 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003072}
3073
Johannes Weinerc73322d2017-05-03 14:51:51 -07003074static bool allow_direct_reclaim(pg_data_t *pgdat)
Mel Gorman55150612012-07-31 16:44:35 -07003075{
3076 struct zone *zone;
3077 unsigned long pfmemalloc_reserve = 0;
3078 unsigned long free_pages = 0;
3079 int i;
3080 bool wmark_ok;
3081
Johannes Weinerc73322d2017-05-03 14:51:51 -07003082 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
3083 return true;
3084
Mel Gorman55150612012-07-31 16:44:35 -07003085 for (i = 0; i <= ZONE_NORMAL; i++) {
3086 zone = &pgdat->node_zones[i];
Johannes Weinerd450abd2017-05-03 14:51:54 -07003087 if (!managed_zone(zone))
3088 continue;
3089
3090 if (!zone_reclaimable_pages(zone))
Mel Gorman675becc2014-06-04 16:07:35 -07003091 continue;
3092
Mel Gorman55150612012-07-31 16:44:35 -07003093 pfmemalloc_reserve += min_wmark_pages(zone);
3094 free_pages += zone_page_state(zone, NR_FREE_PAGES);
3095 }
3096
Mel Gorman675becc2014-06-04 16:07:35 -07003097 /* If there are no reserves (unexpected config) then do not throttle */
3098 if (!pfmemalloc_reserve)
3099 return true;
3100
Mel Gorman55150612012-07-31 16:44:35 -07003101 wmark_ok = free_pages > pfmemalloc_reserve / 2;
3102
3103 /* kswapd must be awake if processes are being throttled */
3104 if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) {
Mel Gorman38087d92016-07-28 15:45:49 -07003105 pgdat->kswapd_classzone_idx = min(pgdat->kswapd_classzone_idx,
Mel Gorman55150612012-07-31 16:44:35 -07003106 (enum zone_type)ZONE_NORMAL);
3107 wake_up_interruptible(&pgdat->kswapd_wait);
3108 }
3109
3110 return wmark_ok;
3111}
3112
3113/*
3114 * Throttle direct reclaimers if backing storage is backed by the network
3115 * and the PFMEMALLOC reserve for the preferred node is getting dangerously
3116 * depleted. kswapd will continue to make progress and wake the processes
Mel Gorman50694c22012-11-26 16:29:48 -08003117 * when the low watermark is reached.
3118 *
3119 * Returns true if a fatal signal was delivered during throttling. If this
3120 * happens, the page allocator should not consider triggering the OOM killer.
Mel Gorman55150612012-07-31 16:44:35 -07003121 */
Mel Gorman50694c22012-11-26 16:29:48 -08003122static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist,
Mel Gorman55150612012-07-31 16:44:35 -07003123 nodemask_t *nodemask)
3124{
Mel Gorman675becc2014-06-04 16:07:35 -07003125 struct zoneref *z;
Mel Gorman55150612012-07-31 16:44:35 -07003126 struct zone *zone;
Mel Gorman675becc2014-06-04 16:07:35 -07003127 pg_data_t *pgdat = NULL;
Mel Gorman55150612012-07-31 16:44:35 -07003128
3129 /*
3130 * Kernel threads should not be throttled as they may be indirectly
3131 * responsible for cleaning pages necessary for reclaim to make forward
3132 * progress. kjournald for example may enter direct reclaim while
3133 * committing a transaction where throttling it could forcing other
3134 * processes to block on log_wait_commit().
3135 */
3136 if (current->flags & PF_KTHREAD)
Mel Gorman50694c22012-11-26 16:29:48 -08003137 goto out;
3138
3139 /*
3140 * If a fatal signal is pending, this process should not throttle.
3141 * It should return quickly so it can exit and free its memory
3142 */
3143 if (fatal_signal_pending(current))
3144 goto out;
Mel Gorman55150612012-07-31 16:44:35 -07003145
Mel Gorman675becc2014-06-04 16:07:35 -07003146 /*
3147 * Check if the pfmemalloc reserves are ok by finding the first node
3148 * with a usable ZONE_NORMAL or lower zone. The expectation is that
3149 * GFP_KERNEL will be required for allocating network buffers when
3150 * swapping over the network so ZONE_HIGHMEM is unusable.
3151 *
3152 * Throttling is based on the first usable node and throttled processes
3153 * wait on a queue until kswapd makes progress and wakes them. There
3154 * is an affinity then between processes waking up and where reclaim
3155 * progress has been made assuming the process wakes on the same node.
3156 * More importantly, processes running on remote nodes will not compete
3157 * for remote pfmemalloc reserves and processes on different nodes
3158 * should make reasonable progress.
3159 */
3160 for_each_zone_zonelist_nodemask(zone, z, zonelist,
Michael S. Tsirkin17636fa2015-01-26 12:58:41 -08003161 gfp_zone(gfp_mask), nodemask) {
Mel Gorman675becc2014-06-04 16:07:35 -07003162 if (zone_idx(zone) > ZONE_NORMAL)
3163 continue;
3164
3165 /* Throttle based on the first usable node */
3166 pgdat = zone->zone_pgdat;
Johannes Weinerc73322d2017-05-03 14:51:51 -07003167 if (allow_direct_reclaim(pgdat))
Mel Gorman675becc2014-06-04 16:07:35 -07003168 goto out;
3169 break;
3170 }
3171
3172 /* If no zone was usable by the allocation flags then do not throttle */
3173 if (!pgdat)
Mel Gorman50694c22012-11-26 16:29:48 -08003174 goto out;
Mel Gorman55150612012-07-31 16:44:35 -07003175
Mel Gorman68243e72012-07-31 16:44:39 -07003176 /* Account for the throttling */
3177 count_vm_event(PGSCAN_DIRECT_THROTTLE);
3178
Mel Gorman55150612012-07-31 16:44:35 -07003179 /*
3180 * If the caller cannot enter the filesystem, it's possible that it
3181 * is due to the caller holding an FS lock or performing a journal
3182 * transaction in the case of a filesystem like ext[3|4]. In this case,
3183 * it is not safe to block on pfmemalloc_wait as kswapd could be
3184 * blocked waiting on the same lock. Instead, throttle for up to a
3185 * second before continuing.
3186 */
3187 if (!(gfp_mask & __GFP_FS)) {
3188 wait_event_interruptible_timeout(pgdat->pfmemalloc_wait,
Johannes Weinerc73322d2017-05-03 14:51:51 -07003189 allow_direct_reclaim(pgdat), HZ);
Mel Gorman50694c22012-11-26 16:29:48 -08003190
3191 goto check_pending;
Mel Gorman55150612012-07-31 16:44:35 -07003192 }
3193
3194 /* Throttle until kswapd wakes the process */
3195 wait_event_killable(zone->zone_pgdat->pfmemalloc_wait,
Johannes Weinerc73322d2017-05-03 14:51:51 -07003196 allow_direct_reclaim(pgdat));
Mel Gorman50694c22012-11-26 16:29:48 -08003197
3198check_pending:
3199 if (fatal_signal_pending(current))
3200 return true;
3201
3202out:
3203 return false;
Mel Gorman55150612012-07-31 16:44:35 -07003204}
3205
Mel Gormandac1d272008-04-28 02:12:12 -07003206unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07003207 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08003208{
Mel Gorman33906bc2010-08-09 17:19:16 -07003209 unsigned long nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08003210 struct scan_control sc = {
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08003211 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Nick Desaulniersf2f43e52017-07-06 15:36:50 -07003212 .gfp_mask = current_gfp_context(gfp_mask),
Mel Gormanb2e18752016-07-28 15:45:37 -07003213 .reclaim_idx = gfp_zone(gfp_mask),
Johannes Weineree814fe2014-08-06 16:06:19 -07003214 .order = order,
3215 .nodemask = nodemask,
3216 .priority = DEF_PRIORITY,
3217 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f82009-03-31 15:19:30 -07003218 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07003219 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08003220 };
3221
Mel Gorman55150612012-07-31 16:44:35 -07003222 /*
Greg Thelenbb451fd2018-08-17 15:45:19 -07003223 * scan_control uses s8 fields for order, priority, and reclaim_idx.
3224 * Confirm they are large enough for max values.
3225 */
3226 BUILD_BUG_ON(MAX_ORDER > S8_MAX);
3227 BUILD_BUG_ON(DEF_PRIORITY > S8_MAX);
3228 BUILD_BUG_ON(MAX_NR_ZONES > S8_MAX);
3229
3230 /*
Mel Gorman50694c22012-11-26 16:29:48 -08003231 * Do not enter reclaim if fatal signal was delivered while throttled.
3232 * 1 is returned so that the page allocator does not OOM kill at this
3233 * point.
Mel Gorman55150612012-07-31 16:44:35 -07003234 */
Nick Desaulniersf2f43e52017-07-06 15:36:50 -07003235 if (throttle_direct_reclaim(sc.gfp_mask, zonelist, nodemask))
Mel Gorman55150612012-07-31 16:44:35 -07003236 return 1;
3237
Mel Gorman33906bc2010-08-09 17:19:16 -07003238 trace_mm_vmscan_direct_reclaim_begin(order,
3239 sc.may_writepage,
Nick Desaulniersf2f43e52017-07-06 15:36:50 -07003240 sc.gfp_mask,
Mel Gormane5146b12016-07-28 15:46:47 -07003241 sc.reclaim_idx);
Mel Gorman33906bc2010-08-09 17:19:16 -07003242
Vladimir Davydov3115cd92014-04-03 14:47:22 -07003243 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Mel Gorman33906bc2010-08-09 17:19:16 -07003244
3245 trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
3246
3247 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08003248}
3249
Andrew Mortonc255a452012-07-31 16:43:02 -07003250#ifdef CONFIG_MEMCG
Balbir Singh66e17072008-02-07 00:13:56 -08003251
Mel Gormana9dd0a82016-07-28 15:46:02 -07003252unsigned long mem_cgroup_shrink_node(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -07003253 gfp_t gfp_mask, bool noswap,
Mel Gormanef8f2322016-07-28 15:46:05 -07003254 pg_data_t *pgdat,
Ying Han0ae5e892011-05-26 16:25:25 -07003255 unsigned long *nr_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07003256{
3257 struct scan_control sc = {
KOSAKI Motohirob8f5c562010-08-10 18:03:02 -07003258 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weineree814fe2014-08-06 16:06:19 -07003259 .target_mem_cgroup = memcg,
Balbir Singh4e416952009-09-23 15:56:39 -07003260 .may_writepage = !laptop_mode,
3261 .may_unmap = 1,
Mel Gormanb2e18752016-07-28 15:45:37 -07003262 .reclaim_idx = MAX_NR_ZONES - 1,
Balbir Singh4e416952009-09-23 15:56:39 -07003263 .may_swap = !noswap,
Balbir Singh4e416952009-09-23 15:56:39 -07003264 };
Johannes Weiner6b4f7792014-12-12 16:56:13 -08003265 unsigned long lru_pages;
Ying Han0ae5e892011-05-26 16:25:25 -07003266
Balbir Singh4e416952009-09-23 15:56:39 -07003267 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
3268 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003269
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003270 trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order,
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003271 sc.may_writepage,
Mel Gormane5146b12016-07-28 15:46:47 -07003272 sc.gfp_mask,
3273 sc.reclaim_idx);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003274
Balbir Singh4e416952009-09-23 15:56:39 -07003275 /*
3276 * NOTE: Although we can get the priority field, using it
3277 * here is not a good idea, since it limits the pages we can scan.
Mel Gormana9dd0a82016-07-28 15:46:02 -07003278 * if we don't reclaim here, the shrink_node from balance_pgdat
Balbir Singh4e416952009-09-23 15:56:39 -07003279 * will pick up pages from other mem cgroup's as well. We hack
3280 * the priority and make it zero.
3281 */
Mel Gormanef8f2322016-07-28 15:46:05 -07003282 shrink_node_memcg(pgdat, memcg, &sc, &lru_pages);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003283
3284 trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
3285
Ying Han0ae5e892011-05-26 16:25:25 -07003286 *nr_scanned = sc.nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07003287 return sc.nr_reclaimed;
3288}
3289
Johannes Weiner72835c82012-01-12 17:18:32 -08003290unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003291 unsigned long nr_pages,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08003292 gfp_t gfp_mask,
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003293 bool may_swap)
Balbir Singh66e17072008-02-07 00:13:56 -08003294{
Balbir Singh4e416952009-09-23 15:56:39 -07003295 struct zonelist *zonelist;
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003296 unsigned long nr_reclaimed;
Ying Han889976d2011-05-26 16:25:33 -07003297 int nid;
Vlastimil Babka499118e2017-05-08 15:59:50 -07003298 unsigned int noreclaim_flag;
Balbir Singh66e17072008-02-07 00:13:56 -08003299 struct scan_control sc = {
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003300 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
Michal Hocko7dea19f2017-05-03 14:53:15 -07003301 .gfp_mask = (current_gfp_context(gfp_mask) & GFP_RECLAIM_MASK) |
Johannes Weineree814fe2014-08-06 16:06:19 -07003302 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK),
Mel Gormanb2e18752016-07-28 15:45:37 -07003303 .reclaim_idx = MAX_NR_ZONES - 1,
Johannes Weineree814fe2014-08-06 16:06:19 -07003304 .target_mem_cgroup = memcg,
3305 .priority = DEF_PRIORITY,
Balbir Singh66e17072008-02-07 00:13:56 -08003306 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f82009-03-31 15:19:30 -07003307 .may_unmap = 1,
Johannes Weinerb70a2a22014-10-09 15:28:56 -07003308 .may_swap = may_swap,
Ying Hana09ed5e2011-05-24 17:12:26 -07003309 };
Balbir Singh66e17072008-02-07 00:13:56 -08003310
Ying Han889976d2011-05-26 16:25:33 -07003311 /*
3312 * Unlike direct reclaim via alloc_pages(), memcg's reclaim doesn't
3313 * take care of from where we get pages. So the node where we start the
3314 * scan does not need to be the current node.
3315 */
Johannes Weiner72835c82012-01-12 17:18:32 -08003316 nid = mem_cgroup_select_victim_node(memcg);
Ying Han889976d2011-05-26 16:25:33 -07003317
Aneesh Kumar K.Vc9634cf2016-10-07 16:59:12 -07003318 zonelist = &NODE_DATA(nid)->node_zonelists[ZONELIST_FALLBACK];
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003319
3320 trace_mm_vmscan_memcg_reclaim_begin(0,
3321 sc.may_writepage,
Mel Gormane5146b12016-07-28 15:46:47 -07003322 sc.gfp_mask,
3323 sc.reclaim_idx);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003324
Vlastimil Babka499118e2017-05-08 15:59:50 -07003325 noreclaim_flag = memalloc_noreclaim_save();
Vladimir Davydov3115cd92014-04-03 14:47:22 -07003326 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Vlastimil Babka499118e2017-05-08 15:59:50 -07003327 memalloc_noreclaim_restore(noreclaim_flag);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07003328
3329 trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
3330
3331 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08003332}
3333#endif
3334
Mel Gorman1d82de62016-07-28 15:45:43 -07003335static void age_active_anon(struct pglist_data *pgdat,
Mel Gormanef8f2322016-07-28 15:46:05 -07003336 struct scan_control *sc)
Johannes Weinerf16015f2012-01-12 17:17:52 -08003337{
Johannes Weinerb95a2f22012-01-12 17:18:06 -08003338 struct mem_cgroup *memcg;
Johannes Weinerf16015f2012-01-12 17:17:52 -08003339
Johannes Weinerb95a2f22012-01-12 17:18:06 -08003340 if (!total_swap_pages)
3341 return;
3342
3343 memcg = mem_cgroup_iter(NULL, NULL, NULL);
3344 do {
Mel Gormanef8f2322016-07-28 15:46:05 -07003345 struct lruvec *lruvec = mem_cgroup_lruvec(pgdat, memcg);
Johannes Weinerb95a2f22012-01-12 17:18:06 -08003346
Johannes Weiner2a2e4882017-05-03 14:55:03 -07003347 if (inactive_list_is_low(lruvec, false, memcg, sc, true))
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07003348 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003349 sc, LRU_ACTIVE_ANON);
Johannes Weinerb95a2f22012-01-12 17:18:06 -08003350
3351 memcg = mem_cgroup_iter(NULL, memcg, NULL);
3352 } while (memcg);
Johannes Weinerf16015f2012-01-12 17:17:52 -08003353}
3354
Mel Gormane716f2e2017-05-03 14:53:45 -07003355/*
3356 * Returns true if there is an eligible zone balanced for the request order
3357 * and classzone_idx
3358 */
3359static bool pgdat_balanced(pg_data_t *pgdat, int order, int classzone_idx)
Johannes Weiner60cefed2012-11-29 13:54:23 -08003360{
Mel Gormane716f2e2017-05-03 14:53:45 -07003361 int i;
3362 unsigned long mark = -1;
3363 struct zone *zone;
Johannes Weiner60cefed2012-11-29 13:54:23 -08003364
Mel Gormane716f2e2017-05-03 14:53:45 -07003365 for (i = 0; i <= classzone_idx; i++) {
3366 zone = pgdat->node_zones + i;
Mel Gorman6256c6b2016-07-28 15:45:56 -07003367
Mel Gormane716f2e2017-05-03 14:53:45 -07003368 if (!managed_zone(zone))
3369 continue;
3370
3371 mark = high_wmark_pages(zone);
3372 if (zone_watermark_ok_safe(zone, order, mark, classzone_idx))
3373 return true;
3374 }
3375
3376 /*
3377 * If a node has no populated zone within classzone_idx, it does not
3378 * need balancing by definition. This can happen if a zone-restricted
3379 * allocation tries to wake a remote kswapd.
3380 */
3381 if (mark == -1)
3382 return true;
3383
3384 return false;
Johannes Weiner60cefed2012-11-29 13:54:23 -08003385}
3386
Mel Gorman631b6e02017-05-03 14:53:41 -07003387/* Clear pgdat state for congested, dirty or under writeback. */
3388static void clear_pgdat_congested(pg_data_t *pgdat)
3389{
3390 clear_bit(PGDAT_CONGESTED, &pgdat->flags);
3391 clear_bit(PGDAT_DIRTY, &pgdat->flags);
3392 clear_bit(PGDAT_WRITEBACK, &pgdat->flags);
3393}
3394
Mel Gorman1741c872011-01-13 15:46:21 -08003395/*
Mel Gorman55150612012-07-31 16:44:35 -07003396 * Prepare kswapd for sleeping. This verifies that there are no processes
3397 * waiting in throttle_direct_reclaim() and that watermarks have been met.
3398 *
3399 * Returns true if kswapd is ready to sleep
3400 */
Mel Gormand9f21d42016-07-28 15:46:41 -07003401static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order, int classzone_idx)
Mel Gormanf50de2d2009-12-14 17:58:53 -08003402{
Mel Gorman55150612012-07-31 16:44:35 -07003403 /*
Vlastimil Babka9e5e3662015-01-08 14:32:40 -08003404 * The throttled processes are normally woken up in balance_pgdat() as
Johannes Weinerc73322d2017-05-03 14:51:51 -07003405 * soon as allow_direct_reclaim() is true. But there is a potential
Vlastimil Babka9e5e3662015-01-08 14:32:40 -08003406 * race between when kswapd checks the watermarks and a process gets
3407 * throttled. There is also a potential race if processes get
3408 * throttled, kswapd wakes, a large process exits thereby balancing the
3409 * zones, which causes kswapd to exit balance_pgdat() before reaching
3410 * the wake up checks. If kswapd is going to sleep, no process should
3411 * be sleeping on pfmemalloc_wait, so wake them now if necessary. If
3412 * the wake up is premature, processes will wake kswapd and get
3413 * throttled again. The difference from wake ups in balance_pgdat() is
3414 * that here we are under prepare_to_wait().
Mel Gorman55150612012-07-31 16:44:35 -07003415 */
Vlastimil Babka9e5e3662015-01-08 14:32:40 -08003416 if (waitqueue_active(&pgdat->pfmemalloc_wait))
3417 wake_up_all(&pgdat->pfmemalloc_wait);
Mel Gormanf50de2d2009-12-14 17:58:53 -08003418
Johannes Weinerc73322d2017-05-03 14:51:51 -07003419 /* Hopeless node, leave it to direct reclaim */
3420 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES)
3421 return true;
3422
Mel Gormane716f2e2017-05-03 14:53:45 -07003423 if (pgdat_balanced(pgdat, order, classzone_idx)) {
3424 clear_pgdat_congested(pgdat);
3425 return true;
Mel Gorman1d82de62016-07-28 15:45:43 -07003426 }
3427
Shantanu Goel333b0a42017-05-03 14:53:38 -07003428 return false;
Mel Gormanf50de2d2009-12-14 17:58:53 -08003429}
3430
Linus Torvalds1da177e2005-04-16 15:20:36 -07003431/*
Mel Gorman1d82de62016-07-28 15:45:43 -07003432 * kswapd shrinks a node of pages that are at or below the highest usable
3433 * zone that is currently unbalanced.
Mel Gormanb8e83b92013-07-03 15:01:45 -07003434 *
3435 * Returns true if kswapd scanned at least the requested number of pages to
Mel Gorman283aba92013-07-03 15:01:51 -07003436 * reclaim or if the lack of progress was due to pages under writeback.
3437 * This is used to determine if the scanning priority needs to be raised.
Mel Gorman75485362013-07-03 15:01:42 -07003438 */
Mel Gorman1d82de62016-07-28 15:45:43 -07003439static bool kswapd_shrink_node(pg_data_t *pgdat,
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003440 struct scan_control *sc)
Mel Gorman75485362013-07-03 15:01:42 -07003441{
Mel Gorman1d82de62016-07-28 15:45:43 -07003442 struct zone *zone;
3443 int z;
Mel Gorman75485362013-07-03 15:01:42 -07003444
Mel Gorman1d82de62016-07-28 15:45:43 -07003445 /* Reclaim a number of pages proportional to the number of zones */
3446 sc->nr_to_reclaim = 0;
Mel Gorman970a39a2016-07-28 15:46:35 -07003447 for (z = 0; z <= sc->reclaim_idx; z++) {
Mel Gorman1d82de62016-07-28 15:45:43 -07003448 zone = pgdat->node_zones + z;
Mel Gorman6aa303d2016-09-01 16:14:55 -07003449 if (!managed_zone(zone))
Mel Gorman1d82de62016-07-28 15:45:43 -07003450 continue;
Mel Gorman7c954f62013-07-03 15:01:54 -07003451
Mel Gorman1d82de62016-07-28 15:45:43 -07003452 sc->nr_to_reclaim += max(high_wmark_pages(zone), SWAP_CLUSTER_MAX);
Mel Gorman7c954f62013-07-03 15:01:54 -07003453 }
3454
Mel Gorman1d82de62016-07-28 15:45:43 -07003455 /*
3456 * Historically care was taken to put equal pressure on all zones but
3457 * now pressure is applied based on node LRU order.
3458 */
Mel Gorman970a39a2016-07-28 15:46:35 -07003459 shrink_node(pgdat, sc);
Mel Gorman1d82de62016-07-28 15:45:43 -07003460
3461 /*
3462 * Fragmentation may mean that the system cannot be rebalanced for
3463 * high-order allocations. If twice the allocation size has been
3464 * reclaimed then recheck watermarks only at order-0 to prevent
3465 * excessive reclaim. Assume that a process requested a high-order
3466 * can direct reclaim/compact.
3467 */
Vlastimil Babka9861a622016-10-07 16:57:53 -07003468 if (sc->order && sc->nr_reclaimed >= compact_gap(sc->order))
Mel Gorman1d82de62016-07-28 15:45:43 -07003469 sc->order = 0;
3470
Mel Gormanb8e83b92013-07-03 15:01:45 -07003471 return sc->nr_scanned >= sc->nr_to_reclaim;
Mel Gorman75485362013-07-03 15:01:42 -07003472}
3473
3474/*
Mel Gorman1d82de62016-07-28 15:45:43 -07003475 * For kswapd, balance_pgdat() will reclaim pages across a node from zones
3476 * that are eligible for use by the caller until at least one zone is
3477 * balanced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003478 *
Mel Gorman1d82de62016-07-28 15:45:43 -07003479 * Returns the order kswapd finished reclaiming at.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003480 *
3481 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07003482 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
Mel Gorman1d82de62016-07-28 15:45:43 -07003483 * found to have free_pages <= high_wmark_pages(zone), any page is that zone
3484 * or lower is eligible for reclaim until at least one usable zone is
3485 * balanced.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003487static int balance_pgdat(pg_data_t *pgdat, int order, int classzone_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003488{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003489 int i;
Andrew Morton0608f432013-09-24 15:27:41 -07003490 unsigned long nr_soft_reclaimed;
3491 unsigned long nr_soft_scanned;
Mel Gorman1d82de62016-07-28 15:45:43 -07003492 struct zone *zone;
Andrew Morton179e9632006-03-22 00:08:18 -08003493 struct scan_control sc = {
3494 .gfp_mask = GFP_KERNEL,
Johannes Weineree814fe2014-08-06 16:06:19 -07003495 .order = order,
Mel Gormanb8e83b92013-07-03 15:01:45 -07003496 .priority = DEF_PRIORITY,
Johannes Weineree814fe2014-08-06 16:06:19 -07003497 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f82009-03-31 15:19:30 -07003498 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07003499 .may_swap = 1,
Andrew Morton179e9632006-03-22 00:08:18 -08003500 };
Omar Sandoval93781322018-06-07 17:07:02 -07003501
3502 __fs_reclaim_acquire();
3503
Christoph Lameterf8891e52006-06-30 01:55:45 -07003504 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003505
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003506 do {
Johannes Weinerc73322d2017-05-03 14:51:51 -07003507 unsigned long nr_reclaimed = sc.nr_reclaimed;
Mel Gormanb8e83b92013-07-03 15:01:45 -07003508 bool raise_priority = true;
Omar Sandoval93781322018-06-07 17:07:02 -07003509 bool ret;
Mel Gormanb8e83b92013-07-03 15:01:45 -07003510
Mel Gorman84c7a772016-07-28 15:46:44 -07003511 sc.reclaim_idx = classzone_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003512
Mel Gorman86c79f62016-07-28 15:45:59 -07003513 /*
Mel Gorman84c7a772016-07-28 15:46:44 -07003514 * If the number of buffer_heads exceeds the maximum allowed
3515 * then consider reclaiming from all zones. This has a dual
3516 * purpose -- on 64-bit systems it is expected that
3517 * buffer_heads are stripped during active rotation. On 32-bit
3518 * systems, highmem pages can pin lowmem memory and shrinking
3519 * buffers can relieve lowmem pressure. Reclaim may still not
3520 * go ahead if all eligible zones for the original allocation
3521 * request are balanced to avoid excessive reclaim from kswapd.
Mel Gorman86c79f62016-07-28 15:45:59 -07003522 */
3523 if (buffer_heads_over_limit) {
3524 for (i = MAX_NR_ZONES - 1; i >= 0; i--) {
3525 zone = pgdat->node_zones + i;
Mel Gorman6aa303d2016-09-01 16:14:55 -07003526 if (!managed_zone(zone))
Mel Gorman86c79f62016-07-28 15:45:59 -07003527 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003528
Mel Gorman970a39a2016-07-28 15:46:35 -07003529 sc.reclaim_idx = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08003530 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003531 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003532 }
Zlatko Calusicdafcb732013-02-22 16:32:34 -08003533
Mel Gorman86c79f62016-07-28 15:45:59 -07003534 /*
Mel Gormane716f2e2017-05-03 14:53:45 -07003535 * Only reclaim if there are no eligible zones. Note that
3536 * sc.reclaim_idx is not used as buffer_heads_over_limit may
3537 * have adjusted it.
Mel Gorman86c79f62016-07-28 15:45:59 -07003538 */
Mel Gormane716f2e2017-05-03 14:53:45 -07003539 if (pgdat_balanced(pgdat, sc.order, classzone_idx))
3540 goto out;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08003541
Linus Torvalds1da177e2005-04-16 15:20:36 -07003542 /*
Mel Gorman1d82de62016-07-28 15:45:43 -07003543 * Do some background aging of the anon list, to give
3544 * pages a chance to be referenced before reclaiming. All
3545 * pages are rotated regardless of classzone as this is
3546 * about consistent aging.
3547 */
Mel Gormanef8f2322016-07-28 15:46:05 -07003548 age_active_anon(pgdat, &sc);
Mel Gorman1d82de62016-07-28 15:45:43 -07003549
3550 /*
Mel Gormanb7ea3c42013-07-03 15:01:53 -07003551 * If we're getting trouble reclaiming, start doing writepage
3552 * even in laptop mode.
3553 */
Johannes Weiner047d72c2017-05-03 14:51:57 -07003554 if (sc.priority < DEF_PRIORITY - 2)
Mel Gormanb7ea3c42013-07-03 15:01:53 -07003555 sc.may_writepage = 1;
3556
Mel Gorman1d82de62016-07-28 15:45:43 -07003557 /* Call soft limit reclaim before calling shrink_node. */
3558 sc.nr_scanned = 0;
3559 nr_soft_scanned = 0;
Mel Gormanef8f2322016-07-28 15:46:05 -07003560 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(pgdat, sc.order,
Mel Gorman1d82de62016-07-28 15:45:43 -07003561 sc.gfp_mask, &nr_soft_scanned);
3562 sc.nr_reclaimed += nr_soft_reclaimed;
3563
Mel Gormanb7ea3c42013-07-03 15:01:53 -07003564 /*
Mel Gorman1d82de62016-07-28 15:45:43 -07003565 * There should be no need to raise the scanning priority if
3566 * enough pages are already being scanned that that high
3567 * watermark would be met at 100% efficiency.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003568 */
Mel Gorman970a39a2016-07-28 15:46:35 -07003569 if (kswapd_shrink_node(pgdat, &sc))
Mel Gorman1d82de62016-07-28 15:45:43 -07003570 raise_priority = false;
Mel Gorman55150612012-07-31 16:44:35 -07003571
3572 /*
3573 * If the low watermark is met there is no need for processes
3574 * to be throttled on pfmemalloc_wait as they should not be
3575 * able to safely make forward progress. Wake them
3576 */
3577 if (waitqueue_active(&pgdat->pfmemalloc_wait) &&
Johannes Weinerc73322d2017-05-03 14:51:51 -07003578 allow_direct_reclaim(pgdat))
Vlastimil Babkacfc51152015-02-11 15:25:12 -08003579 wake_up_all(&pgdat->pfmemalloc_wait);
Mel Gorman55150612012-07-31 16:44:35 -07003580
Mel Gormanb8e83b92013-07-03 15:01:45 -07003581 /* Check if kswapd should be suspending */
Omar Sandoval93781322018-06-07 17:07:02 -07003582 __fs_reclaim_release();
3583 ret = try_to_freeze();
3584 __fs_reclaim_acquire();
3585 if (ret || kthread_should_stop())
Mel Gormanb8e83b92013-07-03 15:01:45 -07003586 break;
3587
3588 /*
3589 * Raise priority if scanning rate is too low or there was no
3590 * progress in reclaiming pages
3591 */
Johannes Weinerc73322d2017-05-03 14:51:51 -07003592 nr_reclaimed = sc.nr_reclaimed - nr_reclaimed;
3593 if (raise_priority || !nr_reclaimed)
Mel Gormanb8e83b92013-07-03 15:01:45 -07003594 sc.priority--;
Mel Gorman1d82de62016-07-28 15:45:43 -07003595 } while (sc.priority >= 1);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003596
Johannes Weinerc73322d2017-05-03 14:51:51 -07003597 if (!sc.nr_reclaimed)
3598 pgdat->kswapd_failures++;
3599
Mel Gormanb8e83b92013-07-03 15:01:45 -07003600out:
Johannes Weiner2a2e4882017-05-03 14:55:03 -07003601 snapshot_refaults(NULL, pgdat);
Omar Sandoval93781322018-06-07 17:07:02 -07003602 __fs_reclaim_release();
Mel Gorman0abdee22011-01-13 15:46:22 -08003603 /*
Mel Gorman1d82de62016-07-28 15:45:43 -07003604 * Return the order kswapd stopped reclaiming at as
3605 * prepare_kswapd_sleep() takes it into account. If another caller
3606 * entered the allocator slow path while kswapd was awake, order will
3607 * remain at the higher level.
Mel Gorman0abdee22011-01-13 15:46:22 -08003608 */
Mel Gorman1d82de62016-07-28 15:45:43 -07003609 return sc.order;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003610}
3611
Mel Gormane716f2e2017-05-03 14:53:45 -07003612/*
3613 * pgdat->kswapd_classzone_idx is the highest zone index that a recent
3614 * allocation request woke kswapd for. When kswapd has not woken recently,
3615 * the value is MAX_NR_ZONES which is not a valid index. This compares a
3616 * given classzone and returns it or the highest classzone index kswapd
3617 * was recently woke for.
3618 */
3619static enum zone_type kswapd_classzone_idx(pg_data_t *pgdat,
3620 enum zone_type classzone_idx)
3621{
3622 if (pgdat->kswapd_classzone_idx == MAX_NR_ZONES)
3623 return classzone_idx;
3624
3625 return max(pgdat->kswapd_classzone_idx, classzone_idx);
3626}
3627
Mel Gorman38087d92016-07-28 15:45:49 -07003628static void kswapd_try_to_sleep(pg_data_t *pgdat, int alloc_order, int reclaim_order,
3629 unsigned int classzone_idx)
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003630{
3631 long remaining = 0;
3632 DEFINE_WAIT(wait);
3633
3634 if (freezing(current) || kthread_should_stop())
3635 return;
3636
3637 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3638
Shantanu Goel333b0a42017-05-03 14:53:38 -07003639 /*
3640 * Try to sleep for a short interval. Note that kcompactd will only be
3641 * woken if it is possible to sleep for a short interval. This is
3642 * deliberate on the assumption that if reclaim cannot keep an
3643 * eligible zone balanced that it's also unlikely that compaction will
3644 * succeed.
3645 */
Mel Gormand9f21d42016-07-28 15:46:41 -07003646 if (prepare_kswapd_sleep(pgdat, reclaim_order, classzone_idx)) {
Vlastimil Babkafd901c92016-04-28 16:18:49 -07003647 /*
3648 * Compaction records what page blocks it recently failed to
3649 * isolate pages from and skips them in the future scanning.
3650 * When kswapd is going to sleep, it is reasonable to assume
3651 * that pages and compaction may succeed so reset the cache.
3652 */
3653 reset_isolation_suitable(pgdat);
3654
3655 /*
3656 * We have freed the memory, now we should compact it to make
3657 * allocation of the requested order possible.
3658 */
Mel Gorman38087d92016-07-28 15:45:49 -07003659 wakeup_kcompactd(pgdat, alloc_order, classzone_idx);
Vlastimil Babkafd901c92016-04-28 16:18:49 -07003660
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003661 remaining = schedule_timeout(HZ/10);
Mel Gorman38087d92016-07-28 15:45:49 -07003662
3663 /*
3664 * If woken prematurely then reset kswapd_classzone_idx and
3665 * order. The values will either be from a wakeup request or
3666 * the previous request that slept prematurely.
3667 */
3668 if (remaining) {
Mel Gormane716f2e2017-05-03 14:53:45 -07003669 pgdat->kswapd_classzone_idx = kswapd_classzone_idx(pgdat, classzone_idx);
Mel Gorman38087d92016-07-28 15:45:49 -07003670 pgdat->kswapd_order = max(pgdat->kswapd_order, reclaim_order);
3671 }
3672
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003673 finish_wait(&pgdat->kswapd_wait, &wait);
3674 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3675 }
3676
3677 /*
3678 * After a short sleep, check if it was a premature sleep. If not, then
3679 * go fully to sleep until explicitly woken up.
3680 */
Mel Gormand9f21d42016-07-28 15:46:41 -07003681 if (!remaining &&
3682 prepare_kswapd_sleep(pgdat, reclaim_order, classzone_idx)) {
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003683 trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
3684
3685 /*
3686 * vmstat counters are not perfectly accurate and the estimated
3687 * value for counters such as NR_FREE_PAGES can deviate from the
3688 * true value by nr_online_cpus * threshold. To avoid the zone
3689 * watermarks being breached while under pressure, we reduce the
3690 * per-cpu vmstat threshold while kswapd is awake and restore
3691 * them before going back to sleep.
3692 */
3693 set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold);
Aaditya Kumar1c7e7f62012-07-17 15:48:07 -07003694
3695 if (!kthread_should_stop())
3696 schedule();
3697
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003698 set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold);
3699 } else {
3700 if (remaining)
3701 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
3702 else
3703 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
3704 }
3705 finish_wait(&pgdat->kswapd_wait, &wait);
3706}
3707
Linus Torvalds1da177e2005-04-16 15:20:36 -07003708/*
3709 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07003710 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003711 *
3712 * This basically trickles out pages so that we have _some_
3713 * free memory available even if there is no other activity
3714 * that frees anything up. This is needed for things like routing
3715 * etc, where we otherwise might have all activity going on in
3716 * asynchronous contexts that cannot page things out.
3717 *
3718 * If there are applications that are active memory-allocators
3719 * (most normal use), this basically shouldn't matter.
3720 */
3721static int kswapd(void *p)
3722{
Mel Gormane716f2e2017-05-03 14:53:45 -07003723 unsigned int alloc_order, reclaim_order;
3724 unsigned int classzone_idx = MAX_NR_ZONES - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003725 pg_data_t *pgdat = (pg_data_t*)p;
3726 struct task_struct *tsk = current;
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003727
Linus Torvalds1da177e2005-04-16 15:20:36 -07003728 struct reclaim_state reclaim_state = {
3729 .reclaimed_slab = 0,
3730 };
Rusty Russella70f7302009-03-13 14:49:46 +10303731 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003732
Rusty Russell174596a2009-01-01 10:12:29 +10303733 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07003734 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003735 current->reclaim_state = &reclaim_state;
3736
3737 /*
3738 * Tell the memory management that we're a "memory allocator",
3739 * and that if we need more memory we should get access to it
3740 * regardless (see "__alloc_pages()"). "kswapd" should
3741 * never get caught in the normal page freeing logic.
3742 *
3743 * (Kswapd normally doesn't need memory anyway, but sometimes
3744 * you need a small amount of memory in order to be able to
3745 * page out something else, and this flag essentially protects
3746 * us from recursively trying to free more memory as we're
3747 * trying to free the first piece of memory in the first place).
3748 */
Christoph Lameter930d9152006-01-08 01:00:47 -08003749 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003750 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003751
Mel Gormane716f2e2017-05-03 14:53:45 -07003752 pgdat->kswapd_order = 0;
3753 pgdat->kswapd_classzone_idx = MAX_NR_ZONES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003754 for ( ; ; ) {
Jeff Liu6f6313d2012-12-11 16:02:48 -08003755 bool ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07003756
Mel Gormane716f2e2017-05-03 14:53:45 -07003757 alloc_order = reclaim_order = pgdat->kswapd_order;
3758 classzone_idx = kswapd_classzone_idx(pgdat, classzone_idx);
3759
Mel Gorman38087d92016-07-28 15:45:49 -07003760kswapd_try_sleep:
3761 kswapd_try_to_sleep(pgdat, alloc_order, reclaim_order,
3762 classzone_idx);
Mel Gorman215ddd62011-07-08 15:39:40 -07003763
Mel Gorman38087d92016-07-28 15:45:49 -07003764 /* Read the new order and classzone_idx */
3765 alloc_order = reclaim_order = pgdat->kswapd_order;
Mel Gormane716f2e2017-05-03 14:53:45 -07003766 classzone_idx = kswapd_classzone_idx(pgdat, 0);
Mel Gorman38087d92016-07-28 15:45:49 -07003767 pgdat->kswapd_order = 0;
Mel Gormane716f2e2017-05-03 14:53:45 -07003768 pgdat->kswapd_classzone_idx = MAX_NR_ZONES;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003769
David Rientjes8fe23e02009-12-14 17:58:33 -08003770 ret = try_to_freeze();
3771 if (kthread_should_stop())
3772 break;
3773
3774 /*
3775 * We can speed up thawing tasks if we don't call balance_pgdat
3776 * after returning from the refrigerator
3777 */
Mel Gorman38087d92016-07-28 15:45:49 -07003778 if (ret)
3779 continue;
Mel Gorman1d82de62016-07-28 15:45:43 -07003780
Mel Gorman38087d92016-07-28 15:45:49 -07003781 /*
3782 * Reclaim begins at the requested order but if a high-order
3783 * reclaim fails then kswapd falls back to reclaiming for
3784 * order-0. If that happens, kswapd will consider sleeping
3785 * for the order it finished reclaiming at (reclaim_order)
3786 * but kcompactd is woken to compact for the original
3787 * request (alloc_order).
3788 */
Mel Gormane5146b12016-07-28 15:46:47 -07003789 trace_mm_vmscan_kswapd_wake(pgdat->node_id, classzone_idx,
3790 alloc_order);
Mel Gorman38087d92016-07-28 15:45:49 -07003791 reclaim_order = balance_pgdat(pgdat, alloc_order, classzone_idx);
3792 if (reclaim_order < alloc_order)
3793 goto kswapd_try_sleep;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003794 }
Takamori Yamaguchib0a8cc52012-11-08 15:53:39 -08003795
Johannes Weiner71abdc12014-06-06 14:35:35 -07003796 tsk->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD);
Takamori Yamaguchib0a8cc52012-11-08 15:53:39 -08003797 current->reclaim_state = NULL;
Johannes Weiner71abdc12014-06-06 14:35:35 -07003798
Linus Torvalds1da177e2005-04-16 15:20:36 -07003799 return 0;
3800}
3801
3802/*
David Rientjes5ecd9d42018-04-05 16:25:16 -07003803 * A zone is low on free memory or too fragmented for high-order memory. If
3804 * kswapd should reclaim (direct reclaim is deferred), wake it up for the zone's
3805 * pgdat. It will wake up kcompactd after reclaiming memory. If kswapd reclaim
3806 * has failed or is not needed, still wake up kcompactd if only compaction is
3807 * needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003808 */
David Rientjes5ecd9d42018-04-05 16:25:16 -07003809void wakeup_kswapd(struct zone *zone, gfp_t gfp_flags, int order,
3810 enum zone_type classzone_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003811{
3812 pg_data_t *pgdat;
3813
Mel Gorman6aa303d2016-09-01 16:14:55 -07003814 if (!managed_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003815 return;
3816
David Rientjes5ecd9d42018-04-05 16:25:16 -07003817 if (!cpuset_zone_allowed(zone, gfp_flags))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003818 return;
Mel Gorman88f5acf2011-01-13 15:45:41 -08003819 pgdat = zone->zone_pgdat;
Mel Gormane716f2e2017-05-03 14:53:45 -07003820 pgdat->kswapd_classzone_idx = kswapd_classzone_idx(pgdat,
3821 classzone_idx);
Mel Gorman38087d92016-07-28 15:45:49 -07003822 pgdat->kswapd_order = max(pgdat->kswapd_order, order);
Con Kolivas8d0986e2005-09-13 01:25:07 -07003823 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003824 return;
Mel Gormane1a55632016-07-28 15:46:26 -07003825
David Rientjes5ecd9d42018-04-05 16:25:16 -07003826 /* Hopeless node, leave it to direct reclaim if possible */
3827 if (pgdat->kswapd_failures >= MAX_RECLAIM_RETRIES ||
3828 pgdat_balanced(pgdat, order, classzone_idx)) {
3829 /*
3830 * There may be plenty of free memory available, but it's too
3831 * fragmented for high-order allocations. Wake up kcompactd
3832 * and rely on compaction_suitable() to determine if it's
3833 * needed. If it fails, it will defer subsequent attempts to
3834 * ratelimit its work.
3835 */
3836 if (!(gfp_flags & __GFP_DIRECT_RECLAIM))
3837 wakeup_kcompactd(pgdat, order, classzone_idx);
Johannes Weinerc73322d2017-05-03 14:51:51 -07003838 return;
David Rientjes5ecd9d42018-04-05 16:25:16 -07003839 }
Johannes Weinerc73322d2017-05-03 14:51:51 -07003840
David Rientjes5ecd9d42018-04-05 16:25:16 -07003841 trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, classzone_idx, order,
3842 gfp_flags);
Con Kolivas8d0986e2005-09-13 01:25:07 -07003843 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003844}
3845
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02003846#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07003847/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003848 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003849 * freed pages.
3850 *
3851 * Rather than trying to age LRUs the aim is to preserve the overall
3852 * LRU order by reclaiming preferentially
3853 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07003854 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003855unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003856{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003857 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003858 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003859 .nr_to_reclaim = nr_to_reclaim,
Johannes Weineree814fe2014-08-06 16:06:19 -07003860 .gfp_mask = GFP_HIGHUSER_MOVABLE,
Mel Gormanb2e18752016-07-28 15:45:37 -07003861 .reclaim_idx = MAX_NR_ZONES - 1,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003862 .priority = DEF_PRIORITY,
Johannes Weineree814fe2014-08-06 16:06:19 -07003863 .may_writepage = 1,
3864 .may_unmap = 1,
3865 .may_swap = 1,
3866 .hibernation_mode = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003867 };
Ying Hana09ed5e2011-05-24 17:12:26 -07003868 struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003869 struct task_struct *p = current;
3870 unsigned long nr_reclaimed;
Vlastimil Babka499118e2017-05-08 15:59:50 -07003871 unsigned int noreclaim_flag;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003872
Peter Zijlstrad92a8cf2017-03-03 10:13:38 +01003873 fs_reclaim_acquire(sc.gfp_mask);
Omar Sandoval93781322018-06-07 17:07:02 -07003874 noreclaim_flag = memalloc_noreclaim_save();
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003875 reclaim_state.reclaimed_slab = 0;
3876 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08003877
Vladimir Davydov3115cd92014-04-03 14:47:22 -07003878 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003879
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003880 p->reclaim_state = NULL;
Vlastimil Babka499118e2017-05-08 15:59:50 -07003881 memalloc_noreclaim_restore(noreclaim_flag);
Omar Sandoval93781322018-06-07 17:07:02 -07003882 fs_reclaim_release(sc.gfp_mask);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003883
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003884 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003885}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02003886#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003887
Linus Torvalds1da177e2005-04-16 15:20:36 -07003888/* It's optimal to keep kswapds on the same CPUs as their memory, but
3889 not required for correctness. So if the last cpu in a node goes
3890 away, we get changed to run anywhere: as the first one comes back,
3891 restore their cpu bindings. */
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003892static int kswapd_cpu_online(unsigned int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003893{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07003894 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003895
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003896 for_each_node_state(nid, N_MEMORY) {
3897 pg_data_t *pgdat = NODE_DATA(nid);
3898 const struct cpumask *mask;
Rusty Russella70f7302009-03-13 14:49:46 +10303899
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003900 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07003901
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003902 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
3903 /* One of our CPUs online: restore mask */
3904 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003905 }
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003906 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003907}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003908
Yasunori Goto3218ae12006-06-27 02:53:33 -07003909/*
3910 * This kswapd start function will be called by init and node-hot-add.
3911 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
3912 */
3913int kswapd_run(int nid)
3914{
3915 pg_data_t *pgdat = NODE_DATA(nid);
3916 int ret = 0;
3917
3918 if (pgdat->kswapd)
3919 return 0;
3920
3921 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
3922 if (IS_ERR(pgdat->kswapd)) {
3923 /* failure at boot is fatal */
Thomas Gleixnerc6202ad2017-05-16 20:42:46 +02003924 BUG_ON(system_state < SYSTEM_RUNNING);
Gavin Shand5dc0ad2012-10-08 16:29:27 -07003925 pr_err("Failed to start kswapd on node %d\n", nid);
3926 ret = PTR_ERR(pgdat->kswapd);
Xishi Qiud72515b2013-04-17 15:58:34 -07003927 pgdat->kswapd = NULL;
Yasunori Goto3218ae12006-06-27 02:53:33 -07003928 }
3929 return ret;
3930}
3931
David Rientjes8fe23e02009-12-14 17:58:33 -08003932/*
Jiang Liud8adde12012-07-11 14:01:52 -07003933 * Called by memory hotplug when all memory in a node is offlined. Caller must
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07003934 * hold mem_hotplug_begin/end().
David Rientjes8fe23e02009-12-14 17:58:33 -08003935 */
3936void kswapd_stop(int nid)
3937{
3938 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
3939
Jiang Liud8adde12012-07-11 14:01:52 -07003940 if (kswapd) {
David Rientjes8fe23e02009-12-14 17:58:33 -08003941 kthread_stop(kswapd);
Jiang Liud8adde12012-07-11 14:01:52 -07003942 NODE_DATA(nid)->kswapd = NULL;
3943 }
David Rientjes8fe23e02009-12-14 17:58:33 -08003944}
3945
Linus Torvalds1da177e2005-04-16 15:20:36 -07003946static int __init kswapd_init(void)
3947{
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003948 int nid, ret;
Andrew Morton69e05942006-03-22 00:08:19 -08003949
Linus Torvalds1da177e2005-04-16 15:20:36 -07003950 swap_setup();
Lai Jiangshan48fb2e22012-12-12 13:51:43 -08003951 for_each_node_state(nid, N_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07003952 kswapd_run(nid);
Sebastian Andrzej Siewior517bbed2016-11-03 15:50:03 +01003953 ret = cpuhp_setup_state_nocalls(CPUHP_AP_ONLINE_DYN,
3954 "mm/vmscan:online", kswapd_cpu_online,
3955 NULL);
3956 WARN_ON(ret < 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003957 return 0;
3958}
3959
3960module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08003961
3962#ifdef CONFIG_NUMA
3963/*
Mel Gormana5f5f912016-07-28 15:46:32 -07003964 * Node reclaim mode
Christoph Lameter9eeff232006-01-18 17:42:31 -08003965 *
Mel Gormana5f5f912016-07-28 15:46:32 -07003966 * If non-zero call node_reclaim when the number of free pages falls below
Christoph Lameter9eeff232006-01-18 17:42:31 -08003967 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08003968 */
Mel Gormana5f5f912016-07-28 15:46:32 -07003969int node_reclaim_mode __read_mostly;
Christoph Lameter9eeff232006-01-18 17:42:31 -08003970
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08003971#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07003972#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08003973#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003974#define RECLAIM_UNMAP (1<<2) /* Unmap pages during reclaim */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08003975
Christoph Lameter9eeff232006-01-18 17:42:31 -08003976/*
Mel Gormana5f5f912016-07-28 15:46:32 -07003977 * Priority for NODE_RECLAIM. This determines the fraction of pages
Christoph Lametera92f7122006-02-01 03:05:32 -08003978 * of a node considered for each zone_reclaim. 4 scans 1/16th of
3979 * a zone.
3980 */
Mel Gormana5f5f912016-07-28 15:46:32 -07003981#define NODE_RECLAIM_PRIORITY 4
Christoph Lametera92f7122006-02-01 03:05:32 -08003982
Christoph Lameter9eeff232006-01-18 17:42:31 -08003983/*
Mel Gormana5f5f912016-07-28 15:46:32 -07003984 * Percentage of pages in a zone that must be unmapped for node_reclaim to
Christoph Lameter96146342006-07-03 00:24:13 -07003985 * occur.
3986 */
3987int sysctl_min_unmapped_ratio = 1;
3988
3989/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07003990 * If the number of slab pages in a zone grows beyond this percentage then
3991 * slab reclaim needs to occur.
3992 */
3993int sysctl_min_slab_ratio = 5;
3994
Mel Gorman11fb9982016-07-28 15:46:20 -07003995static inline unsigned long node_unmapped_file_pages(struct pglist_data *pgdat)
Mel Gorman90afa5d2009-06-16 15:33:20 -07003996{
Mel Gorman11fb9982016-07-28 15:46:20 -07003997 unsigned long file_mapped = node_page_state(pgdat, NR_FILE_MAPPED);
3998 unsigned long file_lru = node_page_state(pgdat, NR_INACTIVE_FILE) +
3999 node_page_state(pgdat, NR_ACTIVE_FILE);
Mel Gorman90afa5d2009-06-16 15:33:20 -07004000
4001 /*
4002 * It's possible for there to be more file mapped pages than
4003 * accounted for by the pages on the file LRU lists because
4004 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
4005 */
4006 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
4007}
4008
4009/* Work out how many page cache pages we can reclaim in this reclaim_mode */
Mel Gormana5f5f912016-07-28 15:46:32 -07004010static unsigned long node_pagecache_reclaimable(struct pglist_data *pgdat)
Mel Gorman90afa5d2009-06-16 15:33:20 -07004011{
Alexandru Moised031a152015-11-05 18:48:08 -08004012 unsigned long nr_pagecache_reclaimable;
4013 unsigned long delta = 0;
Mel Gorman90afa5d2009-06-16 15:33:20 -07004014
4015 /*
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07004016 * If RECLAIM_UNMAP is set, then all file pages are considered
Mel Gorman90afa5d2009-06-16 15:33:20 -07004017 * potentially reclaimable. Otherwise, we have to worry about
Mel Gorman11fb9982016-07-28 15:46:20 -07004018 * pages like swapcache and node_unmapped_file_pages() provides
Mel Gorman90afa5d2009-06-16 15:33:20 -07004019 * a better estimate
4020 */
Mel Gormana5f5f912016-07-28 15:46:32 -07004021 if (node_reclaim_mode & RECLAIM_UNMAP)
4022 nr_pagecache_reclaimable = node_page_state(pgdat, NR_FILE_PAGES);
Mel Gorman90afa5d2009-06-16 15:33:20 -07004023 else
Mel Gormana5f5f912016-07-28 15:46:32 -07004024 nr_pagecache_reclaimable = node_unmapped_file_pages(pgdat);
Mel Gorman90afa5d2009-06-16 15:33:20 -07004025
4026 /* If we can't clean pages, remove dirty pages from consideration */
Mel Gormana5f5f912016-07-28 15:46:32 -07004027 if (!(node_reclaim_mode & RECLAIM_WRITE))
4028 delta += node_page_state(pgdat, NR_FILE_DIRTY);
Mel Gorman90afa5d2009-06-16 15:33:20 -07004029
4030 /* Watch for any possible underflows due to delta */
4031 if (unlikely(delta > nr_pagecache_reclaimable))
4032 delta = nr_pagecache_reclaimable;
4033
4034 return nr_pagecache_reclaimable - delta;
4035}
4036
Christoph Lameter0ff38492006-09-25 23:31:52 -07004037/*
Mel Gormana5f5f912016-07-28 15:46:32 -07004038 * Try to free up some pages from this node through reclaim.
Christoph Lameter9eeff232006-01-18 17:42:31 -08004039 */
Mel Gormana5f5f912016-07-28 15:46:32 -07004040static int __node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08004041{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08004042 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08004043 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08004044 struct task_struct *p = current;
4045 struct reclaim_state reclaim_state;
Vlastimil Babka499118e2017-05-08 15:59:50 -07004046 unsigned int noreclaim_flag;
Andrew Morton179e9632006-03-22 00:08:18 -08004047 struct scan_control sc = {
Andrew Morton62b726c2013-02-22 16:32:24 -08004048 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
Nick Desaulniersf2f43e52017-07-06 15:36:50 -07004049 .gfp_mask = current_gfp_context(gfp_mask),
Johannes Weinerbd2f6192009-03-31 15:19:38 -07004050 .order = order,
Mel Gormana5f5f912016-07-28 15:46:32 -07004051 .priority = NODE_RECLAIM_PRIORITY,
4052 .may_writepage = !!(node_reclaim_mode & RECLAIM_WRITE),
4053 .may_unmap = !!(node_reclaim_mode & RECLAIM_UNMAP),
Johannes Weineree814fe2014-08-06 16:06:19 -07004054 .may_swap = 1,
Nick Desaulniersf2f43e52017-07-06 15:36:50 -07004055 .reclaim_idx = gfp_zone(gfp_mask),
Andrew Morton179e9632006-03-22 00:08:18 -08004056 };
Christoph Lameter9eeff232006-01-18 17:42:31 -08004057
Christoph Lameter9eeff232006-01-18 17:42:31 -08004058 cond_resched();
Omar Sandoval93781322018-06-07 17:07:02 -07004059 fs_reclaim_acquire(sc.gfp_mask);
Christoph Lameterd4f77962006-02-24 13:04:22 -08004060 /*
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07004061 * We need to be able to allocate from the reserves for RECLAIM_UNMAP
Christoph Lameterd4f77962006-02-24 13:04:22 -08004062 * and we also need to be able to write out pages for RECLAIM_WRITE
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07004063 * and RECLAIM_UNMAP.
Christoph Lameterd4f77962006-02-24 13:04:22 -08004064 */
Vlastimil Babka499118e2017-05-08 15:59:50 -07004065 noreclaim_flag = memalloc_noreclaim_save();
4066 p->flags |= PF_SWAPWRITE;
Christoph Lameter9eeff232006-01-18 17:42:31 -08004067 reclaim_state.reclaimed_slab = 0;
4068 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08004069
Mel Gormana5f5f912016-07-28 15:46:32 -07004070 if (node_pagecache_reclaimable(pgdat) > pgdat->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07004071 /*
Andrey Ryabinin894befe2018-04-10 16:27:51 -07004072 * Free memory by calling shrink node with increasing
Christoph Lameter0ff38492006-09-25 23:31:52 -07004073 * priorities until we have enough memory freed.
4074 */
Christoph Lameter0ff38492006-09-25 23:31:52 -07004075 do {
Mel Gorman970a39a2016-07-28 15:46:35 -07004076 shrink_node(pgdat, &sc);
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07004077 } while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0);
Christoph Lameter0ff38492006-09-25 23:31:52 -07004078 }
Christoph Lameterc84db232006-02-01 03:05:29 -08004079
Christoph Lameter9eeff232006-01-18 17:42:31 -08004080 p->reclaim_state = NULL;
Vlastimil Babka499118e2017-05-08 15:59:50 -07004081 current->flags &= ~PF_SWAPWRITE;
4082 memalloc_noreclaim_restore(noreclaim_flag);
Omar Sandoval93781322018-06-07 17:07:02 -07004083 fs_reclaim_release(sc.gfp_mask);
Rik van Riela79311c2009-01-06 14:40:01 -08004084 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08004085}
Andrew Morton179e9632006-03-22 00:08:18 -08004086
Mel Gormana5f5f912016-07-28 15:46:32 -07004087int node_reclaim(struct pglist_data *pgdat, gfp_t gfp_mask, unsigned int order)
Andrew Morton179e9632006-03-22 00:08:18 -08004088{
David Rientjesd773ed62007-10-16 23:26:01 -07004089 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08004090
4091 /*
Mel Gormana5f5f912016-07-28 15:46:32 -07004092 * Node reclaim reclaims unmapped file backed pages and
Christoph Lameter0ff38492006-09-25 23:31:52 -07004093 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07004094 *
Christoph Lameter96146342006-07-03 00:24:13 -07004095 * A small portion of unmapped file backed pages is needed for
4096 * file I/O otherwise pages read by file I/O will be immediately
Mel Gormana5f5f912016-07-28 15:46:32 -07004097 * thrown out if the node is overallocated. So we do not reclaim
4098 * if less than a specified percentage of the node is used by
Christoph Lameter96146342006-07-03 00:24:13 -07004099 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08004100 */
Mel Gormana5f5f912016-07-28 15:46:32 -07004101 if (node_pagecache_reclaimable(pgdat) <= pgdat->min_unmapped_pages &&
Johannes Weiner385386c2017-07-06 15:40:43 -07004102 node_page_state(pgdat, NR_SLAB_RECLAIMABLE) <= pgdat->min_slab_pages)
Mel Gormana5f5f912016-07-28 15:46:32 -07004103 return NODE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08004104
4105 /*
David Rientjesd773ed62007-10-16 23:26:01 -07004106 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08004107 */
Mel Gormand0164ad2015-11-06 16:28:21 -08004108 if (!gfpflags_allow_blocking(gfp_mask) || (current->flags & PF_MEMALLOC))
Mel Gormana5f5f912016-07-28 15:46:32 -07004109 return NODE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08004110
4111 /*
Mel Gormana5f5f912016-07-28 15:46:32 -07004112 * Only run node reclaim on the local node or on nodes that do not
Andrew Morton179e9632006-03-22 00:08:18 -08004113 * have associated processors. This will favor the local processor
4114 * over remote processors and spread off node memory allocations
4115 * as wide as possible.
4116 */
Mel Gormana5f5f912016-07-28 15:46:32 -07004117 if (node_state(pgdat->node_id, N_CPU) && pgdat->node_id != numa_node_id())
4118 return NODE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07004119
Mel Gormana5f5f912016-07-28 15:46:32 -07004120 if (test_and_set_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags))
4121 return NODE_RECLAIM_NOSCAN;
Mel Gormanfa5e0842009-06-16 15:33:22 -07004122
Mel Gormana5f5f912016-07-28 15:46:32 -07004123 ret = __node_reclaim(pgdat, gfp_mask, order);
4124 clear_bit(PGDAT_RECLAIM_LOCKED, &pgdat->flags);
David Rientjesd773ed62007-10-16 23:26:01 -07004125
Mel Gorman24cf725182009-06-16 15:33:23 -07004126 if (!ret)
4127 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
4128
David Rientjesd773ed62007-10-16 23:26:01 -07004129 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08004130}
Christoph Lameter9eeff232006-01-18 17:42:31 -08004131#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004132
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004133/*
4134 * page_evictable - test whether a page is evictable
4135 * @page: the page to test
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004136 *
4137 * Test whether page is evictable--i.e., should be placed on active/inactive
Hugh Dickins39b5f292012-10-08 16:33:18 -07004138 * lists vs unevictable list.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004139 *
4140 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07004141 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07004142 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07004143 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004144 */
Hugh Dickins39b5f292012-10-08 16:33:18 -07004145int page_evictable(struct page *page)
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004146{
Huang Yinge92bb4d2018-04-05 16:23:20 -07004147 int ret;
4148
4149 /* Prevent address_space of inode and swap cache from being freed */
4150 rcu_read_lock();
4151 ret = !mapping_unevictable(page_mapping(page)) && !PageMlocked(page);
4152 rcu_read_unlock();
4153 return ret;
Lee Schermerhorn894bc312008-10-18 20:26:39 -07004154}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004155
Hugh Dickins850465792012-01-20 14:34:19 -08004156#ifdef CONFIG_SHMEM
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004157/**
Hugh Dickins24513262012-01-20 14:34:21 -08004158 * check_move_unevictable_pages - check pages for evictability and move to appropriate zone lru list
4159 * @pages: array of pages to check
4160 * @nr_pages: number of pages to check
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004161 *
Hugh Dickins24513262012-01-20 14:34:21 -08004162 * Checks pages for evictability and moves them to the appropriate lru list.
Hugh Dickins850465792012-01-20 14:34:19 -08004163 *
4164 * This function is only used for SysV IPC SHM_UNLOCK.
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004165 */
Hugh Dickins24513262012-01-20 14:34:21 -08004166void check_move_unevictable_pages(struct page **pages, int nr_pages)
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004167{
Johannes Weiner925b7672012-01-12 17:18:15 -08004168 struct lruvec *lruvec;
Mel Gorman785b99f2016-07-28 15:47:23 -07004169 struct pglist_data *pgdat = NULL;
Hugh Dickins24513262012-01-20 14:34:21 -08004170 int pgscanned = 0;
4171 int pgrescued = 0;
4172 int i;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004173
Hugh Dickins24513262012-01-20 14:34:21 -08004174 for (i = 0; i < nr_pages; i++) {
4175 struct page *page = pages[i];
Mel Gorman785b99f2016-07-28 15:47:23 -07004176 struct pglist_data *pagepgdat = page_pgdat(page);
Lee Schermerhornaf936a12008-10-18 20:26:53 -07004177
Hugh Dickins24513262012-01-20 14:34:21 -08004178 pgscanned++;
Mel Gorman785b99f2016-07-28 15:47:23 -07004179 if (pagepgdat != pgdat) {
4180 if (pgdat)
4181 spin_unlock_irq(&pgdat->lru_lock);
4182 pgdat = pagepgdat;
4183 spin_lock_irq(&pgdat->lru_lock);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004184 }
Mel Gorman785b99f2016-07-28 15:47:23 -07004185 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004186
Hugh Dickins24513262012-01-20 14:34:21 -08004187 if (!PageLRU(page) || !PageUnevictable(page))
4188 continue;
4189
Hugh Dickins39b5f292012-10-08 16:33:18 -07004190 if (page_evictable(page)) {
Hugh Dickins24513262012-01-20 14:34:21 -08004191 enum lru_list lru = page_lru_base_type(page);
4192
Sasha Levin309381fea2014-01-23 15:52:54 -08004193 VM_BUG_ON_PAGE(PageActive(page), page);
Hugh Dickins24513262012-01-20 14:34:21 -08004194 ClearPageUnevictable(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07004195 del_page_from_lru_list(page, lruvec, LRU_UNEVICTABLE);
4196 add_page_to_lru_list(page, lruvec, lru);
Hugh Dickins24513262012-01-20 14:34:21 -08004197 pgrescued++;
4198 }
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07004199 }
Hugh Dickins24513262012-01-20 14:34:21 -08004200
Mel Gorman785b99f2016-07-28 15:47:23 -07004201 if (pgdat) {
Hugh Dickins24513262012-01-20 14:34:21 -08004202 __count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued);
4203 __count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
Mel Gorman785b99f2016-07-28 15:47:23 -07004204 spin_unlock_irq(&pgdat->lru_lock);
Hugh Dickins24513262012-01-20 14:34:21 -08004205 }
Hugh Dickins850465792012-01-20 14:34:19 -08004206}
4207#endif /* CONFIG_SHMEM */