blob: 86a523a761c9128559e81cc156dad31facb291b1 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/vmscan.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 *
6 * Swap reorganised 29.12.95, Stephen Tweedie.
7 * kswapd added: 7.1.96 sct
8 * Removed kswapd_ctl limits, and swap out as many pages as needed
9 * to bring the system back to freepages.high: 2.4.97, Rik van Riel.
10 * Zone aware kswapd started 02/00, Kanoj Sarcar (kanoj@sgi.com).
11 * Multiqueue VM started 5.8.00, Rik van Riel.
12 */
13
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070014#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/mm.h>
17#include <linux/module.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090018#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070019#include <linux/kernel_stat.h>
20#include <linux/swap.h>
21#include <linux/pagemap.h>
22#include <linux/init.h>
23#include <linux/highmem.h>
Anton Vorontsov70ddf632013-04-29 15:08:31 -070024#include <linux/vmpressure.h>
Andrew Mortone129b5c2006-09-27 01:50:00 -070025#include <linux/vmstat.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/file.h>
27#include <linux/writeback.h>
28#include <linux/blkdev.h>
29#include <linux/buffer_head.h> /* for try_to_release_page(),
30 buffer_heads_over_limit */
31#include <linux/mm_inline.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/backing-dev.h>
33#include <linux/rmap.h>
34#include <linux/topology.h>
35#include <linux/cpu.h>
36#include <linux/cpuset.h>
Mel Gorman3e7d3442011-01-13 15:45:56 -080037#include <linux/compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070038#include <linux/notifier.h>
39#include <linux/rwsem.h>
Rafael J. Wysocki248a0302006-03-22 00:09:04 -080040#include <linux/delay.h>
Yasunori Goto3218ae12006-06-27 02:53:33 -070041#include <linux/kthread.h>
Nigel Cunningham7dfb7102006-12-06 20:34:23 -080042#include <linux/freezer.h>
Balbir Singh66e17072008-02-07 00:13:56 -080043#include <linux/memcontrol.h>
Keika Kobayashi873b4772008-07-25 01:48:52 -070044#include <linux/delayacct.h>
Lee Schermerhornaf936a12008-10-18 20:26:53 -070045#include <linux/sysctl.h>
KOSAKI Motohiro929bea72011-04-14 15:22:12 -070046#include <linux/oom.h>
Linus Torvalds268bb0c2011-05-20 12:50:29 -070047#include <linux/prefetch.h>
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -070048#include <linux/printk.h>
Ross Zwislerf9fe48b2016-01-22 15:10:40 -080049#include <linux/dax.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
51#include <asm/tlbflush.h>
52#include <asm/div64.h>
53
54#include <linux/swapops.h>
Rafael Aquini117aad12013-09-30 13:45:16 -070055#include <linux/balloon_compaction.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070056
Nick Piggin0f8053a2006-03-22 00:08:33 -080057#include "internal.h"
58
Mel Gorman33906bc2010-08-09 17:19:16 -070059#define CREATE_TRACE_POINTS
60#include <trace/events/vmscan.h>
61
Linus Torvalds1da177e2005-04-16 15:20:36 -070062struct scan_control {
KOSAKI Motohiro22fba332009-12-14 17:59:10 -080063 /* How many pages shrink_list() should reclaim */
64 unsigned long nr_to_reclaim;
65
Linus Torvalds1da177e2005-04-16 15:20:36 -070066 /* This context's GFP mask */
Al Viro6daa0e22005-10-21 03:18:50 -040067 gfp_t gfp_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -070068
Johannes Weineree814fe2014-08-06 16:06:19 -070069 /* Allocation order */
Andy Whitcroft5ad333e2007-07-17 04:03:16 -070070 int order;
Balbir Singh66e17072008-02-07 00:13:56 -080071
Johannes Weineree814fe2014-08-06 16:06:19 -070072 /*
73 * Nodemask of nodes allowed by the caller. If NULL, all nodes
74 * are scanned.
75 */
76 nodemask_t *nodemask;
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -070077
KOSAKI Motohiro5f53e762010-05-24 14:32:37 -070078 /*
Johannes Weinerf16015f2012-01-12 17:17:52 -080079 * The memory cgroup that hit its limit and as a result is the
80 * primary target of this reclaim invocation.
81 */
82 struct mem_cgroup *target_mem_cgroup;
Balbir Singh66e17072008-02-07 00:13:56 -080083
Johannes Weineree814fe2014-08-06 16:06:19 -070084 /* Scan (total_size >> priority) pages at once */
85 int priority;
86
87 unsigned int may_writepage:1;
88
89 /* Can mapped pages be reclaimed? */
90 unsigned int may_unmap:1;
91
92 /* Can pages be swapped as part of reclaim? */
93 unsigned int may_swap:1;
94
Johannes Weiner241994ed2015-02-11 15:26:06 -080095 /* Can cgroups be reclaimed below their normal consumption range? */
96 unsigned int may_thrash:1;
97
Johannes Weineree814fe2014-08-06 16:06:19 -070098 unsigned int hibernation_mode:1;
99
100 /* One of the zones is ready for compaction */
101 unsigned int compaction_ready:1;
102
103 /* Incremented by the number of inactive pages that were scanned */
104 unsigned long nr_scanned;
105
106 /* Number of pages freed so far during a call to shrink_zones() */
107 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108};
109
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110#ifdef ARCH_HAS_PREFETCH
111#define prefetch_prev_lru_page(_page, _base, _field) \
112 do { \
113 if ((_page)->lru.prev != _base) { \
114 struct page *prev; \
115 \
116 prev = lru_to_page(&(_page->lru)); \
117 prefetch(&prev->_field); \
118 } \
119 } while (0)
120#else
121#define prefetch_prev_lru_page(_page, _base, _field) do { } while (0)
122#endif
123
124#ifdef ARCH_HAS_PREFETCHW
125#define prefetchw_prev_lru_page(_page, _base, _field) \
126 do { \
127 if ((_page)->lru.prev != _base) { \
128 struct page *prev; \
129 \
130 prev = lru_to_page(&(_page->lru)); \
131 prefetchw(&prev->_field); \
132 } \
133 } while (0)
134#else
135#define prefetchw_prev_lru_page(_page, _base, _field) do { } while (0)
136#endif
137
138/*
139 * From 0 .. 100. Higher means more swappy.
140 */
141int vm_swappiness = 60;
Wang Sheng-Huid0480be2014-08-06 16:07:07 -0700142/*
143 * The total number of pages which are beyond the high watermark within all
144 * zones.
145 */
146unsigned long vm_total_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147
148static LIST_HEAD(shrinker_list);
149static DECLARE_RWSEM(shrinker_rwsem);
150
Andrew Mortonc255a452012-07-31 16:43:02 -0700151#ifdef CONFIG_MEMCG
Johannes Weiner89b5fae2012-01-12 17:17:50 -0800152static bool global_reclaim(struct scan_control *sc)
153{
Johannes Weinerf16015f2012-01-12 17:17:52 -0800154 return !sc->target_mem_cgroup;
Johannes Weiner89b5fae2012-01-12 17:17:50 -0800155}
Tejun Heo97c93412015-05-22 18:23:36 -0400156
157/**
158 * sane_reclaim - is the usual dirty throttling mechanism operational?
159 * @sc: scan_control in question
160 *
161 * The normal page dirty throttling mechanism in balance_dirty_pages() is
162 * completely broken with the legacy memcg and direct stalling in
163 * shrink_page_list() is used for throttling instead, which lacks all the
164 * niceties such as fairness, adaptive pausing, bandwidth proportional
165 * allocation and configurability.
166 *
167 * This function tests whether the vmscan currently in progress can assume
168 * that the normal dirty throttling mechanism is operational.
169 */
170static bool sane_reclaim(struct scan_control *sc)
171{
172 struct mem_cgroup *memcg = sc->target_mem_cgroup;
173
174 if (!memcg)
175 return true;
176#ifdef CONFIG_CGROUP_WRITEBACK
Linus Torvalds69234ac2015-11-05 14:51:32 -0800177 if (cgroup_subsys_on_dfl(memory_cgrp_subsys))
Tejun Heo97c93412015-05-22 18:23:36 -0400178 return true;
179#endif
180 return false;
181}
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800182#else
Johannes Weiner89b5fae2012-01-12 17:17:50 -0800183static bool global_reclaim(struct scan_control *sc)
184{
185 return true;
186}
Tejun Heo97c93412015-05-22 18:23:36 -0400187
188static bool sane_reclaim(struct scan_control *sc)
189{
190 return true;
191}
KAMEZAWA Hiroyuki91a45472008-02-07 00:14:29 -0800192#endif
193
Mel Gorman599d0c92016-07-28 15:45:31 -0700194/*
195 * This misses isolated pages which are not accounted for to save counters.
196 * As the data only determines if reclaim or compaction continues, it is
197 * not expected that isolated pages will be a dominating factor.
198 */
Michal Hocko0a0337e2016-05-20 16:57:00 -0700199unsigned long zone_reclaimable_pages(struct zone *zone)
Lisa Du6e543d52013-09-11 14:22:36 -0700200{
Alexandru Moised031a152015-11-05 18:48:08 -0800201 unsigned long nr;
Lisa Du6e543d52013-09-11 14:22:36 -0700202
Mel Gorman599d0c92016-07-28 15:45:31 -0700203 nr = zone_page_state_snapshot(zone, NR_ZONE_LRU_FILE);
Lisa Du6e543d52013-09-11 14:22:36 -0700204 if (get_nr_swap_pages() > 0)
Mel Gorman599d0c92016-07-28 15:45:31 -0700205 nr += zone_page_state_snapshot(zone, NR_ZONE_LRU_ANON);
Lisa Du6e543d52013-09-11 14:22:36 -0700206
207 return nr;
208}
209
Mel Gorman599d0c92016-07-28 15:45:31 -0700210unsigned long pgdat_reclaimable_pages(struct pglist_data *pgdat)
Lisa Du6e543d52013-09-11 14:22:36 -0700211{
Mel Gorman599d0c92016-07-28 15:45:31 -0700212 unsigned long nr;
213
214 nr = node_page_state_snapshot(pgdat, NR_ACTIVE_FILE) +
215 node_page_state_snapshot(pgdat, NR_INACTIVE_FILE) +
216 node_page_state_snapshot(pgdat, NR_ISOLATED_FILE);
217
218 if (get_nr_swap_pages() > 0)
219 nr += node_page_state_snapshot(pgdat, NR_ACTIVE_ANON) +
220 node_page_state_snapshot(pgdat, NR_INACTIVE_ANON) +
221 node_page_state_snapshot(pgdat, NR_ISOLATED_ANON);
222
223 return nr;
224}
225
226bool pgdat_reclaimable(struct pglist_data *pgdat)
227{
228 return node_page_state_snapshot(pgdat, NR_PAGES_SCANNED) <
229 pgdat_reclaimable_pages(pgdat) * 6;
Lisa Du6e543d52013-09-11 14:22:36 -0700230}
231
Johannes Weiner23047a92016-03-15 14:57:16 -0700232unsigned long lruvec_lru_size(struct lruvec *lruvec, enum lru_list lru)
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800233{
Hugh Dickinsc3c787e2012-05-29 15:06:52 -0700234 if (!mem_cgroup_disabled())
Hugh Dickins4d7dcca2012-05-29 15:07:08 -0700235 return mem_cgroup_get_lru_size(lruvec, lru);
KOSAKI Motohiroa3d8e052009-01-07 18:08:19 -0800236
Mel Gorman599d0c92016-07-28 15:45:31 -0700237 return node_page_state(lruvec_pgdat(lruvec), NR_LRU_BASE + lru);
KOSAKI Motohiroc9f299d2009-01-07 18:08:16 -0800238}
239
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240/*
Glauber Costa1d3d4432013-08-28 10:18:04 +1000241 * Add a shrinker callback to be called from the vm.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242 */
Glauber Costa1d3d4432013-08-28 10:18:04 +1000243int register_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700244{
Glauber Costa1d3d4432013-08-28 10:18:04 +1000245 size_t size = sizeof(*shrinker->nr_deferred);
246
Glauber Costa1d3d4432013-08-28 10:18:04 +1000247 if (shrinker->flags & SHRINKER_NUMA_AWARE)
248 size *= nr_node_ids;
249
250 shrinker->nr_deferred = kzalloc(size, GFP_KERNEL);
251 if (!shrinker->nr_deferred)
252 return -ENOMEM;
253
Rusty Russell8e1f9362007-07-17 04:03:17 -0700254 down_write(&shrinker_rwsem);
255 list_add_tail(&shrinker->list, &shrinker_list);
256 up_write(&shrinker_rwsem);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000257 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700259EXPORT_SYMBOL(register_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260
261/*
262 * Remove one
263 */
Rusty Russell8e1f9362007-07-17 04:03:17 -0700264void unregister_shrinker(struct shrinker *shrinker)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700265{
266 down_write(&shrinker_rwsem);
267 list_del(&shrinker->list);
268 up_write(&shrinker_rwsem);
Andrew Vaginae393322013-10-16 13:46:46 -0700269 kfree(shrinker->nr_deferred);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270}
Rusty Russell8e1f9362007-07-17 04:03:17 -0700271EXPORT_SYMBOL(unregister_shrinker);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700272
273#define SHRINK_BATCH 128
Glauber Costa1d3d4432013-08-28 10:18:04 +1000274
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800275static unsigned long do_shrink_slab(struct shrink_control *shrinkctl,
276 struct shrinker *shrinker,
277 unsigned long nr_scanned,
278 unsigned long nr_eligible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700279{
Glauber Costa1d3d4432013-08-28 10:18:04 +1000280 unsigned long freed = 0;
281 unsigned long long delta;
282 long total_scan;
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700283 long freeable;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000284 long nr;
285 long new_nr;
286 int nid = shrinkctl->nid;
287 long batch_size = shrinker->batch ? shrinker->batch
288 : SHRINK_BATCH;
289
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700290 freeable = shrinker->count_objects(shrinker, shrinkctl);
291 if (freeable == 0)
Glauber Costa1d3d4432013-08-28 10:18:04 +1000292 return 0;
293
294 /*
295 * copy the current shrinker scan count into a local variable
296 * and zero it so that other concurrent shrinker invocations
297 * don't also do this scanning work.
298 */
299 nr = atomic_long_xchg(&shrinker->nr_deferred[nid], 0);
300
301 total_scan = nr;
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800302 delta = (4 * nr_scanned) / shrinker->seeks;
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700303 delta *= freeable;
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800304 do_div(delta, nr_eligible + 1);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000305 total_scan += delta;
306 if (total_scan < 0) {
Pintu Kumar8612c662014-12-10 15:42:58 -0800307 pr_err("shrink_slab: %pF negative objects to delete nr=%ld\n",
Dave Chinnera0b02132013-08-28 10:18:16 +1000308 shrinker->scan_objects, total_scan);
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700309 total_scan = freeable;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000310 }
311
312 /*
313 * We need to avoid excessive windup on filesystem shrinkers
314 * due to large numbers of GFP_NOFS allocations causing the
315 * shrinkers to return -1 all the time. This results in a large
316 * nr being built up so when a shrink that can do some work
317 * comes along it empties the entire cache due to nr >>>
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700318 * freeable. This is bad for sustaining a working set in
Glauber Costa1d3d4432013-08-28 10:18:04 +1000319 * memory.
320 *
321 * Hence only allow the shrinker to scan the entire cache when
322 * a large delta change is calculated directly.
323 */
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700324 if (delta < freeable / 4)
325 total_scan = min(total_scan, freeable / 2);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000326
327 /*
328 * Avoid risking looping forever due to too large nr value:
329 * never try to free more than twice the estimate number of
330 * freeable entries.
331 */
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700332 if (total_scan > freeable * 2)
333 total_scan = freeable * 2;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000334
335 trace_mm_shrink_slab_start(shrinker, shrinkctl, nr,
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800336 nr_scanned, nr_eligible,
337 freeable, delta, total_scan);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000338
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800339 /*
340 * Normally, we should not scan less than batch_size objects in one
341 * pass to avoid too frequent shrinker calls, but if the slab has less
342 * than batch_size objects in total and we are really tight on memory,
343 * we will try to reclaim all available objects, otherwise we can end
344 * up failing allocations although there are plenty of reclaimable
345 * objects spread over several slabs with usage less than the
346 * batch_size.
347 *
348 * We detect the "tight on memory" situations by looking at the total
349 * number of objects we want to scan (total_scan). If it is greater
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700350 * than the total number of objects on slab (freeable), we must be
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800351 * scanning at high prio and therefore should try to reclaim as much as
352 * possible.
353 */
354 while (total_scan >= batch_size ||
Vladimir Davydovd5bc5fd2014-04-03 14:47:32 -0700355 total_scan >= freeable) {
Dave Chinnera0b02132013-08-28 10:18:16 +1000356 unsigned long ret;
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800357 unsigned long nr_to_scan = min(batch_size, total_scan);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000358
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800359 shrinkctl->nr_to_scan = nr_to_scan;
Dave Chinnera0b02132013-08-28 10:18:16 +1000360 ret = shrinker->scan_objects(shrinker, shrinkctl);
361 if (ret == SHRINK_STOP)
362 break;
363 freed += ret;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000364
Vladimir Davydov0b1fb402014-01-23 15:53:22 -0800365 count_vm_events(SLABS_SCANNED, nr_to_scan);
366 total_scan -= nr_to_scan;
Glauber Costa1d3d4432013-08-28 10:18:04 +1000367
368 cond_resched();
369 }
370
371 /*
372 * move the unused scan count back into the shrinker in a
373 * manner that handles concurrent updates. If we exhausted the
374 * scan, there is no need to do an update.
375 */
376 if (total_scan > 0)
377 new_nr = atomic_long_add_return(total_scan,
378 &shrinker->nr_deferred[nid]);
379 else
380 new_nr = atomic_long_read(&shrinker->nr_deferred[nid]);
381
Dave Hansendf9024a2014-06-04 16:08:07 -0700382 trace_mm_shrink_slab_end(shrinker, nid, freed, nr, new_nr, total_scan);
Glauber Costa1d3d4432013-08-28 10:18:04 +1000383 return freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384}
385
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800386/**
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800387 * shrink_slab - shrink slab caches
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800388 * @gfp_mask: allocation context
389 * @nid: node whose slab caches to target
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800390 * @memcg: memory cgroup whose slab caches to target
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800391 * @nr_scanned: pressure numerator
392 * @nr_eligible: pressure denominator
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800394 * Call the shrink functions to age shrinkable caches.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700395 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800396 * @nid is passed along to shrinkers with SHRINKER_NUMA_AWARE set,
397 * unaware shrinkers will receive a node id of 0 instead.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 *
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800399 * @memcg specifies the memory cgroup to target. If it is not NULL,
400 * only shrinkers with SHRINKER_MEMCG_AWARE set will be called to scan
Vladimir Davydov0fc9f582016-03-17 14:18:30 -0700401 * objects from the memory cgroup specified. Otherwise, only unaware
402 * shrinkers are called.
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800403 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800404 * @nr_scanned and @nr_eligible form a ratio that indicate how much of
405 * the available objects should be scanned. Page reclaim for example
406 * passes the number of pages scanned and the number of pages on the
407 * LRU lists that it considered on @nid, plus a bias in @nr_scanned
408 * when it encountered mapped pages. The ratio is further biased by
409 * the ->seeks setting of the shrink function, which indicates the
410 * cost to recreate an object relative to that of an LRU page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700411 *
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800412 * Returns the number of reclaimed slab objects.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700413 */
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800414static unsigned long shrink_slab(gfp_t gfp_mask, int nid,
415 struct mem_cgroup *memcg,
416 unsigned long nr_scanned,
417 unsigned long nr_eligible)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418{
419 struct shrinker *shrinker;
Dave Chinner24f7c6b2013-08-28 10:17:56 +1000420 unsigned long freed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700421
Vladimir Davydov0fc9f582016-03-17 14:18:30 -0700422 if (memcg && (!memcg_kmem_enabled() || !mem_cgroup_online(memcg)))
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800423 return 0;
424
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800425 if (nr_scanned == 0)
426 nr_scanned = SWAP_CLUSTER_MAX;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700427
Minchan Kimf06590b2011-05-24 17:11:11 -0700428 if (!down_read_trylock(&shrinker_rwsem)) {
Dave Chinner24f7c6b2013-08-28 10:17:56 +1000429 /*
430 * If we would return 0, our callers would understand that we
431 * have nothing else to shrink and give up trying. By returning
432 * 1 we keep it going and assume we'll be able to shrink next
433 * time.
434 */
435 freed = 1;
Minchan Kimf06590b2011-05-24 17:11:11 -0700436 goto out;
437 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438
439 list_for_each_entry(shrinker, &shrinker_list, list) {
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800440 struct shrink_control sc = {
441 .gfp_mask = gfp_mask,
442 .nid = nid,
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800443 .memcg = memcg,
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800444 };
Vladimir Davydovec970972014-01-23 15:53:23 -0800445
Vladimir Davydov0fc9f582016-03-17 14:18:30 -0700446 /*
447 * If kernel memory accounting is disabled, we ignore
448 * SHRINKER_MEMCG_AWARE flag and call all shrinkers
449 * passing NULL for memcg.
450 */
451 if (memcg_kmem_enabled() &&
452 !!memcg != !!(shrinker->flags & SHRINKER_MEMCG_AWARE))
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800453 continue;
454
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800455 if (!(shrinker->flags & SHRINKER_NUMA_AWARE))
456 sc.nid = 0;
Dave Chinneracf92b42011-07-08 14:14:35 +1000457
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800458 freed += do_shrink_slab(&sc, shrinker, nr_scanned, nr_eligible);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700459 }
Johannes Weiner6b4f7792014-12-12 16:56:13 -0800460
Linus Torvalds1da177e2005-04-16 15:20:36 -0700461 up_read(&shrinker_rwsem);
Minchan Kimf06590b2011-05-24 17:11:11 -0700462out:
463 cond_resched();
Dave Chinner24f7c6b2013-08-28 10:17:56 +1000464 return freed;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700465}
466
Vladimir Davydovcb731d62015-02-12 14:58:54 -0800467void drop_slab_node(int nid)
468{
469 unsigned long freed;
470
471 do {
472 struct mem_cgroup *memcg = NULL;
473
474 freed = 0;
475 do {
476 freed += shrink_slab(GFP_KERNEL, nid, memcg,
477 1000, 1000);
478 } while ((memcg = mem_cgroup_iter(NULL, memcg, NULL)) != NULL);
479 } while (freed > 10);
480}
481
482void drop_slab(void)
483{
484 int nid;
485
486 for_each_online_node(nid)
487 drop_slab_node(nid);
488}
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490static inline int is_page_cache_freeable(struct page *page)
491{
Johannes Weinerceddc3a2009-09-21 17:03:00 -0700492 /*
493 * A freeable page cache page is referenced only by the caller
494 * that isolated the page, the page cache radix tree and
495 * optional buffer heads at page->private.
496 */
Johannes Weineredcf4742009-09-21 17:02:59 -0700497 return page_count(page) - page_has_private(page) == 2;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
Tejun Heo703c2702015-05-22 17:13:44 -0400500static int may_write_to_inode(struct inode *inode, struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700501{
Christoph Lameter930d9152006-01-08 01:00:47 -0800502 if (current->flags & PF_SWAPWRITE)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503 return 1;
Tejun Heo703c2702015-05-22 17:13:44 -0400504 if (!inode_write_congested(inode))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700505 return 1;
Tejun Heo703c2702015-05-22 17:13:44 -0400506 if (inode_to_bdi(inode) == current->backing_dev_info)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700507 return 1;
508 return 0;
509}
510
511/*
512 * We detected a synchronous write error writing a page out. Probably
513 * -ENOSPC. We need to propagate that into the address_space for a subsequent
514 * fsync(), msync() or close().
515 *
516 * The tricky part is that after writepage we cannot touch the mapping: nothing
517 * prevents it from being freed up. But we have a ref on the page and once
518 * that page is locked, the mapping is pinned.
519 *
520 * We're allowed to run sleeping lock_page() here because we know the caller has
521 * __GFP_FS.
522 */
523static void handle_write_error(struct address_space *mapping,
524 struct page *page, int error)
525{
Jens Axboe7eaceac2011-03-10 08:52:07 +0100526 lock_page(page);
Guillaume Chazarain3e9f45b2007-05-08 00:23:25 -0700527 if (page_mapping(page) == mapping)
528 mapping_set_error(mapping, error);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700529 unlock_page(page);
530}
531
Christoph Lameter04e62a22006-06-23 02:03:38 -0700532/* possible outcome of pageout() */
533typedef enum {
534 /* failed to write page out, page is locked */
535 PAGE_KEEP,
536 /* move page to the active list, page is locked */
537 PAGE_ACTIVATE,
538 /* page has been sent to the disk successfully, page is unlocked */
539 PAGE_SUCCESS,
540 /* page is clean and locked */
541 PAGE_CLEAN,
542} pageout_t;
543
Linus Torvalds1da177e2005-04-16 15:20:36 -0700544/*
Andrew Morton1742f192006-03-22 00:08:21 -0800545 * pageout is called by shrink_page_list() for each dirty page.
546 * Calls ->writepage().
Linus Torvalds1da177e2005-04-16 15:20:36 -0700547 */
Andy Whitcroftc661b072007-08-22 14:01:26 -0700548static pageout_t pageout(struct page *page, struct address_space *mapping,
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -0700549 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550{
551 /*
552 * If the page is dirty, only perform writeback if that write
553 * will be non-blocking. To prevent this allocation from being
554 * stalled by pagecache activity. But note that there may be
555 * stalls if we need to run get_block(). We could test
556 * PagePrivate for that.
557 *
Al Viro81742022014-04-03 03:17:43 -0400558 * If this process is currently in __generic_file_write_iter() against
Linus Torvalds1da177e2005-04-16 15:20:36 -0700559 * this page's queue, we can perform writeback even if that
560 * will block.
561 *
562 * If the page is swapcache, write it back even if that would
563 * block, for some throttling. This happens by accident, because
564 * swap_backing_dev_info is bust: it doesn't reflect the
565 * congestion state of the swapdevs. Easy to fix, if needed.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700566 */
567 if (!is_page_cache_freeable(page))
568 return PAGE_KEEP;
569 if (!mapping) {
570 /*
571 * Some data journaling orphaned pages can have
572 * page->mapping == NULL while being dirty with clean buffers.
573 */
David Howells266cf652009-04-03 16:42:36 +0100574 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700575 if (try_to_free_buffers(page)) {
576 ClearPageDirty(page);
Mitchel Humpherysb1de0d12014-06-06 14:38:30 -0700577 pr_info("%s: orphaned page\n", __func__);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578 return PAGE_CLEAN;
579 }
580 }
581 return PAGE_KEEP;
582 }
583 if (mapping->a_ops->writepage == NULL)
584 return PAGE_ACTIVATE;
Tejun Heo703c2702015-05-22 17:13:44 -0400585 if (!may_write_to_inode(mapping->host, sc))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700586 return PAGE_KEEP;
587
588 if (clear_page_dirty_for_io(page)) {
589 int res;
590 struct writeback_control wbc = {
591 .sync_mode = WB_SYNC_NONE,
592 .nr_to_write = SWAP_CLUSTER_MAX,
OGAWA Hirofumi111ebb62006-06-23 02:03:26 -0700593 .range_start = 0,
594 .range_end = LLONG_MAX,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 .for_reclaim = 1,
596 };
597
598 SetPageReclaim(page);
599 res = mapping->a_ops->writepage(page, &wbc);
600 if (res < 0)
601 handle_write_error(mapping, page, res);
Zach Brown994fc28c2005-12-15 14:28:17 -0800602 if (res == AOP_WRITEPAGE_ACTIVATE) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700603 ClearPageReclaim(page);
604 return PAGE_ACTIVATE;
605 }
Andy Whitcroftc661b072007-08-22 14:01:26 -0700606
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607 if (!PageWriteback(page)) {
608 /* synchronous write or broken a_ops? */
609 ClearPageReclaim(page);
610 }
yalin wang3aa23852016-01-14 15:18:30 -0800611 trace_mm_vmscan_writepage(page);
Andrew Mortone129b5c2006-09-27 01:50:00 -0700612 inc_zone_page_state(page, NR_VMSCAN_WRITE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700613 return PAGE_SUCCESS;
614 }
615
616 return PAGE_CLEAN;
617}
618
Andrew Mortona649fd92006-10-17 00:09:36 -0700619/*
Nick Piggine2867812008-07-25 19:45:30 -0700620 * Same as remove_mapping, but if the page is removed from the mapping, it
621 * gets returned with a refcount of 0.
Andrew Mortona649fd92006-10-17 00:09:36 -0700622 */
Johannes Weinera5289102014-04-03 14:47:51 -0700623static int __remove_mapping(struct address_space *mapping, struct page *page,
624 bool reclaimed)
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800625{
Greg Thelenc4843a72015-05-22 17:13:16 -0400626 unsigned long flags;
Greg Thelenc4843a72015-05-22 17:13:16 -0400627
Nick Piggin28e4d962006-09-25 23:31:23 -0700628 BUG_ON(!PageLocked(page));
629 BUG_ON(mapping != page_mapping(page));
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800630
Greg Thelenc4843a72015-05-22 17:13:16 -0400631 spin_lock_irqsave(&mapping->tree_lock, flags);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800632 /*
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700633 * The non racy check for a busy page.
634 *
635 * Must be careful with the order of the tests. When someone has
636 * a ref to the page, it may be possible that they dirty it then
637 * drop the reference. So if PageDirty is tested before page_count
638 * here, then the following race may occur:
639 *
640 * get_user_pages(&page);
641 * [user mapping goes away]
642 * write_to(page);
643 * !PageDirty(page) [good]
644 * SetPageDirty(page);
645 * put_page(page);
646 * !page_count(page) [good, discard it]
647 *
648 * [oops, our write_to data is lost]
649 *
650 * Reversing the order of the tests ensures such a situation cannot
651 * escape unnoticed. The smp_rmb is needed to ensure the page->flags
Joonsoo Kim0139aa72016-05-19 17:10:49 -0700652 * load is not satisfied before that of page->_refcount.
Nick Piggin0fd0e6b2006-09-27 01:50:02 -0700653 *
654 * Note that if SetPageDirty is always performed via set_page_dirty,
655 * and thus under tree_lock, then this ordering is not required.
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800656 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700657 if (!page_ref_freeze(page, 2))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800658 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700659 /* note: atomic_cmpxchg in page_freeze_refs provides the smp_rmb */
660 if (unlikely(PageDirty(page))) {
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700661 page_ref_unfreeze(page, 2);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800662 goto cannot_free;
Nick Piggine2867812008-07-25 19:45:30 -0700663 }
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800664
665 if (PageSwapCache(page)) {
666 swp_entry_t swap = { .val = page_private(page) };
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700667 mem_cgroup_swapout(page, swap);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800668 __delete_from_swap_cache(page);
Greg Thelenc4843a72015-05-22 17:13:16 -0400669 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700670 swapcache_free(swap);
Nick Piggine2867812008-07-25 19:45:30 -0700671 } else {
Linus Torvalds6072d132010-12-01 13:35:19 -0500672 void (*freepage)(struct page *);
Johannes Weinera5289102014-04-03 14:47:51 -0700673 void *shadow = NULL;
Linus Torvalds6072d132010-12-01 13:35:19 -0500674
675 freepage = mapping->a_ops->freepage;
Johannes Weinera5289102014-04-03 14:47:51 -0700676 /*
677 * Remember a shadow entry for reclaimed file cache in
678 * order to detect refaults, thus thrashing, later on.
679 *
680 * But don't store shadows in an address space that is
681 * already exiting. This is not just an optizimation,
682 * inode reclaim needs to empty out the radix tree or
683 * the nodes are lost. Don't plant shadows behind its
684 * back.
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800685 *
686 * We also don't store shadows for DAX mappings because the
687 * only page cache pages found in these are zero pages
688 * covering holes, and because we don't want to mix DAX
689 * exceptional entries and shadow exceptional entries in the
690 * same page_tree.
Johannes Weinera5289102014-04-03 14:47:51 -0700691 */
692 if (reclaimed && page_is_file_cache(page) &&
Ross Zwislerf9fe48b2016-01-22 15:10:40 -0800693 !mapping_exiting(mapping) && !dax_mapping(mapping))
Johannes Weinera5289102014-04-03 14:47:51 -0700694 shadow = workingset_eviction(mapping, page);
Johannes Weiner62cccb82016-03-15 14:57:22 -0700695 __delete_from_page_cache(page, shadow);
Greg Thelenc4843a72015-05-22 17:13:16 -0400696 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Linus Torvalds6072d132010-12-01 13:35:19 -0500697
698 if (freepage != NULL)
699 freepage(page);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800700 }
701
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800702 return 1;
703
704cannot_free:
Greg Thelenc4843a72015-05-22 17:13:16 -0400705 spin_unlock_irqrestore(&mapping->tree_lock, flags);
Christoph Lameter49d2e9c2006-01-08 01:00:48 -0800706 return 0;
707}
708
Linus Torvalds1da177e2005-04-16 15:20:36 -0700709/*
Nick Piggine2867812008-07-25 19:45:30 -0700710 * Attempt to detach a locked page from its ->mapping. If it is dirty or if
711 * someone else has a ref on the page, abort and return 0. If it was
712 * successfully detached, return 1. Assumes the caller has a single ref on
713 * this page.
714 */
715int remove_mapping(struct address_space *mapping, struct page *page)
716{
Johannes Weinera5289102014-04-03 14:47:51 -0700717 if (__remove_mapping(mapping, page, false)) {
Nick Piggine2867812008-07-25 19:45:30 -0700718 /*
719 * Unfreezing the refcount with 1 rather than 2 effectively
720 * drops the pagecache ref for us without requiring another
721 * atomic operation.
722 */
Joonsoo Kimfe896d12016-03-17 14:19:26 -0700723 page_ref_unfreeze(page, 1);
Nick Piggine2867812008-07-25 19:45:30 -0700724 return 1;
725 }
726 return 0;
727}
728
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700729/**
730 * putback_lru_page - put previously isolated page onto appropriate LRU list
731 * @page: page to be put back to appropriate lru list
732 *
733 * Add previously isolated @page to appropriate LRU list.
734 * Page may still be unevictable for other reasons.
735 *
736 * lru_lock must not be held, interrupts must be enabled.
737 */
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700738void putback_lru_page(struct page *page)
739{
Vlastimil Babka0ec3b742013-09-11 14:22:26 -0700740 bool is_unevictable;
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700741 int was_unevictable = PageUnevictable(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700742
Sasha Levin309381fea2014-01-23 15:52:54 -0800743 VM_BUG_ON_PAGE(PageLRU(page), page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700744
745redo:
746 ClearPageUnevictable(page);
747
Hugh Dickins39b5f292012-10-08 16:33:18 -0700748 if (page_evictable(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700749 /*
750 * For evictable pages, we can use the cache.
751 * In event of a race, worst case is we end up with an
752 * unevictable page on [in]active list.
753 * We know how to handle that.
754 */
Vlastimil Babka0ec3b742013-09-11 14:22:26 -0700755 is_unevictable = false;
Mel Gormanc53954a2013-07-03 15:02:34 -0700756 lru_cache_add(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700757 } else {
758 /*
759 * Put unevictable pages directly on zone's unevictable
760 * list.
761 */
Vlastimil Babka0ec3b742013-09-11 14:22:26 -0700762 is_unevictable = true;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700763 add_page_to_unevictable_list(page);
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700764 /*
Minchan Kim21ee9f32011-10-31 17:09:28 -0700765 * When racing with an mlock or AS_UNEVICTABLE clearing
766 * (page is unlocked) make sure that if the other thread
767 * does not observe our setting of PG_lru and fails
Hugh Dickins24513262012-01-20 14:34:21 -0800768 * isolation/check_move_unevictable_pages,
Minchan Kim21ee9f32011-10-31 17:09:28 -0700769 * we see PG_mlocked/AS_UNEVICTABLE cleared below and move
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700770 * the page back to the evictable list.
771 *
Minchan Kim21ee9f32011-10-31 17:09:28 -0700772 * The other side is TestClearPageMlocked() or shmem_lock().
Johannes Weiner6a7b9542009-10-26 16:50:00 -0700773 */
774 smp_mb();
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700775 }
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700776
777 /*
778 * page's status can change while we move it among lru. If an evictable
779 * page is on unevictable list, it never be freed. To avoid that,
780 * check after we added it to the list, again.
781 */
Vlastimil Babka0ec3b742013-09-11 14:22:26 -0700782 if (is_unevictable && page_evictable(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700783 if (!isolate_lru_page(page)) {
784 put_page(page);
785 goto redo;
786 }
787 /* This means someone else dropped this page from LRU
788 * So, it will be freed or putback to LRU again. There is
789 * nothing to do here.
790 */
791 }
792
Vlastimil Babka0ec3b742013-09-11 14:22:26 -0700793 if (was_unevictable && !is_unevictable)
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700794 count_vm_event(UNEVICTABLE_PGRESCUED);
Vlastimil Babka0ec3b742013-09-11 14:22:26 -0700795 else if (!was_unevictable && is_unevictable)
Lee Schermerhornbbfd28e2008-10-18 20:26:40 -0700796 count_vm_event(UNEVICTABLE_PGCULLED);
797
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700798 put_page(page); /* drop ref from isolate */
799}
800
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800801enum page_references {
802 PAGEREF_RECLAIM,
803 PAGEREF_RECLAIM_CLEAN,
Johannes Weiner645747462010-03-05 13:42:22 -0800804 PAGEREF_KEEP,
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800805 PAGEREF_ACTIVATE,
806};
807
808static enum page_references page_check_references(struct page *page,
809 struct scan_control *sc)
810{
Johannes Weiner645747462010-03-05 13:42:22 -0800811 int referenced_ptes, referenced_page;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800812 unsigned long vm_flags;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800813
Johannes Weinerc3ac9a82012-05-29 15:06:25 -0700814 referenced_ptes = page_referenced(page, 1, sc->target_mem_cgroup,
815 &vm_flags);
Johannes Weiner645747462010-03-05 13:42:22 -0800816 referenced_page = TestClearPageReferenced(page);
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800817
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800818 /*
819 * Mlock lost the isolation race with us. Let try_to_unmap()
820 * move the page to the unevictable list.
821 */
822 if (vm_flags & VM_LOCKED)
823 return PAGEREF_RECLAIM;
824
Johannes Weiner645747462010-03-05 13:42:22 -0800825 if (referenced_ptes) {
Michal Hockoe48982732012-05-29 15:06:45 -0700826 if (PageSwapBacked(page))
Johannes Weiner645747462010-03-05 13:42:22 -0800827 return PAGEREF_ACTIVATE;
828 /*
829 * All mapped pages start out with page table
830 * references from the instantiating fault, so we need
831 * to look twice if a mapped file page is used more
832 * than once.
833 *
834 * Mark it and spare it for another trip around the
835 * inactive list. Another page table reference will
836 * lead to its activation.
837 *
838 * Note: the mark is set for activated pages as well
839 * so that recently deactivated but used pages are
840 * quickly recovered.
841 */
842 SetPageReferenced(page);
843
Konstantin Khlebnikov34dbc672012-01-10 15:06:59 -0800844 if (referenced_page || referenced_ptes > 1)
Johannes Weiner645747462010-03-05 13:42:22 -0800845 return PAGEREF_ACTIVATE;
846
Konstantin Khlebnikovc909e992012-01-10 15:07:03 -0800847 /*
848 * Activate file-backed executable pages after first usage.
849 */
850 if (vm_flags & VM_EXEC)
851 return PAGEREF_ACTIVATE;
852
Johannes Weiner645747462010-03-05 13:42:22 -0800853 return PAGEREF_KEEP;
854 }
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800855
856 /* Reclaim if clean, defer dirty pages to writeback */
KOSAKI Motohiro2e302442010-10-26 14:21:46 -0700857 if (referenced_page && !PageSwapBacked(page))
Johannes Weiner645747462010-03-05 13:42:22 -0800858 return PAGEREF_RECLAIM_CLEAN;
859
860 return PAGEREF_RECLAIM;
Johannes Weinerdfc8d632010-03-05 13:42:19 -0800861}
862
Mel Gormane2be15f2013-07-03 15:01:57 -0700863/* Check if a page is dirty or under writeback */
864static void page_check_dirty_writeback(struct page *page,
865 bool *dirty, bool *writeback)
866{
Mel Gormanb4597222013-07-03 15:02:05 -0700867 struct address_space *mapping;
868
Mel Gormane2be15f2013-07-03 15:01:57 -0700869 /*
870 * Anonymous pages are not handled by flushers and must be written
871 * from reclaim context. Do not stall reclaim based on them
872 */
873 if (!page_is_file_cache(page)) {
874 *dirty = false;
875 *writeback = false;
876 return;
877 }
878
879 /* By default assume that the page flags are accurate */
880 *dirty = PageDirty(page);
881 *writeback = PageWriteback(page);
Mel Gormanb4597222013-07-03 15:02:05 -0700882
883 /* Verify dirty/writeback state if the filesystem supports it */
884 if (!page_has_private(page))
885 return;
886
887 mapping = page_mapping(page);
888 if (mapping && mapping->a_ops->is_dirty_writeback)
889 mapping->a_ops->is_dirty_writeback(page, dirty, writeback);
Mel Gormane2be15f2013-07-03 15:01:57 -0700890}
891
Nick Piggine2867812008-07-25 19:45:30 -0700892/*
Andrew Morton1742f192006-03-22 00:08:21 -0800893 * shrink_page_list() returns the number of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -0700894 */
Andrew Morton1742f192006-03-22 00:08:21 -0800895static unsigned long shrink_page_list(struct list_head *page_list,
Mel Gorman599d0c92016-07-28 15:45:31 -0700896 struct pglist_data *pgdat,
Mel Gormanf84f6e22011-10-31 17:07:51 -0700897 struct scan_control *sc,
Minchan Kim02c6de82012-10-08 16:31:55 -0700898 enum ttu_flags ttu_flags,
Mel Gorman8e950282013-07-03 15:02:02 -0700899 unsigned long *ret_nr_dirty,
Mel Gormand43006d2013-07-03 15:01:50 -0700900 unsigned long *ret_nr_unqueued_dirty,
Mel Gorman8e950282013-07-03 15:02:02 -0700901 unsigned long *ret_nr_congested,
Minchan Kim02c6de82012-10-08 16:31:55 -0700902 unsigned long *ret_nr_writeback,
Mel Gormanb1a6f212013-07-03 15:01:58 -0700903 unsigned long *ret_nr_immediate,
Minchan Kim02c6de82012-10-08 16:31:55 -0700904 bool force_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905{
906 LIST_HEAD(ret_pages);
Mel Gormanabe4c3b2010-08-09 17:19:31 -0700907 LIST_HEAD(free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 int pgactivate = 0;
Mel Gormand43006d2013-07-03 15:01:50 -0700909 unsigned long nr_unqueued_dirty = 0;
Mel Gorman0e093d992010-10-26 14:21:45 -0700910 unsigned long nr_dirty = 0;
911 unsigned long nr_congested = 0;
Andrew Morton05ff5132006-03-22 00:08:20 -0800912 unsigned long nr_reclaimed = 0;
Mel Gorman92df3a72011-10-31 17:07:56 -0700913 unsigned long nr_writeback = 0;
Mel Gormanb1a6f212013-07-03 15:01:58 -0700914 unsigned long nr_immediate = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700915
916 cond_resched();
917
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918 while (!list_empty(page_list)) {
919 struct address_space *mapping;
920 struct page *page;
921 int may_enter_fs;
Minchan Kim02c6de82012-10-08 16:31:55 -0700922 enum page_references references = PAGEREF_RECLAIM_CLEAN;
Mel Gormane2be15f2013-07-03 15:01:57 -0700923 bool dirty, writeback;
Minchan Kim854e9ed2016-01-15 16:54:53 -0800924 bool lazyfree = false;
925 int ret = SWAP_SUCCESS;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926
927 cond_resched();
928
929 page = lru_to_page(page_list);
930 list_del(&page->lru);
931
Nick Piggin529ae9a2008-08-02 12:01:03 +0200932 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700933 goto keep;
934
Sasha Levin309381fea2014-01-23 15:52:54 -0800935 VM_BUG_ON_PAGE(PageActive(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 sc->nr_scanned++;
Christoph Lameter80e43422006-02-11 17:55:53 -0800938
Hugh Dickins39b5f292012-10-08 16:33:18 -0700939 if (unlikely(!page_evictable(page)))
Nick Pigginb291f002008-10-18 20:26:44 -0700940 goto cull_mlocked;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700941
Johannes Weinera6dc60f82009-03-31 15:19:30 -0700942 if (!sc->may_unmap && page_mapped(page))
Christoph Lameter80e43422006-02-11 17:55:53 -0800943 goto keep_locked;
944
Linus Torvalds1da177e2005-04-16 15:20:36 -0700945 /* Double the slab pressure for mapped and swapcache pages */
946 if (page_mapped(page) || PageSwapCache(page))
947 sc->nr_scanned++;
948
Andy Whitcroftc661b072007-08-22 14:01:26 -0700949 may_enter_fs = (sc->gfp_mask & __GFP_FS) ||
950 (PageSwapCache(page) && (sc->gfp_mask & __GFP_IO));
951
Mel Gorman283aba92013-07-03 15:01:51 -0700952 /*
Mel Gormane2be15f2013-07-03 15:01:57 -0700953 * The number of dirty pages determines if a zone is marked
954 * reclaim_congested which affects wait_iff_congested. kswapd
955 * will stall and start writing pages if the tail of the LRU
956 * is all dirty unqueued pages.
957 */
958 page_check_dirty_writeback(page, &dirty, &writeback);
959 if (dirty || writeback)
960 nr_dirty++;
961
962 if (dirty && !writeback)
963 nr_unqueued_dirty++;
964
Mel Gormand04e8ac2013-07-03 15:02:03 -0700965 /*
966 * Treat this page as congested if the underlying BDI is or if
967 * pages are cycling through the LRU so quickly that the
968 * pages marked for immediate reclaim are making it to the
969 * end of the LRU a second time.
970 */
Mel Gormane2be15f2013-07-03 15:01:57 -0700971 mapping = page_mapping(page);
Jamie Liu1da58ee2014-12-10 15:43:20 -0800972 if (((dirty || writeback) && mapping &&
Tejun Heo703c2702015-05-22 17:13:44 -0400973 inode_write_congested(mapping->host)) ||
Mel Gormand04e8ac2013-07-03 15:02:03 -0700974 (writeback && PageReclaim(page)))
Mel Gormane2be15f2013-07-03 15:01:57 -0700975 nr_congested++;
976
977 /*
Mel Gorman283aba92013-07-03 15:01:51 -0700978 * If a page at the tail of the LRU is under writeback, there
979 * are three cases to consider.
980 *
981 * 1) If reclaim is encountering an excessive number of pages
982 * under writeback and this page is both under writeback and
983 * PageReclaim then it indicates that pages are being queued
984 * for IO but are being recycled through the LRU before the
985 * IO can complete. Waiting on the page itself risks an
986 * indefinite stall if it is impossible to writeback the
987 * page due to IO error or disconnected storage so instead
Mel Gormanb1a6f212013-07-03 15:01:58 -0700988 * note that the LRU is being scanned too quickly and the
989 * caller can stall after page list has been processed.
Mel Gorman283aba92013-07-03 15:01:51 -0700990 *
Tejun Heo97c93412015-05-22 18:23:36 -0400991 * 2) Global or new memcg reclaim encounters a page that is
Michal Hockoecf5fc62015-08-04 14:36:58 -0700992 * not marked for immediate reclaim, or the caller does not
993 * have __GFP_FS (or __GFP_IO if it's simply going to swap,
994 * not to fs). In this case mark the page for immediate
Tejun Heo97c93412015-05-22 18:23:36 -0400995 * reclaim and continue scanning.
Mel Gorman283aba92013-07-03 15:01:51 -0700996 *
Michal Hockoecf5fc62015-08-04 14:36:58 -0700997 * Require may_enter_fs because we would wait on fs, which
998 * may not have submitted IO yet. And the loop driver might
Mel Gorman283aba92013-07-03 15:01:51 -0700999 * enter reclaim, and deadlock if it waits on a page for
1000 * which it is needed to do the write (loop masks off
1001 * __GFP_IO|__GFP_FS for this reason); but more thought
1002 * would probably show more reasons.
1003 *
Hugh Dickins7fadc822015-09-08 15:03:46 -07001004 * 3) Legacy memcg encounters a page that is already marked
Mel Gorman283aba92013-07-03 15:01:51 -07001005 * PageReclaim. memcg does not have any dirty pages
1006 * throttling so we could easily OOM just because too many
1007 * pages are in writeback and there is nothing else to
1008 * reclaim. Wait for the writeback to complete.
1009 */
Andy Whitcroftc661b072007-08-22 14:01:26 -07001010 if (PageWriteback(page)) {
Mel Gorman283aba92013-07-03 15:01:51 -07001011 /* Case 1 above */
1012 if (current_is_kswapd() &&
1013 PageReclaim(page) &&
Mel Gorman599d0c92016-07-28 15:45:31 -07001014 test_bit(PGDAT_WRITEBACK, &pgdat->flags)) {
Mel Gormanb1a6f212013-07-03 15:01:58 -07001015 nr_immediate++;
1016 goto keep_locked;
Mel Gorman283aba92013-07-03 15:01:51 -07001017
1018 /* Case 2 above */
Tejun Heo97c93412015-05-22 18:23:36 -04001019 } else if (sane_reclaim(sc) ||
Michal Hockoecf5fc62015-08-04 14:36:58 -07001020 !PageReclaim(page) || !may_enter_fs) {
Hugh Dickinsc3b94f42012-07-31 16:45:59 -07001021 /*
1022 * This is slightly racy - end_page_writeback()
1023 * might have just cleared PageReclaim, then
1024 * setting PageReclaim here end up interpreted
1025 * as PageReadahead - but that does not matter
1026 * enough to care. What we do want is for this
1027 * page to have PageReclaim set next time memcg
1028 * reclaim reaches the tests above, so it will
1029 * then wait_on_page_writeback() to avoid OOM;
1030 * and it's also appropriate in global reclaim.
1031 */
1032 SetPageReclaim(page);
Michal Hockoe62e3842012-07-31 16:45:55 -07001033 nr_writeback++;
Hugh Dickinsc3b94f42012-07-31 16:45:59 -07001034 goto keep_locked;
Mel Gorman283aba92013-07-03 15:01:51 -07001035
1036 /* Case 3 above */
1037 } else {
Hugh Dickins7fadc822015-09-08 15:03:46 -07001038 unlock_page(page);
Mel Gorman283aba92013-07-03 15:01:51 -07001039 wait_on_page_writeback(page);
Hugh Dickins7fadc822015-09-08 15:03:46 -07001040 /* then go back and try same page again */
1041 list_add_tail(&page->lru, page_list);
1042 continue;
Michal Hockoe62e3842012-07-31 16:45:55 -07001043 }
Andy Whitcroftc661b072007-08-22 14:01:26 -07001044 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045
Minchan Kim02c6de82012-10-08 16:31:55 -07001046 if (!force_reclaim)
1047 references = page_check_references(page, sc);
1048
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001049 switch (references) {
1050 case PAGEREF_ACTIVATE:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001051 goto activate_locked;
Johannes Weiner645747462010-03-05 13:42:22 -08001052 case PAGEREF_KEEP:
1053 goto keep_locked;
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001054 case PAGEREF_RECLAIM:
1055 case PAGEREF_RECLAIM_CLEAN:
1056 ; /* try to reclaim the page below */
1057 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001058
Linus Torvalds1da177e2005-04-16 15:20:36 -07001059 /*
1060 * Anonymous process memory has backing store?
1061 * Try to allocate it some swap space here.
1062 */
Nick Pigginb291f002008-10-18 20:26:44 -07001063 if (PageAnon(page) && !PageSwapCache(page)) {
Hugh Dickins63eb6b932008-11-19 15:36:37 -08001064 if (!(sc->gfp_mask & __GFP_IO))
1065 goto keep_locked;
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001066 if (!add_to_swap(page, page_list))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 goto activate_locked;
Minchan Kim854e9ed2016-01-15 16:54:53 -08001068 lazyfree = true;
Hugh Dickins63eb6b932008-11-19 15:36:37 -08001069 may_enter_fs = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070
Mel Gormane2be15f2013-07-03 15:01:57 -07001071 /* Adding to swap updated mapping */
1072 mapping = page_mapping(page);
Kirill A. Shutemov7751b2d2016-07-26 15:25:56 -07001073 } else if (unlikely(PageTransHuge(page))) {
1074 /* Split file THP */
1075 if (split_huge_page_to_list(page, page_list))
1076 goto keep_locked;
Mel Gormane2be15f2013-07-03 15:01:57 -07001077 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078
Kirill A. Shutemov7751b2d2016-07-26 15:25:56 -07001079 VM_BUG_ON_PAGE(PageTransHuge(page), page);
1080
Linus Torvalds1da177e2005-04-16 15:20:36 -07001081 /*
1082 * The page is mapped into the page tables of one or more
1083 * processes. Try to unmap it here.
1084 */
1085 if (page_mapped(page) && mapping) {
Minchan Kim854e9ed2016-01-15 16:54:53 -08001086 switch (ret = try_to_unmap(page, lazyfree ?
1087 (ttu_flags | TTU_BATCH_FLUSH | TTU_LZFREE) :
1088 (ttu_flags | TTU_BATCH_FLUSH))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001089 case SWAP_FAIL:
1090 goto activate_locked;
1091 case SWAP_AGAIN:
1092 goto keep_locked;
Nick Pigginb291f002008-10-18 20:26:44 -07001093 case SWAP_MLOCK:
1094 goto cull_mlocked;
Minchan Kim854e9ed2016-01-15 16:54:53 -08001095 case SWAP_LZFREE:
1096 goto lazyfree;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001097 case SWAP_SUCCESS:
1098 ; /* try to free the page below */
1099 }
1100 }
1101
1102 if (PageDirty(page)) {
Mel Gormanee728862011-10-31 17:07:38 -07001103 /*
1104 * Only kswapd can writeback filesystem pages to
Mel Gormand43006d2013-07-03 15:01:50 -07001105 * avoid risk of stack overflow but only writeback
1106 * if many dirty pages have been encountered.
Mel Gormanee728862011-10-31 17:07:38 -07001107 */
Mel Gormanf84f6e22011-10-31 17:07:51 -07001108 if (page_is_file_cache(page) &&
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07001109 (!current_is_kswapd() ||
Mel Gorman599d0c92016-07-28 15:45:31 -07001110 !test_bit(PGDAT_DIRTY, &pgdat->flags))) {
Mel Gorman49ea7eb2011-10-31 17:07:59 -07001111 /*
1112 * Immediately reclaim when written back.
1113 * Similar in principal to deactivate_page()
1114 * except we already have the page isolated
1115 * and know it's dirty
1116 */
1117 inc_zone_page_state(page, NR_VMSCAN_IMMEDIATE);
1118 SetPageReclaim(page);
1119
Mel Gormanee728862011-10-31 17:07:38 -07001120 goto keep_locked;
1121 }
1122
Johannes Weinerdfc8d632010-03-05 13:42:19 -08001123 if (references == PAGEREF_RECLAIM_CLEAN)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001124 goto keep_locked;
Andrew Morton4dd4b922008-03-24 12:29:52 -07001125 if (!may_enter_fs)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001126 goto keep_locked;
Christoph Lameter52a83632006-02-01 03:05:28 -08001127 if (!sc->may_writepage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001128 goto keep_locked;
1129
Mel Gormand950c942015-09-04 15:47:35 -07001130 /*
1131 * Page is dirty. Flush the TLB if a writable entry
1132 * potentially exists to avoid CPU writes after IO
1133 * starts and then write it out here.
1134 */
1135 try_to_unmap_flush_dirty();
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001136 switch (pageout(page, mapping, sc)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 case PAGE_KEEP:
1138 goto keep_locked;
1139 case PAGE_ACTIVATE:
1140 goto activate_locked;
1141 case PAGE_SUCCESS:
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001142 if (PageWriteback(page))
Mel Gorman41ac1992012-05-29 15:06:19 -07001143 goto keep;
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001144 if (PageDirty(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001145 goto keep;
KOSAKI Motohiro7d3579e2010-10-26 14:21:42 -07001146
Linus Torvalds1da177e2005-04-16 15:20:36 -07001147 /*
1148 * A synchronous write - probably a ramdisk. Go
1149 * ahead and try to reclaim the page.
1150 */
Nick Piggin529ae9a2008-08-02 12:01:03 +02001151 if (!trylock_page(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001152 goto keep;
1153 if (PageDirty(page) || PageWriteback(page))
1154 goto keep_locked;
1155 mapping = page_mapping(page);
1156 case PAGE_CLEAN:
1157 ; /* try to free the page below */
1158 }
1159 }
1160
1161 /*
1162 * If the page has buffers, try to free the buffer mappings
1163 * associated with this page. If we succeed we try to free
1164 * the page as well.
1165 *
1166 * We do this even if the page is PageDirty().
1167 * try_to_release_page() does not perform I/O, but it is
1168 * possible for a page to have PageDirty set, but it is actually
1169 * clean (all its buffers are clean). This happens if the
1170 * buffers were written out directly, with submit_bh(). ext3
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001171 * will do this, as well as the blockdev mapping.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001172 * try_to_release_page() will discover that cleanness and will
1173 * drop the buffers and mark the page clean - it can be freed.
1174 *
1175 * Rarely, pages can have buffers and no ->mapping. These are
1176 * the pages which were not successfully invalidated in
1177 * truncate_complete_page(). We try to drop those buffers here
1178 * and if that worked, and the page is no longer mapped into
1179 * process address space (page_count == 1) it can be freed.
1180 * Otherwise, leave the page on the LRU so it is swappable.
1181 */
David Howells266cf652009-04-03 16:42:36 +01001182 if (page_has_private(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001183 if (!try_to_release_page(page, sc->gfp_mask))
1184 goto activate_locked;
Nick Piggine2867812008-07-25 19:45:30 -07001185 if (!mapping && page_count(page) == 1) {
1186 unlock_page(page);
1187 if (put_page_testzero(page))
1188 goto free_it;
1189 else {
1190 /*
1191 * rare race with speculative reference.
1192 * the speculative reference will free
1193 * this page shortly, so we may
1194 * increment nr_reclaimed here (and
1195 * leave it off the LRU).
1196 */
1197 nr_reclaimed++;
1198 continue;
1199 }
1200 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 }
1202
Minchan Kim854e9ed2016-01-15 16:54:53 -08001203lazyfree:
Johannes Weinera5289102014-04-03 14:47:51 -07001204 if (!mapping || !__remove_mapping(mapping, page, true))
Christoph Lameter49d2e9c2006-01-08 01:00:48 -08001205 goto keep_locked;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001206
Nick Piggina978d6f2008-10-18 20:26:58 -07001207 /*
1208 * At this point, we have no other references and there is
1209 * no way to pick any more up (removed from LRU, removed
1210 * from pagecache). Can use non-atomic bitops now (and
1211 * we obviously don't have to worry about waking up a process
1212 * waiting on the page lock, because there are no references.
1213 */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -08001214 __ClearPageLocked(page);
Nick Piggine2867812008-07-25 19:45:30 -07001215free_it:
Minchan Kim854e9ed2016-01-15 16:54:53 -08001216 if (ret == SWAP_LZFREE)
1217 count_vm_event(PGLAZYFREED);
1218
Andrew Morton05ff5132006-03-22 00:08:20 -08001219 nr_reclaimed++;
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001220
1221 /*
1222 * Is there need to periodically free_page_list? It would
1223 * appear not as the counts should be low
1224 */
1225 list_add(&page->lru, &free_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001226 continue;
1227
Nick Pigginb291f002008-10-18 20:26:44 -07001228cull_mlocked:
Hugh Dickins63d6c5a2009-01-06 14:39:38 -08001229 if (PageSwapCache(page))
1230 try_to_free_swap(page);
Nick Pigginb291f002008-10-18 20:26:44 -07001231 unlock_page(page);
Jaewon Kimc54839a2015-09-08 15:02:21 -07001232 list_add(&page->lru, &ret_pages);
Nick Pigginb291f002008-10-18 20:26:44 -07001233 continue;
1234
Linus Torvalds1da177e2005-04-16 15:20:36 -07001235activate_locked:
Rik van Riel68a223942008-10-18 20:26:23 -07001236 /* Not a candidate for swapping, so reclaim swap space. */
Vladimir Davydov5ccc5ab2016-01-20 15:03:10 -08001237 if (PageSwapCache(page) && mem_cgroup_swap_full(page))
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08001238 try_to_free_swap(page);
Sasha Levin309381fea2014-01-23 15:52:54 -08001239 VM_BUG_ON_PAGE(PageActive(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240 SetPageActive(page);
1241 pgactivate++;
1242keep_locked:
1243 unlock_page(page);
1244keep:
1245 list_add(&page->lru, &ret_pages);
Sasha Levin309381fea2014-01-23 15:52:54 -08001246 VM_BUG_ON_PAGE(PageLRU(page) || PageUnevictable(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001247 }
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001248
Johannes Weiner747db952014-08-08 14:19:24 -07001249 mem_cgroup_uncharge_list(&free_pages);
Mel Gorman72b252a2015-09-04 15:47:32 -07001250 try_to_unmap_flush();
Mel Gormanb745bc82014-06-04 16:10:22 -07001251 free_hot_cold_page_list(&free_pages, true);
Mel Gormanabe4c3b2010-08-09 17:19:31 -07001252
Linus Torvalds1da177e2005-04-16 15:20:36 -07001253 list_splice(&ret_pages, page_list);
Christoph Lameterf8891e52006-06-30 01:55:45 -07001254 count_vm_events(PGACTIVATE, pgactivate);
Johannes Weiner0a31bc92014-08-08 14:19:22 -07001255
Mel Gorman8e950282013-07-03 15:02:02 -07001256 *ret_nr_dirty += nr_dirty;
1257 *ret_nr_congested += nr_congested;
Mel Gormand43006d2013-07-03 15:01:50 -07001258 *ret_nr_unqueued_dirty += nr_unqueued_dirty;
Mel Gorman92df3a72011-10-31 17:07:56 -07001259 *ret_nr_writeback += nr_writeback;
Mel Gormanb1a6f212013-07-03 15:01:58 -07001260 *ret_nr_immediate += nr_immediate;
Andrew Morton05ff5132006-03-22 00:08:20 -08001261 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001262}
1263
Minchan Kim02c6de82012-10-08 16:31:55 -07001264unsigned long reclaim_clean_pages_from_list(struct zone *zone,
1265 struct list_head *page_list)
1266{
1267 struct scan_control sc = {
1268 .gfp_mask = GFP_KERNEL,
1269 .priority = DEF_PRIORITY,
1270 .may_unmap = 1,
1271 };
Mel Gorman8e950282013-07-03 15:02:02 -07001272 unsigned long ret, dummy1, dummy2, dummy3, dummy4, dummy5;
Minchan Kim02c6de82012-10-08 16:31:55 -07001273 struct page *page, *next;
1274 LIST_HEAD(clean_pages);
1275
1276 list_for_each_entry_safe(page, next, page_list, lru) {
Rafael Aquini117aad12013-09-30 13:45:16 -07001277 if (page_is_file_cache(page) && !PageDirty(page) &&
Minchan Kimb1123ea62016-07-26 15:23:09 -07001278 !__PageMovable(page)) {
Minchan Kim02c6de82012-10-08 16:31:55 -07001279 ClearPageActive(page);
1280 list_move(&page->lru, &clean_pages);
1281 }
1282 }
1283
Mel Gorman599d0c92016-07-28 15:45:31 -07001284 ret = shrink_page_list(&clean_pages, zone->zone_pgdat, &sc,
Mel Gorman8e950282013-07-03 15:02:02 -07001285 TTU_UNMAP|TTU_IGNORE_ACCESS,
1286 &dummy1, &dummy2, &dummy3, &dummy4, &dummy5, true);
Minchan Kim02c6de82012-10-08 16:31:55 -07001287 list_splice(&clean_pages, page_list);
Mel Gorman599d0c92016-07-28 15:45:31 -07001288 mod_node_page_state(zone->zone_pgdat, NR_ISOLATED_FILE, -ret);
Minchan Kim02c6de82012-10-08 16:31:55 -07001289 return ret;
1290}
1291
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001292/*
1293 * Attempt to remove the specified page from its LRU. Only take this page
1294 * if it is of the appropriate PageActive status. Pages which are being
1295 * freed elsewhere are also ignored.
1296 *
1297 * page: page to consider
1298 * mode: one of the LRU isolation modes defined above
1299 *
1300 * returns 0 on success, -ve errno on failure.
1301 */
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001302int __isolate_lru_page(struct page *page, isolate_mode_t mode)
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001303{
1304 int ret = -EINVAL;
1305
1306 /* Only take pages on the LRU. */
1307 if (!PageLRU(page))
1308 return ret;
1309
Minchan Kime46a2872012-10-08 16:33:48 -07001310 /* Compaction should not handle unevictable pages but CMA can do so */
1311 if (PageUnevictable(page) && !(mode & ISOLATE_UNEVICTABLE))
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001312 return ret;
1313
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001314 ret = -EBUSY;
KAMEZAWA Hiroyuki08e552c2009-01-07 18:08:01 -08001315
Mel Gormanc8244932012-01-12 17:19:38 -08001316 /*
1317 * To minimise LRU disruption, the caller can indicate that it only
1318 * wants to isolate pages it will be able to operate on without
1319 * blocking - clean pages for the most part.
1320 *
1321 * ISOLATE_CLEAN means that only clean pages should be isolated. This
1322 * is used by reclaim when it is cannot write to backing storage
1323 *
1324 * ISOLATE_ASYNC_MIGRATE is used to indicate that it only wants to pages
1325 * that it is possible to migrate without blocking
1326 */
1327 if (mode & (ISOLATE_CLEAN|ISOLATE_ASYNC_MIGRATE)) {
1328 /* All the caller can do on PageWriteback is block */
1329 if (PageWriteback(page))
1330 return ret;
1331
1332 if (PageDirty(page)) {
1333 struct address_space *mapping;
1334
1335 /* ISOLATE_CLEAN means only clean pages */
1336 if (mode & ISOLATE_CLEAN)
1337 return ret;
1338
1339 /*
1340 * Only pages without mappings or that have a
1341 * ->migratepage callback are possible to migrate
1342 * without blocking
1343 */
1344 mapping = page_mapping(page);
1345 if (mapping && !mapping->a_ops->migratepage)
1346 return ret;
1347 }
1348 }
Minchan Kim39deaf82011-10-31 17:06:51 -07001349
Minchan Kimf80c0672011-10-31 17:06:55 -07001350 if ((mode & ISOLATE_UNMAPPED) && page_mapped(page))
1351 return ret;
1352
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001353 if (likely(get_page_unless_zero(page))) {
1354 /*
1355 * Be careful not to clear PageLRU until after we're
1356 * sure the page is not being freed elsewhere -- the
1357 * page release code relies on it.
1358 */
1359 ClearPageLRU(page);
1360 ret = 0;
1361 }
1362
1363 return ret;
1364}
1365
Christoph Lameter49d2e9c2006-01-08 01:00:48 -08001366/*
Mel Gormana52633d2016-07-28 15:45:28 -07001367 * zone_lru_lock is heavily contended. Some of the functions that
Linus Torvalds1da177e2005-04-16 15:20:36 -07001368 * shrink the lists perform better by taking out a batch of pages
1369 * and working on them outside the LRU lock.
1370 *
1371 * For pagecache intensive workloads, this function is the hottest
1372 * spot in the kernel (apart from copy_*_user functions).
1373 *
1374 * Appropriate locks must be held before calling this function.
1375 *
1376 * @nr_to_scan: The number of pages to look through on the list.
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001377 * @lruvec: The LRU vector to pull pages from.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001378 * @dst: The temp list to put pages on to.
Hugh Dickinsf6260122012-01-12 17:20:06 -08001379 * @nr_scanned: The number of pages that were scanned.
Rik van Rielfe2c2a12012-03-21 16:33:51 -07001380 * @sc: The scan_control struct for this reclaim session
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001381 * @mode: One of the LRU isolation modes
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001382 * @lru: LRU list id for isolating
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 *
1384 * returns how many pages were moved onto *@dst.
1385 */
Andrew Morton69e05942006-03-22 00:08:19 -08001386static unsigned long isolate_lru_pages(unsigned long nr_to_scan,
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001387 struct lruvec *lruvec, struct list_head *dst,
Rik van Rielfe2c2a12012-03-21 16:33:51 -07001388 unsigned long *nr_scanned, struct scan_control *sc,
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001389 isolate_mode_t mode, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001390{
Hugh Dickins75b00af2012-05-29 15:07:09 -07001391 struct list_head *src = &lruvec->lists[lru];
Andrew Morton69e05942006-03-22 00:08:19 -08001392 unsigned long nr_taken = 0;
Mel Gorman599d0c92016-07-28 15:45:31 -07001393 unsigned long nr_zone_taken[MAX_NR_ZONES] = { 0 };
1394 unsigned long scan, nr_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395
Vladimir Davydov0b802f12015-09-08 15:02:18 -07001396 for (scan = 0; scan < nr_to_scan && nr_taken < nr_to_scan &&
1397 !list_empty(src); scan++) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001398 struct page *page;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001399
Linus Torvalds1da177e2005-04-16 15:20:36 -07001400 page = lru_to_page(src);
1401 prefetchw_prev_lru_page(page, src, flags);
1402
Sasha Levin309381fea2014-01-23 15:52:54 -08001403 VM_BUG_ON_PAGE(!PageLRU(page), page);
Nick Piggin8d438f92006-03-22 00:07:59 -08001404
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001405 switch (__isolate_lru_page(page, mode)) {
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001406 case 0:
Mel Gorman599d0c92016-07-28 15:45:31 -07001407 nr_pages = hpage_nr_pages(page);
1408 nr_taken += nr_pages;
1409 nr_zone_taken[page_zonenum(page)] += nr_pages;
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001410 list_move(&page->lru, dst);
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001411 break;
Nick Piggin46453a62006-03-22 00:07:58 -08001412
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001413 case -EBUSY:
1414 /* else it is being freed elsewhere */
1415 list_move(&page->lru, src);
1416 continue;
1417
1418 default:
1419 BUG();
1420 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001421 }
1422
Hugh Dickinsf6260122012-01-12 17:20:06 -08001423 *nr_scanned = scan;
Hugh Dickins75b00af2012-05-29 15:07:09 -07001424 trace_mm_vmscan_lru_isolate(sc->order, nr_to_scan, scan,
1425 nr_taken, mode, is_file_lru(lru));
Mel Gorman599d0c92016-07-28 15:45:31 -07001426 for (scan = 0; scan < MAX_NR_ZONES; scan++) {
1427 nr_pages = nr_zone_taken[scan];
1428 if (!nr_pages)
1429 continue;
1430
1431 update_lru_size(lruvec, lru, scan, -nr_pages);
1432 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001433 return nr_taken;
1434}
1435
Nick Piggin62695a82008-10-18 20:26:09 -07001436/**
1437 * isolate_lru_page - tries to isolate a page from its LRU list
1438 * @page: page to isolate from its LRU list
1439 *
1440 * Isolates a @page from an LRU list, clears PageLRU and adjusts the
1441 * vmstat statistic corresponding to whatever LRU list the page was on.
1442 *
1443 * Returns 0 if the page was removed from an LRU list.
1444 * Returns -EBUSY if the page was not on an LRU list.
1445 *
1446 * The returned page will have PageLRU() cleared. If it was found on
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001447 * the active list, it will have PageActive set. If it was found on
1448 * the unevictable list, it will have the PageUnevictable bit set. That flag
1449 * may need to be cleared by the caller before letting the page go.
Nick Piggin62695a82008-10-18 20:26:09 -07001450 *
1451 * The vmstat statistic corresponding to the list on which the page was
1452 * found will be decremented.
1453 *
1454 * Restrictions:
1455 * (1) Must be called with an elevated refcount on the page. This is a
1456 * fundamentnal difference from isolate_lru_pages (which is called
1457 * without a stable reference).
1458 * (2) the lru_lock must not be held.
1459 * (3) interrupts must be enabled.
1460 */
1461int isolate_lru_page(struct page *page)
1462{
1463 int ret = -EBUSY;
1464
Sasha Levin309381fea2014-01-23 15:52:54 -08001465 VM_BUG_ON_PAGE(!page_count(page), page);
Kirill A. Shutemovcf2a82e2016-02-05 15:36:36 -08001466 WARN_RATELIMIT(PageTail(page), "trying to isolate tail page");
Konstantin Khlebnikov0c917312011-05-24 17:12:21 -07001467
Nick Piggin62695a82008-10-18 20:26:09 -07001468 if (PageLRU(page)) {
1469 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001470 struct lruvec *lruvec;
Nick Piggin62695a82008-10-18 20:26:09 -07001471
Mel Gormana52633d2016-07-28 15:45:28 -07001472 spin_lock_irq(zone_lru_lock(zone));
Mel Gorman599d0c92016-07-28 15:45:31 -07001473 lruvec = mem_cgroup_page_lruvec(page, zone->zone_pgdat);
Konstantin Khlebnikov0c917312011-05-24 17:12:21 -07001474 if (PageLRU(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001475 int lru = page_lru(page);
Konstantin Khlebnikov0c917312011-05-24 17:12:21 -07001476 get_page(page);
Nick Piggin62695a82008-10-18 20:26:09 -07001477 ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001478 del_page_from_lru_list(page, lruvec, lru);
1479 ret = 0;
Nick Piggin62695a82008-10-18 20:26:09 -07001480 }
Mel Gormana52633d2016-07-28 15:45:28 -07001481 spin_unlock_irq(zone_lru_lock(zone));
Nick Piggin62695a82008-10-18 20:26:09 -07001482 }
1483 return ret;
1484}
1485
Andy Whitcroft5ad333e2007-07-17 04:03:16 -07001486/*
Fengguang Wud37dd5d2012-12-18 14:23:28 -08001487 * A direct reclaimer may isolate SWAP_CLUSTER_MAX pages from the LRU list and
1488 * then get resheduled. When there are massive number of tasks doing page
1489 * allocation, such sleeping direct reclaimers may keep piling up on each CPU,
1490 * the LRU list will go small and be scanned faster than necessary, leading to
1491 * unnecessary swapping, thrashing and OOM.
Rik van Riel35cd7812009-09-21 17:01:38 -07001492 */
Mel Gorman599d0c92016-07-28 15:45:31 -07001493static int too_many_isolated(struct pglist_data *pgdat, int file,
Rik van Riel35cd7812009-09-21 17:01:38 -07001494 struct scan_control *sc)
1495{
1496 unsigned long inactive, isolated;
1497
1498 if (current_is_kswapd())
1499 return 0;
1500
Tejun Heo97c93412015-05-22 18:23:36 -04001501 if (!sane_reclaim(sc))
Rik van Riel35cd7812009-09-21 17:01:38 -07001502 return 0;
1503
1504 if (file) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001505 inactive = node_page_state(pgdat, NR_INACTIVE_FILE);
1506 isolated = node_page_state(pgdat, NR_ISOLATED_FILE);
Rik van Riel35cd7812009-09-21 17:01:38 -07001507 } else {
Mel Gorman599d0c92016-07-28 15:45:31 -07001508 inactive = node_page_state(pgdat, NR_INACTIVE_ANON);
1509 isolated = node_page_state(pgdat, NR_ISOLATED_ANON);
Rik van Riel35cd7812009-09-21 17:01:38 -07001510 }
1511
Fengguang Wu3cf23842012-12-18 14:23:31 -08001512 /*
1513 * GFP_NOIO/GFP_NOFS callers are allowed to isolate more pages, so they
1514 * won't get blocked by normal direct-reclaimers, forming a circular
1515 * deadlock.
1516 */
Mel Gormand0164ad2015-11-06 16:28:21 -08001517 if ((sc->gfp_mask & (__GFP_IO | __GFP_FS)) == (__GFP_IO | __GFP_FS))
Fengguang Wu3cf23842012-12-18 14:23:31 -08001518 inactive >>= 3;
1519
Rik van Riel35cd7812009-09-21 17:01:38 -07001520 return isolated > inactive;
1521}
1522
Mel Gorman66635622010-08-09 17:19:30 -07001523static noinline_for_stack void
Hugh Dickins75b00af2012-05-29 15:07:09 -07001524putback_inactive_pages(struct lruvec *lruvec, struct list_head *page_list)
Mel Gorman66635622010-08-09 17:19:30 -07001525{
Konstantin Khlebnikov27ac81d2012-05-29 15:07:00 -07001526 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
Mel Gorman599d0c92016-07-28 15:45:31 -07001527 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Hugh Dickins3f797682012-01-12 17:20:07 -08001528 LIST_HEAD(pages_to_free);
Mel Gorman66635622010-08-09 17:19:30 -07001529
Mel Gorman66635622010-08-09 17:19:30 -07001530 /*
1531 * Put back any unfreeable pages.
1532 */
Mel Gorman66635622010-08-09 17:19:30 -07001533 while (!list_empty(page_list)) {
Hugh Dickins3f797682012-01-12 17:20:07 -08001534 struct page *page = lru_to_page(page_list);
Mel Gorman66635622010-08-09 17:19:30 -07001535 int lru;
Hugh Dickins3f797682012-01-12 17:20:07 -08001536
Sasha Levin309381fea2014-01-23 15:52:54 -08001537 VM_BUG_ON_PAGE(PageLRU(page), page);
Mel Gorman66635622010-08-09 17:19:30 -07001538 list_del(&page->lru);
Hugh Dickins39b5f292012-10-08 16:33:18 -07001539 if (unlikely(!page_evictable(page))) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001540 spin_unlock_irq(&pgdat->lru_lock);
Mel Gorman66635622010-08-09 17:19:30 -07001541 putback_lru_page(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07001542 spin_lock_irq(&pgdat->lru_lock);
Mel Gorman66635622010-08-09 17:19:30 -07001543 continue;
1544 }
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001545
Mel Gorman599d0c92016-07-28 15:45:31 -07001546 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001547
Linus Torvalds7a608572011-01-17 14:42:19 -08001548 SetPageLRU(page);
Mel Gorman66635622010-08-09 17:19:30 -07001549 lru = page_lru(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001550 add_page_to_lru_list(page, lruvec, lru);
1551
Mel Gorman66635622010-08-09 17:19:30 -07001552 if (is_active_lru(lru)) {
1553 int file = is_file_lru(lru);
Rik van Riel9992af12011-01-13 15:47:13 -08001554 int numpages = hpage_nr_pages(page);
1555 reclaim_stat->recent_rotated[file] += numpages;
Mel Gorman66635622010-08-09 17:19:30 -07001556 }
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001557 if (put_page_testzero(page)) {
1558 __ClearPageLRU(page);
1559 __ClearPageActive(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001560 del_page_from_lru_list(page, lruvec, lru);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001561
1562 if (unlikely(PageCompound(page))) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001563 spin_unlock_irq(&pgdat->lru_lock);
Johannes Weiner747db952014-08-08 14:19:24 -07001564 mem_cgroup_uncharge(page);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001565 (*get_compound_page_dtor(page))(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07001566 spin_lock_irq(&pgdat->lru_lock);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001567 } else
1568 list_add(&page->lru, &pages_to_free);
Mel Gorman66635622010-08-09 17:19:30 -07001569 }
1570 }
Mel Gorman66635622010-08-09 17:19:30 -07001571
Hugh Dickins3f797682012-01-12 17:20:07 -08001572 /*
1573 * To save our caller's stack, now use input list for pages to free.
1574 */
1575 list_splice(&pages_to_free, page_list);
Mel Gorman66635622010-08-09 17:19:30 -07001576}
1577
1578/*
NeilBrown399ba0b2014-06-04 16:07:42 -07001579 * If a kernel thread (such as nfsd for loop-back mounts) services
1580 * a backing device by writing to the page cache it sets PF_LESS_THROTTLE.
1581 * In that case we should only throttle if the backing device it is
1582 * writing to is congested. In other cases it is safe to throttle.
1583 */
1584static int current_may_throttle(void)
1585{
1586 return !(current->flags & PF_LESS_THROTTLE) ||
1587 current->backing_dev_info == NULL ||
1588 bdi_write_congested(current->backing_dev_info);
1589}
1590
1591/*
Andrew Morton1742f192006-03-22 00:08:21 -08001592 * shrink_inactive_list() is a helper for shrink_zone(). It returns the number
1593 * of reclaimed pages
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 */
Mel Gorman66635622010-08-09 17:19:30 -07001595static noinline_for_stack unsigned long
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001596shrink_inactive_list(unsigned long nr_to_scan, struct lruvec *lruvec,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07001597 struct scan_control *sc, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001598{
1599 LIST_HEAD(page_list);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001600 unsigned long nr_scanned;
Andrew Morton05ff5132006-03-22 00:08:20 -08001601 unsigned long nr_reclaimed = 0;
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001602 unsigned long nr_taken;
Mel Gorman8e950282013-07-03 15:02:02 -07001603 unsigned long nr_dirty = 0;
1604 unsigned long nr_congested = 0;
Mel Gormane2be15f2013-07-03 15:01:57 -07001605 unsigned long nr_unqueued_dirty = 0;
Mel Gorman92df3a72011-10-31 17:07:56 -07001606 unsigned long nr_writeback = 0;
Mel Gormanb1a6f212013-07-03 15:01:58 -07001607 unsigned long nr_immediate = 0;
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001608 isolate_mode_t isolate_mode = 0;
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001609 int file = is_file_lru(lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07001610 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001611 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
KOSAKI Motohiro78dc5832009-06-16 15:31:40 -07001612
Mel Gorman599d0c92016-07-28 15:45:31 -07001613 while (unlikely(too_many_isolated(pgdat, file, sc))) {
KOSAKI Motohiro58355c72009-10-26 16:49:35 -07001614 congestion_wait(BLK_RW_ASYNC, HZ/10);
Rik van Riel35cd7812009-09-21 17:01:38 -07001615
1616 /* We are about to die and free our memory. Return now. */
1617 if (fatal_signal_pending(current))
1618 return SWAP_CLUSTER_MAX;
1619 }
1620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 lru_add_drain();
Minchan Kimf80c0672011-10-31 17:06:55 -07001622
1623 if (!sc->may_unmap)
Hillf Danton61317282012-03-21 16:33:48 -07001624 isolate_mode |= ISOLATE_UNMAPPED;
Minchan Kimf80c0672011-10-31 17:06:55 -07001625 if (!sc->may_writepage)
Hillf Danton61317282012-03-21 16:33:48 -07001626 isolate_mode |= ISOLATE_CLEAN;
Minchan Kimf80c0672011-10-31 17:06:55 -07001627
Mel Gorman599d0c92016-07-28 15:45:31 -07001628 spin_lock_irq(&pgdat->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001630 nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &page_list,
1631 &nr_scanned, sc, isolate_mode, lru);
Konstantin Khlebnikov95d918f2012-05-29 15:06:59 -07001632
Mel Gorman599d0c92016-07-28 15:45:31 -07001633 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07001634 reclaim_stat->recent_scanned[file] += nr_taken;
Konstantin Khlebnikov95d918f2012-05-29 15:06:59 -07001635
Johannes Weiner89b5fae2012-01-12 17:17:50 -08001636 if (global_reclaim(sc)) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001637 __mod_node_page_state(pgdat, NR_PAGES_SCANNED, nr_scanned);
KOSAKI Motohirob35ea172009-09-21 17:01:36 -07001638 if (current_is_kswapd())
Mel Gorman599d0c92016-07-28 15:45:31 -07001639 __count_vm_events(PGSCAN_KSWAPD, nr_scanned);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001640 else
Mel Gorman599d0c92016-07-28 15:45:31 -07001641 __count_vm_events(PGSCAN_DIRECT, nr_scanned);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001642 }
Mel Gorman599d0c92016-07-28 15:45:31 -07001643 spin_unlock_irq(&pgdat->lru_lock);
KOSAKI Motohiroa7312862009-09-21 17:01:37 -07001644
Hillf Dantond563c052012-03-21 16:34:02 -07001645 if (nr_taken == 0)
Mel Gorman66635622010-08-09 17:19:30 -07001646 return 0;
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001647
Mel Gorman599d0c92016-07-28 15:45:31 -07001648 nr_reclaimed = shrink_page_list(&page_list, pgdat, sc, TTU_UNMAP,
Mel Gorman8e950282013-07-03 15:02:02 -07001649 &nr_dirty, &nr_unqueued_dirty, &nr_congested,
1650 &nr_writeback, &nr_immediate,
1651 false);
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001652
Mel Gorman599d0c92016-07-28 15:45:31 -07001653 spin_lock_irq(&pgdat->lru_lock);
Hugh Dickins3f797682012-01-12 17:20:07 -08001654
Ying Han904249a2012-04-25 16:01:48 -07001655 if (global_reclaim(sc)) {
1656 if (current_is_kswapd())
Mel Gorman599d0c92016-07-28 15:45:31 -07001657 __count_vm_events(PGSTEAL_KSWAPD, nr_reclaimed);
Ying Han904249a2012-04-25 16:01:48 -07001658 else
Mel Gorman599d0c92016-07-28 15:45:31 -07001659 __count_vm_events(PGSTEAL_DIRECT, nr_reclaimed);
Ying Han904249a2012-04-25 16:01:48 -07001660 }
KOSAKI Motohiroe247dbc2010-08-09 17:19:28 -07001661
Konstantin Khlebnikov27ac81d2012-05-29 15:07:00 -07001662 putback_inactive_pages(lruvec, &page_list);
Hugh Dickins3f797682012-01-12 17:20:07 -08001663
Mel Gorman599d0c92016-07-28 15:45:31 -07001664 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
Hugh Dickins3f797682012-01-12 17:20:07 -08001665
Mel Gorman599d0c92016-07-28 15:45:31 -07001666 spin_unlock_irq(&pgdat->lru_lock);
Hugh Dickins3f797682012-01-12 17:20:07 -08001667
Johannes Weiner747db952014-08-08 14:19:24 -07001668 mem_cgroup_uncharge_list(&page_list);
Mel Gormanb745bc82014-06-04 16:10:22 -07001669 free_hot_cold_page_list(&page_list, true);
Mel Gormane11da5b2010-10-26 14:21:40 -07001670
Mel Gorman92df3a72011-10-31 17:07:56 -07001671 /*
1672 * If reclaim is isolating dirty pages under writeback, it implies
1673 * that the long-lived page allocation rate is exceeding the page
1674 * laundering rate. Either the global limits are not being effective
1675 * at throttling processes due to the page distribution throughout
1676 * zones or there is heavy usage of a slow backing device. The
1677 * only option is to throttle from reclaim context which is not ideal
1678 * as there is no guarantee the dirtying process is throttled in the
1679 * same way balance_dirty_pages() manages.
1680 *
Mel Gorman8e950282013-07-03 15:02:02 -07001681 * Once a zone is flagged ZONE_WRITEBACK, kswapd will count the number
1682 * of pages under pages flagged for immediate reclaim and stall if any
1683 * are encountered in the nr_immediate check below.
Mel Gorman92df3a72011-10-31 17:07:56 -07001684 */
Mel Gorman918fc712013-07-08 16:00:25 -07001685 if (nr_writeback && nr_writeback == nr_taken)
Mel Gorman599d0c92016-07-28 15:45:31 -07001686 set_bit(PGDAT_WRITEBACK, &pgdat->flags);
Mel Gorman92df3a72011-10-31 17:07:56 -07001687
Mel Gormand43006d2013-07-03 15:01:50 -07001688 /*
Tejun Heo97c93412015-05-22 18:23:36 -04001689 * Legacy memcg will stall in page writeback so avoid forcibly
1690 * stalling here.
Mel Gormand43006d2013-07-03 15:01:50 -07001691 */
Tejun Heo97c93412015-05-22 18:23:36 -04001692 if (sane_reclaim(sc)) {
Mel Gormanb1a6f212013-07-03 15:01:58 -07001693 /*
Mel Gorman8e950282013-07-03 15:02:02 -07001694 * Tag a zone as congested if all the dirty pages scanned were
1695 * backed by a congested BDI and wait_iff_congested will stall.
1696 */
1697 if (nr_dirty && nr_dirty == nr_congested)
Mel Gorman599d0c92016-07-28 15:45:31 -07001698 set_bit(PGDAT_CONGESTED, &pgdat->flags);
Mel Gorman8e950282013-07-03 15:02:02 -07001699
1700 /*
Mel Gormanb1a6f212013-07-03 15:01:58 -07001701 * If dirty pages are scanned that are not queued for IO, it
1702 * implies that flushers are not keeping up. In this case, flag
Mel Gorman599d0c92016-07-28 15:45:31 -07001703 * the pgdat PGDAT_DIRTY and kswapd will start writing pages from
Johannes Weiner57054652014-10-09 15:28:17 -07001704 * reclaim context.
Mel Gormanb1a6f212013-07-03 15:01:58 -07001705 */
1706 if (nr_unqueued_dirty == nr_taken)
Mel Gorman599d0c92016-07-28 15:45:31 -07001707 set_bit(PGDAT_DIRTY, &pgdat->flags);
Mel Gormanb1a6f212013-07-03 15:01:58 -07001708
1709 /*
Linus Torvaldsb738d762014-06-08 14:17:00 -07001710 * If kswapd scans pages marked marked for immediate
1711 * reclaim and under writeback (nr_immediate), it implies
1712 * that pages are cycling through the LRU faster than
Mel Gormanb1a6f212013-07-03 15:01:58 -07001713 * they are written so also forcibly stall.
1714 */
Linus Torvaldsb738d762014-06-08 14:17:00 -07001715 if (nr_immediate && current_may_throttle())
Mel Gormanb1a6f212013-07-03 15:01:58 -07001716 congestion_wait(BLK_RW_ASYNC, HZ/10);
Mel Gormane2be15f2013-07-03 15:01:57 -07001717 }
Mel Gormand43006d2013-07-03 15:01:50 -07001718
Mel Gorman8e950282013-07-03 15:02:02 -07001719 /*
1720 * Stall direct reclaim for IO completions if underlying BDIs or zone
1721 * is congested. Allow kswapd to continue until it starts encountering
1722 * unqueued dirty pages or cycling through the LRU too quickly.
1723 */
NeilBrown399ba0b2014-06-04 16:07:42 -07001724 if (!sc->hibernation_mode && !current_is_kswapd() &&
1725 current_may_throttle())
Mel Gorman599d0c92016-07-28 15:45:31 -07001726 wait_iff_congested(pgdat, BLK_RW_ASYNC, HZ/10);
Mel Gorman8e950282013-07-03 15:02:02 -07001727
Mel Gorman599d0c92016-07-28 15:45:31 -07001728 trace_mm_vmscan_lru_shrink_inactive(pgdat->node_id,
1729 nr_scanned, nr_reclaimed,
yalin wangba5e9572016-01-14 15:18:48 -08001730 sc->priority, file);
Andrew Morton05ff5132006-03-22 00:08:20 -08001731 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001732}
1733
Martin Bligh3bb1a8522006-10-28 10:38:24 -07001734/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001735 * This moves pages from the active list to the inactive list.
1736 *
1737 * We move them the other way if the page is referenced by one or more
1738 * processes, from rmap.
1739 *
1740 * If the pages are mostly unmapped, the processing is fast and it is
Mel Gormana52633d2016-07-28 15:45:28 -07001741 * appropriate to hold zone_lru_lock across the whole operation. But if
Linus Torvalds1da177e2005-04-16 15:20:36 -07001742 * the pages are mapped, the processing is slow (page_referenced()) so we
Mel Gormana52633d2016-07-28 15:45:28 -07001743 * should drop zone_lru_lock around each page. It's impossible to balance
Linus Torvalds1da177e2005-04-16 15:20:36 -07001744 * this, so instead we remove the pages from the LRU while processing them.
1745 * It is safe to rely on PG_active against the non-LRU pages in here because
1746 * nobody will play with that bit on a non-LRU page.
1747 *
Joonsoo Kim0139aa72016-05-19 17:10:49 -07001748 * The downside is that we have to touch page->_refcount against each page.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001749 * But we had to alter page->flags anyway.
1750 */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001751
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001752static void move_active_pages_to_lru(struct lruvec *lruvec,
Wu Fengguang3eb41402009-06-16 15:33:13 -07001753 struct list_head *list,
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001754 struct list_head *pages_to_free,
Wu Fengguang3eb41402009-06-16 15:33:13 -07001755 enum lru_list lru)
1756{
Mel Gorman599d0c92016-07-28 15:45:31 -07001757 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001758 unsigned long pgmoved = 0;
Wu Fengguang3eb41402009-06-16 15:33:13 -07001759 struct page *page;
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001760 int nr_pages;
Wu Fengguang3eb41402009-06-16 15:33:13 -07001761
Wu Fengguang3eb41402009-06-16 15:33:13 -07001762 while (!list_empty(list)) {
1763 page = lru_to_page(list);
Mel Gorman599d0c92016-07-28 15:45:31 -07001764 lruvec = mem_cgroup_page_lruvec(page, pgdat);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001765
Sasha Levin309381fea2014-01-23 15:52:54 -08001766 VM_BUG_ON_PAGE(PageLRU(page), page);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001767 SetPageLRU(page);
1768
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001769 nr_pages = hpage_nr_pages(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07001770 update_lru_size(lruvec, lru, page_zonenum(page), nr_pages);
Johannes Weiner925b7672012-01-12 17:18:15 -08001771 list_move(&page->lru, &lruvec->lists[lru]);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001772 pgmoved += nr_pages;
Wu Fengguang3eb41402009-06-16 15:33:13 -07001773
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001774 if (put_page_testzero(page)) {
1775 __ClearPageLRU(page);
1776 __ClearPageActive(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001777 del_page_from_lru_list(page, lruvec, lru);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001778
1779 if (unlikely(PageCompound(page))) {
Mel Gorman599d0c92016-07-28 15:45:31 -07001780 spin_unlock_irq(&pgdat->lru_lock);
Johannes Weiner747db952014-08-08 14:19:24 -07001781 mem_cgroup_uncharge(page);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001782 (*get_compound_page_dtor(page))(page);
Mel Gorman599d0c92016-07-28 15:45:31 -07001783 spin_lock_irq(&pgdat->lru_lock);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001784 } else
1785 list_add(&page->lru, pages_to_free);
Wu Fengguang3eb41402009-06-16 15:33:13 -07001786 }
1787 }
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07001788
Wu Fengguang3eb41402009-06-16 15:33:13 -07001789 if (!is_active_lru(lru))
1790 __count_vm_events(PGDEACTIVATE, pgmoved);
1791}
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001792
Hugh Dickinsf6260122012-01-12 17:20:06 -08001793static void shrink_active_list(unsigned long nr_to_scan,
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001794 struct lruvec *lruvec,
Johannes Weinerf16015f2012-01-12 17:17:52 -08001795 struct scan_control *sc,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07001796 enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797{
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001798 unsigned long nr_taken;
Hugh Dickinsf6260122012-01-12 17:20:06 -08001799 unsigned long nr_scanned;
Wu Fengguang6fe6b7e2009-06-16 15:33:05 -07001800 unsigned long vm_flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001801 LIST_HEAD(l_hold); /* The pages which were snipped off */
Wu Fengguang8cab4752009-06-16 15:33:12 -07001802 LIST_HEAD(l_active);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001803 LIST_HEAD(l_inactive);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001804 struct page *page;
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001805 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
KOSAKI Motohiro44c241f2009-09-21 17:01:35 -07001806 unsigned long nr_rotated = 0;
Konstantin Khlebnikovf3fd4a62012-05-29 15:06:54 -07001807 isolate_mode_t isolate_mode = 0;
Konstantin Khlebnikov3cb99452012-05-29 15:06:53 -07001808 int file = is_file_lru(lru);
Mel Gorman599d0c92016-07-28 15:45:31 -07001809 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001810
1811 lru_add_drain();
Minchan Kimf80c0672011-10-31 17:06:55 -07001812
1813 if (!sc->may_unmap)
Hillf Danton61317282012-03-21 16:33:48 -07001814 isolate_mode |= ISOLATE_UNMAPPED;
Minchan Kimf80c0672011-10-31 17:06:55 -07001815 if (!sc->may_writepage)
Hillf Danton61317282012-03-21 16:33:48 -07001816 isolate_mode |= ISOLATE_CLEAN;
Minchan Kimf80c0672011-10-31 17:06:55 -07001817
Mel Gorman599d0c92016-07-28 15:45:31 -07001818 spin_lock_irq(&pgdat->lru_lock);
Johannes Weiner925b7672012-01-12 17:18:15 -08001819
Konstantin Khlebnikov5dc35972012-05-29 15:06:58 -07001820 nr_taken = isolate_lru_pages(nr_to_scan, lruvec, &l_hold,
1821 &nr_scanned, sc, isolate_mode, lru);
Johannes Weiner89b5fae2012-01-12 17:17:50 -08001822
Mel Gorman599d0c92016-07-28 15:45:31 -07001823 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, nr_taken);
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001824 reclaim_stat->recent_scanned[file] += nr_taken;
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08001825
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07001826 if (global_reclaim(sc))
Mel Gorman599d0c92016-07-28 15:45:31 -07001827 __mod_node_page_state(pgdat, NR_PAGES_SCANNED, nr_scanned);
1828 __count_vm_events(PGREFILL, nr_scanned);
Hugh Dickins9d5e6a92016-05-19 17:12:38 -07001829
Mel Gorman599d0c92016-07-28 15:45:31 -07001830 spin_unlock_irq(&pgdat->lru_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831
Linus Torvalds1da177e2005-04-16 15:20:36 -07001832 while (!list_empty(&l_hold)) {
1833 cond_resched();
1834 page = lru_to_page(&l_hold);
1835 list_del(&page->lru);
Rik van Riel7e9cd482008-10-18 20:26:35 -07001836
Hugh Dickins39b5f292012-10-08 16:33:18 -07001837 if (unlikely(!page_evictable(page))) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -07001838 putback_lru_page(page);
1839 continue;
1840 }
1841
Mel Gormancc715d92012-03-21 16:34:00 -07001842 if (unlikely(buffer_heads_over_limit)) {
1843 if (page_has_private(page) && trylock_page(page)) {
1844 if (page_has_private(page))
1845 try_to_release_page(page, 0);
1846 unlock_page(page);
1847 }
1848 }
1849
Johannes Weinerc3ac9a82012-05-29 15:06:25 -07001850 if (page_referenced(page, 0, sc->target_mem_cgroup,
1851 &vm_flags)) {
Rik van Riel9992af12011-01-13 15:47:13 -08001852 nr_rotated += hpage_nr_pages(page);
Wu Fengguang8cab4752009-06-16 15:33:12 -07001853 /*
1854 * Identify referenced, file-backed active pages and
1855 * give them one more trip around the active list. So
1856 * that executable code get better chances to stay in
1857 * memory under moderate memory pressure. Anon pages
1858 * are not likely to be evicted by use-once streaming
1859 * IO, plus JVM can create lots of anon VM_EXEC pages,
1860 * so we ignore them here.
1861 */
Wu Fengguang41e20982009-10-26 16:49:53 -07001862 if ((vm_flags & VM_EXEC) && page_is_file_cache(page)) {
Wu Fengguang8cab4752009-06-16 15:33:12 -07001863 list_add(&page->lru, &l_active);
1864 continue;
1865 }
1866 }
Rik van Riel7e9cd482008-10-18 20:26:35 -07001867
KOSAKI Motohiro5205e562009-09-21 17:01:44 -07001868 ClearPageActive(page); /* we are de-activating */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001869 list_add(&page->lru, &l_inactive);
1870 }
1871
Andrew Mortonb5557492009-01-06 14:40:13 -08001872 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001873 * Move pages back to the lru list.
Andrew Mortonb5557492009-01-06 14:40:13 -08001874 */
Mel Gorman599d0c92016-07-28 15:45:31 -07001875 spin_lock_irq(&pgdat->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001876 /*
Wu Fengguang8cab4752009-06-16 15:33:12 -07001877 * Count referenced pages from currently used mappings as rotated,
1878 * even though only some of them are actually re-activated. This
1879 * helps balance scan pressure between file and anonymous pages in
Jerome Marchand7c0db9e2014-08-06 16:08:01 -07001880 * get_scan_count.
Rik van Riel7e9cd482008-10-18 20:26:35 -07001881 */
Johannes Weinerb7c46d12009-09-21 17:02:56 -07001882 reclaim_stat->recent_rotated[file] += nr_rotated;
Rik van Riel556adec2008-10-18 20:26:34 -07001883
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001884 move_active_pages_to_lru(lruvec, &l_active, &l_hold, lru);
1885 move_active_pages_to_lru(lruvec, &l_inactive, &l_hold, lru - LRU_ACTIVE);
Mel Gorman599d0c92016-07-28 15:45:31 -07001886 __mod_node_page_state(pgdat, NR_ISOLATED_ANON + file, -nr_taken);
1887 spin_unlock_irq(&pgdat->lru_lock);
Hugh Dickins2bcf8872012-01-12 17:19:56 -08001888
Johannes Weiner747db952014-08-08 14:19:24 -07001889 mem_cgroup_uncharge_list(&l_hold);
Mel Gormanb745bc82014-06-04 16:10:22 -07001890 free_hot_cold_page_list(&l_hold, true);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001891}
1892
Rik van Riel59dc76b2016-05-20 16:56:31 -07001893/*
1894 * The inactive anon list should be small enough that the VM never has
1895 * to do too much work.
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001896 *
Rik van Riel59dc76b2016-05-20 16:56:31 -07001897 * The inactive file list should be small enough to leave most memory
1898 * to the established workingset on the scan-resistant active list,
1899 * but large enough to avoid thrashing the aggregate readahead window.
1900 *
1901 * Both inactive lists should also be large enough that each inactive
1902 * page has a chance to be referenced again before it is reclaimed.
1903 *
1904 * The inactive_ratio is the target ratio of ACTIVE to INACTIVE pages
1905 * on this LRU, maintained by the pageout code. A zone->inactive_ratio
1906 * of 3 means 3:1 or 25% of the pages are kept on the inactive list.
1907 *
1908 * total target max
1909 * memory ratio inactive
1910 * -------------------------------------
1911 * 10MB 1 5MB
1912 * 100MB 1 50MB
1913 * 1GB 3 250MB
1914 * 10GB 10 0.9GB
1915 * 100GB 31 3GB
1916 * 1TB 101 10GB
1917 * 10TB 320 32GB
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001918 */
Rik van Riel59dc76b2016-05-20 16:56:31 -07001919static bool inactive_list_is_low(struct lruvec *lruvec, bool file)
KOSAKI Motohiro14797e22009-01-07 18:08:18 -08001920{
Rik van Riel59dc76b2016-05-20 16:56:31 -07001921 unsigned long inactive_ratio;
1922 unsigned long inactive;
1923 unsigned long active;
1924 unsigned long gb;
1925
Minchan Kim74e3f3c2010-10-26 14:21:31 -07001926 /*
1927 * If we don't have swap space, anonymous page deactivation
1928 * is pointless.
1929 */
Rik van Riel59dc76b2016-05-20 16:56:31 -07001930 if (!file && !total_swap_pages)
Yaowei Bai42e2e452015-11-05 18:47:36 -08001931 return false;
Minchan Kim74e3f3c2010-10-26 14:21:31 -07001932
Rik van Riel59dc76b2016-05-20 16:56:31 -07001933 inactive = lruvec_lru_size(lruvec, file * LRU_FILE);
1934 active = lruvec_lru_size(lruvec, file * LRU_FILE + LRU_ACTIVE);
Johannes Weinerf16015f2012-01-12 17:17:52 -08001935
Rik van Riel59dc76b2016-05-20 16:56:31 -07001936 gb = (inactive + active) >> (30 - PAGE_SHIFT);
1937 if (gb)
1938 inactive_ratio = int_sqrt(10 * gb);
Rik van Rielb39415b2009-12-14 17:59:48 -08001939 else
Rik van Riel59dc76b2016-05-20 16:56:31 -07001940 inactive_ratio = 1;
1941
1942 return inactive * inactive_ratio < active;
Rik van Rielb39415b2009-12-14 17:59:48 -08001943}
1944
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001945static unsigned long shrink_list(enum lru_list lru, unsigned long nr_to_scan,
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001946 struct lruvec *lruvec, struct scan_control *sc)
Christoph Lameterb69408e2008-10-18 20:26:14 -07001947{
Rik van Rielb39415b2009-12-14 17:59:48 -08001948 if (is_active_lru(lru)) {
Rik van Riel59dc76b2016-05-20 16:56:31 -07001949 if (inactive_list_is_low(lruvec, is_file_lru(lru)))
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001950 shrink_active_list(nr_to_scan, lruvec, sc, lru);
Rik van Riel556adec2008-10-18 20:26:34 -07001951 return 0;
1952 }
1953
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07001954 return shrink_inactive_list(nr_to_scan, lruvec, sc, lru);
Christoph Lameterb69408e2008-10-18 20:26:14 -07001955}
1956
Johannes Weiner9a265112013-02-22 16:32:17 -08001957enum scan_balance {
1958 SCAN_EQUAL,
1959 SCAN_FRACT,
1960 SCAN_ANON,
1961 SCAN_FILE,
1962};
1963
Linus Torvalds1da177e2005-04-16 15:20:36 -07001964/*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001965 * Determine how aggressively the anon and file LRU lists should be
1966 * scanned. The relative value of each set of LRU lists is determined
1967 * by looking at the fraction of the pages scanned we did rotate back
1968 * onto the active list instead of evict.
1969 *
Wanpeng Libe7bd592012-06-14 20:41:02 +08001970 * nr[0] = anon inactive pages to scan; nr[1] = anon active pages to scan
1971 * nr[2] = file inactive pages to scan; nr[3] = file active pages to scan
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001972 */
Vladimir Davydov33377672016-01-20 15:02:59 -08001973static void get_scan_count(struct lruvec *lruvec, struct mem_cgroup *memcg,
Johannes Weiner6b4f7792014-12-12 16:56:13 -08001974 struct scan_control *sc, unsigned long *nr,
1975 unsigned long *lru_pages)
Rik van Riel4f98a2f2008-10-18 20:26:32 -07001976{
Vladimir Davydov33377672016-01-20 15:02:59 -08001977 int swappiness = mem_cgroup_swappiness(memcg);
Konstantin Khlebnikov90126372012-05-29 15:07:01 -07001978 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
Johannes Weiner9a265112013-02-22 16:32:17 -08001979 u64 fraction[2];
1980 u64 denominator = 0; /* gcc */
Mel Gorman599d0c92016-07-28 15:45:31 -07001981 struct pglist_data *pgdat = lruvec_pgdat(lruvec);
Johannes Weiner9a265112013-02-22 16:32:17 -08001982 unsigned long anon_prio, file_prio;
1983 enum scan_balance scan_balance;
Johannes Weiner0bf14572014-04-08 16:04:10 -07001984 unsigned long anon, file;
Johannes Weiner9a265112013-02-22 16:32:17 -08001985 bool force_scan = false;
1986 unsigned long ap, fp;
1987 enum lru_list lru;
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07001988 bool some_scanned;
1989 int pass;
KAMEZAWA Hiroyuki246e87a2011-05-26 16:25:34 -07001990
Johannes Weinerf11c0ca2011-10-31 17:07:27 -07001991 /*
1992 * If the zone or memcg is small, nr[l] can be 0. This
1993 * results in no scanning on this priority and a potential
1994 * priority drop. Global direct reclaim can go to the next
1995 * zone and tends to have no problems. Global kswapd is for
1996 * zone balancing and it needs to scan a minimum amount. When
1997 * reclaiming for a memcg, a priority drop can cause high
1998 * latencies, so it's better to scan a minimum amount there as
1999 * well.
2000 */
Vladimir Davydov90cbc252015-02-11 15:25:55 -08002001 if (current_is_kswapd()) {
Mel Gorman599d0c92016-07-28 15:45:31 -07002002 if (!pgdat_reclaimable(pgdat))
Vladimir Davydov90cbc252015-02-11 15:25:55 -08002003 force_scan = true;
Vladimir Davydoveb01aaa2016-01-20 15:03:02 -08002004 if (!mem_cgroup_online(memcg))
Vladimir Davydov90cbc252015-02-11 15:25:55 -08002005 force_scan = true;
2006 }
Johannes Weiner89b5fae2012-01-12 17:17:50 -08002007 if (!global_reclaim(sc))
Johannes Weinera4d3e9e2011-09-14 16:21:52 -07002008 force_scan = true;
Shaohua Li76a33fc2010-05-24 14:32:36 -07002009
2010 /* If we have no swap space, do not bother scanning anon pages. */
Vladimir Davydovd8b38432016-01-20 15:03:07 -08002011 if (!sc->may_swap || mem_cgroup_get_nr_swap_pages(memcg) <= 0) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002012 scan_balance = SCAN_FILE;
Shaohua Li76a33fc2010-05-24 14:32:36 -07002013 goto out;
2014 }
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002015
Johannes Weiner10316b32013-02-22 16:32:14 -08002016 /*
2017 * Global reclaim will swap to prevent OOM even with no
2018 * swappiness, but memcg users want to use this knob to
2019 * disable swapping for individual groups completely when
2020 * using the memory controller's swap limit feature would be
2021 * too expensive.
2022 */
Johannes Weiner02695172014-08-06 16:06:17 -07002023 if (!global_reclaim(sc) && !swappiness) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002024 scan_balance = SCAN_FILE;
Johannes Weiner10316b32013-02-22 16:32:14 -08002025 goto out;
2026 }
2027
2028 /*
2029 * Do not apply any pressure balancing cleverness when the
2030 * system is close to OOM, scan both anon and file equally
2031 * (unless the swappiness setting disagrees with swapping).
2032 */
Johannes Weiner02695172014-08-06 16:06:17 -07002033 if (!sc->priority && swappiness) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002034 scan_balance = SCAN_EQUAL;
Johannes Weiner10316b32013-02-22 16:32:14 -08002035 goto out;
2036 }
2037
Johannes Weiner11d16c22013-02-22 16:32:15 -08002038 /*
Johannes Weiner62376252014-05-06 12:50:07 -07002039 * Prevent the reclaimer from falling into the cache trap: as
2040 * cache pages start out inactive, every cache fault will tip
2041 * the scan balance towards the file LRU. And as the file LRU
2042 * shrinks, so does the window for rotation from references.
2043 * This means we have a runaway feedback loop where a tiny
2044 * thrashing file LRU becomes infinitely more attractive than
2045 * anon pages. Try to detect this based on file LRU size.
2046 */
2047 if (global_reclaim(sc)) {
Mel Gorman599d0c92016-07-28 15:45:31 -07002048 unsigned long pgdatfile;
2049 unsigned long pgdatfree;
2050 int z;
2051 unsigned long total_high_wmark = 0;
Johannes Weiner62376252014-05-06 12:50:07 -07002052
Mel Gorman599d0c92016-07-28 15:45:31 -07002053 pgdatfree = sum_zone_node_page_state(pgdat->node_id, NR_FREE_PAGES);
2054 pgdatfile = node_page_state(pgdat, NR_ACTIVE_FILE) +
2055 node_page_state(pgdat, NR_INACTIVE_FILE);
Jerome Marchand2ab051e2014-08-06 16:08:03 -07002056
Mel Gorman599d0c92016-07-28 15:45:31 -07002057 for (z = 0; z < MAX_NR_ZONES; z++) {
2058 struct zone *zone = &pgdat->node_zones[z];
2059 if (!populated_zone(zone))
2060 continue;
2061
2062 total_high_wmark += high_wmark_pages(zone);
2063 }
2064
2065 if (unlikely(pgdatfile + pgdatfree <= total_high_wmark)) {
Johannes Weiner62376252014-05-06 12:50:07 -07002066 scan_balance = SCAN_ANON;
2067 goto out;
2068 }
2069 }
2070
2071 /*
Vladimir Davydov316bda02016-01-14 15:19:38 -08002072 * If there is enough inactive page cache, i.e. if the size of the
2073 * inactive list is greater than that of the active list *and* the
2074 * inactive list actually has some pages to scan on this priority, we
2075 * do not reclaim anything from the anonymous working set right now.
2076 * Without the second condition we could end up never scanning an
2077 * lruvec even if it has plenty of old anonymous pages unless the
2078 * system is under heavy pressure.
Johannes Weiner7c5bd702013-02-22 16:32:10 -08002079 */
Rik van Riel59dc76b2016-05-20 16:56:31 -07002080 if (!inactive_list_is_low(lruvec, true) &&
Johannes Weiner23047a92016-03-15 14:57:16 -07002081 lruvec_lru_size(lruvec, LRU_INACTIVE_FILE) >> sc->priority) {
Johannes Weiner9a265112013-02-22 16:32:17 -08002082 scan_balance = SCAN_FILE;
Johannes Weiner7c5bd702013-02-22 16:32:10 -08002083 goto out;
2084 }
2085
Johannes Weiner9a265112013-02-22 16:32:17 -08002086 scan_balance = SCAN_FRACT;
2087
Johannes Weiner7c5bd702013-02-22 16:32:10 -08002088 /*
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07002089 * With swappiness at 100, anonymous and file have the same priority.
2090 * This scanning priority is essentially the inverse of IO cost.
2091 */
Johannes Weiner02695172014-08-06 16:06:17 -07002092 anon_prio = swappiness;
Hugh Dickins75b00af2012-05-29 15:07:09 -07002093 file_prio = 200 - anon_prio;
KOSAKI Motohiro58c37f62010-08-09 17:19:51 -07002094
2095 /*
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002096 * OK, so we have swap space and a fair amount of page cache
2097 * pages. We use the recently rotated / recently scanned
2098 * ratios to determine how valuable each cache is.
2099 *
2100 * Because workloads change over time (and to avoid overflow)
2101 * we keep these statistics as a floating average, which ends
2102 * up weighing recent references more than old ones.
2103 *
2104 * anon in [0], file in [1]
2105 */
Jerome Marchand2ab051e2014-08-06 16:08:03 -07002106
Johannes Weiner23047a92016-03-15 14:57:16 -07002107 anon = lruvec_lru_size(lruvec, LRU_ACTIVE_ANON) +
2108 lruvec_lru_size(lruvec, LRU_INACTIVE_ANON);
2109 file = lruvec_lru_size(lruvec, LRU_ACTIVE_FILE) +
2110 lruvec_lru_size(lruvec, LRU_INACTIVE_FILE);
Jerome Marchand2ab051e2014-08-06 16:08:03 -07002111
Mel Gorman599d0c92016-07-28 15:45:31 -07002112 spin_lock_irq(&pgdat->lru_lock);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002113 if (unlikely(reclaim_stat->recent_scanned[0] > anon / 4)) {
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002114 reclaim_stat->recent_scanned[0] /= 2;
2115 reclaim_stat->recent_rotated[0] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002116 }
2117
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002118 if (unlikely(reclaim_stat->recent_scanned[1] > file / 4)) {
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002119 reclaim_stat->recent_scanned[1] /= 2;
2120 reclaim_stat->recent_rotated[1] /= 2;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002121 }
2122
2123 /*
Rik van Riel00d80892008-11-19 15:36:44 -08002124 * The amount of pressure on anon vs file pages is inversely
2125 * proportional to the fraction of recently scanned pages on
2126 * each list that were recently referenced and in active use.
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002127 */
Satoru Moriyafe350042012-05-29 15:06:47 -07002128 ap = anon_prio * (reclaim_stat->recent_scanned[0] + 1);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002129 ap /= reclaim_stat->recent_rotated[0] + 1;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002130
Satoru Moriyafe350042012-05-29 15:06:47 -07002131 fp = file_prio * (reclaim_stat->recent_scanned[1] + 1);
KOSAKI Motohiro6e901572009-01-07 18:08:15 -08002132 fp /= reclaim_stat->recent_rotated[1] + 1;
Mel Gorman599d0c92016-07-28 15:45:31 -07002133 spin_unlock_irq(&pgdat->lru_lock);
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002134
Shaohua Li76a33fc2010-05-24 14:32:36 -07002135 fraction[0] = ap;
2136 fraction[1] = fp;
2137 denominator = ap + fp + 1;
2138out:
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002139 some_scanned = false;
2140 /* Only use force_scan on second pass. */
2141 for (pass = 0; !some_scanned && pass < 2; pass++) {
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002142 *lru_pages = 0;
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002143 for_each_evictable_lru(lru) {
2144 int file = is_file_lru(lru);
2145 unsigned long size;
2146 unsigned long scan;
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002147
Johannes Weiner23047a92016-03-15 14:57:16 -07002148 size = lruvec_lru_size(lruvec, lru);
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002149 scan = size >> sc->priority;
Johannes Weiner9a265112013-02-22 16:32:17 -08002150
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002151 if (!scan && pass && force_scan)
2152 scan = min(size, SWAP_CLUSTER_MAX);
Johannes Weiner9a265112013-02-22 16:32:17 -08002153
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002154 switch (scan_balance) {
2155 case SCAN_EQUAL:
2156 /* Scan lists relative to size */
2157 break;
2158 case SCAN_FRACT:
2159 /*
2160 * Scan types proportional to swappiness and
2161 * their relative recent reclaim efficiency.
2162 */
2163 scan = div64_u64(scan * fraction[file],
2164 denominator);
2165 break;
2166 case SCAN_FILE:
2167 case SCAN_ANON:
2168 /* Scan one type exclusively */
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002169 if ((scan_balance == SCAN_FILE) != file) {
2170 size = 0;
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002171 scan = 0;
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002172 }
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002173 break;
2174 default:
2175 /* Look ma, no brain */
2176 BUG();
2177 }
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002178
2179 *lru_pages += size;
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002180 nr[lru] = scan;
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002181
Johannes Weiner9a265112013-02-22 16:32:17 -08002182 /*
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002183 * Skip the second pass and don't force_scan,
2184 * if we found something to scan.
Johannes Weiner9a265112013-02-22 16:32:17 -08002185 */
Suleiman Souhlal6f04f482014-06-04 16:06:44 -07002186 some_scanned |= !!scan;
Johannes Weiner9a265112013-02-22 16:32:17 -08002187 }
Shaohua Li76a33fc2010-05-24 14:32:36 -07002188 }
Wu Fengguang6e08a362009-06-16 15:32:29 -07002189}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002190
Mel Gorman72b252a2015-09-04 15:47:32 -07002191#ifdef CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH
2192static void init_tlb_ubc(void)
2193{
2194 /*
2195 * This deliberately does not clear the cpumask as it's expensive
2196 * and unnecessary. If there happens to be data in there then the
2197 * first SWAP_CLUSTER_MAX pages will send an unnecessary IPI and
2198 * then will be cleared.
2199 */
2200 current->tlb_ubc.flush_required = false;
2201}
2202#else
2203static inline void init_tlb_ubc(void)
2204{
2205}
2206#endif /* CONFIG_ARCH_WANT_BATCHED_UNMAP_TLB_FLUSH */
2207
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002208/*
2209 * This is a basic per-zone page freer. Used by both kswapd and direct reclaim.
2210 */
Vladimir Davydov33377672016-01-20 15:02:59 -08002211static void shrink_zone_memcg(struct zone *zone, struct mem_cgroup *memcg,
2212 struct scan_control *sc, unsigned long *lru_pages)
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002213{
Vladimir Davydov33377672016-01-20 15:02:59 -08002214 struct lruvec *lruvec = mem_cgroup_zone_lruvec(zone, memcg);
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002215 unsigned long nr[NR_LRU_LISTS];
Mel Gormane82e0562013-07-03 15:01:44 -07002216 unsigned long targets[NR_LRU_LISTS];
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002217 unsigned long nr_to_scan;
2218 enum lru_list lru;
2219 unsigned long nr_reclaimed = 0;
2220 unsigned long nr_to_reclaim = sc->nr_to_reclaim;
2221 struct blk_plug plug;
Mel Gorman1a501902014-06-04 16:10:49 -07002222 bool scan_adjusted;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002223
Vladimir Davydov33377672016-01-20 15:02:59 -08002224 get_scan_count(lruvec, memcg, sc, nr, lru_pages);
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002225
Mel Gormane82e0562013-07-03 15:01:44 -07002226 /* Record the original scan target for proportional adjustments later */
2227 memcpy(targets, nr, sizeof(nr));
2228
Mel Gorman1a501902014-06-04 16:10:49 -07002229 /*
2230 * Global reclaiming within direct reclaim at DEF_PRIORITY is a normal
2231 * event that can occur when there is little memory pressure e.g.
2232 * multiple streaming readers/writers. Hence, we do not abort scanning
2233 * when the requested number of pages are reclaimed when scanning at
2234 * DEF_PRIORITY on the assumption that the fact we are direct
2235 * reclaiming implies that kswapd is not keeping up and it is best to
2236 * do a batch of work at once. For memcg reclaim one check is made to
2237 * abort proportional reclaim if either the file or anon lru has already
2238 * dropped to zero at the first pass.
2239 */
2240 scan_adjusted = (global_reclaim(sc) && !current_is_kswapd() &&
2241 sc->priority == DEF_PRIORITY);
2242
Mel Gorman72b252a2015-09-04 15:47:32 -07002243 init_tlb_ubc();
2244
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002245 blk_start_plug(&plug);
2246 while (nr[LRU_INACTIVE_ANON] || nr[LRU_ACTIVE_FILE] ||
2247 nr[LRU_INACTIVE_FILE]) {
Mel Gormane82e0562013-07-03 15:01:44 -07002248 unsigned long nr_anon, nr_file, percentage;
2249 unsigned long nr_scanned;
2250
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002251 for_each_evictable_lru(lru) {
2252 if (nr[lru]) {
2253 nr_to_scan = min(nr[lru], SWAP_CLUSTER_MAX);
2254 nr[lru] -= nr_to_scan;
2255
2256 nr_reclaimed += shrink_list(lru, nr_to_scan,
2257 lruvec, sc);
2258 }
2259 }
Mel Gormane82e0562013-07-03 15:01:44 -07002260
2261 if (nr_reclaimed < nr_to_reclaim || scan_adjusted)
2262 continue;
2263
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002264 /*
Mel Gormane82e0562013-07-03 15:01:44 -07002265 * For kswapd and memcg, reclaim at least the number of pages
Mel Gorman1a501902014-06-04 16:10:49 -07002266 * requested. Ensure that the anon and file LRUs are scanned
Mel Gormane82e0562013-07-03 15:01:44 -07002267 * proportionally what was requested by get_scan_count(). We
2268 * stop reclaiming one LRU and reduce the amount scanning
2269 * proportional to the original scan target.
2270 */
2271 nr_file = nr[LRU_INACTIVE_FILE] + nr[LRU_ACTIVE_FILE];
2272 nr_anon = nr[LRU_INACTIVE_ANON] + nr[LRU_ACTIVE_ANON];
2273
Mel Gorman1a501902014-06-04 16:10:49 -07002274 /*
2275 * It's just vindictive to attack the larger once the smaller
2276 * has gone to zero. And given the way we stop scanning the
2277 * smaller below, this makes sure that we only make one nudge
2278 * towards proportionality once we've got nr_to_reclaim.
2279 */
2280 if (!nr_file || !nr_anon)
2281 break;
2282
Mel Gormane82e0562013-07-03 15:01:44 -07002283 if (nr_file > nr_anon) {
2284 unsigned long scan_target = targets[LRU_INACTIVE_ANON] +
2285 targets[LRU_ACTIVE_ANON] + 1;
2286 lru = LRU_BASE;
2287 percentage = nr_anon * 100 / scan_target;
2288 } else {
2289 unsigned long scan_target = targets[LRU_INACTIVE_FILE] +
2290 targets[LRU_ACTIVE_FILE] + 1;
2291 lru = LRU_FILE;
2292 percentage = nr_file * 100 / scan_target;
2293 }
2294
2295 /* Stop scanning the smaller of the LRU */
2296 nr[lru] = 0;
2297 nr[lru + LRU_ACTIVE] = 0;
2298
2299 /*
2300 * Recalculate the other LRU scan count based on its original
2301 * scan target and the percentage scanning already complete
2302 */
2303 lru = (lru == LRU_FILE) ? LRU_BASE : LRU_FILE;
2304 nr_scanned = targets[lru] - nr[lru];
2305 nr[lru] = targets[lru] * (100 - percentage) / 100;
2306 nr[lru] -= min(nr[lru], nr_scanned);
2307
2308 lru += LRU_ACTIVE;
2309 nr_scanned = targets[lru] - nr[lru];
2310 nr[lru] = targets[lru] * (100 - percentage) / 100;
2311 nr[lru] -= min(nr[lru], nr_scanned);
2312
2313 scan_adjusted = true;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002314 }
2315 blk_finish_plug(&plug);
2316 sc->nr_reclaimed += nr_reclaimed;
2317
2318 /*
2319 * Even if we did not try to evict anon pages at all, we want to
2320 * rebalance the anon lru active/inactive ratio.
2321 */
Rik van Riel59dc76b2016-05-20 16:56:31 -07002322 if (inactive_list_is_low(lruvec, false))
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002323 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
2324 sc, LRU_ACTIVE_ANON);
2325
2326 throttle_vm_writeout(sc->gfp_mask);
2327}
2328
Mel Gorman23b9da52012-05-29 15:06:20 -07002329/* Use reclaim/compaction for costly allocs or under memory pressure */
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002330static bool in_reclaim_compaction(struct scan_control *sc)
Mel Gorman23b9da52012-05-29 15:06:20 -07002331{
Kirill A. Shutemovd84da3f2012-12-11 16:00:31 -08002332 if (IS_ENABLED(CONFIG_COMPACTION) && sc->order &&
Mel Gorman23b9da52012-05-29 15:06:20 -07002333 (sc->order > PAGE_ALLOC_COSTLY_ORDER ||
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002334 sc->priority < DEF_PRIORITY - 2))
Mel Gorman23b9da52012-05-29 15:06:20 -07002335 return true;
2336
2337 return false;
2338}
2339
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002340/*
Mel Gorman23b9da52012-05-29 15:06:20 -07002341 * Reclaim/compaction is used for high-order allocation requests. It reclaims
2342 * order-0 pages before compacting the zone. should_continue_reclaim() returns
2343 * true if more pages should be reclaimed such that when the page allocator
2344 * calls try_to_compact_zone() that it will have enough free pages to succeed.
2345 * It will give up earlier than that if there is difficulty reclaiming pages.
Mel Gorman3e7d3442011-01-13 15:45:56 -08002346 */
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002347static inline bool should_continue_reclaim(struct zone *zone,
Mel Gorman3e7d3442011-01-13 15:45:56 -08002348 unsigned long nr_reclaimed,
2349 unsigned long nr_scanned,
2350 struct scan_control *sc)
2351{
2352 unsigned long pages_for_compaction;
2353 unsigned long inactive_lru_pages;
2354
2355 /* If not in reclaim/compaction mode, stop */
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002356 if (!in_reclaim_compaction(sc))
Mel Gorman3e7d3442011-01-13 15:45:56 -08002357 return false;
2358
Mel Gorman28765922011-02-25 14:44:20 -08002359 /* Consider stopping depending on scan and reclaim activity */
2360 if (sc->gfp_mask & __GFP_REPEAT) {
2361 /*
2362 * For __GFP_REPEAT allocations, stop reclaiming if the
2363 * full LRU list has been scanned and we are still failing
2364 * to reclaim pages. This full LRU scan is potentially
2365 * expensive but a __GFP_REPEAT caller really wants to succeed
2366 */
2367 if (!nr_reclaimed && !nr_scanned)
2368 return false;
2369 } else {
2370 /*
2371 * For non-__GFP_REPEAT allocations which can presumably
2372 * fail without consequence, stop if we failed to reclaim
2373 * any pages from the last SWAP_CLUSTER_MAX number of
2374 * pages that were scanned. This will return to the
2375 * caller faster at the risk reclaim/compaction and
2376 * the resulting allocation attempt fails
2377 */
2378 if (!nr_reclaimed)
2379 return false;
2380 }
Mel Gorman3e7d3442011-01-13 15:45:56 -08002381
2382 /*
2383 * If we have not reclaimed enough pages for compaction and the
2384 * inactive lists are large enough, continue reclaiming
2385 */
2386 pages_for_compaction = (2UL << sc->order);
Mel Gorman599d0c92016-07-28 15:45:31 -07002387 inactive_lru_pages = node_page_state(zone->zone_pgdat, NR_INACTIVE_FILE);
Shaohua Liec8acf22013-02-22 16:34:38 -08002388 if (get_nr_swap_pages() > 0)
Mel Gorman599d0c92016-07-28 15:45:31 -07002389 inactive_lru_pages += node_page_state(zone->zone_pgdat, NR_INACTIVE_ANON);
Mel Gorman3e7d3442011-01-13 15:45:56 -08002390 if (sc->nr_reclaimed < pages_for_compaction &&
2391 inactive_lru_pages > pages_for_compaction)
2392 return true;
2393
2394 /* If compaction would go ahead or the allocation would succeed, stop */
Vlastimil Babkaebff3982014-12-10 15:43:22 -08002395 switch (compaction_suitable(zone, sc->order, 0, 0)) {
Mel Gorman3e7d3442011-01-13 15:45:56 -08002396 case COMPACT_PARTIAL:
2397 case COMPACT_CONTINUE:
2398 return false;
2399 default:
2400 return true;
2401 }
2402}
2403
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002404static bool shrink_zone(struct zone *zone, struct scan_control *sc,
2405 bool is_classzone)
Johannes Weinerf16015f2012-01-12 17:17:52 -08002406{
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002407 struct reclaim_state *reclaim_state = current->reclaim_state;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002408 unsigned long nr_reclaimed, nr_scanned;
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002409 bool reclaimable = false;
Johannes Weinerf16015f2012-01-12 17:17:52 -08002410
Johannes Weiner56600482012-01-12 17:17:59 -08002411 do {
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002412 struct mem_cgroup *root = sc->target_mem_cgroup;
2413 struct mem_cgroup_reclaim_cookie reclaim = {
2414 .zone = zone,
2415 .priority = sc->priority,
2416 };
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002417 unsigned long zone_lru_pages = 0;
Andrew Morton694fbc02013-09-24 15:27:37 -07002418 struct mem_cgroup *memcg;
Johannes Weiner56600482012-01-12 17:17:59 -08002419
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002420 nr_reclaimed = sc->nr_reclaimed;
2421 nr_scanned = sc->nr_scanned;
Konstantin Khlebnikovf9be23d2012-05-29 15:07:02 -07002422
Andrew Morton694fbc02013-09-24 15:27:37 -07002423 memcg = mem_cgroup_iter(root, NULL, &reclaim);
2424 do {
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002425 unsigned long lru_pages;
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002426 unsigned long reclaimed;
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002427 unsigned long scanned;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002428
Johannes Weiner241994ed2015-02-11 15:26:06 -08002429 if (mem_cgroup_low(root, memcg)) {
2430 if (!sc->may_thrash)
2431 continue;
2432 mem_cgroup_events(memcg, MEMCG_LOW, 1);
2433 }
2434
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002435 reclaimed = sc->nr_reclaimed;
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002436 scanned = sc->nr_scanned;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002437
Vladimir Davydov33377672016-01-20 15:02:59 -08002438 shrink_zone_memcg(zone, memcg, sc, &lru_pages);
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002439 zone_lru_pages += lru_pages;
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002440
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002441 if (memcg && is_classzone)
2442 shrink_slab(sc->gfp_mask, zone_to_nid(zone),
2443 memcg, sc->nr_scanned - scanned,
2444 lru_pages);
2445
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002446 /* Record the group's reclaim efficiency */
2447 vmpressure(sc->gfp_mask, memcg, false,
2448 sc->nr_scanned - scanned,
2449 sc->nr_reclaimed - reclaimed);
2450
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002451 /*
Michal Hockoa394cb82013-02-22 16:32:30 -08002452 * Direct reclaim and kswapd have to scan all memory
2453 * cgroups to fulfill the overall scan target for the
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002454 * zone.
Michal Hockoa394cb82013-02-22 16:32:30 -08002455 *
2456 * Limit reclaim, on the other hand, only cares about
2457 * nr_to_reclaim pages to be reclaimed and it will
2458 * retry with decreasing priority if one round over the
2459 * whole hierarchy is not sufficient.
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002460 */
Michal Hockoa394cb82013-02-22 16:32:30 -08002461 if (!global_reclaim(sc) &&
2462 sc->nr_reclaimed >= sc->nr_to_reclaim) {
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002463 mem_cgroup_iter_break(root, memcg);
2464 break;
2465 }
Johannes Weiner241994ed2015-02-11 15:26:06 -08002466 } while ((memcg = mem_cgroup_iter(root, memcg, &reclaim)));
Anton Vorontsov70ddf632013-04-29 15:08:31 -07002467
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002468 /*
2469 * Shrink the slab caches in the same proportion that
2470 * the eligible LRU pages were scanned.
2471 */
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002472 if (global_reclaim(sc) && is_classzone)
2473 shrink_slab(sc->gfp_mask, zone_to_nid(zone), NULL,
2474 sc->nr_scanned - nr_scanned,
2475 zone_lru_pages);
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002476
Vladimir Davydovcb731d62015-02-12 14:58:54 -08002477 if (reclaim_state) {
2478 sc->nr_reclaimed += reclaim_state->reclaimed_slab;
2479 reclaim_state->reclaimed_slab = 0;
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002480 }
2481
Johannes Weiner8e8ae642016-01-14 15:21:32 -08002482 /* Record the subtree's reclaim efficiency */
2483 vmpressure(sc->gfp_mask, sc->target_mem_cgroup, true,
Anton Vorontsov70ddf632013-04-29 15:08:31 -07002484 sc->nr_scanned - nr_scanned,
2485 sc->nr_reclaimed - nr_reclaimed);
2486
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002487 if (sc->nr_reclaimed - nr_reclaimed)
2488 reclaimable = true;
2489
Johannes Weiner9b4f98c2013-02-22 16:32:19 -08002490 } while (should_continue_reclaim(zone, sc->nr_reclaimed - nr_reclaimed,
2491 sc->nr_scanned - nr_scanned, sc));
Johannes Weiner2344d7e2014-08-06 16:06:15 -07002492
2493 return reclaimable;
Johannes Weinerf16015f2012-01-12 17:17:52 -08002494}
2495
Vlastimil Babka53853e22014-10-09 15:27:02 -07002496/*
2497 * Returns true if compaction should go ahead for a high-order request, or
2498 * the high-order allocation would succeed without compaction.
2499 */
Michal Hockob6459cc2016-05-20 16:56:34 -07002500static inline bool compaction_ready(struct zone *zone, int order, int classzone_idx)
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002501{
2502 unsigned long balance_gap, watermark;
2503 bool watermark_ok;
2504
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002505 /*
2506 * Compaction takes time to run and there are potentially other
2507 * callers using the pages just freed. Continue reclaiming until
2508 * there is a buffer of free pages available to give compaction
2509 * a reasonable chance of completing and allocating the page
2510 */
Jianyu Zhan4be89a32014-06-04 16:10:38 -07002511 balance_gap = min(low_wmark_pages(zone), DIV_ROUND_UP(
2512 zone->managed_pages, KSWAPD_ZONE_BALANCE_GAP_RATIO));
Johannes Weiner0b064962014-08-06 16:06:12 -07002513 watermark = high_wmark_pages(zone) + balance_gap + (2UL << order);
Michal Hockob6459cc2016-05-20 16:56:34 -07002514 watermark_ok = zone_watermark_ok_safe(zone, 0, watermark, classzone_idx);
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002515
2516 /*
2517 * If compaction is deferred, reclaim up to a point where
2518 * compaction will have a chance of success when re-enabled
2519 */
Johannes Weiner0b064962014-08-06 16:06:12 -07002520 if (compaction_deferred(zone, order))
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002521 return watermark_ok;
2522
Vlastimil Babka53853e22014-10-09 15:27:02 -07002523 /*
2524 * If compaction is not ready to start and allocation is not likely
2525 * to succeed without it, then keep reclaiming.
2526 */
Michal Hockob6459cc2016-05-20 16:56:34 -07002527 if (compaction_suitable(zone, order, 0, classzone_idx) == COMPACT_SKIPPED)
Mel Gormanfe4b1b22012-01-12 17:19:45 -08002528 return false;
2529
2530 return watermark_ok;
2531}
2532
Linus Torvalds1da177e2005-04-16 15:20:36 -07002533/*
2534 * This is the direct reclaim path, for page-allocating processes. We only
2535 * try to reclaim pages from zones which will satisfy the caller's allocation
2536 * request.
2537 *
Mel Gorman41858962009-06-16 15:32:12 -07002538 * We reclaim from a zone even if that zone is over high_wmark_pages(zone).
2539 * Because:
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 * a) The caller may be trying to free *extra* pages to satisfy a higher-order
2541 * allocation or
Mel Gorman41858962009-06-16 15:32:12 -07002542 * b) The target zone may be at high_wmark_pages(zone) but the lower zones
2543 * must go *over* high_wmark_pages(zone) to satisfy the `incremental min'
2544 * zone defense algorithm.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002545 *
Linus Torvalds1da177e2005-04-16 15:20:36 -07002546 * If a zone is deemed to be full of pinned pages then just give it a light
2547 * scan then give up on it.
2548 */
Michal Hocko0a0337e2016-05-20 16:57:00 -07002549static void shrink_zones(struct zonelist *zonelist, struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550{
Mel Gormandd1a2392008-04-28 02:12:17 -07002551 struct zoneref *z;
Mel Gorman54a6eb52008-04-28 02:12:16 -07002552 struct zone *zone;
Andrew Morton0608f432013-09-24 15:27:41 -07002553 unsigned long nr_soft_reclaimed;
2554 unsigned long nr_soft_scanned;
Weijie Yang619d0d762014-04-07 15:36:59 -07002555 gfp_t orig_mask;
Weijie Yang9bbc04e2014-04-07 15:37:00 -07002556 enum zone_type requested_highidx = gfp_zone(sc->gfp_mask);
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002557
Mel Gormancc715d92012-03-21 16:34:00 -07002558 /*
2559 * If the number of buffer_heads in the machine exceeds the maximum
2560 * allowed level, force direct reclaim to scan the highmem zone as
2561 * highmem pages could be pinning lowmem pages storing buffer_heads
2562 */
Weijie Yang619d0d762014-04-07 15:36:59 -07002563 orig_mask = sc->gfp_mask;
Mel Gormancc715d92012-03-21 16:34:00 -07002564 if (buffer_heads_over_limit)
2565 sc->gfp_mask |= __GFP_HIGHMEM;
2566
Mel Gormand4debc62010-08-09 17:19:29 -07002567 for_each_zone_zonelist_nodemask(zone, z, zonelist,
Minchan Kim7bf52fb2016-04-28 16:18:38 -07002568 gfp_zone(sc->gfp_mask), sc->nodemask) {
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002569 enum zone_type classzone_idx;
2570
Con Kolivasf3fe6512006-01-06 00:11:15 -08002571 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002572 continue;
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002573
2574 classzone_idx = requested_highidx;
2575 while (!populated_zone(zone->zone_pgdat->node_zones +
2576 classzone_idx))
2577 classzone_idx--;
2578
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002579 /*
2580 * Take care memory controller reclaiming has small influence
2581 * to global LRU.
2582 */
Johannes Weiner89b5fae2012-01-12 17:17:50 -08002583 if (global_reclaim(sc)) {
Vladimir Davydov344736f2014-10-20 15:50:30 +04002584 if (!cpuset_zone_allowed(zone,
2585 GFP_KERNEL | __GFP_HARDWALL))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002586 continue;
Vladimir Davydov65ec02c2014-04-03 14:47:20 -07002587
Lisa Du6e543d52013-09-11 14:22:36 -07002588 if (sc->priority != DEF_PRIORITY &&
Mel Gorman599d0c92016-07-28 15:45:31 -07002589 !pgdat_reclaimable(zone->zone_pgdat))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002590 continue; /* Let kswapd poll it */
Johannes Weiner0b064962014-08-06 16:06:12 -07002591
2592 /*
2593 * If we already have plenty of memory free for
2594 * compaction in this zone, don't free any more.
2595 * Even though compaction is invoked for any
2596 * non-zero order, only frequent costly order
2597 * reclamation is disruptive enough to become a
2598 * noticeable problem, like transparent huge
2599 * page allocations.
2600 */
2601 if (IS_ENABLED(CONFIG_COMPACTION) &&
2602 sc->order > PAGE_ALLOC_COSTLY_ORDER &&
2603 zonelist_zone_idx(z) <= requested_highidx &&
Michal Hockob6459cc2016-05-20 16:56:34 -07002604 compaction_ready(zone, sc->order, requested_highidx)) {
Johannes Weiner0b064962014-08-06 16:06:12 -07002605 sc->compaction_ready = true;
2606 continue;
Rik van Riele0887c12011-10-31 17:09:31 -07002607 }
Johannes Weiner0b064962014-08-06 16:06:12 -07002608
Andrew Morton0608f432013-09-24 15:27:41 -07002609 /*
2610 * This steals pages from memory cgroups over softlimit
2611 * and returns the number of reclaimed pages and
2612 * scanned pages. This works for global memory pressure
2613 * and balancing, not for a memcg's limit.
2614 */
2615 nr_soft_scanned = 0;
2616 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone,
2617 sc->order, sc->gfp_mask,
2618 &nr_soft_scanned);
2619 sc->nr_reclaimed += nr_soft_reclaimed;
2620 sc->nr_scanned += nr_soft_scanned;
KAMEZAWA Hiroyukiac34a1a2011-06-27 16:18:12 -07002621 /* need some check for avoid more shrink_zone() */
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002622 }
Nick Piggin408d8542006-09-25 23:31:27 -07002623
Michal Hocko0a0337e2016-05-20 16:57:00 -07002624 shrink_zone(zone, sc, zone_idx(zone) == classzone_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002625 }
Mel Gormane0c23272011-10-31 17:09:33 -07002626
Vladimir Davydov65ec02c2014-04-03 14:47:20 -07002627 /*
Weijie Yang619d0d762014-04-07 15:36:59 -07002628 * Restore to original mask to avoid the impact on the caller if we
2629 * promoted it to __GFP_HIGHMEM.
2630 */
2631 sc->gfp_mask = orig_mask;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002632}
Rik van Riel4f98a2f2008-10-18 20:26:32 -07002633
Linus Torvalds1da177e2005-04-16 15:20:36 -07002634/*
2635 * This is the main entry point to direct page reclaim.
2636 *
2637 * If a full scan of the inactive list fails to free enough memory then we
2638 * are "out of memory" and something needs to be killed.
2639 *
2640 * If the caller is !__GFP_FS then the probability of a failure is reasonably
2641 * high - the zone may be full of dirty or under-writeback pages, which this
Jens Axboe5b0830c2009-09-23 19:37:09 +02002642 * caller can't do much about. We kick the writeback threads and take explicit
2643 * naps in the hope that some of these pages can be written. But if the
2644 * allocating task holds filesystem locks which prevent writeout this might not
2645 * work, and the allocation attempt will fail.
Nishanth Aravamudana41f24e2008-04-29 00:58:25 -07002646 *
2647 * returns: 0, if no pages reclaimed
2648 * else, the number of pages reclaimed
Linus Torvalds1da177e2005-04-16 15:20:36 -07002649 */
Mel Gormandac1d272008-04-28 02:12:12 -07002650static unsigned long do_try_to_free_pages(struct zonelist *zonelist,
Vladimir Davydov3115cd92014-04-03 14:47:22 -07002651 struct scan_control *sc)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002652{
Johannes Weiner241994ed2015-02-11 15:26:06 -08002653 int initial_priority = sc->priority;
Andrew Morton69e05942006-03-22 00:08:19 -08002654 unsigned long total_scanned = 0;
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002655 unsigned long writeback_threshold;
Johannes Weiner241994ed2015-02-11 15:26:06 -08002656retry:
Keika Kobayashi873b4772008-07-25 01:48:52 -07002657 delayacct_freepages_start();
2658
Johannes Weiner89b5fae2012-01-12 17:17:50 -08002659 if (global_reclaim(sc))
KAMEZAWA Hiroyuki1cfb4192008-02-07 00:14:37 -08002660 count_vm_event(ALLOCSTALL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002661
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002662 do {
Anton Vorontsov70ddf632013-04-29 15:08:31 -07002663 vmpressure_prio(sc->gfp_mask, sc->target_mem_cgroup,
2664 sc->priority);
Balbir Singh66e17072008-02-07 00:13:56 -08002665 sc->nr_scanned = 0;
Michal Hocko0a0337e2016-05-20 16:57:00 -07002666 shrink_zones(zonelist, sc);
Mel Gormane0c23272011-10-31 17:09:33 -07002667
Balbir Singh66e17072008-02-07 00:13:56 -08002668 total_scanned += sc->nr_scanned;
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07002669 if (sc->nr_reclaimed >= sc->nr_to_reclaim)
Johannes Weiner0b064962014-08-06 16:06:12 -07002670 break;
2671
2672 if (sc->compaction_ready)
2673 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002674
2675 /*
Minchan Kim0e50ce32013-02-22 16:35:37 -08002676 * If we're getting trouble reclaiming, start doing
2677 * writepage even in laptop mode.
2678 */
2679 if (sc->priority < DEF_PRIORITY - 2)
2680 sc->may_writepage = 1;
2681
2682 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002683 * Try to write back as many pages as we just scanned. This
2684 * tends to cause slow streaming writers to write data to the
2685 * disk smoothly, at the dirtying rate, which is nice. But
2686 * that's undesirable in laptop mode, where we *want* lumpy
2687 * writeout. So in laptop mode, write out the whole world.
2688 */
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002689 writeback_threshold = sc->nr_to_reclaim + sc->nr_to_reclaim / 2;
2690 if (total_scanned > writeback_threshold) {
Curt Wohlgemuth0e175a12011-10-07 21:54:10 -06002691 wakeup_flusher_threads(laptop_mode ? 0 : total_scanned,
2692 WB_REASON_TRY_TO_FREE_PAGES);
Balbir Singh66e17072008-02-07 00:13:56 -08002693 sc->may_writepage = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002694 }
Johannes Weiner0b064962014-08-06 16:06:12 -07002695 } while (--sc->priority >= 0);
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07002696
Keika Kobayashi873b4772008-07-25 01:48:52 -07002697 delayacct_freepages_end();
2698
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07002699 if (sc->nr_reclaimed)
2700 return sc->nr_reclaimed;
2701
Mel Gorman0cee34f2012-01-12 17:19:49 -08002702 /* Aborted reclaim to try compaction? don't OOM, then */
Johannes Weiner0b064962014-08-06 16:06:12 -07002703 if (sc->compaction_ready)
Mel Gorman73350842012-01-12 17:19:33 -08002704 return 1;
2705
Johannes Weiner241994ed2015-02-11 15:26:06 -08002706 /* Untapped cgroup reserves? Don't OOM, retry. */
2707 if (!sc->may_thrash) {
2708 sc->priority = initial_priority;
2709 sc->may_thrash = 1;
2710 goto retry;
2711 }
2712
KOSAKI Motohirobb21c7c2010-06-04 14:15:05 -07002713 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714}
2715
Mel Gorman55150612012-07-31 16:44:35 -07002716static bool pfmemalloc_watermark_ok(pg_data_t *pgdat)
2717{
2718 struct zone *zone;
2719 unsigned long pfmemalloc_reserve = 0;
2720 unsigned long free_pages = 0;
2721 int i;
2722 bool wmark_ok;
2723
2724 for (i = 0; i <= ZONE_NORMAL; i++) {
2725 zone = &pgdat->node_zones[i];
Nishanth Aravamudanf012a842015-06-24 16:56:39 -07002726 if (!populated_zone(zone) ||
Mel Gorman599d0c92016-07-28 15:45:31 -07002727 pgdat_reclaimable_pages(pgdat) == 0)
Mel Gorman675becc2014-06-04 16:07:35 -07002728 continue;
2729
Mel Gorman55150612012-07-31 16:44:35 -07002730 pfmemalloc_reserve += min_wmark_pages(zone);
2731 free_pages += zone_page_state(zone, NR_FREE_PAGES);
2732 }
2733
Mel Gorman675becc2014-06-04 16:07:35 -07002734 /* If there are no reserves (unexpected config) then do not throttle */
2735 if (!pfmemalloc_reserve)
2736 return true;
2737
Mel Gorman55150612012-07-31 16:44:35 -07002738 wmark_ok = free_pages > pfmemalloc_reserve / 2;
2739
2740 /* kswapd must be awake if processes are being throttled */
2741 if (!wmark_ok && waitqueue_active(&pgdat->kswapd_wait)) {
2742 pgdat->classzone_idx = min(pgdat->classzone_idx,
2743 (enum zone_type)ZONE_NORMAL);
2744 wake_up_interruptible(&pgdat->kswapd_wait);
2745 }
2746
2747 return wmark_ok;
2748}
2749
2750/*
2751 * Throttle direct reclaimers if backing storage is backed by the network
2752 * and the PFMEMALLOC reserve for the preferred node is getting dangerously
2753 * depleted. kswapd will continue to make progress and wake the processes
Mel Gorman50694c22012-11-26 16:29:48 -08002754 * when the low watermark is reached.
2755 *
2756 * Returns true if a fatal signal was delivered during throttling. If this
2757 * happens, the page allocator should not consider triggering the OOM killer.
Mel Gorman55150612012-07-31 16:44:35 -07002758 */
Mel Gorman50694c22012-11-26 16:29:48 -08002759static bool throttle_direct_reclaim(gfp_t gfp_mask, struct zonelist *zonelist,
Mel Gorman55150612012-07-31 16:44:35 -07002760 nodemask_t *nodemask)
2761{
Mel Gorman675becc2014-06-04 16:07:35 -07002762 struct zoneref *z;
Mel Gorman55150612012-07-31 16:44:35 -07002763 struct zone *zone;
Mel Gorman675becc2014-06-04 16:07:35 -07002764 pg_data_t *pgdat = NULL;
Mel Gorman55150612012-07-31 16:44:35 -07002765
2766 /*
2767 * Kernel threads should not be throttled as they may be indirectly
2768 * responsible for cleaning pages necessary for reclaim to make forward
2769 * progress. kjournald for example may enter direct reclaim while
2770 * committing a transaction where throttling it could forcing other
2771 * processes to block on log_wait_commit().
2772 */
2773 if (current->flags & PF_KTHREAD)
Mel Gorman50694c22012-11-26 16:29:48 -08002774 goto out;
2775
2776 /*
2777 * If a fatal signal is pending, this process should not throttle.
2778 * It should return quickly so it can exit and free its memory
2779 */
2780 if (fatal_signal_pending(current))
2781 goto out;
Mel Gorman55150612012-07-31 16:44:35 -07002782
Mel Gorman675becc2014-06-04 16:07:35 -07002783 /*
2784 * Check if the pfmemalloc reserves are ok by finding the first node
2785 * with a usable ZONE_NORMAL or lower zone. The expectation is that
2786 * GFP_KERNEL will be required for allocating network buffers when
2787 * swapping over the network so ZONE_HIGHMEM is unusable.
2788 *
2789 * Throttling is based on the first usable node and throttled processes
2790 * wait on a queue until kswapd makes progress and wakes them. There
2791 * is an affinity then between processes waking up and where reclaim
2792 * progress has been made assuming the process wakes on the same node.
2793 * More importantly, processes running on remote nodes will not compete
2794 * for remote pfmemalloc reserves and processes on different nodes
2795 * should make reasonable progress.
2796 */
2797 for_each_zone_zonelist_nodemask(zone, z, zonelist,
Michael S. Tsirkin17636fa2015-01-26 12:58:41 -08002798 gfp_zone(gfp_mask), nodemask) {
Mel Gorman675becc2014-06-04 16:07:35 -07002799 if (zone_idx(zone) > ZONE_NORMAL)
2800 continue;
2801
2802 /* Throttle based on the first usable node */
2803 pgdat = zone->zone_pgdat;
2804 if (pfmemalloc_watermark_ok(pgdat))
2805 goto out;
2806 break;
2807 }
2808
2809 /* If no zone was usable by the allocation flags then do not throttle */
2810 if (!pgdat)
Mel Gorman50694c22012-11-26 16:29:48 -08002811 goto out;
Mel Gorman55150612012-07-31 16:44:35 -07002812
Mel Gorman68243e72012-07-31 16:44:39 -07002813 /* Account for the throttling */
2814 count_vm_event(PGSCAN_DIRECT_THROTTLE);
2815
Mel Gorman55150612012-07-31 16:44:35 -07002816 /*
2817 * If the caller cannot enter the filesystem, it's possible that it
2818 * is due to the caller holding an FS lock or performing a journal
2819 * transaction in the case of a filesystem like ext[3|4]. In this case,
2820 * it is not safe to block on pfmemalloc_wait as kswapd could be
2821 * blocked waiting on the same lock. Instead, throttle for up to a
2822 * second before continuing.
2823 */
2824 if (!(gfp_mask & __GFP_FS)) {
2825 wait_event_interruptible_timeout(pgdat->pfmemalloc_wait,
2826 pfmemalloc_watermark_ok(pgdat), HZ);
Mel Gorman50694c22012-11-26 16:29:48 -08002827
2828 goto check_pending;
Mel Gorman55150612012-07-31 16:44:35 -07002829 }
2830
2831 /* Throttle until kswapd wakes the process */
2832 wait_event_killable(zone->zone_pgdat->pfmemalloc_wait,
2833 pfmemalloc_watermark_ok(pgdat));
Mel Gorman50694c22012-11-26 16:29:48 -08002834
2835check_pending:
2836 if (fatal_signal_pending(current))
2837 return true;
2838
2839out:
2840 return false;
Mel Gorman55150612012-07-31 16:44:35 -07002841}
2842
Mel Gormandac1d272008-04-28 02:12:12 -07002843unsigned long try_to_free_pages(struct zonelist *zonelist, int order,
KAMEZAWA Hiroyuki327c0e92009-03-31 15:23:31 -07002844 gfp_t gfp_mask, nodemask_t *nodemask)
Balbir Singh66e17072008-02-07 00:13:56 -08002845{
Mel Gorman33906bc2010-08-09 17:19:16 -07002846 unsigned long nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08002847 struct scan_control sc = {
KOSAKI Motohiro22fba332009-12-14 17:59:10 -08002848 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weineree814fe2014-08-06 16:06:19 -07002849 .gfp_mask = (gfp_mask = memalloc_noio_flags(gfp_mask)),
2850 .order = order,
2851 .nodemask = nodemask,
2852 .priority = DEF_PRIORITY,
2853 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f82009-03-31 15:19:30 -07002854 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07002855 .may_swap = 1,
Balbir Singh66e17072008-02-07 00:13:56 -08002856 };
2857
Mel Gorman55150612012-07-31 16:44:35 -07002858 /*
Mel Gorman50694c22012-11-26 16:29:48 -08002859 * Do not enter reclaim if fatal signal was delivered while throttled.
2860 * 1 is returned so that the page allocator does not OOM kill at this
2861 * point.
Mel Gorman55150612012-07-31 16:44:35 -07002862 */
Mel Gorman50694c22012-11-26 16:29:48 -08002863 if (throttle_direct_reclaim(gfp_mask, zonelist, nodemask))
Mel Gorman55150612012-07-31 16:44:35 -07002864 return 1;
2865
Mel Gorman33906bc2010-08-09 17:19:16 -07002866 trace_mm_vmscan_direct_reclaim_begin(order,
2867 sc.may_writepage,
2868 gfp_mask);
2869
Vladimir Davydov3115cd92014-04-03 14:47:22 -07002870 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Mel Gorman33906bc2010-08-09 17:19:16 -07002871
2872 trace_mm_vmscan_direct_reclaim_end(nr_reclaimed);
2873
2874 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08002875}
2876
Andrew Mortonc255a452012-07-31 16:43:02 -07002877#ifdef CONFIG_MEMCG
Balbir Singh66e17072008-02-07 00:13:56 -08002878
Johannes Weiner72835c82012-01-12 17:18:32 -08002879unsigned long mem_cgroup_shrink_node_zone(struct mem_cgroup *memcg,
Balbir Singh4e416952009-09-23 15:56:39 -07002880 gfp_t gfp_mask, bool noswap,
Ying Han0ae5e892011-05-26 16:25:25 -07002881 struct zone *zone,
2882 unsigned long *nr_scanned)
Balbir Singh4e416952009-09-23 15:56:39 -07002883{
2884 struct scan_control sc = {
KOSAKI Motohirob8f5c562010-08-10 18:03:02 -07002885 .nr_to_reclaim = SWAP_CLUSTER_MAX,
Johannes Weineree814fe2014-08-06 16:06:19 -07002886 .target_mem_cgroup = memcg,
Balbir Singh4e416952009-09-23 15:56:39 -07002887 .may_writepage = !laptop_mode,
2888 .may_unmap = 1,
2889 .may_swap = !noswap,
Balbir Singh4e416952009-09-23 15:56:39 -07002890 };
Johannes Weiner6b4f7792014-12-12 16:56:13 -08002891 unsigned long lru_pages;
Ying Han0ae5e892011-05-26 16:25:25 -07002892
Balbir Singh4e416952009-09-23 15:56:39 -07002893 sc.gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
2894 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002895
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002896 trace_mm_vmscan_memcg_softlimit_reclaim_begin(sc.order,
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002897 sc.may_writepage,
2898 sc.gfp_mask);
2899
Balbir Singh4e416952009-09-23 15:56:39 -07002900 /*
2901 * NOTE: Although we can get the priority field, using it
2902 * here is not a good idea, since it limits the pages we can scan.
2903 * if we don't reclaim here, the shrink_zone from balance_pgdat
2904 * will pick up pages from other mem cgroup's as well. We hack
2905 * the priority and make it zero.
2906 */
Vladimir Davydov33377672016-01-20 15:02:59 -08002907 shrink_zone_memcg(zone, memcg, &sc, &lru_pages);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002908
2909 trace_mm_vmscan_memcg_softlimit_reclaim_end(sc.nr_reclaimed);
2910
Ying Han0ae5e892011-05-26 16:25:25 -07002911 *nr_scanned = sc.nr_scanned;
Balbir Singh4e416952009-09-23 15:56:39 -07002912 return sc.nr_reclaimed;
2913}
2914
Johannes Weiner72835c82012-01-12 17:18:32 -08002915unsigned long try_to_free_mem_cgroup_pages(struct mem_cgroup *memcg,
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002916 unsigned long nr_pages,
KOSAKI Motohiroa7885eb2009-01-07 18:08:24 -08002917 gfp_t gfp_mask,
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002918 bool may_swap)
Balbir Singh66e17072008-02-07 00:13:56 -08002919{
Balbir Singh4e416952009-09-23 15:56:39 -07002920 struct zonelist *zonelist;
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002921 unsigned long nr_reclaimed;
Ying Han889976d2011-05-26 16:25:33 -07002922 int nid;
Balbir Singh66e17072008-02-07 00:13:56 -08002923 struct scan_control sc = {
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002924 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
Johannes Weineree814fe2014-08-06 16:06:19 -07002925 .gfp_mask = (gfp_mask & GFP_RECLAIM_MASK) |
2926 (GFP_HIGHUSER_MOVABLE & ~GFP_RECLAIM_MASK),
2927 .target_mem_cgroup = memcg,
2928 .priority = DEF_PRIORITY,
Balbir Singh66e17072008-02-07 00:13:56 -08002929 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f82009-03-31 15:19:30 -07002930 .may_unmap = 1,
Johannes Weinerb70a2a22014-10-09 15:28:56 -07002931 .may_swap = may_swap,
Ying Hana09ed5e2011-05-24 17:12:26 -07002932 };
Balbir Singh66e17072008-02-07 00:13:56 -08002933
Ying Han889976d2011-05-26 16:25:33 -07002934 /*
2935 * Unlike direct reclaim via alloc_pages(), memcg's reclaim doesn't
2936 * take care of from where we get pages. So the node where we start the
2937 * scan does not need to be the current node.
2938 */
Johannes Weiner72835c82012-01-12 17:18:32 -08002939 nid = mem_cgroup_select_victim_node(memcg);
Ying Han889976d2011-05-26 16:25:33 -07002940
2941 zonelist = NODE_DATA(nid)->node_zonelists;
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002942
2943 trace_mm_vmscan_memcg_reclaim_begin(0,
2944 sc.may_writepage,
2945 sc.gfp_mask);
2946
Vladimir Davydov3115cd92014-04-03 14:47:22 -07002947 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
KOSAKI Motohirobdce6d92010-08-09 17:19:56 -07002948
2949 trace_mm_vmscan_memcg_reclaim_end(nr_reclaimed);
2950
2951 return nr_reclaimed;
Balbir Singh66e17072008-02-07 00:13:56 -08002952}
2953#endif
2954
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002955static void age_active_anon(struct zone *zone, struct scan_control *sc)
Johannes Weinerf16015f2012-01-12 17:17:52 -08002956{
Johannes Weinerb95a2f22012-01-12 17:18:06 -08002957 struct mem_cgroup *memcg;
Johannes Weinerf16015f2012-01-12 17:17:52 -08002958
Johannes Weinerb95a2f22012-01-12 17:18:06 -08002959 if (!total_swap_pages)
2960 return;
2961
2962 memcg = mem_cgroup_iter(NULL, NULL, NULL);
2963 do {
Konstantin Khlebnikovc56d5c72012-05-29 15:07:00 -07002964 struct lruvec *lruvec = mem_cgroup_zone_lruvec(zone, memcg);
Johannes Weinerb95a2f22012-01-12 17:18:06 -08002965
Rik van Riel59dc76b2016-05-20 16:56:31 -07002966 if (inactive_list_is_low(lruvec, false))
Konstantin Khlebnikov1a93be02012-05-29 15:07:01 -07002967 shrink_active_list(SWAP_CLUSTER_MAX, lruvec,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07002968 sc, LRU_ACTIVE_ANON);
Johannes Weinerb95a2f22012-01-12 17:18:06 -08002969
2970 memcg = mem_cgroup_iter(NULL, memcg, NULL);
2971 } while (memcg);
Johannes Weinerf16015f2012-01-12 17:17:52 -08002972}
2973
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07002974static bool zone_balanced(struct zone *zone, int order, bool highorder,
2975 unsigned long balance_gap, int classzone_idx)
Johannes Weiner60cefed2012-11-29 13:54:23 -08002976{
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07002977 unsigned long mark = high_wmark_pages(zone) + balance_gap;
Johannes Weiner60cefed2012-11-29 13:54:23 -08002978
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07002979 /*
2980 * When checking from pgdat_balanced(), kswapd should stop and sleep
2981 * when it reaches the high order-0 watermark and let kcompactd take
2982 * over. Other callers such as wakeup_kswapd() want to determine the
2983 * true high-order watermark.
2984 */
2985 if (IS_ENABLED(CONFIG_COMPACTION) && !highorder) {
2986 mark += (1UL << order);
2987 order = 0;
2988 }
Johannes Weiner60cefed2012-11-29 13:54:23 -08002989
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07002990 return zone_watermark_ok_safe(zone, order, mark, classzone_idx);
Johannes Weiner60cefed2012-11-29 13:54:23 -08002991}
2992
Mel Gorman1741c872011-01-13 15:46:21 -08002993/*
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01002994 * pgdat_balanced() is used when checking if a node is balanced.
2995 *
2996 * For order-0, all zones must be balanced!
2997 *
2998 * For high-order allocations only zones that meet watermarks and are in a
2999 * zone allowed by the callers classzone_idx are added to balanced_pages. The
3000 * total of balanced pages must be at least 25% of the zones allowed by
3001 * classzone_idx for the node to be considered balanced. Forcing all zones to
3002 * be balanced for high orders can cause excessive reclaim when there are
3003 * imbalanced zones.
Mel Gorman1741c872011-01-13 15:46:21 -08003004 * The choice of 25% is due to
3005 * o a 16M DMA zone that is balanced will not balance a zone on any
3006 * reasonable sized machine
3007 * o On all other machines, the top zone must be at least a reasonable
Lucas De Marchi25985ed2011-03-30 22:57:33 -03003008 * percentage of the middle zones. For example, on 32-bit x86, highmem
Mel Gorman1741c872011-01-13 15:46:21 -08003009 * would need to be at least 256M for it to be balance a whole node.
3010 * Similarly, on x86-64 the Normal zone would need to be at least 1G
3011 * to balance a node on its own. These seemed like reasonable ratios.
3012 */
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003013static bool pgdat_balanced(pg_data_t *pgdat, int order, int classzone_idx)
Mel Gorman1741c872011-01-13 15:46:21 -08003014{
Jiang Liub40da042013-02-22 16:33:52 -08003015 unsigned long managed_pages = 0;
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003016 unsigned long balanced_pages = 0;
Mel Gorman1741c872011-01-13 15:46:21 -08003017 int i;
3018
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003019 /* Check the watermark levels */
3020 for (i = 0; i <= classzone_idx; i++) {
3021 struct zone *zone = pgdat->node_zones + i;
Mel Gorman1741c872011-01-13 15:46:21 -08003022
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003023 if (!populated_zone(zone))
3024 continue;
3025
Jiang Liub40da042013-02-22 16:33:52 -08003026 managed_pages += zone->managed_pages;
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003027
3028 /*
3029 * A special case here:
3030 *
3031 * balance_pgdat() skips over all_unreclaimable after
3032 * DEF_PRIORITY. Effectively, it considers them balanced so
3033 * they must be considered balanced here as well!
3034 */
Mel Gorman599d0c92016-07-28 15:45:31 -07003035 if (!pgdat_reclaimable(zone->zone_pgdat)) {
Jiang Liub40da042013-02-22 16:33:52 -08003036 balanced_pages += zone->managed_pages;
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003037 continue;
3038 }
3039
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003040 if (zone_balanced(zone, order, false, 0, i))
Jiang Liub40da042013-02-22 16:33:52 -08003041 balanced_pages += zone->managed_pages;
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003042 else if (!order)
3043 return false;
3044 }
3045
3046 if (order)
Jiang Liub40da042013-02-22 16:33:52 -08003047 return balanced_pages >= (managed_pages >> 2);
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003048 else
3049 return true;
Mel Gorman1741c872011-01-13 15:46:21 -08003050}
3051
Mel Gorman55150612012-07-31 16:44:35 -07003052/*
3053 * Prepare kswapd for sleeping. This verifies that there are no processes
3054 * waiting in throttle_direct_reclaim() and that watermarks have been met.
3055 *
3056 * Returns true if kswapd is ready to sleep
3057 */
3058static bool prepare_kswapd_sleep(pg_data_t *pgdat, int order, long remaining,
Mel Gormandc83edd2011-01-13 15:46:26 -08003059 int classzone_idx)
Mel Gormanf50de2d2009-12-14 17:58:53 -08003060{
Mel Gormanf50de2d2009-12-14 17:58:53 -08003061 /* If a direct reclaimer woke kswapd within HZ/10, it's premature */
3062 if (remaining)
Mel Gorman55150612012-07-31 16:44:35 -07003063 return false;
3064
3065 /*
Vlastimil Babka9e5e3662015-01-08 14:32:40 -08003066 * The throttled processes are normally woken up in balance_pgdat() as
3067 * soon as pfmemalloc_watermark_ok() is true. But there is a potential
3068 * race between when kswapd checks the watermarks and a process gets
3069 * throttled. There is also a potential race if processes get
3070 * throttled, kswapd wakes, a large process exits thereby balancing the
3071 * zones, which causes kswapd to exit balance_pgdat() before reaching
3072 * the wake up checks. If kswapd is going to sleep, no process should
3073 * be sleeping on pfmemalloc_wait, so wake them now if necessary. If
3074 * the wake up is premature, processes will wake kswapd and get
3075 * throttled again. The difference from wake ups in balance_pgdat() is
3076 * that here we are under prepare_to_wait().
Mel Gorman55150612012-07-31 16:44:35 -07003077 */
Vlastimil Babka9e5e3662015-01-08 14:32:40 -08003078 if (waitqueue_active(&pgdat->pfmemalloc_wait))
3079 wake_up_all(&pgdat->pfmemalloc_wait);
Mel Gormanf50de2d2009-12-14 17:58:53 -08003080
Zlatko Calusic4ae0a482012-12-23 15:12:54 +01003081 return pgdat_balanced(pgdat, order, classzone_idx);
Mel Gormanf50de2d2009-12-14 17:58:53 -08003082}
3083
Linus Torvalds1da177e2005-04-16 15:20:36 -07003084/*
Mel Gorman75485362013-07-03 15:01:42 -07003085 * kswapd shrinks the zone by the number of pages required to reach
3086 * the high watermark.
Mel Gormanb8e83b92013-07-03 15:01:45 -07003087 *
3088 * Returns true if kswapd scanned at least the requested number of pages to
Mel Gorman283aba92013-07-03 15:01:51 -07003089 * reclaim or if the lack of progress was due to pages under writeback.
3090 * This is used to determine if the scanning priority needs to be raised.
Mel Gorman75485362013-07-03 15:01:42 -07003091 */
Mel Gormanb8e83b92013-07-03 15:01:45 -07003092static bool kswapd_shrink_zone(struct zone *zone,
Mel Gorman7c954f62013-07-03 15:01:54 -07003093 int classzone_idx,
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003094 struct scan_control *sc)
Mel Gorman75485362013-07-03 15:01:42 -07003095{
Mel Gorman7c954f62013-07-03 15:01:54 -07003096 unsigned long balance_gap;
Mel Gorman7c954f62013-07-03 15:01:54 -07003097 bool lowmem_pressure;
Mel Gorman599d0c92016-07-28 15:45:31 -07003098 struct pglist_data *pgdat = zone->zone_pgdat;
Mel Gorman75485362013-07-03 15:01:42 -07003099
3100 /* Reclaim above the high watermark. */
3101 sc->nr_to_reclaim = max(SWAP_CLUSTER_MAX, high_wmark_pages(zone));
Mel Gorman7c954f62013-07-03 15:01:54 -07003102
3103 /*
Mel Gorman7c954f62013-07-03 15:01:54 -07003104 * We put equal pressure on every zone, unless one zone has way too
3105 * many pages free already. The "too many pages" is defined as the
3106 * high wmark plus a "gap" where the gap is either the low
3107 * watermark or 1% of the zone, whichever is smaller.
3108 */
Jianyu Zhan4be89a32014-06-04 16:10:38 -07003109 balance_gap = min(low_wmark_pages(zone), DIV_ROUND_UP(
3110 zone->managed_pages, KSWAPD_ZONE_BALANCE_GAP_RATIO));
Mel Gorman7c954f62013-07-03 15:01:54 -07003111
3112 /*
3113 * If there is no low memory pressure or the zone is balanced then no
3114 * reclaim is necessary
3115 */
3116 lowmem_pressure = (buffer_heads_over_limit && is_highmem(zone));
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003117 if (!lowmem_pressure && zone_balanced(zone, sc->order, false,
Mel Gorman7c954f62013-07-03 15:01:54 -07003118 balance_gap, classzone_idx))
3119 return true;
3120
Johannes Weiner6b4f7792014-12-12 16:56:13 -08003121 shrink_zone(zone, sc, zone_idx(zone) == classzone_idx);
Mel Gorman75485362013-07-03 15:01:42 -07003122
Mel Gorman599d0c92016-07-28 15:45:31 -07003123 /* TODO: ANOMALY */
3124 clear_bit(PGDAT_WRITEBACK, &pgdat->flags);
Mel Gorman283aba92013-07-03 15:01:51 -07003125
Mel Gorman7c954f62013-07-03 15:01:54 -07003126 /*
3127 * If a zone reaches its high watermark, consider it to be no longer
3128 * congested. It's possible there are dirty pages backed by congested
3129 * BDIs but as pressure is relieved, speculatively avoid congestion
3130 * waits.
3131 */
Mel Gorman599d0c92016-07-28 15:45:31 -07003132 if (pgdat_reclaimable(zone->zone_pgdat) &&
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003133 zone_balanced(zone, sc->order, false, 0, classzone_idx)) {
Mel Gorman599d0c92016-07-28 15:45:31 -07003134 clear_bit(PGDAT_CONGESTED, &pgdat->flags);
3135 clear_bit(PGDAT_DIRTY, &pgdat->flags);
Mel Gorman7c954f62013-07-03 15:01:54 -07003136 }
3137
Mel Gormanb8e83b92013-07-03 15:01:45 -07003138 return sc->nr_scanned >= sc->nr_to_reclaim;
Mel Gorman75485362013-07-03 15:01:42 -07003139}
3140
3141/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003142 * For kswapd, balance_pgdat() will work across all this node's zones until
Mel Gorman41858962009-06-16 15:32:12 -07003143 * they are all at high_wmark_pages(zone).
Linus Torvalds1da177e2005-04-16 15:20:36 -07003144 *
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003145 * Returns the highest zone idx kswapd was reclaiming at
Linus Torvalds1da177e2005-04-16 15:20:36 -07003146 *
3147 * There is special handling here for zones which are full of pinned pages.
3148 * This can happen if the pages are all mlocked, or if they are all used by
3149 * device drivers (say, ZONE_DMA). Or if they are all in use by hugetlb.
3150 * What we do is to detect the case where all pages in the zone have been
3151 * scanned twice and there has been zero successful reclaim. Mark the zone as
3152 * dead and from now on, only perform a short scan. Basically we're polling
3153 * the zone for when the problem goes away.
3154 *
3155 * kswapd scans the zones in the highmem->normal->dma direction. It skips
Mel Gorman41858962009-06-16 15:32:12 -07003156 * zones which have free_pages > high_wmark_pages(zone), but once a zone is
3157 * found to have free_pages <= high_wmark_pages(zone), we scan that zone and the
3158 * lower zones regardless of the number of free pages in the lower zones. This
3159 * interoperates with the page allocator fallback scheme to ensure that aging
3160 * of pages is balanced across the zones.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003161 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003162static int balance_pgdat(pg_data_t *pgdat, int order, int classzone_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003163{
Linus Torvalds1da177e2005-04-16 15:20:36 -07003164 int i;
Mel Gorman99504742011-01-13 15:46:20 -08003165 int end_zone = 0; /* Inclusive. 0 = ZONE_DMA */
Andrew Morton0608f432013-09-24 15:27:41 -07003166 unsigned long nr_soft_reclaimed;
3167 unsigned long nr_soft_scanned;
Andrew Morton179e9632006-03-22 00:08:18 -08003168 struct scan_control sc = {
3169 .gfp_mask = GFP_KERNEL,
Johannes Weineree814fe2014-08-06 16:06:19 -07003170 .order = order,
Mel Gormanb8e83b92013-07-03 15:01:45 -07003171 .priority = DEF_PRIORITY,
Johannes Weineree814fe2014-08-06 16:06:19 -07003172 .may_writepage = !laptop_mode,
Johannes Weinera6dc60f82009-03-31 15:19:30 -07003173 .may_unmap = 1,
KOSAKI Motohiro2e2e4252009-04-21 12:24:57 -07003174 .may_swap = 1,
Andrew Morton179e9632006-03-22 00:08:18 -08003175 };
Christoph Lameterf8891e52006-06-30 01:55:45 -07003176 count_vm_event(PAGEOUTRUN);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003177
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003178 do {
Mel Gormanb8e83b92013-07-03 15:01:45 -07003179 bool raise_priority = true;
3180
3181 sc.nr_reclaimed = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003182
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003183 /*
3184 * Scan in the highmem->dma direction for the highest
3185 * zone which needs scanning
3186 */
3187 for (i = pgdat->nr_zones - 1; i >= 0; i--) {
3188 struct zone *zone = pgdat->node_zones + i;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003189
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003190 if (!populated_zone(zone))
3191 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003192
Lisa Du6e543d52013-09-11 14:22:36 -07003193 if (sc.priority != DEF_PRIORITY &&
Mel Gorman599d0c92016-07-28 15:45:31 -07003194 !pgdat_reclaimable(zone->zone_pgdat))
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003195 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003196
Rik van Riel556adec2008-10-18 20:26:34 -07003197 /*
3198 * Do some background aging of the anon list, to give
3199 * pages a chance to be referenced before reclaiming.
3200 */
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003201 age_active_anon(zone, &sc);
Rik van Riel556adec2008-10-18 20:26:34 -07003202
Mel Gormancc715d92012-03-21 16:34:00 -07003203 /*
3204 * If the number of buffer_heads in the machine
3205 * exceeds the maximum allowed level and this node
3206 * has a highmem zone, force kswapd to reclaim from
3207 * it to relieve lowmem pressure.
3208 */
3209 if (buffer_heads_over_limit && is_highmem_idx(i)) {
3210 end_zone = i;
3211 break;
3212 }
3213
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003214 if (!zone_balanced(zone, order, false, 0, 0)) {
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003215 end_zone = i;
Andrew Mortone1dbeda2006-12-06 20:32:01 -08003216 break;
Shaohua Li439423f2011-08-25 15:59:12 -07003217 } else {
Mel Gormand43006d2013-07-03 15:01:50 -07003218 /*
3219 * If balanced, clear the dirty and congested
3220 * flags
Mel Gorman599d0c92016-07-28 15:45:31 -07003221 *
3222 * TODO: ANOMALY
Mel Gormand43006d2013-07-03 15:01:50 -07003223 */
Mel Gorman599d0c92016-07-28 15:45:31 -07003224 clear_bit(PGDAT_CONGESTED, &zone->zone_pgdat->flags);
3225 clear_bit(PGDAT_DIRTY, &zone->zone_pgdat->flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003226 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003227 }
Zlatko Calusicdafcb732013-02-22 16:32:34 -08003228
Mel Gormanb8e83b92013-07-03 15:01:45 -07003229 if (i < 0)
Andrew Mortone1dbeda2006-12-06 20:32:01 -08003230 goto out;
3231
Linus Torvalds1da177e2005-04-16 15:20:36 -07003232 /*
Mel Gormanb7ea3c42013-07-03 15:01:53 -07003233 * If we're getting trouble reclaiming, start doing writepage
3234 * even in laptop mode.
3235 */
3236 if (sc.priority < DEF_PRIORITY - 2)
3237 sc.may_writepage = 1;
3238
3239 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07003240 * Now scan the zone in the dma->highmem direction, stopping
3241 * at the last zone which needs scanning.
3242 *
3243 * We do this because the page allocator works in the opposite
3244 * direction. This prevents the page allocator from allocating
3245 * pages behind kswapd's direction of progress, which would
3246 * cause too much scanning of the lower zones.
3247 */
3248 for (i = 0; i <= end_zone; i++) {
3249 struct zone *zone = pgdat->node_zones + i;
3250
Con Kolivasf3fe6512006-01-06 00:11:15 -08003251 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003252 continue;
3253
Lisa Du6e543d52013-09-11 14:22:36 -07003254 if (sc.priority != DEF_PRIORITY &&
Mel Gorman599d0c92016-07-28 15:45:31 -07003255 !pgdat_reclaimable(zone->zone_pgdat))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003256 continue;
3257
Linus Torvalds1da177e2005-04-16 15:20:36 -07003258 sc.nr_scanned = 0;
Balbir Singh4e416952009-09-23 15:56:39 -07003259
Andrew Morton0608f432013-09-24 15:27:41 -07003260 nr_soft_scanned = 0;
3261 /*
3262 * Call soft limit reclaim before calling shrink_zone.
3263 */
3264 nr_soft_reclaimed = mem_cgroup_soft_limit_reclaim(zone,
3265 order, sc.gfp_mask,
3266 &nr_soft_scanned);
3267 sc.nr_reclaimed += nr_soft_reclaimed;
3268
Rik van Riel32a43302007-10-16 01:24:50 -07003269 /*
Mel Gorman7c954f62013-07-03 15:01:54 -07003270 * There should be no need to raise the scanning
3271 * priority if enough pages are already being scanned
3272 * that that high watermark would be met at 100%
3273 * efficiency.
Rik van Riel32a43302007-10-16 01:24:50 -07003274 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003275 if (kswapd_shrink_zone(zone, end_zone, &sc))
Mel Gorman7c954f62013-07-03 15:01:54 -07003276 raise_priority = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003277 }
Mel Gorman55150612012-07-31 16:44:35 -07003278
3279 /*
3280 * If the low watermark is met there is no need for processes
3281 * to be throttled on pfmemalloc_wait as they should not be
3282 * able to safely make forward progress. Wake them
3283 */
3284 if (waitqueue_active(&pgdat->pfmemalloc_wait) &&
3285 pfmemalloc_watermark_ok(pgdat))
Vlastimil Babkacfc51152015-02-11 15:25:12 -08003286 wake_up_all(&pgdat->pfmemalloc_wait);
Mel Gorman55150612012-07-31 16:44:35 -07003287
Mel Gormanb8e83b92013-07-03 15:01:45 -07003288 /* Check if kswapd should be suspending */
3289 if (try_to_freeze() || kthread_should_stop())
3290 break;
3291
3292 /*
3293 * Raise priority if scanning rate is too low or there was no
3294 * progress in reclaiming pages
3295 */
3296 if (raise_priority || !sc.nr_reclaimed)
3297 sc.priority--;
Mel Gorman9aa41342013-07-03 15:01:48 -07003298 } while (sc.priority >= 1 &&
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003299 !pgdat_balanced(pgdat, order, classzone_idx));
Linus Torvalds1da177e2005-04-16 15:20:36 -07003300
Mel Gormanb8e83b92013-07-03 15:01:45 -07003301out:
Mel Gorman0abdee22011-01-13 15:46:22 -08003302 /*
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003303 * Return the highest zone idx we were reclaiming at so
3304 * prepare_kswapd_sleep() makes the same decisions as here.
Mel Gorman0abdee22011-01-13 15:46:22 -08003305 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003306 return end_zone;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307}
3308
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003309static void kswapd_try_to_sleep(pg_data_t *pgdat, int order,
3310 int classzone_idx, int balanced_classzone_idx)
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003311{
3312 long remaining = 0;
3313 DEFINE_WAIT(wait);
3314
3315 if (freezing(current) || kthread_should_stop())
3316 return;
3317
3318 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3319
3320 /* Try to sleep for a short interval */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003321 if (prepare_kswapd_sleep(pgdat, order, remaining,
3322 balanced_classzone_idx)) {
Vlastimil Babkafd901c92016-04-28 16:18:49 -07003323 /*
3324 * Compaction records what page blocks it recently failed to
3325 * isolate pages from and skips them in the future scanning.
3326 * When kswapd is going to sleep, it is reasonable to assume
3327 * that pages and compaction may succeed so reset the cache.
3328 */
3329 reset_isolation_suitable(pgdat);
3330
3331 /*
3332 * We have freed the memory, now we should compact it to make
3333 * allocation of the requested order possible.
3334 */
3335 wakeup_kcompactd(pgdat, order, classzone_idx);
3336
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003337 remaining = schedule_timeout(HZ/10);
3338 finish_wait(&pgdat->kswapd_wait, &wait);
3339 prepare_to_wait(&pgdat->kswapd_wait, &wait, TASK_INTERRUPTIBLE);
3340 }
3341
3342 /*
3343 * After a short sleep, check if it was a premature sleep. If not, then
3344 * go fully to sleep until explicitly woken up.
3345 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003346 if (prepare_kswapd_sleep(pgdat, order, remaining,
3347 balanced_classzone_idx)) {
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003348 trace_mm_vmscan_kswapd_sleep(pgdat->node_id);
3349
3350 /*
3351 * vmstat counters are not perfectly accurate and the estimated
3352 * value for counters such as NR_FREE_PAGES can deviate from the
3353 * true value by nr_online_cpus * threshold. To avoid the zone
3354 * watermarks being breached while under pressure, we reduce the
3355 * per-cpu vmstat threshold while kswapd is awake and restore
3356 * them before going back to sleep.
3357 */
3358 set_pgdat_percpu_threshold(pgdat, calculate_normal_threshold);
Aaditya Kumar1c7e7f62012-07-17 15:48:07 -07003359
3360 if (!kthread_should_stop())
3361 schedule();
3362
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003363 set_pgdat_percpu_threshold(pgdat, calculate_pressure_threshold);
3364 } else {
3365 if (remaining)
3366 count_vm_event(KSWAPD_LOW_WMARK_HIT_QUICKLY);
3367 else
3368 count_vm_event(KSWAPD_HIGH_WMARK_HIT_QUICKLY);
3369 }
3370 finish_wait(&pgdat->kswapd_wait, &wait);
3371}
3372
Linus Torvalds1da177e2005-04-16 15:20:36 -07003373/*
3374 * The background pageout daemon, started as a kernel thread
Rik van Riel4f98a2f2008-10-18 20:26:32 -07003375 * from the init process.
Linus Torvalds1da177e2005-04-16 15:20:36 -07003376 *
3377 * This basically trickles out pages so that we have _some_
3378 * free memory available even if there is no other activity
3379 * that frees anything up. This is needed for things like routing
3380 * etc, where we otherwise might have all activity going on in
3381 * asynchronous contexts that cannot page things out.
3382 *
3383 * If there are applications that are active memory-allocators
3384 * (most normal use), this basically shouldn't matter.
3385 */
3386static int kswapd(void *p)
3387{
Mel Gorman215ddd62011-07-08 15:39:40 -07003388 unsigned long order, new_order;
3389 int classzone_idx, new_classzone_idx;
Alex,Shid2ebd0f62011-10-31 17:08:39 -07003390 int balanced_classzone_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003391 pg_data_t *pgdat = (pg_data_t*)p;
3392 struct task_struct *tsk = current;
KOSAKI Motohirof0bc0a62011-01-13 15:45:50 -08003393
Linus Torvalds1da177e2005-04-16 15:20:36 -07003394 struct reclaim_state reclaim_state = {
3395 .reclaimed_slab = 0,
3396 };
Rusty Russella70f7302009-03-13 14:49:46 +10303397 const struct cpumask *cpumask = cpumask_of_node(pgdat->node_id);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003398
Nick Piggincf40bd12009-01-21 08:12:39 +01003399 lockdep_set_current_reclaim_state(GFP_KERNEL);
3400
Rusty Russell174596a2009-01-01 10:12:29 +10303401 if (!cpumask_empty(cpumask))
Mike Travisc5f59f02008-04-04 18:11:10 -07003402 set_cpus_allowed_ptr(tsk, cpumask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003403 current->reclaim_state = &reclaim_state;
3404
3405 /*
3406 * Tell the memory management that we're a "memory allocator",
3407 * and that if we need more memory we should get access to it
3408 * regardless (see "__alloc_pages()"). "kswapd" should
3409 * never get caught in the normal page freeing logic.
3410 *
3411 * (Kswapd normally doesn't need memory anyway, but sometimes
3412 * you need a small amount of memory in order to be able to
3413 * page out something else, and this flag essentially protects
3414 * us from recursively trying to free more memory as we're
3415 * trying to free the first piece of memory in the first place).
3416 */
Christoph Lameter930d9152006-01-08 01:00:47 -08003417 tsk->flags |= PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD;
Rafael J. Wysocki83144182007-07-17 04:03:35 -07003418 set_freezable();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003419
Mel Gorman215ddd62011-07-08 15:39:40 -07003420 order = new_order = 0;
3421 classzone_idx = new_classzone_idx = pgdat->nr_zones - 1;
Alex,Shid2ebd0f62011-10-31 17:08:39 -07003422 balanced_classzone_idx = classzone_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003423 for ( ; ; ) {
Jeff Liu6f6313d2012-12-11 16:02:48 -08003424 bool ret;
Christoph Lameter3e1d1d22005-06-24 23:13:50 -07003425
Mel Gorman215ddd62011-07-08 15:39:40 -07003426 /*
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003427 * While we were reclaiming, there might have been another
3428 * wakeup, so check the values.
Mel Gorman215ddd62011-07-08 15:39:40 -07003429 */
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003430 new_order = pgdat->kswapd_max_order;
3431 new_classzone_idx = pgdat->classzone_idx;
3432 pgdat->kswapd_max_order = 0;
3433 pgdat->classzone_idx = pgdat->nr_zones - 1;
Mel Gorman215ddd62011-07-08 15:39:40 -07003434
Mel Gorman99504742011-01-13 15:46:20 -08003435 if (order < new_order || classzone_idx > new_classzone_idx) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003436 /*
3437 * Don't sleep if someone wants a larger 'order'
Mel Gorman99504742011-01-13 15:46:20 -08003438 * allocation or has tigher zone constraints
Linus Torvalds1da177e2005-04-16 15:20:36 -07003439 */
3440 order = new_order;
Mel Gorman99504742011-01-13 15:46:20 -08003441 classzone_idx = new_classzone_idx;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003442 } else {
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003443 kswapd_try_to_sleep(pgdat, order, classzone_idx,
Alex,Shid2ebd0f62011-10-31 17:08:39 -07003444 balanced_classzone_idx);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003445 order = pgdat->kswapd_max_order;
Mel Gorman99504742011-01-13 15:46:20 -08003446 classzone_idx = pgdat->classzone_idx;
Alex,Shif0dfcde2011-10-31 17:08:45 -07003447 new_order = order;
3448 new_classzone_idx = classzone_idx;
Mel Gorman4d405022011-01-13 15:46:23 -08003449 pgdat->kswapd_max_order = 0;
Mel Gorman215ddd62011-07-08 15:39:40 -07003450 pgdat->classzone_idx = pgdat->nr_zones - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003451 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003452
David Rientjes8fe23e02009-12-14 17:58:33 -08003453 ret = try_to_freeze();
3454 if (kthread_should_stop())
3455 break;
3456
3457 /*
3458 * We can speed up thawing tasks if we don't call balance_pgdat
3459 * after returning from the refrigerator
3460 */
Mel Gorman33906bc2010-08-09 17:19:16 -07003461 if (!ret) {
3462 trace_mm_vmscan_kswapd_wake(pgdat->node_id, order);
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003463 balanced_classzone_idx = balance_pgdat(pgdat, order,
3464 classzone_idx);
Mel Gorman33906bc2010-08-09 17:19:16 -07003465 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003466 }
Takamori Yamaguchib0a8cc52012-11-08 15:53:39 -08003467
Johannes Weiner71abdc12014-06-06 14:35:35 -07003468 tsk->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE | PF_KSWAPD);
Takamori Yamaguchib0a8cc52012-11-08 15:53:39 -08003469 current->reclaim_state = NULL;
Johannes Weiner71abdc12014-06-06 14:35:35 -07003470 lockdep_clear_current_reclaim_state();
3471
Linus Torvalds1da177e2005-04-16 15:20:36 -07003472 return 0;
3473}
3474
3475/*
3476 * A zone is low on free memory, so wake its kswapd task to service it.
3477 */
Mel Gorman99504742011-01-13 15:46:20 -08003478void wakeup_kswapd(struct zone *zone, int order, enum zone_type classzone_idx)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003479{
3480 pg_data_t *pgdat;
3481
Con Kolivasf3fe6512006-01-06 00:11:15 -08003482 if (!populated_zone(zone))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003483 return;
3484
Vladimir Davydov344736f2014-10-20 15:50:30 +04003485 if (!cpuset_zone_allowed(zone, GFP_KERNEL | __GFP_HARDWALL))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003486 return;
Mel Gorman88f5acf2011-01-13 15:45:41 -08003487 pgdat = zone->zone_pgdat;
Mel Gorman99504742011-01-13 15:46:20 -08003488 if (pgdat->kswapd_max_order < order) {
Mel Gorman88f5acf2011-01-13 15:45:41 -08003489 pgdat->kswapd_max_order = order;
Mel Gorman99504742011-01-13 15:46:20 -08003490 pgdat->classzone_idx = min(pgdat->classzone_idx, classzone_idx);
3491 }
Con Kolivas8d0986e2005-09-13 01:25:07 -07003492 if (!waitqueue_active(&pgdat->kswapd_wait))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003493 return;
Vlastimil Babkaaccf6242016-03-17 14:18:15 -07003494 if (zone_balanced(zone, order, true, 0, 0))
Mel Gorman88f5acf2011-01-13 15:45:41 -08003495 return;
3496
3497 trace_mm_vmscan_wakeup_kswapd(pgdat->node_id, zone_idx(zone), order);
Con Kolivas8d0986e2005-09-13 01:25:07 -07003498 wake_up_interruptible(&pgdat->kswapd_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003499}
3500
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02003501#ifdef CONFIG_HIBERNATION
Linus Torvalds1da177e2005-04-16 15:20:36 -07003502/*
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003503 * Try to free `nr_to_reclaim' of memory, system-wide, and return the number of
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003504 * freed pages.
3505 *
3506 * Rather than trying to age LRUs the aim is to preserve the overall
3507 * LRU order by reclaiming preferentially
3508 * inactive > active > active referenced > active mapped
Linus Torvalds1da177e2005-04-16 15:20:36 -07003509 */
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003510unsigned long shrink_all_memory(unsigned long nr_to_reclaim)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003511{
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003512 struct reclaim_state reclaim_state;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003513 struct scan_control sc = {
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003514 .nr_to_reclaim = nr_to_reclaim,
Johannes Weineree814fe2014-08-06 16:06:19 -07003515 .gfp_mask = GFP_HIGHUSER_MOVABLE,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003516 .priority = DEF_PRIORITY,
Johannes Weineree814fe2014-08-06 16:06:19 -07003517 .may_writepage = 1,
3518 .may_unmap = 1,
3519 .may_swap = 1,
3520 .hibernation_mode = 1,
Linus Torvalds1da177e2005-04-16 15:20:36 -07003521 };
Ying Hana09ed5e2011-05-24 17:12:26 -07003522 struct zonelist *zonelist = node_zonelist(numa_node_id(), sc.gfp_mask);
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003523 struct task_struct *p = current;
3524 unsigned long nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003525
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003526 p->flags |= PF_MEMALLOC;
3527 lockdep_set_current_reclaim_state(sc.gfp_mask);
3528 reclaim_state.reclaimed_slab = 0;
3529 p->reclaim_state = &reclaim_state;
Andrew Morton69e05942006-03-22 00:08:19 -08003530
Vladimir Davydov3115cd92014-04-03 14:47:22 -07003531 nr_reclaimed = do_try_to_free_pages(zonelist, &sc);
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003532
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003533 p->reclaim_state = NULL;
3534 lockdep_clear_current_reclaim_state();
3535 p->flags &= ~PF_MEMALLOC;
Rafael J. Wysockid6277db2006-06-23 02:03:18 -07003536
KOSAKI Motohiro7b517552009-12-14 17:59:12 -08003537 return nr_reclaimed;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003538}
Rafael J. Wysockic6f37f12009-05-24 22:16:31 +02003539#endif /* CONFIG_HIBERNATION */
Linus Torvalds1da177e2005-04-16 15:20:36 -07003540
Linus Torvalds1da177e2005-04-16 15:20:36 -07003541/* It's optimal to keep kswapds on the same CPUs as their memory, but
3542 not required for correctness. So if the last cpu in a node goes
3543 away, we get changed to run anywhere: as the first one comes back,
3544 restore their cpu bindings. */
Greg Kroah-Hartmanfcb35a92012-12-21 15:01:06 -08003545static int cpu_callback(struct notifier_block *nfb, unsigned long action,
3546 void *hcpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003547{
Yasunori Goto58c0a4a2007-10-16 01:25:40 -07003548 int nid;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003549
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -07003550 if (action == CPU_ONLINE || action == CPU_ONLINE_FROZEN) {
Lai Jiangshan48fb2e22012-12-12 13:51:43 -08003551 for_each_node_state(nid, N_MEMORY) {
Mike Travisc5f59f02008-04-04 18:11:10 -07003552 pg_data_t *pgdat = NODE_DATA(nid);
Rusty Russella70f7302009-03-13 14:49:46 +10303553 const struct cpumask *mask;
3554
3555 mask = cpumask_of_node(pgdat->node_id);
Mike Travisc5f59f02008-04-04 18:11:10 -07003556
Rusty Russell3e597942009-01-01 10:12:24 +10303557 if (cpumask_any_and(cpu_online_mask, mask) < nr_cpu_ids)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003558 /* One of our CPUs online: restore mask */
Mike Travisc5f59f02008-04-04 18:11:10 -07003559 set_cpus_allowed_ptr(pgdat->kswapd, mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003560 }
3561 }
3562 return NOTIFY_OK;
3563}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003564
Yasunori Goto3218ae12006-06-27 02:53:33 -07003565/*
3566 * This kswapd start function will be called by init and node-hot-add.
3567 * On node-hot-add, kswapd will moved to proper cpus if cpus are hot-added.
3568 */
3569int kswapd_run(int nid)
3570{
3571 pg_data_t *pgdat = NODE_DATA(nid);
3572 int ret = 0;
3573
3574 if (pgdat->kswapd)
3575 return 0;
3576
3577 pgdat->kswapd = kthread_run(kswapd, pgdat, "kswapd%d", nid);
3578 if (IS_ERR(pgdat->kswapd)) {
3579 /* failure at boot is fatal */
3580 BUG_ON(system_state == SYSTEM_BOOTING);
Gavin Shand5dc0ad2012-10-08 16:29:27 -07003581 pr_err("Failed to start kswapd on node %d\n", nid);
3582 ret = PTR_ERR(pgdat->kswapd);
Xishi Qiud72515b2013-04-17 15:58:34 -07003583 pgdat->kswapd = NULL;
Yasunori Goto3218ae12006-06-27 02:53:33 -07003584 }
3585 return ret;
3586}
3587
David Rientjes8fe23e02009-12-14 17:58:33 -08003588/*
Jiang Liud8adde12012-07-11 14:01:52 -07003589 * Called by memory hotplug when all memory in a node is offlined. Caller must
Vladimir Davydovbfc8c902014-06-04 16:07:18 -07003590 * hold mem_hotplug_begin/end().
David Rientjes8fe23e02009-12-14 17:58:33 -08003591 */
3592void kswapd_stop(int nid)
3593{
3594 struct task_struct *kswapd = NODE_DATA(nid)->kswapd;
3595
Jiang Liud8adde12012-07-11 14:01:52 -07003596 if (kswapd) {
David Rientjes8fe23e02009-12-14 17:58:33 -08003597 kthread_stop(kswapd);
Jiang Liud8adde12012-07-11 14:01:52 -07003598 NODE_DATA(nid)->kswapd = NULL;
3599 }
David Rientjes8fe23e02009-12-14 17:58:33 -08003600}
3601
Linus Torvalds1da177e2005-04-16 15:20:36 -07003602static int __init kswapd_init(void)
3603{
Yasunori Goto3218ae12006-06-27 02:53:33 -07003604 int nid;
Andrew Morton69e05942006-03-22 00:08:19 -08003605
Linus Torvalds1da177e2005-04-16 15:20:36 -07003606 swap_setup();
Lai Jiangshan48fb2e22012-12-12 13:51:43 -08003607 for_each_node_state(nid, N_MEMORY)
Yasunori Goto3218ae12006-06-27 02:53:33 -07003608 kswapd_run(nid);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003609 hotcpu_notifier(cpu_callback, 0);
3610 return 0;
3611}
3612
3613module_init(kswapd_init)
Christoph Lameter9eeff232006-01-18 17:42:31 -08003614
3615#ifdef CONFIG_NUMA
3616/*
3617 * Zone reclaim mode
3618 *
3619 * If non-zero call zone_reclaim when the number of free pages falls below
3620 * the watermarks.
Christoph Lameter9eeff232006-01-18 17:42:31 -08003621 */
3622int zone_reclaim_mode __read_mostly;
3623
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08003624#define RECLAIM_OFF 0
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07003625#define RECLAIM_ZONE (1<<0) /* Run shrink_inactive_list on the zone */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08003626#define RECLAIM_WRITE (1<<1) /* Writeout pages during reclaim */
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003627#define RECLAIM_UNMAP (1<<2) /* Unmap pages during reclaim */
Christoph Lameter1b2ffb72006-02-01 03:05:34 -08003628
Christoph Lameter9eeff232006-01-18 17:42:31 -08003629/*
Christoph Lametera92f7122006-02-01 03:05:32 -08003630 * Priority for ZONE_RECLAIM. This determines the fraction of pages
3631 * of a node considered for each zone_reclaim. 4 scans 1/16th of
3632 * a zone.
3633 */
3634#define ZONE_RECLAIM_PRIORITY 4
3635
Christoph Lameter9eeff232006-01-18 17:42:31 -08003636/*
Christoph Lameter96146342006-07-03 00:24:13 -07003637 * Percentage of pages in a zone that must be unmapped for zone_reclaim to
3638 * occur.
3639 */
3640int sysctl_min_unmapped_ratio = 1;
3641
3642/*
Christoph Lameter0ff38492006-09-25 23:31:52 -07003643 * If the number of slab pages in a zone grows beyond this percentage then
3644 * slab reclaim needs to occur.
3645 */
3646int sysctl_min_slab_ratio = 5;
3647
Mel Gorman90afa5d2009-06-16 15:33:20 -07003648static inline unsigned long zone_unmapped_file_pages(struct zone *zone)
3649{
3650 unsigned long file_mapped = zone_page_state(zone, NR_FILE_MAPPED);
Mel Gorman599d0c92016-07-28 15:45:31 -07003651 unsigned long file_lru = node_page_state(zone->zone_pgdat, NR_INACTIVE_FILE) +
3652 node_page_state(zone->zone_pgdat, NR_ACTIVE_FILE);
Mel Gorman90afa5d2009-06-16 15:33:20 -07003653
3654 /*
3655 * It's possible for there to be more file mapped pages than
3656 * accounted for by the pages on the file LRU lists because
3657 * tmpfs pages accounted for as ANON can also be FILE_MAPPED
3658 */
3659 return (file_lru > file_mapped) ? (file_lru - file_mapped) : 0;
3660}
3661
3662/* Work out how many page cache pages we can reclaim in this reclaim_mode */
Alexandru Moised031a152015-11-05 18:48:08 -08003663static unsigned long zone_pagecache_reclaimable(struct zone *zone)
Mel Gorman90afa5d2009-06-16 15:33:20 -07003664{
Alexandru Moised031a152015-11-05 18:48:08 -08003665 unsigned long nr_pagecache_reclaimable;
3666 unsigned long delta = 0;
Mel Gorman90afa5d2009-06-16 15:33:20 -07003667
3668 /*
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003669 * If RECLAIM_UNMAP is set, then all file pages are considered
Mel Gorman90afa5d2009-06-16 15:33:20 -07003670 * potentially reclaimable. Otherwise, we have to worry about
3671 * pages like swapcache and zone_unmapped_file_pages() provides
3672 * a better estimate
3673 */
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003674 if (zone_reclaim_mode & RECLAIM_UNMAP)
Mel Gorman90afa5d2009-06-16 15:33:20 -07003675 nr_pagecache_reclaimable = zone_page_state(zone, NR_FILE_PAGES);
3676 else
3677 nr_pagecache_reclaimable = zone_unmapped_file_pages(zone);
3678
3679 /* If we can't clean pages, remove dirty pages from consideration */
3680 if (!(zone_reclaim_mode & RECLAIM_WRITE))
3681 delta += zone_page_state(zone, NR_FILE_DIRTY);
3682
3683 /* Watch for any possible underflows due to delta */
3684 if (unlikely(delta > nr_pagecache_reclaimable))
3685 delta = nr_pagecache_reclaimable;
3686
3687 return nr_pagecache_reclaimable - delta;
3688}
3689
Christoph Lameter0ff38492006-09-25 23:31:52 -07003690/*
Christoph Lameter9eeff232006-01-18 17:42:31 -08003691 * Try to free up some pages from this zone through reclaim.
3692 */
Andrew Morton179e9632006-03-22 00:08:18 -08003693static int __zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
Christoph Lameter9eeff232006-01-18 17:42:31 -08003694{
Christoph Lameter7fb2d462006-03-22 00:08:22 -08003695 /* Minimum pages needed in order to stay on node */
Andrew Morton69e05942006-03-22 00:08:19 -08003696 const unsigned long nr_pages = 1 << order;
Christoph Lameter9eeff232006-01-18 17:42:31 -08003697 struct task_struct *p = current;
3698 struct reclaim_state reclaim_state;
Andrew Morton179e9632006-03-22 00:08:18 -08003699 struct scan_control sc = {
Andrew Morton62b726c2013-02-22 16:32:24 -08003700 .nr_to_reclaim = max(nr_pages, SWAP_CLUSTER_MAX),
Ming Lei21caf2f2013-02-22 16:34:08 -08003701 .gfp_mask = (gfp_mask = memalloc_noio_flags(gfp_mask)),
Johannes Weinerbd2f6192009-03-31 15:19:38 -07003702 .order = order,
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003703 .priority = ZONE_RECLAIM_PRIORITY,
Johannes Weineree814fe2014-08-06 16:06:19 -07003704 .may_writepage = !!(zone_reclaim_mode & RECLAIM_WRITE),
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003705 .may_unmap = !!(zone_reclaim_mode & RECLAIM_UNMAP),
Johannes Weineree814fe2014-08-06 16:06:19 -07003706 .may_swap = 1,
Andrew Morton179e9632006-03-22 00:08:18 -08003707 };
Christoph Lameter9eeff232006-01-18 17:42:31 -08003708
Christoph Lameter9eeff232006-01-18 17:42:31 -08003709 cond_resched();
Christoph Lameterd4f77962006-02-24 13:04:22 -08003710 /*
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003711 * We need to be able to allocate from the reserves for RECLAIM_UNMAP
Christoph Lameterd4f77962006-02-24 13:04:22 -08003712 * and we also need to be able to write out pages for RECLAIM_WRITE
Zhihui Zhang95bbc0c2015-06-24 16:56:42 -07003713 * and RECLAIM_UNMAP.
Christoph Lameterd4f77962006-02-24 13:04:22 -08003714 */
3715 p->flags |= PF_MEMALLOC | PF_SWAPWRITE;
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08003716 lockdep_set_current_reclaim_state(gfp_mask);
Christoph Lameter9eeff232006-01-18 17:42:31 -08003717 reclaim_state.reclaimed_slab = 0;
3718 p->reclaim_state = &reclaim_state;
Christoph Lameterc84db232006-02-01 03:05:29 -08003719
Mel Gorman90afa5d2009-06-16 15:33:20 -07003720 if (zone_pagecache_reclaimable(zone) > zone->min_unmapped_pages) {
Christoph Lameter0ff38492006-09-25 23:31:52 -07003721 /*
3722 * Free memory by calling shrink zone with increasing
3723 * priorities until we have enough memory freed.
3724 */
Christoph Lameter0ff38492006-09-25 23:31:52 -07003725 do {
Johannes Weiner6b4f7792014-12-12 16:56:13 -08003726 shrink_zone(zone, &sc, true);
Konstantin Khlebnikov9e3b2f82012-05-29 15:06:57 -07003727 } while (sc.nr_reclaimed < nr_pages && --sc.priority >= 0);
Christoph Lameter0ff38492006-09-25 23:31:52 -07003728 }
Christoph Lameterc84db232006-02-01 03:05:29 -08003729
Christoph Lameter9eeff232006-01-18 17:42:31 -08003730 p->reclaim_state = NULL;
Christoph Lameterd4f77962006-02-24 13:04:22 -08003731 current->flags &= ~(PF_MEMALLOC | PF_SWAPWRITE);
KOSAKI Motohiro76ca5422010-03-05 13:41:47 -08003732 lockdep_clear_current_reclaim_state();
Rik van Riela79311c2009-01-06 14:40:01 -08003733 return sc.nr_reclaimed >= nr_pages;
Christoph Lameter9eeff232006-01-18 17:42:31 -08003734}
Andrew Morton179e9632006-03-22 00:08:18 -08003735
3736int zone_reclaim(struct zone *zone, gfp_t gfp_mask, unsigned int order)
3737{
Andrew Morton179e9632006-03-22 00:08:18 -08003738 int node_id;
David Rientjesd773ed62007-10-16 23:26:01 -07003739 int ret;
Andrew Morton179e9632006-03-22 00:08:18 -08003740
3741 /*
Christoph Lameter0ff38492006-09-25 23:31:52 -07003742 * Zone reclaim reclaims unmapped file backed pages and
3743 * slab pages if we are over the defined limits.
Christoph Lameter34aa1332006-06-30 01:55:37 -07003744 *
Christoph Lameter96146342006-07-03 00:24:13 -07003745 * A small portion of unmapped file backed pages is needed for
3746 * file I/O otherwise pages read by file I/O will be immediately
3747 * thrown out if the zone is overallocated. So we do not reclaim
3748 * if less than a specified percentage of the zone is used by
3749 * unmapped file backed pages.
Andrew Morton179e9632006-03-22 00:08:18 -08003750 */
Mel Gorman90afa5d2009-06-16 15:33:20 -07003751 if (zone_pagecache_reclaimable(zone) <= zone->min_unmapped_pages &&
3752 zone_page_state(zone, NR_SLAB_RECLAIMABLE) <= zone->min_slab_pages)
Mel Gormanfa5e0842009-06-16 15:33:22 -07003753 return ZONE_RECLAIM_FULL;
Andrew Morton179e9632006-03-22 00:08:18 -08003754
Mel Gorman599d0c92016-07-28 15:45:31 -07003755 if (!pgdat_reclaimable(zone->zone_pgdat))
Mel Gormanfa5e0842009-06-16 15:33:22 -07003756 return ZONE_RECLAIM_FULL;
David Rientjesd773ed62007-10-16 23:26:01 -07003757
Andrew Morton179e9632006-03-22 00:08:18 -08003758 /*
David Rientjesd773ed62007-10-16 23:26:01 -07003759 * Do not scan if the allocation should not be delayed.
Andrew Morton179e9632006-03-22 00:08:18 -08003760 */
Mel Gormand0164ad2015-11-06 16:28:21 -08003761 if (!gfpflags_allow_blocking(gfp_mask) || (current->flags & PF_MEMALLOC))
Mel Gormanfa5e0842009-06-16 15:33:22 -07003762 return ZONE_RECLAIM_NOSCAN;
Andrew Morton179e9632006-03-22 00:08:18 -08003763
3764 /*
3765 * Only run zone reclaim on the local zone or on zones that do not
3766 * have associated processors. This will favor the local processor
3767 * over remote processors and spread off node memory allocations
3768 * as wide as possible.
3769 */
Christoph Lameter89fa3022006-09-25 23:31:55 -07003770 node_id = zone_to_nid(zone);
Christoph Lameter37c07082007-10-16 01:25:36 -07003771 if (node_state(node_id, N_CPU) && node_id != numa_node_id())
Mel Gormanfa5e0842009-06-16 15:33:22 -07003772 return ZONE_RECLAIM_NOSCAN;
David Rientjesd773ed62007-10-16 23:26:01 -07003773
Johannes Weiner57054652014-10-09 15:28:17 -07003774 if (test_and_set_bit(ZONE_RECLAIM_LOCKED, &zone->flags))
Mel Gormanfa5e0842009-06-16 15:33:22 -07003775 return ZONE_RECLAIM_NOSCAN;
3776
David Rientjesd773ed62007-10-16 23:26:01 -07003777 ret = __zone_reclaim(zone, gfp_mask, order);
Johannes Weiner57054652014-10-09 15:28:17 -07003778 clear_bit(ZONE_RECLAIM_LOCKED, &zone->flags);
David Rientjesd773ed62007-10-16 23:26:01 -07003779
Mel Gorman24cf725182009-06-16 15:33:23 -07003780 if (!ret)
3781 count_vm_event(PGSCAN_ZONE_RECLAIM_FAILED);
3782
David Rientjesd773ed62007-10-16 23:26:01 -07003783 return ret;
Andrew Morton179e9632006-03-22 00:08:18 -08003784}
Christoph Lameter9eeff232006-01-18 17:42:31 -08003785#endif
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003786
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003787/*
3788 * page_evictable - test whether a page is evictable
3789 * @page: the page to test
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003790 *
3791 * Test whether page is evictable--i.e., should be placed on active/inactive
Hugh Dickins39b5f292012-10-08 16:33:18 -07003792 * lists vs unevictable list.
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003793 *
3794 * Reasons page might not be evictable:
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07003795 * (1) page's mapping marked unevictable
Nick Pigginb291f002008-10-18 20:26:44 -07003796 * (2) page is part of an mlocked VMA
Lee Schermerhornba9ddf42008-10-18 20:26:42 -07003797 *
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003798 */
Hugh Dickins39b5f292012-10-08 16:33:18 -07003799int page_evictable(struct page *page)
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003800{
Hugh Dickins39b5f292012-10-08 16:33:18 -07003801 return !mapping_unevictable(page_mapping(page)) && !PageMlocked(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -07003802}
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003803
Hugh Dickins850465792012-01-20 14:34:19 -08003804#ifdef CONFIG_SHMEM
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003805/**
Hugh Dickins24513262012-01-20 14:34:21 -08003806 * check_move_unevictable_pages - check pages for evictability and move to appropriate zone lru list
3807 * @pages: array of pages to check
3808 * @nr_pages: number of pages to check
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003809 *
Hugh Dickins24513262012-01-20 14:34:21 -08003810 * Checks pages for evictability and moves them to the appropriate lru list.
Hugh Dickins850465792012-01-20 14:34:19 -08003811 *
3812 * This function is only used for SysV IPC SHM_UNLOCK.
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003813 */
Hugh Dickins24513262012-01-20 14:34:21 -08003814void check_move_unevictable_pages(struct page **pages, int nr_pages)
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003815{
Johannes Weiner925b7672012-01-12 17:18:15 -08003816 struct lruvec *lruvec;
Hugh Dickins24513262012-01-20 14:34:21 -08003817 struct zone *zone = NULL;
3818 int pgscanned = 0;
3819 int pgrescued = 0;
3820 int i;
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003821
Hugh Dickins24513262012-01-20 14:34:21 -08003822 for (i = 0; i < nr_pages; i++) {
3823 struct page *page = pages[i];
3824 struct zone *pagezone;
Lee Schermerhornaf936a12008-10-18 20:26:53 -07003825
Hugh Dickins24513262012-01-20 14:34:21 -08003826 pgscanned++;
3827 pagezone = page_zone(page);
3828 if (pagezone != zone) {
3829 if (zone)
Mel Gormana52633d2016-07-28 15:45:28 -07003830 spin_unlock_irq(zone_lru_lock(zone));
Hugh Dickins24513262012-01-20 14:34:21 -08003831 zone = pagezone;
Mel Gormana52633d2016-07-28 15:45:28 -07003832 spin_lock_irq(zone_lru_lock(zone));
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003833 }
Mel Gorman599d0c92016-07-28 15:45:31 -07003834 lruvec = mem_cgroup_page_lruvec(page, zone->zone_pgdat);
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003835
Hugh Dickins24513262012-01-20 14:34:21 -08003836 if (!PageLRU(page) || !PageUnevictable(page))
3837 continue;
3838
Hugh Dickins39b5f292012-10-08 16:33:18 -07003839 if (page_evictable(page)) {
Hugh Dickins24513262012-01-20 14:34:21 -08003840 enum lru_list lru = page_lru_base_type(page);
3841
Sasha Levin309381fea2014-01-23 15:52:54 -08003842 VM_BUG_ON_PAGE(PageActive(page), page);
Hugh Dickins24513262012-01-20 14:34:21 -08003843 ClearPageUnevictable(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07003844 del_page_from_lru_list(page, lruvec, LRU_UNEVICTABLE);
3845 add_page_to_lru_list(page, lruvec, lru);
Hugh Dickins24513262012-01-20 14:34:21 -08003846 pgrescued++;
3847 }
Lee Schermerhorn89e004ea2008-10-18 20:26:43 -07003848 }
Hugh Dickins24513262012-01-20 14:34:21 -08003849
3850 if (zone) {
3851 __count_vm_events(UNEVICTABLE_PGRESCUED, pgrescued);
3852 __count_vm_events(UNEVICTABLE_PGSCANNED, pgscanned);
Mel Gormana52633d2016-07-28 15:45:28 -07003853 spin_unlock_irq(zone_lru_lock(zone));
Hugh Dickins24513262012-01-20 14:34:21 -08003854 }
Hugh Dickins850465792012-01-20 14:34:19 -08003855}
3856#endif /* CONFIG_SHMEM */