blob: 54f3ae4aaf4122b42724171e4ca2f90601c56a69 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/swap.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 */
6
7/*
Simon Arlott183ff222007-10-20 01:27:18 +02008 * This file contains the default values for the operation of the
Linus Torvalds1da177e2005-04-16 15:20:36 -07009 * Linux VM subsystem. Fine-tuning documentation can be found in
10 * Documentation/sysctl/vm.txt.
11 * Started 18.12.91
12 * Swap aging added 23.2.95, Stephen Tweedie.
13 * Buffermem limits added 12.3.98, Rik van Riel.
14 */
15
16#include <linux/mm.h>
17#include <linux/sched.h>
18#include <linux/kernel_stat.h>
19#include <linux/swap.h>
20#include <linux/mman.h>
21#include <linux/pagemap.h>
22#include <linux/pagevec.h>
23#include <linux/init.h>
Paul Gortmakerb95f1b312011-10-16 02:01:52 -040024#include <linux/export.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070025#include <linux/mm_inline.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/percpu_counter.h>
27#include <linux/percpu.h>
28#include <linux/cpu.h>
29#include <linux/notifier.h>
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -070030#include <linux/backing-dev.h>
Balbir Singh66e17072008-02-07 00:13:56 -080031#include <linux/memcontrol.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090032#include <linux/gfp.h>
Kent Overstreeta27bb332013-05-07 16:19:08 -070033#include <linux/uio.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
Lee Schermerhorn64d65192008-10-18 20:26:52 -070035#include "internal.h"
36
Mel Gormanc6286c92013-07-03 15:02:26 -070037#define CREATE_TRACE_POINTS
38#include <trace/events/pagemap.h>
39
Linus Torvalds1da177e2005-04-16 15:20:36 -070040/* How many pages do we try to swap or page in/out together? */
41int page_cluster;
42
Mel Gorman13f7f782013-07-03 15:02:28 -070043static DEFINE_PER_CPU(struct pagevec, lru_add_pvec);
Vegard Nossumf84f95042008-07-23 21:28:14 -070044static DEFINE_PER_CPU(struct pagevec, lru_rotate_pvecs);
Minchan Kim31560182011-03-22 16:32:52 -070045static DEFINE_PER_CPU(struct pagevec, lru_deactivate_pvecs);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -070046
Adrian Bunkb2213852006-09-25 23:31:02 -070047/*
48 * This path almost never happens for VM activity - pages are normally
49 * freed via pagevecs. But it gets used by networking.
50 */
Harvey Harrison920c7a52008-02-04 22:29:26 -080051static void __page_cache_release(struct page *page)
Adrian Bunkb2213852006-09-25 23:31:02 -070052{
53 if (PageLRU(page)) {
Adrian Bunkb2213852006-09-25 23:31:02 -070054 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070055 struct lruvec *lruvec;
56 unsigned long flags;
Adrian Bunkb2213852006-09-25 23:31:02 -070057
58 spin_lock_irqsave(&zone->lru_lock, flags);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070059 lruvec = mem_cgroup_page_lruvec(page, zone);
Sasha Levin309381fea2014-01-23 15:52:54 -080060 VM_BUG_ON_PAGE(!PageLRU(page), page);
Adrian Bunkb2213852006-09-25 23:31:02 -070061 __ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070062 del_page_from_lru_list(page, lruvec, page_off_lru(page));
Adrian Bunkb2213852006-09-25 23:31:02 -070063 spin_unlock_irqrestore(&zone->lru_lock, flags);
64 }
Andrea Arcangeli91807062011-01-13 15:46:32 -080065}
66
67static void __put_single_page(struct page *page)
68{
69 __page_cache_release(page);
Li Hongfc916682010-03-05 13:41:54 -080070 free_hot_cold_page(page, 0);
Adrian Bunkb2213852006-09-25 23:31:02 -070071}
72
Andrea Arcangeli91807062011-01-13 15:46:32 -080073static void __put_compound_page(struct page *page)
74{
75 compound_page_dtor *dtor;
76
77 __page_cache_release(page);
78 dtor = get_compound_page_dtor(page);
79 (*dtor)(page);
80}
81
Jianyu Zhanc747ce72014-06-04 16:07:59 -070082/**
83 * Two special cases here: we could avoid taking compound_lock_irqsave
84 * and could skip the tail refcounting(in _mapcount).
85 *
86 * 1. Hugetlbfs page:
87 *
88 * PageHeadHuge will remain true until the compound page
89 * is released and enters the buddy allocator, and it could
90 * not be split by __split_huge_page_refcount().
91 *
92 * So if we see PageHeadHuge set, and we have the tail page pin,
93 * then we could safely put head page.
94 *
95 * 2. Slab THP page:
96 *
97 * PG_slab is cleared before the slab frees the head page, and
98 * tail pin cannot be the last reference left on the head page,
99 * because the slab code is free to reuse the compound page
100 * after a kfree/kmem_cache_free without having to check if
101 * there's any tail pin left. In turn all tail pinsmust be always
102 * released while the head is still pinned by the slab code
103 * and so we know PG_slab will be still set too.
104 *
105 * So if we see PageSlab set, and we have the tail page pin,
106 * then we could safely put head page.
107 */
108static __always_inline
109void put_unrefcounted_compound_page(struct page *page_head, struct page *page)
110{
111 /*
112 * If @page is a THP tail, we must read the tail page
113 * flags after the head page flags. The
114 * __split_huge_page_refcount side enforces write memory barriers
115 * between clearing PageTail and before the head page
116 * can be freed and reallocated.
117 */
118 smp_rmb();
119 if (likely(PageTail(page))) {
120 /*
121 * __split_huge_page_refcount cannot race
122 * here, see the comment above this function.
123 */
124 VM_BUG_ON_PAGE(!PageHead(page_head), page_head);
125 VM_BUG_ON_PAGE(page_mapcount(page) != 0, page);
126 if (put_page_testzero(page_head)) {
127 /*
128 * If this is the tail of a slab THP page,
129 * the tail pin must not be the last reference
130 * held on the page, because the PG_slab cannot
131 * be cleared before all tail pins (which skips
132 * the _mapcount tail refcounting) have been
133 * released.
134 *
135 * If this is the tail of a hugetlbfs page,
136 * the tail pin may be the last reference on
137 * the page instead, because PageHeadHuge will
138 * not go away until the compound page enters
139 * the buddy allocator.
140 */
141 VM_BUG_ON_PAGE(PageSlab(page_head), page_head);
142 __put_compound_page(page_head);
143 }
144 } else
145 /*
146 * __split_huge_page_refcount run before us,
147 * @page was a THP tail. The split @page_head
148 * has been freed and reallocated as slab or
149 * hugetlbfs page of smaller order (only
150 * possible if reallocated as slab on x86).
151 */
152 if (put_page_testzero(page))
153 __put_single_page(page);
154}
155
156static __always_inline
157void put_refcounted_compound_page(struct page *page_head, struct page *page)
158{
159 if (likely(page != page_head && get_page_unless_zero(page_head))) {
160 unsigned long flags;
161
162 /*
163 * @page_head wasn't a dangling pointer but it may not
164 * be a head page anymore by the time we obtain the
165 * lock. That is ok as long as it can't be freed from
166 * under us.
167 */
168 flags = compound_lock_irqsave(page_head);
169 if (unlikely(!PageTail(page))) {
170 /* __split_huge_page_refcount run before us */
171 compound_unlock_irqrestore(page_head, flags);
172 if (put_page_testzero(page_head)) {
173 /*
174 * The @page_head may have been freed
175 * and reallocated as a compound page
176 * of smaller order and then freed
177 * again. All we know is that it
178 * cannot have become: a THP page, a
179 * compound page of higher order, a
180 * tail page. That is because we
181 * still hold the refcount of the
182 * split THP tail and page_head was
183 * the THP head before the split.
184 */
185 if (PageHead(page_head))
186 __put_compound_page(page_head);
187 else
188 __put_single_page(page_head);
189 }
190out_put_single:
191 if (put_page_testzero(page))
192 __put_single_page(page);
193 return;
194 }
195 VM_BUG_ON_PAGE(page_head != page->first_page, page);
196 /*
197 * We can release the refcount taken by
198 * get_page_unless_zero() now that
199 * __split_huge_page_refcount() is blocked on the
200 * compound_lock.
201 */
202 if (put_page_testzero(page_head))
203 VM_BUG_ON_PAGE(1, page_head);
204 /* __split_huge_page_refcount will wait now */
205 VM_BUG_ON_PAGE(page_mapcount(page) <= 0, page);
206 atomic_dec(&page->_mapcount);
207 VM_BUG_ON_PAGE(atomic_read(&page_head->_count) <= 0, page_head);
208 VM_BUG_ON_PAGE(atomic_read(&page->_count) != 0, page);
209 compound_unlock_irqrestore(page_head, flags);
210
211 if (put_page_testzero(page_head)) {
212 if (PageHead(page_head))
213 __put_compound_page(page_head);
214 else
215 __put_single_page(page_head);
216 }
217 } else {
218 /* @page_head is a dangling pointer */
219 VM_BUG_ON_PAGE(PageTail(page), page);
220 goto out_put_single;
221 }
222}
223
Nick Piggin8519fb32006-02-07 12:58:52 -0800224static void put_compound_page(struct page *page)
225{
Andrew Morton26296ad2014-01-21 15:48:59 -0800226 struct page *page_head;
227
228 if (likely(!PageTail(page))) {
229 if (put_page_testzero(page)) {
230 /*
231 * By the time all refcounts have been released
232 * split_huge_page cannot run anymore from under us.
233 */
234 if (PageHead(page))
235 __put_compound_page(page);
236 else
237 __put_single_page(page);
238 }
239 return;
240 }
241
242 /* __split_huge_page_refcount can run under us */
David Rientjes668f9abb2014-03-03 15:38:18 -0800243 page_head = compound_head(page);
Andrew Morton26296ad2014-01-21 15:48:59 -0800244
245 /*
246 * THP can not break up slab pages so avoid taking
247 * compound_lock() and skip the tail page refcounting (in
248 * _mapcount) too. Slab performs non-atomic bit ops on
249 * page->flags for better performance. In particular
250 * slab_unlock() in slub used to be a hot path. It is still
251 * hot on arches that do not support
252 * this_cpu_cmpxchg_double().
253 *
254 * If "page" is part of a slab or hugetlbfs page it cannot be
255 * splitted and the head page cannot change from under us. And
256 * if "page" is part of a THP page under splitting, if the
257 * head page pointed by the THP tail isn't a THP head anymore,
258 * we'll find PageTail clear after smp_rmb() and we'll treat
259 * it as a single page.
260 */
261 if (!__compound_tail_refcounted(page_head)) {
262 /*
263 * If "page" is a THP tail, we must read the tail page
264 * flags after the head page flags. The
265 * split_huge_page side enforces write memory barriers
266 * between clearing PageTail and before the head page
267 * can be freed and reallocated.
268 */
269 smp_rmb();
270 if (likely(PageTail(page))) {
271 /*
272 * __split_huge_page_refcount cannot race
273 * here.
274 */
Sasha Levin309381fea2014-01-23 15:52:54 -0800275 VM_BUG_ON_PAGE(!PageHead(page_head), page_head);
276 VM_BUG_ON_PAGE(page_mapcount(page) != 0, page);
Andrew Morton26296ad2014-01-21 15:48:59 -0800277 if (put_page_testzero(page_head)) {
278 /*
279 * If this is the tail of a slab
280 * compound page, the tail pin must
281 * not be the last reference held on
282 * the page, because the PG_slab
283 * cannot be cleared before all tail
284 * pins (which skips the _mapcount
285 * tail refcounting) have been
286 * released. For hugetlbfs the tail
287 * pin may be the last reference on
288 * the page instead, because
289 * PageHeadHuge will not go away until
290 * the compound page enters the buddy
291 * allocator.
292 */
Sasha Levin309381fea2014-01-23 15:52:54 -0800293 VM_BUG_ON_PAGE(PageSlab(page_head), page_head);
Andrew Morton26296ad2014-01-21 15:48:59 -0800294 __put_compound_page(page_head);
295 }
296 return;
297 } else
298 /*
299 * __split_huge_page_refcount run before us,
300 * "page" was a THP tail. The split page_head
301 * has been freed and reallocated as slab or
302 * hugetlbfs page of smaller order (only
303 * possible if reallocated as slab on x86).
304 */
305 goto out_put_single;
306 }
307
308 if (likely(page != page_head && get_page_unless_zero(page_head))) {
309 unsigned long flags;
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700310
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800311 /*
Andrew Morton26296ad2014-01-21 15:48:59 -0800312 * page_head wasn't a dangling pointer but it may not
313 * be a head page anymore by the time we obtain the
314 * lock. That is ok as long as it can't be freed from
315 * under us.
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800316 */
Andrew Morton26296ad2014-01-21 15:48:59 -0800317 flags = compound_lock_irqsave(page_head);
318 if (unlikely(!PageTail(page))) {
319 /* __split_huge_page_refcount run before us */
Andrea Arcangeli91807062011-01-13 15:46:32 -0800320 compound_unlock_irqrestore(page_head, flags);
Andrea Arcangelia95a82e2011-01-13 15:46:33 -0800321 if (put_page_testzero(page_head)) {
Andrew Morton26296ad2014-01-21 15:48:59 -0800322 /*
323 * The head page may have been freed
324 * and reallocated as a compound page
325 * of smaller order and then freed
326 * again. All we know is that it
327 * cannot have become: a THP page, a
328 * compound page of higher order, a
329 * tail page. That is because we
330 * still hold the refcount of the
331 * split THP tail and page_head was
332 * the THP head before the split.
333 */
Andrea Arcangelia95a82e2011-01-13 15:46:33 -0800334 if (PageHead(page_head))
335 __put_compound_page(page_head);
336 else
337 __put_single_page(page_head);
338 }
Andrew Morton26296ad2014-01-21 15:48:59 -0800339out_put_single:
340 if (put_page_testzero(page))
341 __put_single_page(page);
342 return;
Andrea Arcangeli91807062011-01-13 15:46:32 -0800343 }
Sasha Levin309381fea2014-01-23 15:52:54 -0800344 VM_BUG_ON_PAGE(page_head != page->first_page, page);
Andrew Morton26296ad2014-01-21 15:48:59 -0800345 /*
346 * We can release the refcount taken by
347 * get_page_unless_zero() now that
348 * __split_huge_page_refcount() is blocked on the
349 * compound_lock.
350 */
351 if (put_page_testzero(page_head))
Sasha Levin309381fea2014-01-23 15:52:54 -0800352 VM_BUG_ON_PAGE(1, page_head);
Andrew Morton26296ad2014-01-21 15:48:59 -0800353 /* __split_huge_page_refcount will wait now */
Sasha Levin309381fea2014-01-23 15:52:54 -0800354 VM_BUG_ON_PAGE(page_mapcount(page) <= 0, page);
Andrew Morton26296ad2014-01-21 15:48:59 -0800355 atomic_dec(&page->_mapcount);
Sasha Levin309381fea2014-01-23 15:52:54 -0800356 VM_BUG_ON_PAGE(atomic_read(&page_head->_count) <= 0, page_head);
357 VM_BUG_ON_PAGE(atomic_read(&page->_count) != 0, page);
Andrew Morton26296ad2014-01-21 15:48:59 -0800358 compound_unlock_irqrestore(page_head, flags);
359
360 if (put_page_testzero(page_head)) {
361 if (PageHead(page_head))
362 __put_compound_page(page_head);
363 else
364 __put_single_page(page_head);
365 }
366 } else {
367 /* page_head is a dangling pointer */
Sasha Levin309381fea2014-01-23 15:52:54 -0800368 VM_BUG_ON_PAGE(PageTail(page), page);
Andrew Morton26296ad2014-01-21 15:48:59 -0800369 goto out_put_single;
Nick Piggin8519fb32006-02-07 12:58:52 -0800370 }
371}
372
Linus Torvalds1da177e2005-04-16 15:20:36 -0700373void put_page(struct page *page)
374{
Nick Piggin8519fb32006-02-07 12:58:52 -0800375 if (unlikely(PageCompound(page)))
376 put_compound_page(page);
377 else if (put_page_testzero(page))
Andrea Arcangeli91807062011-01-13 15:46:32 -0800378 __put_single_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379}
380EXPORT_SYMBOL(put_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700381
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700382/*
383 * This function is exported but must not be called by anything other
384 * than get_page(). It implements the slow path of get_page().
385 */
386bool __get_page_tail(struct page *page)
387{
388 /*
389 * This takes care of get_page() if run on a tail page
390 * returned by one of the get_user_pages/follow_page variants.
391 * get_user_pages/follow_page itself doesn't need the compound
392 * lock because it runs __get_page_tail_foll() under the
393 * proper PT lock that already serializes against
394 * split_huge_page().
395 */
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -0800396 unsigned long flags;
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800397 bool got;
David Rientjes668f9abb2014-03-03 15:38:18 -0800398 struct page *page_head = compound_head(page);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700399
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800400 /* Ref to put_compound_page() comment. */
Andrea Arcangeli3bfcd132014-01-21 15:48:56 -0800401 if (!__compound_tail_refcounted(page_head)) {
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800402 smp_rmb();
403 if (likely(PageTail(page))) {
404 /*
405 * This is a hugetlbfs page or a slab
406 * page. __split_huge_page_refcount
407 * cannot race here.
408 */
Sasha Levin309381fea2014-01-23 15:52:54 -0800409 VM_BUG_ON_PAGE(!PageHead(page_head), page_head);
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800410 __get_page_tail_foll(page, true);
411 return true;
412 } else {
413 /*
414 * __split_huge_page_refcount run
415 * before us, "page" was a THP
416 * tail. The split page_head has been
417 * freed and reallocated as slab or
418 * hugetlbfs page of smaller order
419 * (only possible if reallocated as
420 * slab on x86).
421 */
422 return false;
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700423 }
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800424 }
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -0800425
Andrea Arcangeliebf360f2014-01-21 15:48:51 -0800426 got = false;
427 if (likely(page != page_head && get_page_unless_zero(page_head))) {
Andrea Arcangeli27c73ae2013-11-21 14:32:02 -0800428 /*
429 * page_head wasn't a dangling pointer but it
430 * may not be a head page anymore by the time
431 * we obtain the lock. That is ok as long as it
432 * can't be freed from under us.
433 */
434 flags = compound_lock_irqsave(page_head);
435 /* here __split_huge_page_refcount won't run anymore */
436 if (likely(PageTail(page))) {
437 __get_page_tail_foll(page, false);
438 got = true;
439 }
440 compound_unlock_irqrestore(page_head, flags);
441 if (unlikely(!got))
442 put_page(page_head);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700443 }
444 return got;
445}
446EXPORT_SYMBOL(__get_page_tail);
447
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700448/**
Randy Dunlap76824862008-03-19 17:00:40 -0700449 * put_pages_list() - release a list of pages
450 * @pages: list of pages threaded on page->lru
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700451 *
452 * Release a list of pages which are strung together on page.lru. Currently
453 * used by read_cache_pages() and related error recovery code.
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700454 */
455void put_pages_list(struct list_head *pages)
456{
457 while (!list_empty(pages)) {
458 struct page *victim;
459
460 victim = list_entry(pages->prev, struct page, lru);
461 list_del(&victim->lru);
462 page_cache_release(victim);
463 }
464}
465EXPORT_SYMBOL(put_pages_list);
466
Mel Gorman18022c52012-07-31 16:44:51 -0700467/*
468 * get_kernel_pages() - pin kernel pages in memory
469 * @kiov: An array of struct kvec structures
470 * @nr_segs: number of segments to pin
471 * @write: pinning for read/write, currently ignored
472 * @pages: array that receives pointers to the pages pinned.
473 * Should be at least nr_segs long.
474 *
475 * Returns number of pages pinned. This may be fewer than the number
476 * requested. If nr_pages is 0 or negative, returns 0. If no pages
477 * were pinned, returns -errno. Each page returned must be released
478 * with a put_page() call when it is finished with.
479 */
480int get_kernel_pages(const struct kvec *kiov, int nr_segs, int write,
481 struct page **pages)
482{
483 int seg;
484
485 for (seg = 0; seg < nr_segs; seg++) {
486 if (WARN_ON(kiov[seg].iov_len != PAGE_SIZE))
487 return seg;
488
Mel Gorman5a178112012-07-31 16:45:02 -0700489 pages[seg] = kmap_to_page(kiov[seg].iov_base);
Mel Gorman18022c52012-07-31 16:44:51 -0700490 page_cache_get(pages[seg]);
491 }
492
493 return seg;
494}
495EXPORT_SYMBOL_GPL(get_kernel_pages);
496
497/*
498 * get_kernel_page() - pin a kernel page in memory
499 * @start: starting kernel address
500 * @write: pinning for read/write, currently ignored
501 * @pages: array that receives pointer to the page pinned.
502 * Must be at least nr_segs long.
503 *
504 * Returns 1 if page is pinned. If the page was not pinned, returns
505 * -errno. The page returned must be released with a put_page() call
506 * when it is finished with.
507 */
508int get_kernel_page(unsigned long start, int write, struct page **pages)
509{
510 const struct kvec kiov = {
511 .iov_base = (void *)start,
512 .iov_len = PAGE_SIZE
513 };
514
515 return get_kernel_pages(&kiov, 1, write, pages);
516}
517EXPORT_SYMBOL_GPL(get_kernel_page);
518
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700519static void pagevec_lru_move_fn(struct pagevec *pvec,
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700520 void (*move_fn)(struct page *page, struct lruvec *lruvec, void *arg),
521 void *arg)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700522{
523 int i;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700524 struct zone *zone = NULL;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700525 struct lruvec *lruvec;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700526 unsigned long flags = 0;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700527
528 for (i = 0; i < pagevec_count(pvec); i++) {
529 struct page *page = pvec->pages[i];
530 struct zone *pagezone = page_zone(page);
531
532 if (pagezone != zone) {
533 if (zone)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700534 spin_unlock_irqrestore(&zone->lru_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700535 zone = pagezone;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700536 spin_lock_irqsave(&zone->lru_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700537 }
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700538
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700539 lruvec = mem_cgroup_page_lruvec(page, zone);
540 (*move_fn)(page, lruvec, arg);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700541 }
542 if (zone)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700543 spin_unlock_irqrestore(&zone->lru_lock, flags);
Linus Torvalds83896fb2011-01-17 14:42:34 -0800544 release_pages(pvec->pages, pvec->nr, pvec->cold);
545 pagevec_reinit(pvec);
Shaohua Lid8505de2011-01-13 15:47:33 -0800546}
547
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700548static void pagevec_move_tail_fn(struct page *page, struct lruvec *lruvec,
549 void *arg)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700550{
551 int *pgmoved = arg;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700552
553 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
554 enum lru_list lru = page_lru_base_type(page);
Johannes Weiner925b7672012-01-12 17:18:15 -0800555 list_move_tail(&page->lru, &lruvec->lists[lru]);
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700556 (*pgmoved)++;
557 }
558}
559
560/*
561 * pagevec_move_tail() must be called with IRQ disabled.
562 * Otherwise this may cause nasty races.
563 */
564static void pagevec_move_tail(struct pagevec *pvec)
565{
566 int pgmoved = 0;
567
568 pagevec_lru_move_fn(pvec, pagevec_move_tail_fn, &pgmoved);
569 __count_vm_events(PGROTATED, pgmoved);
570}
571
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700572/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700573 * Writeback is about to end against a page which has been marked for immediate
574 * reclaim. If it still appears to be reclaimable, move it to the tail of the
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700575 * inactive list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700576 */
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700577void rotate_reclaimable_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700578{
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700579 if (!PageLocked(page) && !PageDirty(page) && !PageActive(page) &&
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700580 !PageUnevictable(page) && PageLRU(page)) {
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700581 struct pagevec *pvec;
582 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700583
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700584 page_cache_get(page);
585 local_irq_save(flags);
Christoph Lameter7c8e0182014-06-04 16:07:56 -0700586 pvec = this_cpu_ptr(&lru_rotate_pvecs);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700587 if (!pagevec_add(pvec, page))
588 pagevec_move_tail(pvec);
589 local_irq_restore(flags);
590 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700591}
592
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700593static void update_page_reclaim_stat(struct lruvec *lruvec,
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800594 int file, int rotated)
595{
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700596 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800597
598 reclaim_stat->recent_scanned[file]++;
599 if (rotated)
600 reclaim_stat->recent_rotated[file]++;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800601}
602
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700603static void __activate_page(struct page *page, struct lruvec *lruvec,
604 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700605{
Linus Torvalds7a608572011-01-17 14:42:19 -0800606 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
607 int file = page_is_file_cache(page);
608 int lru = page_lru_base_type(page);
Linus Torvalds7a608572011-01-17 14:42:19 -0800609
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700610 del_page_from_lru_list(page, lruvec, lru);
Linus Torvalds7a608572011-01-17 14:42:19 -0800611 SetPageActive(page);
612 lru += LRU_ACTIVE;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700613 add_page_to_lru_list(page, lruvec, lru);
Mel Gormanc6286c92013-07-03 15:02:26 -0700614 trace_mm_lru_activate(page, page_to_pfn(page));
Linus Torvalds7a608572011-01-17 14:42:19 -0800615
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700616 __count_vm_event(PGACTIVATE);
617 update_page_reclaim_stat(lruvec, file, 1);
Linus Torvalds7a608572011-01-17 14:42:19 -0800618 }
Shaohua Lieb709b02011-05-24 17:12:55 -0700619}
620
621#ifdef CONFIG_SMP
622static DEFINE_PER_CPU(struct pagevec, activate_page_pvecs);
623
624static void activate_page_drain(int cpu)
625{
626 struct pagevec *pvec = &per_cpu(activate_page_pvecs, cpu);
627
628 if (pagevec_count(pvec))
629 pagevec_lru_move_fn(pvec, __activate_page, NULL);
630}
631
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700632static bool need_activate_page_drain(int cpu)
633{
634 return pagevec_count(&per_cpu(activate_page_pvecs, cpu)) != 0;
635}
636
Shaohua Lieb709b02011-05-24 17:12:55 -0700637void activate_page(struct page *page)
638{
639 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
640 struct pagevec *pvec = &get_cpu_var(activate_page_pvecs);
641
642 page_cache_get(page);
643 if (!pagevec_add(pvec, page))
644 pagevec_lru_move_fn(pvec, __activate_page, NULL);
645 put_cpu_var(activate_page_pvecs);
646 }
647}
648
649#else
650static inline void activate_page_drain(int cpu)
651{
652}
653
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700654static bool need_activate_page_drain(int cpu)
655{
656 return false;
657}
658
Shaohua Lieb709b02011-05-24 17:12:55 -0700659void activate_page(struct page *page)
660{
661 struct zone *zone = page_zone(page);
662
663 spin_lock_irq(&zone->lru_lock);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700664 __activate_page(page, mem_cgroup_page_lruvec(page, zone), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700665 spin_unlock_irq(&zone->lru_lock);
666}
Shaohua Lieb709b02011-05-24 17:12:55 -0700667#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700668
Mel Gorman059285a2013-07-03 15:02:30 -0700669static void __lru_cache_activate_page(struct page *page)
670{
671 struct pagevec *pvec = &get_cpu_var(lru_add_pvec);
672 int i;
673
674 /*
675 * Search backwards on the optimistic assumption that the page being
676 * activated has just been added to this pagevec. Note that only
677 * the local pagevec is examined as a !PageLRU page could be in the
678 * process of being released, reclaimed, migrated or on a remote
679 * pagevec that is currently being drained. Furthermore, marking
680 * a remote pagevec's page PageActive potentially hits a race where
681 * a page is marked PageActive just after it is added to the inactive
682 * list causing accounting errors and BUG_ON checks to trigger.
683 */
684 for (i = pagevec_count(pvec) - 1; i >= 0; i--) {
685 struct page *pagevec_page = pvec->pages[i];
686
687 if (pagevec_page == page) {
688 SetPageActive(page);
689 break;
690 }
691 }
692
693 put_cpu_var(lru_add_pvec);
694}
695
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696/*
697 * Mark a page as having seen activity.
698 *
699 * inactive,unreferenced -> inactive,referenced
700 * inactive,referenced -> active,unreferenced
701 * active,unreferenced -> active,referenced
702 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800703void mark_page_accessed(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700704{
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700705 if (!PageActive(page) && !PageUnevictable(page) &&
Mel Gorman059285a2013-07-03 15:02:30 -0700706 PageReferenced(page)) {
707
708 /*
709 * If the page is on the LRU, queue it for activation via
710 * activate_page_pvecs. Otherwise, assume the page is on a
711 * pagevec, mark it active and it'll be moved to the active
712 * LRU on the next drain.
713 */
714 if (PageLRU(page))
715 activate_page(page);
716 else
717 __lru_cache_activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700718 ClearPageReferenced(page);
Johannes Weinera5289102014-04-03 14:47:51 -0700719 if (page_is_file_cache(page))
720 workingset_activation(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 } else if (!PageReferenced(page)) {
722 SetPageReferenced(page);
723 }
724}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725EXPORT_SYMBOL(mark_page_accessed);
726
Jianyu Zhan2329d372014-06-04 16:07:31 -0700727static void __lru_cache_add(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700728{
Mel Gorman13f7f782013-07-03 15:02:28 -0700729 struct pagevec *pvec = &get_cpu_var(lru_add_pvec);
730
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 page_cache_get(page);
Robin Dongd741c9c2012-10-08 16:29:05 -0700732 if (!pagevec_space(pvec))
Mel Gormana0b8cab32013-07-03 15:02:32 -0700733 __pagevec_lru_add(pvec);
Robin Dongd741c9c2012-10-08 16:29:05 -0700734 pagevec_add(pvec, page);
Mel Gorman13f7f782013-07-03 15:02:28 -0700735 put_cpu_var(lru_add_pvec);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736}
Jianyu Zhan2329d372014-06-04 16:07:31 -0700737
738/**
739 * lru_cache_add: add a page to the page lists
740 * @page: the page to add
741 */
742void lru_cache_add_anon(struct page *page)
743{
744 ClearPageActive(page);
745 __lru_cache_add(page);
746}
747
748void lru_cache_add_file(struct page *page)
749{
750 ClearPageActive(page);
751 __lru_cache_add(page);
752}
753EXPORT_SYMBOL(lru_cache_add_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700754
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700755/**
Mel Gormanc53954a2013-07-03 15:02:34 -0700756 * lru_cache_add - add a page to a page list
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700757 * @page: the page to be added to the LRU.
Jianyu Zhan2329d372014-06-04 16:07:31 -0700758 *
759 * Queue the page for addition to the LRU via pagevec. The decision on whether
760 * to add the page to the [in]active [file|anon] list is deferred until the
761 * pagevec is drained. This gives a chance for the caller of lru_cache_add()
762 * have the page added to the active list using mark_page_accessed().
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700763 */
Mel Gormanc53954a2013-07-03 15:02:34 -0700764void lru_cache_add(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765{
Sasha Levin309381fea2014-01-23 15:52:54 -0800766 VM_BUG_ON_PAGE(PageActive(page) && PageUnevictable(page), page);
767 VM_BUG_ON_PAGE(PageLRU(page), page);
Mel Gormanc53954a2013-07-03 15:02:34 -0700768 __lru_cache_add(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700769}
770
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700771/**
772 * add_page_to_unevictable_list - add a page to the unevictable list
773 * @page: the page to be added to the unevictable list
774 *
775 * Add page directly to its zone's unevictable list. To avoid races with
776 * tasks that might be making the page evictable, through eg. munlock,
777 * munmap or exit, while it's not on the lru, we want to add the page
778 * while it's locked or otherwise "invisible" to other tasks. This is
779 * difficult to do when using the pagevec cache, so bypass that.
780 */
781void add_page_to_unevictable_list(struct page *page)
782{
783 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700784 struct lruvec *lruvec;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700785
786 spin_lock_irq(&zone->lru_lock);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700787 lruvec = mem_cgroup_page_lruvec(page, zone);
Naoya Horiguchief2a2cb2013-07-31 13:53:37 -0700788 ClearPageActive(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700789 SetPageUnevictable(page);
790 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700791 add_page_to_lru_list(page, lruvec, LRU_UNEVICTABLE);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700792 spin_unlock_irq(&zone->lru_lock);
793}
794
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700795/*
Minchan Kim31560182011-03-22 16:32:52 -0700796 * If the page can not be invalidated, it is moved to the
797 * inactive list to speed up its reclaim. It is moved to the
798 * head of the list, rather than the tail, to give the flusher
799 * threads some time to write it out, as this is much more
800 * effective than the single-page writeout from reclaim.
Minchan Kim278df9f2011-03-22 16:32:54 -0700801 *
802 * If the page isn't page_mapped and dirty/writeback, the page
803 * could reclaim asap using PG_reclaim.
804 *
805 * 1. active, mapped page -> none
806 * 2. active, dirty/writeback page -> inactive, head, PG_reclaim
807 * 3. inactive, mapped page -> none
808 * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim
809 * 5. inactive, clean -> inactive, tail
810 * 6. Others -> none
811 *
812 * In 4, why it moves inactive's head, the VM expects the page would
813 * be write it out by flusher threads as this is much more effective
814 * than the single-page writeout from reclaim.
Minchan Kim31560182011-03-22 16:32:52 -0700815 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700816static void lru_deactivate_fn(struct page *page, struct lruvec *lruvec,
817 void *arg)
Minchan Kim31560182011-03-22 16:32:52 -0700818{
819 int lru, file;
Minchan Kim278df9f2011-03-22 16:32:54 -0700820 bool active;
Minchan Kim31560182011-03-22 16:32:52 -0700821
Minchan Kim278df9f2011-03-22 16:32:54 -0700822 if (!PageLRU(page))
Minchan Kim31560182011-03-22 16:32:52 -0700823 return;
824
Minchan Kimbad49d92011-05-11 15:13:30 -0700825 if (PageUnevictable(page))
826 return;
827
Minchan Kim31560182011-03-22 16:32:52 -0700828 /* Some processes are using the page */
829 if (page_mapped(page))
830 return;
831
Minchan Kim278df9f2011-03-22 16:32:54 -0700832 active = PageActive(page);
Minchan Kim31560182011-03-22 16:32:52 -0700833 file = page_is_file_cache(page);
834 lru = page_lru_base_type(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700835
836 del_page_from_lru_list(page, lruvec, lru + active);
Minchan Kim31560182011-03-22 16:32:52 -0700837 ClearPageActive(page);
838 ClearPageReferenced(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700839 add_page_to_lru_list(page, lruvec, lru);
Minchan Kim31560182011-03-22 16:32:52 -0700840
Minchan Kim278df9f2011-03-22 16:32:54 -0700841 if (PageWriteback(page) || PageDirty(page)) {
842 /*
843 * PG_reclaim could be raced with end_page_writeback
844 * It can make readahead confusing. But race window
845 * is _really_ small and it's non-critical problem.
846 */
847 SetPageReclaim(page);
848 } else {
849 /*
850 * The page's writeback ends up during pagevec
851 * We moves tha page into tail of inactive.
852 */
Johannes Weiner925b7672012-01-12 17:18:15 -0800853 list_move_tail(&page->lru, &lruvec->lists[lru]);
Minchan Kim278df9f2011-03-22 16:32:54 -0700854 __count_vm_event(PGROTATED);
855 }
856
857 if (active)
858 __count_vm_event(PGDEACTIVATE);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700859 update_page_reclaim_stat(lruvec, file, 0);
Minchan Kim31560182011-03-22 16:32:52 -0700860}
861
Minchan Kim31560182011-03-22 16:32:52 -0700862/*
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700863 * Drain pages out of the cpu's pagevecs.
864 * Either "cpu" is the current CPU, and preemption has already been
865 * disabled; or "cpu" is being hot-unplugged, and is already dead.
866 */
Konstantin Khlebnikovf0cb3c72012-03-21 16:34:06 -0700867void lru_add_drain_cpu(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700868{
Mel Gorman13f7f782013-07-03 15:02:28 -0700869 struct pagevec *pvec = &per_cpu(lru_add_pvec, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870
Mel Gorman13f7f782013-07-03 15:02:28 -0700871 if (pagevec_count(pvec))
Mel Gormana0b8cab32013-07-03 15:02:32 -0700872 __pagevec_lru_add(pvec);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700873
874 pvec = &per_cpu(lru_rotate_pvecs, cpu);
875 if (pagevec_count(pvec)) {
876 unsigned long flags;
877
878 /* No harm done if a racing interrupt already did this */
879 local_irq_save(flags);
880 pagevec_move_tail(pvec);
881 local_irq_restore(flags);
882 }
Minchan Kim31560182011-03-22 16:32:52 -0700883
884 pvec = &per_cpu(lru_deactivate_pvecs, cpu);
885 if (pagevec_count(pvec))
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700886 pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL);
Shaohua Lieb709b02011-05-24 17:12:55 -0700887
888 activate_page_drain(cpu);
Minchan Kim31560182011-03-22 16:32:52 -0700889}
890
891/**
892 * deactivate_page - forcefully deactivate a page
893 * @page: page to deactivate
894 *
895 * This function hints the VM that @page is a good reclaim candidate,
896 * for example if its invalidation fails due to the page being dirty
897 * or under writeback.
898 */
899void deactivate_page(struct page *page)
900{
Minchan Kim821ed6b2011-05-24 17:12:31 -0700901 /*
902 * In a workload with many unevictable page such as mprotect, unevictable
903 * page deactivation for accelerating reclaim is pointless.
904 */
905 if (PageUnevictable(page))
906 return;
907
Minchan Kim31560182011-03-22 16:32:52 -0700908 if (likely(get_page_unless_zero(page))) {
909 struct pagevec *pvec = &get_cpu_var(lru_deactivate_pvecs);
910
911 if (!pagevec_add(pvec, page))
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700912 pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL);
Minchan Kim31560182011-03-22 16:32:52 -0700913 put_cpu_var(lru_deactivate_pvecs);
914 }
Andrew Morton80bfed92006-01-06 00:11:14 -0800915}
916
917void lru_add_drain(void)
918{
Konstantin Khlebnikovf0cb3c72012-03-21 16:34:06 -0700919 lru_add_drain_cpu(get_cpu());
Andrew Morton80bfed92006-01-06 00:11:14 -0800920 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700921}
922
David Howellsc4028952006-11-22 14:57:56 +0000923static void lru_add_drain_per_cpu(struct work_struct *dummy)
Nick Piggin053837f2006-01-18 17:42:27 -0800924{
925 lru_add_drain();
926}
927
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700928static DEFINE_PER_CPU(struct work_struct, lru_add_drain_work);
929
930void lru_add_drain_all(void)
Nick Piggin053837f2006-01-18 17:42:27 -0800931{
Chris Metcalf5fbc4612013-09-12 15:13:55 -0700932 static DEFINE_MUTEX(lock);
933 static struct cpumask has_work;
934 int cpu;
935
936 mutex_lock(&lock);
937 get_online_cpus();
938 cpumask_clear(&has_work);
939
940 for_each_online_cpu(cpu) {
941 struct work_struct *work = &per_cpu(lru_add_drain_work, cpu);
942
943 if (pagevec_count(&per_cpu(lru_add_pvec, cpu)) ||
944 pagevec_count(&per_cpu(lru_rotate_pvecs, cpu)) ||
945 pagevec_count(&per_cpu(lru_deactivate_pvecs, cpu)) ||
946 need_activate_page_drain(cpu)) {
947 INIT_WORK(work, lru_add_drain_per_cpu);
948 schedule_work_on(cpu, work);
949 cpumask_set_cpu(cpu, &has_work);
950 }
951 }
952
953 for_each_cpu(cpu, &has_work)
954 flush_work(&per_cpu(lru_add_drain_work, cpu));
955
956 put_online_cpus();
957 mutex_unlock(&lock);
Nick Piggin053837f2006-01-18 17:42:27 -0800958}
959
Linus Torvalds1da177e2005-04-16 15:20:36 -0700960/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700961 * Batched page_cache_release(). Decrement the reference count on all the
962 * passed pages. If it fell to zero then remove the page from the LRU and
963 * free it.
964 *
965 * Avoid taking zone->lru_lock if possible, but if it is taken, retain it
966 * for the remainder of the operation.
967 *
Fernando Luis Vazquez Caoab33dc02008-07-29 22:33:40 -0700968 * The locking in this function is against shrink_inactive_list(): we recheck
969 * the page count inside the lock to see whether shrink_inactive_list()
970 * grabbed the page via the LRU. If it did, give up: shrink_inactive_list()
971 * will free it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 */
973void release_pages(struct page **pages, int nr, int cold)
974{
975 int i;
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -0800976 LIST_HEAD(pages_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700977 struct zone *zone = NULL;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700978 struct lruvec *lruvec;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700979 unsigned long uninitialized_var(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980
Linus Torvalds1da177e2005-04-16 15:20:36 -0700981 for (i = 0; i < nr; i++) {
982 struct page *page = pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
Nick Piggin8519fb32006-02-07 12:58:52 -0800984 if (unlikely(PageCompound(page))) {
985 if (zone) {
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700986 spin_unlock_irqrestore(&zone->lru_lock, flags);
Nick Piggin8519fb32006-02-07 12:58:52 -0800987 zone = NULL;
988 }
989 put_compound_page(page);
990 continue;
991 }
992
Nick Pigginb5810032005-10-29 18:16:12 -0700993 if (!put_page_testzero(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700994 continue;
995
Nick Piggin46453a62006-03-22 00:07:58 -0800996 if (PageLRU(page)) {
997 struct zone *pagezone = page_zone(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700998
Nick Piggin46453a62006-03-22 00:07:58 -0800999 if (pagezone != zone) {
1000 if (zone)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -07001001 spin_unlock_irqrestore(&zone->lru_lock,
1002 flags);
Nick Piggin46453a62006-03-22 00:07:58 -08001003 zone = pagezone;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -07001004 spin_lock_irqsave(&zone->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001005 }
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001006
1007 lruvec = mem_cgroup_page_lruvec(page, zone);
Sasha Levin309381fea2014-01-23 15:52:54 -08001008 VM_BUG_ON_PAGE(!PageLRU(page), page);
Nick Piggin67453912006-03-22 00:08:00 -08001009 __ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001010 del_page_from_lru_list(page, lruvec, page_off_lru(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07001011 }
Nick Piggin46453a62006-03-22 00:07:58 -08001012
Mel Gormanc53954a2013-07-03 15:02:34 -07001013 /* Clear Active bit in case of parallel mark_page_accessed */
1014 ClearPageActive(page);
1015
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -08001016 list_add(&page->lru, &pages_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 }
1018 if (zone)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -07001019 spin_unlock_irqrestore(&zone->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001020
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -08001021 free_hot_cold_page_list(&pages_to_free, cold);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022}
Miklos Szeredi0be85572010-10-27 15:34:46 -07001023EXPORT_SYMBOL(release_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001024
1025/*
1026 * The pages which we're about to release may be in the deferred lru-addition
1027 * queues. That would prevent them from really being freed right now. That's
1028 * OK from a correctness point of view but is inefficient - those pages may be
1029 * cache-warm and we want to give them back to the page allocator ASAP.
1030 *
1031 * So __pagevec_release() will drain those queues here. __pagevec_lru_add()
1032 * and __pagevec_lru_add_active() call release_pages() directly to avoid
1033 * mutual recursion.
1034 */
1035void __pagevec_release(struct pagevec *pvec)
1036{
1037 lru_add_drain();
1038 release_pages(pvec->pages, pagevec_count(pvec), pvec->cold);
1039 pagevec_reinit(pvec);
1040}
Steve French7f285702005-11-01 10:22:55 -08001041EXPORT_SYMBOL(__pagevec_release);
1042
Hugh Dickins12d27102012-01-12 17:19:52 -08001043#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001044/* used by __split_huge_page_refcount() */
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001045void lru_add_page_tail(struct page *page, struct page *page_tail,
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001046 struct lruvec *lruvec, struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001047{
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001048 const int file = 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001049
Sasha Levin309381fea2014-01-23 15:52:54 -08001050 VM_BUG_ON_PAGE(!PageHead(page), page);
1051 VM_BUG_ON_PAGE(PageCompound(page_tail), page);
1052 VM_BUG_ON_PAGE(PageLRU(page_tail), page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001053 VM_BUG_ON(NR_CPUS != 1 &&
1054 !spin_is_locked(&lruvec_zone(lruvec)->lru_lock));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001055
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001056 if (!list)
1057 SetPageLRU(page_tail);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001058
Hugh Dickins12d27102012-01-12 17:19:52 -08001059 if (likely(PageLRU(page)))
1060 list_add_tail(&page_tail->lru, &page->lru);
Shaohua Li5bc7b8a2013-04-29 15:08:36 -07001061 else if (list) {
1062 /* page reclaim is reclaiming a huge page */
1063 get_page(page_tail);
1064 list_add_tail(&page_tail->lru, list);
1065 } else {
Hugh Dickins12d27102012-01-12 17:19:52 -08001066 struct list_head *list_head;
1067 /*
1068 * Head page has not yet been counted, as an hpage,
1069 * so we must account for each subpage individually.
1070 *
1071 * Use the standard add function to put page_tail on the list,
1072 * but then correct its position so they all end up in order.
1073 */
Kirill A. Shutemove180cf82013-07-31 13:53:39 -07001074 add_page_to_lru_list(page_tail, lruvec, page_lru(page_tail));
Hugh Dickins12d27102012-01-12 17:19:52 -08001075 list_head = page_tail->lru.prev;
1076 list_move_tail(&page_tail->lru, list_head);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001077 }
Hugh Dickins75121022012-03-05 14:59:18 -08001078
1079 if (!PageUnevictable(page))
Kirill A. Shutemove180cf82013-07-31 13:53:39 -07001080 update_page_reclaim_stat(lruvec, file, PageActive(page_tail));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001081}
Hugh Dickins12d27102012-01-12 17:19:52 -08001082#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -08001083
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001084static void __pagevec_lru_add_fn(struct page *page, struct lruvec *lruvec,
1085 void *arg)
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001086{
Mel Gorman13f7f782013-07-03 15:02:28 -07001087 int file = page_is_file_cache(page);
1088 int active = PageActive(page);
1089 enum lru_list lru = page_lru(page);
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001090
Sasha Levin309381fea2014-01-23 15:52:54 -08001091 VM_BUG_ON_PAGE(PageLRU(page), page);
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001092
1093 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -07001094 add_page_to_lru_list(page, lruvec, lru);
1095 update_page_reclaim_stat(lruvec, file, active);
Mel Gormanc6286c92013-07-03 15:02:26 -07001096 trace_mm_lru_insertion(page, page_to_pfn(page), lru, trace_pagemap_flags(page));
Shaohua Li3dd7ae82011-03-22 16:33:45 -07001097}
1098
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001100 * Add the passed pages to the LRU, then drop the caller's refcount
1101 * on them. Reinitialises the caller's pagevec.
1102 */
Mel Gormana0b8cab32013-07-03 15:02:32 -07001103void __pagevec_lru_add(struct pagevec *pvec)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001104{
Mel Gormana0b8cab32013-07-03 15:02:32 -07001105 pagevec_lru_move_fn(pvec, __pagevec_lru_add_fn, NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001106}
Hugh Dickins5095ae832012-01-12 17:19:58 -08001107EXPORT_SYMBOL(__pagevec_lru_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001108
Linus Torvalds1da177e2005-04-16 15:20:36 -07001109/**
Johannes Weiner0cd61442014-04-03 14:47:46 -07001110 * pagevec_lookup_entries - gang pagecache lookup
1111 * @pvec: Where the resulting entries are placed
1112 * @mapping: The address_space to search
1113 * @start: The starting entry index
1114 * @nr_entries: The maximum number of entries
1115 * @indices: The cache indices corresponding to the entries in @pvec
1116 *
1117 * pagevec_lookup_entries() will search for and return a group of up
1118 * to @nr_entries pages and shadow entries in the mapping. All
1119 * entries are placed in @pvec. pagevec_lookup_entries() takes a
1120 * reference against actual pages in @pvec.
1121 *
1122 * The search returns a group of mapping-contiguous entries with
1123 * ascending indexes. There may be holes in the indices due to
1124 * not-present entries.
1125 *
1126 * pagevec_lookup_entries() returns the number of entries which were
1127 * found.
1128 */
1129unsigned pagevec_lookup_entries(struct pagevec *pvec,
1130 struct address_space *mapping,
1131 pgoff_t start, unsigned nr_pages,
1132 pgoff_t *indices)
1133{
1134 pvec->nr = find_get_entries(mapping, start, nr_pages,
1135 pvec->pages, indices);
1136 return pagevec_count(pvec);
1137}
1138
1139/**
1140 * pagevec_remove_exceptionals - pagevec exceptionals pruning
1141 * @pvec: The pagevec to prune
1142 *
1143 * pagevec_lookup_entries() fills both pages and exceptional radix
1144 * tree entries into the pagevec. This function prunes all
1145 * exceptionals from @pvec without leaving holes, so that it can be
1146 * passed on to page-only pagevec operations.
1147 */
1148void pagevec_remove_exceptionals(struct pagevec *pvec)
1149{
1150 int i, j;
1151
1152 for (i = 0, j = 0; i < pagevec_count(pvec); i++) {
1153 struct page *page = pvec->pages[i];
1154 if (!radix_tree_exceptional_entry(page))
1155 pvec->pages[j++] = page;
1156 }
1157 pvec->nr = j;
1158}
1159
1160/**
Linus Torvalds1da177e2005-04-16 15:20:36 -07001161 * pagevec_lookup - gang pagecache lookup
1162 * @pvec: Where the resulting pages are placed
1163 * @mapping: The address_space to search
1164 * @start: The starting page index
1165 * @nr_pages: The maximum number of pages
1166 *
1167 * pagevec_lookup() will search for and return a group of up to @nr_pages pages
1168 * in the mapping. The pages are placed in @pvec. pagevec_lookup() takes a
1169 * reference against the pages in @pvec.
1170 *
1171 * The search returns a group of mapping-contiguous pages with ascending
1172 * indexes. There may be holes in the indices due to not-present pages.
1173 *
1174 * pagevec_lookup() returns the number of pages which were found.
1175 */
1176unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
1177 pgoff_t start, unsigned nr_pages)
1178{
1179 pvec->nr = find_get_pages(mapping, start, nr_pages, pvec->pages);
1180 return pagevec_count(pvec);
1181}
Christoph Hellwig78539fd2006-01-11 20:47:41 +11001182EXPORT_SYMBOL(pagevec_lookup);
1183
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184unsigned pagevec_lookup_tag(struct pagevec *pvec, struct address_space *mapping,
1185 pgoff_t *index, int tag, unsigned nr_pages)
1186{
1187 pvec->nr = find_get_pages_tag(mapping, index, tag,
1188 nr_pages, pvec->pages);
1189 return pagevec_count(pvec);
1190}
Steve French7f285702005-11-01 10:22:55 -08001191EXPORT_SYMBOL(pagevec_lookup_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001192
Linus Torvalds1da177e2005-04-16 15:20:36 -07001193/*
1194 * Perform any setup for the swap system
1195 */
1196void __init swap_setup(void)
1197{
Jan Beulich44813742009-09-21 17:03:05 -07001198 unsigned long megs = totalram_pages >> (20 - PAGE_SHIFT);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001199#ifdef CONFIG_SWAP
Shaohua Li33806f02013-02-22 16:34:37 -08001200 int i;
1201
Mikulas Patocka8077c0d2013-10-14 12:14:13 -04001202 if (bdi_init(swapper_spaces[0].backing_dev_info))
1203 panic("Failed to init swap bdi");
Shaohua Li33806f02013-02-22 16:34:37 -08001204 for (i = 0; i < MAX_SWAPFILES; i++) {
1205 spin_lock_init(&swapper_spaces[i].tree_lock);
1206 INIT_LIST_HEAD(&swapper_spaces[i].i_mmap_nonlinear);
1207 }
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -07001208#endif
1209
Linus Torvalds1da177e2005-04-16 15:20:36 -07001210 /* Use a smaller cluster for small-memory machines */
1211 if (megs < 16)
1212 page_cluster = 2;
1213 else
1214 page_cluster = 3;
1215 /*
1216 * Right now other parts of the system means that we
1217 * _really_ don't want to cluster much more
1218 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001219}