blob: 351b1cbf3d95061dffc5e59b3a28b3ff32b00a3c [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>
Khalid Aziz09642082013-09-11 14:22:20 -070034#include <linux/hugetlb.h>
Ingo Molnar50f76d72009-07-03 08:29:51 -050035#include <linux/locallock.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070036
Lee Schermerhorn64d65192008-10-18 20:26:52 -070037#include "internal.h"
38
Linus Torvalds1da177e2005-04-16 15:20:36 -070039/* How many pages do we try to swap or page in/out together? */
40int page_cluster;
41
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -070042static DEFINE_PER_CPU(struct pagevec[NR_LRU_LISTS], lru_add_pvecs);
Vegard Nossumf84f95042008-07-23 21:28:14 -070043static DEFINE_PER_CPU(struct pagevec, lru_rotate_pvecs);
Minchan Kim31560182011-03-22 16:32:52 -070044static DEFINE_PER_CPU(struct pagevec, lru_deactivate_pvecs);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -070045
Ingo Molnar50f76d72009-07-03 08:29:51 -050046static DEFINE_LOCAL_IRQ_LOCK(rotate_lock);
47static DEFINE_LOCAL_IRQ_LOCK(swapvec_lock);
48
Adrian Bunkb2213852006-09-25 23:31:02 -070049/*
50 * This path almost never happens for VM activity - pages are normally
51 * freed via pagevecs. But it gets used by networking.
52 */
Harvey Harrison920c7a52008-02-04 22:29:26 -080053static void __page_cache_release(struct page *page)
Adrian Bunkb2213852006-09-25 23:31:02 -070054{
55 if (PageLRU(page)) {
Adrian Bunkb2213852006-09-25 23:31:02 -070056 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070057 struct lruvec *lruvec;
58 unsigned long flags;
Adrian Bunkb2213852006-09-25 23:31:02 -070059
60 spin_lock_irqsave(&zone->lru_lock, flags);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070061 lruvec = mem_cgroup_page_lruvec(page, zone);
Adrian Bunkb2213852006-09-25 23:31:02 -070062 VM_BUG_ON(!PageLRU(page));
63 __ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -070064 del_page_from_lru_list(page, lruvec, page_off_lru(page));
Adrian Bunkb2213852006-09-25 23:31:02 -070065 spin_unlock_irqrestore(&zone->lru_lock, flags);
66 }
Andrea Arcangeli91807062011-01-13 15:46:32 -080067}
68
69static void __put_single_page(struct page *page)
70{
71 __page_cache_release(page);
Li Hongfc916682010-03-05 13:41:54 -080072 free_hot_cold_page(page, 0);
Adrian Bunkb2213852006-09-25 23:31:02 -070073}
74
Andrea Arcangeli91807062011-01-13 15:46:32 -080075static void __put_compound_page(struct page *page)
76{
77 compound_page_dtor *dtor;
78
79 __page_cache_release(page);
80 dtor = get_compound_page_dtor(page);
81 (*dtor)(page);
82}
83
Nick Piggin8519fb32006-02-07 12:58:52 -080084static void put_compound_page(struct page *page)
85{
Andrea Arcangeli91807062011-01-13 15:46:32 -080086 if (unlikely(PageTail(page))) {
87 /* __split_huge_page_refcount can run under us */
David Rientjesdef52ac2014-03-03 15:38:18 -080088 struct page *page_head = compound_head(page);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -070089
90 if (likely(page != page_head &&
91 get_page_unless_zero(page_head))) {
Andrea Arcangeli91807062011-01-13 15:46:32 -080092 unsigned long flags;
Pravin B Shelar5bf5f032012-05-29 15:06:49 -070093
94 /*
95 * THP can not break up slab pages so avoid taking
96 * compound_lock(). Slab performs non-atomic bit ops
97 * on page->flags for better performance. In particular
98 * slab_unlock() in slub used to be a hot path. It is
99 * still hot on arches that do not support
100 * this_cpu_cmpxchg_double().
101 */
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800102 if (PageSlab(page_head) || PageHeadHuge(page_head)) {
103 if (likely(PageTail(page))) {
104 /*
105 * __split_huge_page_refcount
106 * cannot race here.
107 */
108 VM_BUG_ON(!PageHead(page_head));
109 atomic_dec(&page->_mapcount);
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700110 if (put_page_testzero(page_head))
111 VM_BUG_ON(1);
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800112 if (put_page_testzero(page_head))
113 __put_compound_page(page_head);
114 return;
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700115 } else
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800116 /*
117 * __split_huge_page_refcount
118 * run before us, "page" was a
119 * THP tail. The split
120 * page_head has been freed
121 * and reallocated as slab or
122 * hugetlbfs page of smaller
123 * order (only possible if
124 * reallocated as slab on
125 * x86).
126 */
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700127 goto skip_lock;
128 }
Andrea Arcangeli91807062011-01-13 15:46:32 -0800129 /*
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700130 * page_head wasn't a dangling pointer but it
131 * may not be a head page anymore by the time
132 * we obtain the lock. That is ok as long as it
133 * can't be freed from under us.
Andrea Arcangeli91807062011-01-13 15:46:32 -0800134 */
Andrea Arcangeli91807062011-01-13 15:46:32 -0800135 flags = compound_lock_irqsave(page_head);
136 if (unlikely(!PageTail(page))) {
137 /* __split_huge_page_refcount run before us */
138 compound_unlock_irqrestore(page_head, flags);
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700139skip_lock:
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800140 if (put_page_testzero(page_head)) {
141 /*
142 * The head page may have been
143 * freed and reallocated as a
144 * compound page of smaller
145 * order and then freed again.
146 * All we know is that it
147 * cannot have become: a THP
148 * page, a compound page of
149 * higher order, a tail page.
150 * That is because we still
151 * hold the refcount of the
152 * split THP tail and
153 * page_head was the THP head
154 * before the split.
155 */
156 if (PageHead(page_head))
157 __put_compound_page(page_head);
158 else
159 __put_single_page(page_head);
160 }
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700161out_put_single:
Andrea Arcangeli91807062011-01-13 15:46:32 -0800162 if (put_page_testzero(page))
163 __put_single_page(page);
164 return;
165 }
166 VM_BUG_ON(page_head != page->first_page);
167 /*
168 * We can release the refcount taken by
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700169 * get_page_unless_zero() now that
170 * __split_huge_page_refcount() is blocked on
171 * the compound_lock.
Andrea Arcangeli91807062011-01-13 15:46:32 -0800172 */
173 if (put_page_testzero(page_head))
174 VM_BUG_ON(1);
175 /* __split_huge_page_refcount will wait now */
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700176 VM_BUG_ON(page_mapcount(page) <= 0);
177 atomic_dec(&page->_mapcount);
Andrea Arcangeli91807062011-01-13 15:46:32 -0800178 VM_BUG_ON(atomic_read(&page_head->_count) <= 0);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700179 VM_BUG_ON(atomic_read(&page->_count) != 0);
Andrea Arcangeli91807062011-01-13 15:46:32 -0800180 compound_unlock_irqrestore(page_head, flags);
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700181
Andrea Arcangelia95a82e2011-01-13 15:46:33 -0800182 if (put_page_testzero(page_head)) {
183 if (PageHead(page_head))
184 __put_compound_page(page_head);
185 else
186 __put_single_page(page_head);
187 }
Andrea Arcangeli91807062011-01-13 15:46:32 -0800188 } else {
189 /* page_head is a dangling pointer */
190 VM_BUG_ON(PageTail(page));
191 goto out_put_single;
192 }
193 } else if (put_page_testzero(page)) {
194 if (PageHead(page))
195 __put_compound_page(page);
196 else
197 __put_single_page(page);
Nick Piggin8519fb32006-02-07 12:58:52 -0800198 }
199}
200
Linus Torvalds1da177e2005-04-16 15:20:36 -0700201void put_page(struct page *page)
202{
Nick Piggin8519fb32006-02-07 12:58:52 -0800203 if (unlikely(PageCompound(page)))
204 put_compound_page(page);
205 else if (put_page_testzero(page))
Andrea Arcangeli91807062011-01-13 15:46:32 -0800206 __put_single_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700207}
208EXPORT_SYMBOL(put_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700209
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700210/*
211 * This function is exported but must not be called by anything other
212 * than get_page(). It implements the slow path of get_page().
213 */
214bool __get_page_tail(struct page *page)
215{
216 /*
217 * This takes care of get_page() if run on a tail page
218 * returned by one of the get_user_pages/follow_page variants.
219 * get_user_pages/follow_page itself doesn't need the compound
220 * lock because it runs __get_page_tail_foll() under the
221 * proper PT lock that already serializes against
222 * split_huge_page().
223 */
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800224 unsigned long flags;
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700225 bool got = false;
David Rientjesdef52ac2014-03-03 15:38:18 -0800226 struct page *page_head = compound_head(page);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700227
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800228 if (likely(page != page_head && get_page_unless_zero(page_head))) {
229 /* Ref to put_compound_page() comment. */
230 if (PageSlab(page_head) || PageHeadHuge(page_head)) {
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700231 if (likely(PageTail(page))) {
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800232 /*
233 * This is a hugetlbfs page or a slab
234 * page. __split_huge_page_refcount
235 * cannot race here.
236 */
237 VM_BUG_ON(!PageHead(page_head));
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700238 __get_page_tail_foll(page, false);
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800239 return true;
240 } else {
241 /*
242 * __split_huge_page_refcount run
243 * before us, "page" was a THP
244 * tail. The split page_head has been
245 * freed and reallocated as slab or
246 * hugetlbfs page of smaller order
247 * (only possible if reallocated as
248 * slab on x86).
249 */
Khalid Aziz09642082013-09-11 14:22:20 -0700250 put_page(page_head);
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800251 return false;
252 }
Pravin B Shelar5bf5f032012-05-29 15:06:49 -0700253 }
Andrea Arcangeli17b6ada2013-11-21 14:32:02 -0800254
255 /*
256 * page_head wasn't a dangling pointer but it
257 * may not be a head page anymore by the time
258 * we obtain the lock. That is ok as long as it
259 * can't be freed from under us.
260 */
261 flags = compound_lock_irqsave(page_head);
262 /* here __split_huge_page_refcount won't run anymore */
263 if (likely(PageTail(page))) {
264 __get_page_tail_foll(page, false);
265 got = true;
266 }
267 compound_unlock_irqrestore(page_head, flags);
268 if (unlikely(!got))
269 put_page(page_head);
Andrea Arcangeli70b50f92011-11-02 13:36:59 -0700270 }
271 return got;
272}
273EXPORT_SYMBOL(__get_page_tail);
274
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700275/**
Randy Dunlap76824862008-03-19 17:00:40 -0700276 * put_pages_list() - release a list of pages
277 * @pages: list of pages threaded on page->lru
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700278 *
279 * Release a list of pages which are strung together on page.lru. Currently
280 * used by read_cache_pages() and related error recovery code.
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -0700281 */
282void put_pages_list(struct list_head *pages)
283{
284 while (!list_empty(pages)) {
285 struct page *victim;
286
287 victim = list_entry(pages->prev, struct page, lru);
288 list_del(&victim->lru);
289 page_cache_release(victim);
290 }
291}
292EXPORT_SYMBOL(put_pages_list);
293
Mel Gorman18022c52012-07-31 16:44:51 -0700294/*
295 * get_kernel_pages() - pin kernel pages in memory
296 * @kiov: An array of struct kvec structures
297 * @nr_segs: number of segments to pin
298 * @write: pinning for read/write, currently ignored
299 * @pages: array that receives pointers to the pages pinned.
300 * Should be at least nr_segs long.
301 *
302 * Returns number of pages pinned. This may be fewer than the number
303 * requested. If nr_pages is 0 or negative, returns 0. If no pages
304 * were pinned, returns -errno. Each page returned must be released
305 * with a put_page() call when it is finished with.
306 */
307int get_kernel_pages(const struct kvec *kiov, int nr_segs, int write,
308 struct page **pages)
309{
310 int seg;
311
312 for (seg = 0; seg < nr_segs; seg++) {
313 if (WARN_ON(kiov[seg].iov_len != PAGE_SIZE))
314 return seg;
315
Mel Gorman5a178112012-07-31 16:45:02 -0700316 pages[seg] = kmap_to_page(kiov[seg].iov_base);
Mel Gorman18022c52012-07-31 16:44:51 -0700317 page_cache_get(pages[seg]);
318 }
319
320 return seg;
321}
322EXPORT_SYMBOL_GPL(get_kernel_pages);
323
324/*
325 * get_kernel_page() - pin a kernel page in memory
326 * @start: starting kernel address
327 * @write: pinning for read/write, currently ignored
328 * @pages: array that receives pointer to the page pinned.
329 * Must be at least nr_segs long.
330 *
331 * Returns 1 if page is pinned. If the page was not pinned, returns
332 * -errno. The page returned must be released with a put_page() call
333 * when it is finished with.
334 */
335int get_kernel_page(unsigned long start, int write, struct page **pages)
336{
337 const struct kvec kiov = {
338 .iov_base = (void *)start,
339 .iov_len = PAGE_SIZE
340 };
341
342 return get_kernel_pages(&kiov, 1, write, pages);
343}
344EXPORT_SYMBOL_GPL(get_kernel_page);
345
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700346static void pagevec_lru_move_fn(struct pagevec *pvec,
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700347 void (*move_fn)(struct page *page, struct lruvec *lruvec, void *arg),
348 void *arg)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700349{
350 int i;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700351 struct zone *zone = NULL;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700352 struct lruvec *lruvec;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700353 unsigned long flags = 0;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700354
355 for (i = 0; i < pagevec_count(pvec); i++) {
356 struct page *page = pvec->pages[i];
357 struct zone *pagezone = page_zone(page);
358
359 if (pagezone != zone) {
360 if (zone)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700361 spin_unlock_irqrestore(&zone->lru_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700362 zone = pagezone;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700363 spin_lock_irqsave(&zone->lru_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700364 }
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700365
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700366 lruvec = mem_cgroup_page_lruvec(page, zone);
367 (*move_fn)(page, lruvec, arg);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700368 }
369 if (zone)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700370 spin_unlock_irqrestore(&zone->lru_lock, flags);
Linus Torvalds83896fb2011-01-17 14:42:34 -0800371 release_pages(pvec->pages, pvec->nr, pvec->cold);
372 pagevec_reinit(pvec);
Shaohua Lid8505de2011-01-13 15:47:33 -0800373}
374
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700375static void pagevec_move_tail_fn(struct page *page, struct lruvec *lruvec,
376 void *arg)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700377{
378 int *pgmoved = arg;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700379
380 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
381 enum lru_list lru = page_lru_base_type(page);
Johannes Weiner925b7672012-01-12 17:18:15 -0800382 list_move_tail(&page->lru, &lruvec->lists[lru]);
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700383 (*pgmoved)++;
384 }
385}
386
387/*
388 * pagevec_move_tail() must be called with IRQ disabled.
389 * Otherwise this may cause nasty races.
390 */
391static void pagevec_move_tail(struct pagevec *pvec)
392{
393 int pgmoved = 0;
394
395 pagevec_lru_move_fn(pvec, pagevec_move_tail_fn, &pgmoved);
396 __count_vm_events(PGROTATED, pgmoved);
397}
398
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700399/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700400 * Writeback is about to end against a page which has been marked for immediate
401 * reclaim. If it still appears to be reclaimable, move it to the tail of the
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700402 * inactive list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700403 */
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700404void rotate_reclaimable_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405{
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700406 if (!PageLocked(page) && !PageDirty(page) && !PageActive(page) &&
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700407 !PageUnevictable(page) && PageLRU(page)) {
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700408 struct pagevec *pvec;
409 unsigned long flags;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700411 page_cache_get(page);
Ingo Molnar50f76d72009-07-03 08:29:51 -0500412 local_lock_irqsave(rotate_lock, flags);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700413 pvec = &__get_cpu_var(lru_rotate_pvecs);
414 if (!pagevec_add(pvec, page))
415 pagevec_move_tail(pvec);
Ingo Molnar50f76d72009-07-03 08:29:51 -0500416 local_unlock_irqrestore(rotate_lock, flags);
Miklos Szerediac6aadb2008-04-28 02:12:38 -0700417 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700418}
419
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700420static void update_page_reclaim_stat(struct lruvec *lruvec,
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800421 int file, int rotated)
422{
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700423 struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800424
425 reclaim_stat->recent_scanned[file]++;
426 if (rotated)
427 reclaim_stat->recent_rotated[file]++;
KOSAKI Motohiro3e2f41f2009-01-07 18:08:20 -0800428}
429
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700430static void __activate_page(struct page *page, struct lruvec *lruvec,
431 void *arg)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700432{
Linus Torvalds7a608572011-01-17 14:42:19 -0800433 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
434 int file = page_is_file_cache(page);
435 int lru = page_lru_base_type(page);
Linus Torvalds7a608572011-01-17 14:42:19 -0800436
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700437 del_page_from_lru_list(page, lruvec, lru);
Linus Torvalds7a608572011-01-17 14:42:19 -0800438 SetPageActive(page);
439 lru += LRU_ACTIVE;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700440 add_page_to_lru_list(page, lruvec, lru);
Linus Torvalds7a608572011-01-17 14:42:19 -0800441
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700442 __count_vm_event(PGACTIVATE);
443 update_page_reclaim_stat(lruvec, file, 1);
Linus Torvalds7a608572011-01-17 14:42:19 -0800444 }
Shaohua Lieb709b02011-05-24 17:12:55 -0700445}
446
447#ifdef CONFIG_SMP
448static DEFINE_PER_CPU(struct pagevec, activate_page_pvecs);
449
450static void activate_page_drain(int cpu)
451{
452 struct pagevec *pvec = &per_cpu(activate_page_pvecs, cpu);
453
454 if (pagevec_count(pvec))
455 pagevec_lru_move_fn(pvec, __activate_page, NULL);
456}
457
458void activate_page(struct page *page)
459{
460 if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) {
Ingo Molnar50f76d72009-07-03 08:29:51 -0500461 struct pagevec *pvec = &get_locked_var(swapvec_lock,
462 activate_page_pvecs);
Shaohua Lieb709b02011-05-24 17:12:55 -0700463
464 page_cache_get(page);
465 if (!pagevec_add(pvec, page))
466 pagevec_lru_move_fn(pvec, __activate_page, NULL);
Ingo Molnar50f76d72009-07-03 08:29:51 -0500467 put_locked_var(swapvec_lock, activate_page_pvecs);
Shaohua Lieb709b02011-05-24 17:12:55 -0700468 }
469}
470
471#else
472static inline void activate_page_drain(int cpu)
473{
474}
475
476void activate_page(struct page *page)
477{
478 struct zone *zone = page_zone(page);
479
480 spin_lock_irq(&zone->lru_lock);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700481 __activate_page(page, mem_cgroup_page_lruvec(page, zone), NULL);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700482 spin_unlock_irq(&zone->lru_lock);
483}
Shaohua Lieb709b02011-05-24 17:12:55 -0700484#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700485
486/*
487 * Mark a page as having seen activity.
488 *
489 * inactive,unreferenced -> inactive,referenced
490 * inactive,referenced -> active,unreferenced
491 * active,unreferenced -> active,referenced
492 */
Harvey Harrison920c7a52008-02-04 22:29:26 -0800493void mark_page_accessed(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700494{
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700495 if (!PageActive(page) && !PageUnevictable(page) &&
496 PageReferenced(page) && PageLRU(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700497 activate_page(page);
498 ClearPageReferenced(page);
499 } else if (!PageReferenced(page)) {
500 SetPageReferenced(page);
501 }
502}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700503EXPORT_SYMBOL(mark_page_accessed);
504
Robin Dongd741c9c2012-10-08 16:29:05 -0700505/*
506 * Order of operations is important: flush the pagevec when it's already
507 * full, not when adding the last page, to make sure that last page is
508 * not added to the LRU directly when passed to this function. Because
509 * mark_page_accessed() (called after this when writing) only activates
510 * pages that are on the LRU, linear writes in subpage chunks would see
511 * every PAGEVEC_SIZE page activated, which is unexpected.
512 */
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700513void __lru_cache_add(struct page *page, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700514{
Ingo Molnar50f76d72009-07-03 08:29:51 -0500515 struct pagevec *pvec = &get_locked_var(swapvec_lock, lru_add_pvecs)[lru];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700516
517 page_cache_get(page);
Robin Dongd741c9c2012-10-08 16:29:05 -0700518 if (!pagevec_space(pvec))
Hugh Dickins5095ae832012-01-12 17:19:58 -0800519 __pagevec_lru_add(pvec, lru);
Robin Dongd741c9c2012-10-08 16:29:05 -0700520 pagevec_add(pvec, page);
Ingo Molnar50f76d72009-07-03 08:29:51 -0500521 put_locked_var(swapvec_lock, lru_add_pvecs);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522}
Miklos Szeredi47846b02010-05-25 15:06:06 +0200523EXPORT_SYMBOL(__lru_cache_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700525/**
526 * lru_cache_add_lru - add a page to a page list
527 * @page: the page to be added to the LRU.
528 * @lru: the LRU list to which the page is added.
529 */
530void lru_cache_add_lru(struct page *page, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700531{
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700532 if (PageActive(page)) {
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700533 VM_BUG_ON(PageUnevictable(page));
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700534 ClearPageActive(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700535 } else if (PageUnevictable(page)) {
536 VM_BUG_ON(PageActive(page));
537 ClearPageUnevictable(page);
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700538 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700539
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700540 VM_BUG_ON(PageLRU(page) || PageActive(page) || PageUnevictable(page));
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700541 __lru_cache_add(page, lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700542}
543
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700544/**
545 * add_page_to_unevictable_list - add a page to the unevictable list
546 * @page: the page to be added to the unevictable list
547 *
548 * Add page directly to its zone's unevictable list. To avoid races with
549 * tasks that might be making the page evictable, through eg. munlock,
550 * munmap or exit, while it's not on the lru, we want to add the page
551 * while it's locked or otherwise "invisible" to other tasks. This is
552 * difficult to do when using the pagevec cache, so bypass that.
553 */
554void add_page_to_unevictable_list(struct page *page)
555{
556 struct zone *zone = page_zone(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700557 struct lruvec *lruvec;
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700558
559 spin_lock_irq(&zone->lru_lock);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700560 lruvec = mem_cgroup_page_lruvec(page, zone);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700561 SetPageUnevictable(page);
562 SetPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700563 add_page_to_lru_list(page, lruvec, LRU_UNEVICTABLE);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700564 spin_unlock_irq(&zone->lru_lock);
565}
566
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700567/*
Minchan Kim31560182011-03-22 16:32:52 -0700568 * If the page can not be invalidated, it is moved to the
569 * inactive list to speed up its reclaim. It is moved to the
570 * head of the list, rather than the tail, to give the flusher
571 * threads some time to write it out, as this is much more
572 * effective than the single-page writeout from reclaim.
Minchan Kim278df9f2011-03-22 16:32:54 -0700573 *
574 * If the page isn't page_mapped and dirty/writeback, the page
575 * could reclaim asap using PG_reclaim.
576 *
577 * 1. active, mapped page -> none
578 * 2. active, dirty/writeback page -> inactive, head, PG_reclaim
579 * 3. inactive, mapped page -> none
580 * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim
581 * 5. inactive, clean -> inactive, tail
582 * 6. Others -> none
583 *
584 * In 4, why it moves inactive's head, the VM expects the page would
585 * be write it out by flusher threads as this is much more effective
586 * than the single-page writeout from reclaim.
Minchan Kim31560182011-03-22 16:32:52 -0700587 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700588static void lru_deactivate_fn(struct page *page, struct lruvec *lruvec,
589 void *arg)
Minchan Kim31560182011-03-22 16:32:52 -0700590{
591 int lru, file;
Minchan Kim278df9f2011-03-22 16:32:54 -0700592 bool active;
Minchan Kim31560182011-03-22 16:32:52 -0700593
Minchan Kim278df9f2011-03-22 16:32:54 -0700594 if (!PageLRU(page))
Minchan Kim31560182011-03-22 16:32:52 -0700595 return;
596
Minchan Kimbad49d92011-05-11 15:13:30 -0700597 if (PageUnevictable(page))
598 return;
599
Minchan Kim31560182011-03-22 16:32:52 -0700600 /* Some processes are using the page */
601 if (page_mapped(page))
602 return;
603
Minchan Kim278df9f2011-03-22 16:32:54 -0700604 active = PageActive(page);
Minchan Kim31560182011-03-22 16:32:52 -0700605 file = page_is_file_cache(page);
606 lru = page_lru_base_type(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700607
608 del_page_from_lru_list(page, lruvec, lru + active);
Minchan Kim31560182011-03-22 16:32:52 -0700609 ClearPageActive(page);
610 ClearPageReferenced(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700611 add_page_to_lru_list(page, lruvec, lru);
Minchan Kim31560182011-03-22 16:32:52 -0700612
Minchan Kim278df9f2011-03-22 16:32:54 -0700613 if (PageWriteback(page) || PageDirty(page)) {
614 /*
615 * PG_reclaim could be raced with end_page_writeback
616 * It can make readahead confusing. But race window
617 * is _really_ small and it's non-critical problem.
618 */
619 SetPageReclaim(page);
620 } else {
621 /*
622 * The page's writeback ends up during pagevec
623 * We moves tha page into tail of inactive.
624 */
Johannes Weiner925b7672012-01-12 17:18:15 -0800625 list_move_tail(&page->lru, &lruvec->lists[lru]);
Minchan Kim278df9f2011-03-22 16:32:54 -0700626 __count_vm_event(PGROTATED);
627 }
628
629 if (active)
630 __count_vm_event(PGDEACTIVATE);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700631 update_page_reclaim_stat(lruvec, file, 0);
Minchan Kim31560182011-03-22 16:32:52 -0700632}
633
Minchan Kim31560182011-03-22 16:32:52 -0700634/*
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700635 * Drain pages out of the cpu's pagevecs.
636 * Either "cpu" is the current CPU, and preemption has already been
637 * disabled; or "cpu" is being hot-unplugged, and is already dead.
638 */
Konstantin Khlebnikovf0cb3c72012-03-21 16:34:06 -0700639void lru_add_drain_cpu(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700640{
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700641 struct pagevec *pvecs = per_cpu(lru_add_pvecs, cpu);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700642 struct pagevec *pvec;
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700643 int lru;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700645 for_each_lru(lru) {
646 pvec = &pvecs[lru - LRU_BASE];
647 if (pagevec_count(pvec))
Hugh Dickins5095ae832012-01-12 17:19:58 -0800648 __pagevec_lru_add(pvec, lru);
KOSAKI Motohirof04e9eb2008-10-18 20:26:19 -0700649 }
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700650
651 pvec = &per_cpu(lru_rotate_pvecs, cpu);
652 if (pagevec_count(pvec)) {
653 unsigned long flags;
654
655 /* No harm done if a racing interrupt already did this */
Ingo Molnar50f76d72009-07-03 08:29:51 -0500656 local_lock_irqsave(rotate_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700657 pagevec_move_tail(pvec);
Ingo Molnar50f76d72009-07-03 08:29:51 -0500658 local_unlock_irqrestore(rotate_lock, flags);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700659 }
Minchan Kim31560182011-03-22 16:32:52 -0700660
661 pvec = &per_cpu(lru_deactivate_pvecs, cpu);
662 if (pagevec_count(pvec))
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700663 pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL);
Shaohua Lieb709b02011-05-24 17:12:55 -0700664
665 activate_page_drain(cpu);
Minchan Kim31560182011-03-22 16:32:52 -0700666}
667
668/**
669 * deactivate_page - forcefully deactivate a page
670 * @page: page to deactivate
671 *
672 * This function hints the VM that @page is a good reclaim candidate,
673 * for example if its invalidation fails due to the page being dirty
674 * or under writeback.
675 */
676void deactivate_page(struct page *page)
677{
Minchan Kim821ed6b2011-05-24 17:12:31 -0700678 /*
679 * In a workload with many unevictable page such as mprotect, unevictable
680 * page deactivation for accelerating reclaim is pointless.
681 */
682 if (PageUnevictable(page))
683 return;
684
Minchan Kim31560182011-03-22 16:32:52 -0700685 if (likely(get_page_unless_zero(page))) {
Ingo Molnar50f76d72009-07-03 08:29:51 -0500686 struct pagevec *pvec = &get_locked_var(swapvec_lock,
687 lru_deactivate_pvecs);
Minchan Kim31560182011-03-22 16:32:52 -0700688
689 if (!pagevec_add(pvec, page))
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700690 pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL);
Ingo Molnar50f76d72009-07-03 08:29:51 -0500691 put_locked_var(swapvec_lock, lru_deactivate_pvecs);
Minchan Kim31560182011-03-22 16:32:52 -0700692 }
Andrew Morton80bfed92006-01-06 00:11:14 -0800693}
694
695void lru_add_drain(void)
696{
Ingo Molnar50f76d72009-07-03 08:29:51 -0500697 lru_add_drain_cpu(local_lock_cpu(swapvec_lock));
698 local_unlock_cpu(swapvec_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700699}
700
David Howellsc4028952006-11-22 14:57:56 +0000701static void lru_add_drain_per_cpu(struct work_struct *dummy)
Nick Piggin053837f2006-01-18 17:42:27 -0800702{
703 lru_add_drain();
704}
705
706/*
707 * Returns 0 for success
708 */
709int lru_add_drain_all(void)
710{
David Howellsc4028952006-11-22 14:57:56 +0000711 return schedule_on_each_cpu(lru_add_drain_per_cpu);
Nick Piggin053837f2006-01-18 17:42:27 -0800712}
713
Linus Torvalds1da177e2005-04-16 15:20:36 -0700714/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 * Batched page_cache_release(). Decrement the reference count on all the
716 * passed pages. If it fell to zero then remove the page from the LRU and
717 * free it.
718 *
719 * Avoid taking zone->lru_lock if possible, but if it is taken, retain it
720 * for the remainder of the operation.
721 *
Fernando Luis Vazquez Caoab33dc02008-07-29 22:33:40 -0700722 * The locking in this function is against shrink_inactive_list(): we recheck
723 * the page count inside the lock to see whether shrink_inactive_list()
724 * grabbed the page via the LRU. If it did, give up: shrink_inactive_list()
725 * will free it.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 */
727void release_pages(struct page **pages, int nr, int cold)
728{
729 int i;
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -0800730 LIST_HEAD(pages_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700731 struct zone *zone = NULL;
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700732 struct lruvec *lruvec;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700733 unsigned long uninitialized_var(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700734
Linus Torvalds1da177e2005-04-16 15:20:36 -0700735 for (i = 0; i < nr; i++) {
736 struct page *page = pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700737
Nick Piggin8519fb32006-02-07 12:58:52 -0800738 if (unlikely(PageCompound(page))) {
739 if (zone) {
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700740 spin_unlock_irqrestore(&zone->lru_lock, flags);
Nick Piggin8519fb32006-02-07 12:58:52 -0800741 zone = NULL;
742 }
743 put_compound_page(page);
744 continue;
745 }
746
Nick Pigginb5810032005-10-29 18:16:12 -0700747 if (!put_page_testzero(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700748 continue;
749
Nick Piggin46453a62006-03-22 00:07:58 -0800750 if (PageLRU(page)) {
751 struct zone *pagezone = page_zone(page);
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700752
Nick Piggin46453a62006-03-22 00:07:58 -0800753 if (pagezone != zone) {
754 if (zone)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700755 spin_unlock_irqrestore(&zone->lru_lock,
756 flags);
Nick Piggin46453a62006-03-22 00:07:58 -0800757 zone = pagezone;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700758 spin_lock_irqsave(&zone->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700759 }
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700760
761 lruvec = mem_cgroup_page_lruvec(page, zone);
Nick Piggin725d7042006-09-25 23:30:55 -0700762 VM_BUG_ON(!PageLRU(page));
Nick Piggin67453912006-03-22 00:08:00 -0800763 __ClearPageLRU(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700764 del_page_from_lru_list(page, lruvec, page_off_lru(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700765 }
Nick Piggin46453a62006-03-22 00:07:58 -0800766
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -0800767 list_add(&page->lru, &pages_to_free);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700768 }
769 if (zone)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700770 spin_unlock_irqrestore(&zone->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700771
Konstantin Khlebnikovcc598502012-01-10 15:07:04 -0800772 free_hot_cold_page_list(&pages_to_free, cold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700773}
Miklos Szeredi0be85572010-10-27 15:34:46 -0700774EXPORT_SYMBOL(release_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700775
776/*
777 * The pages which we're about to release may be in the deferred lru-addition
778 * queues. That would prevent them from really being freed right now. That's
779 * OK from a correctness point of view but is inefficient - those pages may be
780 * cache-warm and we want to give them back to the page allocator ASAP.
781 *
782 * So __pagevec_release() will drain those queues here. __pagevec_lru_add()
783 * and __pagevec_lru_add_active() call release_pages() directly to avoid
784 * mutual recursion.
785 */
786void __pagevec_release(struct pagevec *pvec)
787{
788 lru_add_drain();
789 release_pages(pvec->pages, pagevec_count(pvec), pvec->cold);
790 pagevec_reinit(pvec);
791}
Steve French7f285702005-11-01 10:22:55 -0800792EXPORT_SYMBOL(__pagevec_release);
793
Hugh Dickins12d27102012-01-12 17:19:52 -0800794#ifdef CONFIG_TRANSPARENT_HUGEPAGE
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800795/* used by __split_huge_page_refcount() */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700796void lru_add_page_tail(struct page *page, struct page *page_tail,
Shaohua Li5bc7b8a2013-04-29 15:08:36 -0700797 struct lruvec *lruvec, struct list_head *list)
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800798{
Hugh Dickins75121022012-03-05 14:59:18 -0800799 int uninitialized_var(active);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800800 enum lru_list lru;
801 const int file = 0;
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800802
803 VM_BUG_ON(!PageHead(page));
804 VM_BUG_ON(PageCompound(page_tail));
805 VM_BUG_ON(PageLRU(page_tail));
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700806 VM_BUG_ON(NR_CPUS != 1 &&
807 !spin_is_locked(&lruvec_zone(lruvec)->lru_lock));
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800808
Shaohua Li5bc7b8a2013-04-29 15:08:36 -0700809 if (!list)
810 SetPageLRU(page_tail);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800811
Hugh Dickins39b5f292012-10-08 16:33:18 -0700812 if (page_evictable(page_tail)) {
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800813 if (PageActive(page)) {
814 SetPageActive(page_tail);
815 active = 1;
816 lru = LRU_ACTIVE_ANON;
817 } else {
818 active = 0;
819 lru = LRU_INACTIVE_ANON;
820 }
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800821 } else {
822 SetPageUnevictable(page_tail);
Hugh Dickins12d27102012-01-12 17:19:52 -0800823 lru = LRU_UNEVICTABLE;
824 }
825
826 if (likely(PageLRU(page)))
827 list_add_tail(&page_tail->lru, &page->lru);
Shaohua Li5bc7b8a2013-04-29 15:08:36 -0700828 else if (list) {
829 /* page reclaim is reclaiming a huge page */
830 get_page(page_tail);
831 list_add_tail(&page_tail->lru, list);
832 } else {
Hugh Dickins12d27102012-01-12 17:19:52 -0800833 struct list_head *list_head;
834 /*
835 * Head page has not yet been counted, as an hpage,
836 * so we must account for each subpage individually.
837 *
838 * Use the standard add function to put page_tail on the list,
839 * but then correct its position so they all end up in order.
840 */
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700841 add_page_to_lru_list(page_tail, lruvec, lru);
Hugh Dickins12d27102012-01-12 17:19:52 -0800842 list_head = page_tail->lru.prev;
843 list_move_tail(&page_tail->lru, list_head);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800844 }
Hugh Dickins75121022012-03-05 14:59:18 -0800845
846 if (!PageUnevictable(page))
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700847 update_page_reclaim_stat(lruvec, file, active);
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800848}
Hugh Dickins12d27102012-01-12 17:19:52 -0800849#endif /* CONFIG_TRANSPARENT_HUGEPAGE */
Andrea Arcangeli71e3aac2011-01-13 15:46:52 -0800850
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700851static void __pagevec_lru_add_fn(struct page *page, struct lruvec *lruvec,
852 void *arg)
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700853{
854 enum lru_list lru = (enum lru_list)arg;
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700855 int file = is_file_lru(lru);
856 int active = is_active_lru(lru);
857
858 VM_BUG_ON(PageActive(page));
859 VM_BUG_ON(PageUnevictable(page));
860 VM_BUG_ON(PageLRU(page));
861
862 SetPageLRU(page);
863 if (active)
864 SetPageActive(page);
Hugh Dickinsfa9add62012-05-29 15:07:09 -0700865 add_page_to_lru_list(page, lruvec, lru);
866 update_page_reclaim_stat(lruvec, file, active);
Shaohua Li3dd7ae82011-03-22 16:33:45 -0700867}
868
Linus Torvalds1da177e2005-04-16 15:20:36 -0700869/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700870 * Add the passed pages to the LRU, then drop the caller's refcount
871 * on them. Reinitialises the caller's pagevec.
872 */
Hugh Dickins5095ae832012-01-12 17:19:58 -0800873void __pagevec_lru_add(struct pagevec *pvec, enum lru_list lru)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700874{
Lee Schermerhorn894bc312008-10-18 20:26:39 -0700875 VM_BUG_ON(is_unevictable_lru(lru));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700876
Hugh Dickins5095ae832012-01-12 17:19:58 -0800877 pagevec_lru_move_fn(pvec, __pagevec_lru_add_fn, (void *)lru);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700878}
Hugh Dickins5095ae832012-01-12 17:19:58 -0800879EXPORT_SYMBOL(__pagevec_lru_add);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700880
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881/**
882 * pagevec_lookup - gang pagecache lookup
883 * @pvec: Where the resulting pages are placed
884 * @mapping: The address_space to search
885 * @start: The starting page index
886 * @nr_pages: The maximum number of pages
887 *
888 * pagevec_lookup() will search for and return a group of up to @nr_pages pages
889 * in the mapping. The pages are placed in @pvec. pagevec_lookup() takes a
890 * reference against the pages in @pvec.
891 *
892 * The search returns a group of mapping-contiguous pages with ascending
893 * indexes. There may be holes in the indices due to not-present pages.
894 *
895 * pagevec_lookup() returns the number of pages which were found.
896 */
897unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
898 pgoff_t start, unsigned nr_pages)
899{
900 pvec->nr = find_get_pages(mapping, start, nr_pages, pvec->pages);
901 return pagevec_count(pvec);
902}
Christoph Hellwig78539fd2006-01-11 20:47:41 +1100903EXPORT_SYMBOL(pagevec_lookup);
904
Linus Torvalds1da177e2005-04-16 15:20:36 -0700905unsigned pagevec_lookup_tag(struct pagevec *pvec, struct address_space *mapping,
906 pgoff_t *index, int tag, unsigned nr_pages)
907{
908 pvec->nr = find_get_pages_tag(mapping, index, tag,
909 nr_pages, pvec->pages);
910 return pagevec_count(pvec);
911}
Steve French7f285702005-11-01 10:22:55 -0800912EXPORT_SYMBOL(pagevec_lookup_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700913
Linus Torvalds1da177e2005-04-16 15:20:36 -0700914/*
915 * Perform any setup for the swap system
916 */
917void __init swap_setup(void)
918{
Jan Beulich44813742009-09-21 17:03:05 -0700919 unsigned long megs = totalram_pages >> (20 - PAGE_SHIFT);
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700920#ifdef CONFIG_SWAP
Shaohua Li33806f02013-02-22 16:34:37 -0800921 int i;
922
923 bdi_init(swapper_spaces[0].backing_dev_info);
924 for (i = 0; i < MAX_SWAPFILES; i++) {
925 spin_lock_init(&swapper_spaces[i].tree_lock);
926 INIT_LIST_HEAD(&swapper_spaces[i].i_mmap_nonlinear);
927 }
Peter Zijlstrae0bf68d2007-10-16 23:25:46 -0700928#endif
929
Linus Torvalds1da177e2005-04-16 15:20:36 -0700930 /* Use a smaller cluster for small-memory machines */
931 if (megs < 16)
932 page_cluster = 2;
933 else
934 page_cluster = 3;
935 /*
936 * Right now other parts of the system means that we
937 * _really_ don't want to cluster much more
938 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700939}