blob: d034b2128d2b09d5182e724a4e655a97804803d0 [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/*
8 * This file contains the default values for the opereation of the
9 * 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>
24#include <linux/module.h>
25#include <linux/mm_inline.h>
26#include <linux/buffer_head.h> /* for try_to_release_page() */
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/percpu_counter.h>
28#include <linux/percpu.h>
29#include <linux/cpu.h>
30#include <linux/notifier.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031
32/* How many pages do we try to swap or page in/out together? */
33int page_cluster;
34
Hisashi Hifumi902aaed2007-10-16 01:24:52 -070035static DEFINE_PER_CPU(struct pagevec, lru_add_pvecs) = { 0, };
36static DEFINE_PER_CPU(struct pagevec, lru_add_active_pvecs) = { 0, };
37static DEFINE_PER_CPU(struct pagevec, lru_rotate_pvecs) = { 0, };
38
Adrian Bunkb2213852006-09-25 23:31:02 -070039/*
40 * This path almost never happens for VM activity - pages are normally
41 * freed via pagevecs. But it gets used by networking.
42 */
43static void fastcall __page_cache_release(struct page *page)
44{
45 if (PageLRU(page)) {
46 unsigned long flags;
47 struct zone *zone = page_zone(page);
48
49 spin_lock_irqsave(&zone->lru_lock, flags);
50 VM_BUG_ON(!PageLRU(page));
51 __ClearPageLRU(page);
52 del_page_from_lru(zone, page);
53 spin_unlock_irqrestore(&zone->lru_lock, flags);
54 }
55 free_hot_page(page);
56}
57
Nick Piggin8519fb32006-02-07 12:58:52 -080058static void put_compound_page(struct page *page)
59{
Christoph Lameterd85f3382007-05-06 14:49:39 -070060 page = compound_head(page);
Nick Piggin8519fb32006-02-07 12:58:52 -080061 if (put_page_testzero(page)) {
Andy Whitcroft33f2ef82006-12-06 20:33:32 -080062 compound_page_dtor *dtor;
Nick Piggin8519fb32006-02-07 12:58:52 -080063
Andy Whitcroft33f2ef82006-12-06 20:33:32 -080064 dtor = get_compound_page_dtor(page);
Nick Piggin8519fb32006-02-07 12:58:52 -080065 (*dtor)(page);
66 }
67}
68
Linus Torvalds1da177e2005-04-16 15:20:36 -070069void put_page(struct page *page)
70{
Nick Piggin8519fb32006-02-07 12:58:52 -080071 if (unlikely(PageCompound(page)))
72 put_compound_page(page);
73 else if (put_page_testzero(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -070074 __page_cache_release(page);
75}
76EXPORT_SYMBOL(put_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -070077
Alexander Zarochentsev1d7ea732006-08-13 23:24:27 -070078/**
79 * put_pages_list(): release a list of pages
80 *
81 * Release a list of pages which are strung together on page.lru. Currently
82 * used by read_cache_pages() and related error recovery code.
83 *
84 * @pages: list of pages threaded on page->lru
85 */
86void put_pages_list(struct list_head *pages)
87{
88 while (!list_empty(pages)) {
89 struct page *victim;
90
91 victim = list_entry(pages->prev, struct page, lru);
92 list_del(&victim->lru);
93 page_cache_release(victim);
94 }
95}
96EXPORT_SYMBOL(put_pages_list);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098/*
Hisashi Hifumi902aaed2007-10-16 01:24:52 -070099 * pagevec_move_tail() must be called with IRQ disabled.
100 * Otherwise this may cause nasty races.
101 */
102static void pagevec_move_tail(struct pagevec *pvec)
103{
104 int i;
105 int pgmoved = 0;
106 struct zone *zone = NULL;
107
108 for (i = 0; i < pagevec_count(pvec); i++) {
109 struct page *page = pvec->pages[i];
110 struct zone *pagezone = page_zone(page);
111
112 if (pagezone != zone) {
113 if (zone)
114 spin_unlock(&zone->lru_lock);
115 zone = pagezone;
116 spin_lock(&zone->lru_lock);
117 }
118 if (PageLRU(page) && !PageActive(page)) {
119 list_move_tail(&page->lru, &zone->inactive_list);
120 pgmoved++;
121 }
122 }
123 if (zone)
124 spin_unlock(&zone->lru_lock);
125 __count_vm_events(PGROTATED, pgmoved);
126 release_pages(pvec->pages, pvec->nr, pvec->cold);
127 pagevec_reinit(pvec);
128}
129
130/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 * Writeback is about to end against a page which has been marked for immediate
132 * reclaim. If it still appears to be reclaimable, move it to the tail of the
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700133 * inactive list.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134 *
135 * Returns zero if it cleared PG_writeback.
136 */
137int rotate_reclaimable_page(struct page *page)
138{
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700139 struct pagevec *pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700140 unsigned long flags;
141
142 if (PageLocked(page))
143 return 1;
144 if (PageDirty(page))
145 return 1;
146 if (PageActive(page))
147 return 1;
148 if (!PageLRU(page))
149 return 1;
150
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700151 page_cache_get(page);
152 local_irq_save(flags);
153 pvec = &__get_cpu_var(lru_rotate_pvecs);
154 if (!pagevec_add(pvec, page))
155 pagevec_move_tail(pvec);
156 local_irq_restore(flags);
157
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158 if (!test_clear_page_writeback(page))
159 BUG();
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700160
Linus Torvalds1da177e2005-04-16 15:20:36 -0700161 return 0;
162}
163
164/*
165 * FIXME: speed this up?
166 */
167void fastcall activate_page(struct page *page)
168{
169 struct zone *zone = page_zone(page);
170
171 spin_lock_irq(&zone->lru_lock);
172 if (PageLRU(page) && !PageActive(page)) {
173 del_page_from_inactive_list(zone, page);
174 SetPageActive(page);
175 add_page_to_active_list(zone, page);
Christoph Lameterf8891e52006-06-30 01:55:45 -0700176 __count_vm_event(PGACTIVATE);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700177 }
178 spin_unlock_irq(&zone->lru_lock);
179}
180
181/*
182 * Mark a page as having seen activity.
183 *
184 * inactive,unreferenced -> inactive,referenced
185 * inactive,referenced -> active,unreferenced
186 * active,unreferenced -> active,referenced
187 */
188void fastcall mark_page_accessed(struct page *page)
189{
190 if (!PageActive(page) && PageReferenced(page) && PageLRU(page)) {
191 activate_page(page);
192 ClearPageReferenced(page);
193 } else if (!PageReferenced(page)) {
194 SetPageReferenced(page);
195 }
196}
197
198EXPORT_SYMBOL(mark_page_accessed);
199
200/**
201 * lru_cache_add: add a page to the page lists
202 * @page: the page to add
203 */
Linus Torvalds1da177e2005-04-16 15:20:36 -0700204void fastcall lru_cache_add(struct page *page)
205{
206 struct pagevec *pvec = &get_cpu_var(lru_add_pvecs);
207
208 page_cache_get(page);
209 if (!pagevec_add(pvec, page))
210 __pagevec_lru_add(pvec);
211 put_cpu_var(lru_add_pvecs);
212}
213
214void fastcall lru_cache_add_active(struct page *page)
215{
216 struct pagevec *pvec = &get_cpu_var(lru_add_active_pvecs);
217
218 page_cache_get(page);
219 if (!pagevec_add(pvec, page))
220 __pagevec_lru_add_active(pvec);
221 put_cpu_var(lru_add_active_pvecs);
222}
223
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700224/*
225 * Drain pages out of the cpu's pagevecs.
226 * Either "cpu" is the current CPU, and preemption has already been
227 * disabled; or "cpu" is being hot-unplugged, and is already dead.
228 */
229static void drain_cpu_pagevecs(int cpu)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230{
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700231 struct pagevec *pvec;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700232
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700233 pvec = &per_cpu(lru_add_pvecs, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234 if (pagevec_count(pvec))
235 __pagevec_lru_add(pvec);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700236
Andrew Morton80bfed92006-01-06 00:11:14 -0800237 pvec = &per_cpu(lru_add_active_pvecs, cpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700238 if (pagevec_count(pvec))
239 __pagevec_lru_add_active(pvec);
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700240
241 pvec = &per_cpu(lru_rotate_pvecs, cpu);
242 if (pagevec_count(pvec)) {
243 unsigned long flags;
244
245 /* No harm done if a racing interrupt already did this */
246 local_irq_save(flags);
247 pagevec_move_tail(pvec);
248 local_irq_restore(flags);
249 }
Andrew Morton80bfed92006-01-06 00:11:14 -0800250}
251
252void lru_add_drain(void)
253{
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700254 drain_cpu_pagevecs(get_cpu());
Andrew Morton80bfed92006-01-06 00:11:14 -0800255 put_cpu();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256}
257
Nick Piggin053837f2006-01-18 17:42:27 -0800258#ifdef CONFIG_NUMA
David Howellsc4028952006-11-22 14:57:56 +0000259static void lru_add_drain_per_cpu(struct work_struct *dummy)
Nick Piggin053837f2006-01-18 17:42:27 -0800260{
261 lru_add_drain();
262}
263
264/*
265 * Returns 0 for success
266 */
267int lru_add_drain_all(void)
268{
David Howellsc4028952006-11-22 14:57:56 +0000269 return schedule_on_each_cpu(lru_add_drain_per_cpu);
Nick Piggin053837f2006-01-18 17:42:27 -0800270}
271
272#else
273
274/*
275 * Returns 0 for success
276 */
277int lru_add_drain_all(void)
278{
279 lru_add_drain();
280 return 0;
281}
282#endif
283
Linus Torvalds1da177e2005-04-16 15:20:36 -0700284/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 * Batched page_cache_release(). Decrement the reference count on all the
286 * passed pages. If it fell to zero then remove the page from the LRU and
287 * free it.
288 *
289 * Avoid taking zone->lru_lock if possible, but if it is taken, retain it
290 * for the remainder of the operation.
291 *
292 * The locking in this function is against shrink_cache(): we recheck the
293 * page count inside the lock to see whether shrink_cache grabbed the page
294 * via the LRU. If it did, give up: shrink_cache will free it.
295 */
296void release_pages(struct page **pages, int nr, int cold)
297{
298 int i;
299 struct pagevec pages_to_free;
300 struct zone *zone = NULL;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700301 unsigned long uninitialized_var(flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700302
303 pagevec_init(&pages_to_free, cold);
304 for (i = 0; i < nr; i++) {
305 struct page *page = pages[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700306
Nick Piggin8519fb32006-02-07 12:58:52 -0800307 if (unlikely(PageCompound(page))) {
308 if (zone) {
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700309 spin_unlock_irqrestore(&zone->lru_lock, flags);
Nick Piggin8519fb32006-02-07 12:58:52 -0800310 zone = NULL;
311 }
312 put_compound_page(page);
313 continue;
314 }
315
Nick Pigginb5810032005-10-29 18:16:12 -0700316 if (!put_page_testzero(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700317 continue;
318
Nick Piggin46453a62006-03-22 00:07:58 -0800319 if (PageLRU(page)) {
320 struct zone *pagezone = page_zone(page);
321 if (pagezone != zone) {
322 if (zone)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700323 spin_unlock_irqrestore(&zone->lru_lock,
324 flags);
Nick Piggin46453a62006-03-22 00:07:58 -0800325 zone = pagezone;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700326 spin_lock_irqsave(&zone->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700327 }
Nick Piggin725d7042006-09-25 23:30:55 -0700328 VM_BUG_ON(!PageLRU(page));
Nick Piggin67453912006-03-22 00:08:00 -0800329 __ClearPageLRU(page);
Nick Piggin46453a62006-03-22 00:07:58 -0800330 del_page_from_lru(zone, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700331 }
Nick Piggin46453a62006-03-22 00:07:58 -0800332
333 if (!pagevec_add(&pages_to_free, page)) {
334 if (zone) {
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700335 spin_unlock_irqrestore(&zone->lru_lock, flags);
Nick Piggin46453a62006-03-22 00:07:58 -0800336 zone = NULL;
337 }
338 __pagevec_free(&pages_to_free);
339 pagevec_reinit(&pages_to_free);
340 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700341 }
342 if (zone)
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700343 spin_unlock_irqrestore(&zone->lru_lock, flags);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700344
345 pagevec_free(&pages_to_free);
346}
347
348/*
349 * The pages which we're about to release may be in the deferred lru-addition
350 * queues. That would prevent them from really being freed right now. That's
351 * OK from a correctness point of view but is inefficient - those pages may be
352 * cache-warm and we want to give them back to the page allocator ASAP.
353 *
354 * So __pagevec_release() will drain those queues here. __pagevec_lru_add()
355 * and __pagevec_lru_add_active() call release_pages() directly to avoid
356 * mutual recursion.
357 */
358void __pagevec_release(struct pagevec *pvec)
359{
360 lru_add_drain();
361 release_pages(pvec->pages, pagevec_count(pvec), pvec->cold);
362 pagevec_reinit(pvec);
363}
364
Steve French7f285702005-11-01 10:22:55 -0800365EXPORT_SYMBOL(__pagevec_release);
366
Linus Torvalds1da177e2005-04-16 15:20:36 -0700367/*
368 * pagevec_release() for pages which are known to not be on the LRU
369 *
370 * This function reinitialises the caller's pagevec.
371 */
372void __pagevec_release_nonlru(struct pagevec *pvec)
373{
374 int i;
375 struct pagevec pages_to_free;
376
377 pagevec_init(&pages_to_free, pvec->cold);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700378 for (i = 0; i < pagevec_count(pvec); i++) {
379 struct page *page = pvec->pages[i];
380
Nick Piggin725d7042006-09-25 23:30:55 -0700381 VM_BUG_ON(PageLRU(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700382 if (put_page_testzero(page))
383 pagevec_add(&pages_to_free, page);
384 }
385 pagevec_free(&pages_to_free);
386 pagevec_reinit(pvec);
387}
388
389/*
390 * Add the passed pages to the LRU, then drop the caller's refcount
391 * on them. Reinitialises the caller's pagevec.
392 */
393void __pagevec_lru_add(struct pagevec *pvec)
394{
395 int i;
396 struct zone *zone = NULL;
397
398 for (i = 0; i < pagevec_count(pvec); i++) {
399 struct page *page = pvec->pages[i];
400 struct zone *pagezone = page_zone(page);
401
402 if (pagezone != zone) {
403 if (zone)
404 spin_unlock_irq(&zone->lru_lock);
405 zone = pagezone;
406 spin_lock_irq(&zone->lru_lock);
407 }
Nick Piggin725d7042006-09-25 23:30:55 -0700408 VM_BUG_ON(PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800409 SetPageLRU(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700410 add_page_to_inactive_list(zone, page);
411 }
412 if (zone)
413 spin_unlock_irq(&zone->lru_lock);
414 release_pages(pvec->pages, pvec->nr, pvec->cold);
415 pagevec_reinit(pvec);
416}
417
418EXPORT_SYMBOL(__pagevec_lru_add);
419
420void __pagevec_lru_add_active(struct pagevec *pvec)
421{
422 int i;
423 struct zone *zone = NULL;
424
425 for (i = 0; i < pagevec_count(pvec); i++) {
426 struct page *page = pvec->pages[i];
427 struct zone *pagezone = page_zone(page);
428
429 if (pagezone != zone) {
430 if (zone)
431 spin_unlock_irq(&zone->lru_lock);
432 zone = pagezone;
433 spin_lock_irq(&zone->lru_lock);
434 }
Nick Piggin725d7042006-09-25 23:30:55 -0700435 VM_BUG_ON(PageLRU(page));
Nick Piggin8d438f92006-03-22 00:07:59 -0800436 SetPageLRU(page);
Nick Piggin725d7042006-09-25 23:30:55 -0700437 VM_BUG_ON(PageActive(page));
Nick Piggin4c84cac2006-03-22 00:08:00 -0800438 SetPageActive(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700439 add_page_to_active_list(zone, page);
440 }
441 if (zone)
442 spin_unlock_irq(&zone->lru_lock);
443 release_pages(pvec->pages, pvec->nr, pvec->cold);
444 pagevec_reinit(pvec);
445}
446
447/*
448 * Try to drop buffers from the pages in a pagevec
449 */
450void pagevec_strip(struct pagevec *pvec)
451{
452 int i;
453
454 for (i = 0; i < pagevec_count(pvec); i++) {
455 struct page *page = pvec->pages[i];
456
457 if (PagePrivate(page) && !TestSetPageLocked(page)) {
Christoph Lameter5b40dc72006-03-16 23:04:07 -0800458 if (PagePrivate(page))
459 try_to_release_page(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700460 unlock_page(page);
461 }
462 }
463}
464
465/**
466 * pagevec_lookup - gang pagecache lookup
467 * @pvec: Where the resulting pages are placed
468 * @mapping: The address_space to search
469 * @start: The starting page index
470 * @nr_pages: The maximum number of pages
471 *
472 * pagevec_lookup() will search for and return a group of up to @nr_pages pages
473 * in the mapping. The pages are placed in @pvec. pagevec_lookup() takes a
474 * reference against the pages in @pvec.
475 *
476 * The search returns a group of mapping-contiguous pages with ascending
477 * indexes. There may be holes in the indices due to not-present pages.
478 *
479 * pagevec_lookup() returns the number of pages which were found.
480 */
481unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
482 pgoff_t start, unsigned nr_pages)
483{
484 pvec->nr = find_get_pages(mapping, start, nr_pages, pvec->pages);
485 return pagevec_count(pvec);
486}
487
Christoph Hellwig78539fd2006-01-11 20:47:41 +1100488EXPORT_SYMBOL(pagevec_lookup);
489
Linus Torvalds1da177e2005-04-16 15:20:36 -0700490unsigned pagevec_lookup_tag(struct pagevec *pvec, struct address_space *mapping,
491 pgoff_t *index, int tag, unsigned nr_pages)
492{
493 pvec->nr = find_get_pages_tag(mapping, index, tag,
494 nr_pages, pvec->pages);
495 return pagevec_count(pvec);
496}
497
Steve French7f285702005-11-01 10:22:55 -0800498EXPORT_SYMBOL(pagevec_lookup_tag);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700499
500#ifdef CONFIG_SMP
501/*
502 * We tolerate a little inaccuracy to avoid ping-ponging the counter between
503 * CPUs
504 */
505#define ACCT_THRESHOLD max(16, NR_CPUS * 2)
506
507static DEFINE_PER_CPU(long, committed_space) = 0;
508
509void vm_acct_memory(long pages)
510{
511 long *local;
512
513 preempt_disable();
514 local = &__get_cpu_var(committed_space);
515 *local += pages;
516 if (*local > ACCT_THRESHOLD || *local < -ACCT_THRESHOLD) {
517 atomic_add(*local, &vm_committed_space);
518 *local = 0;
519 }
520 preempt_enable();
521}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522
523#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700524
525/* Drop the CPU's cached committed space back into the central pool. */
526static int cpu_swap_callback(struct notifier_block *nfb,
527 unsigned long action,
528 void *hcpu)
529{
530 long *committed;
531
532 committed = &per_cpu(committed_space, (long)hcpu);
Rafael J. Wysocki8bb78442007-05-09 02:35:10 -0700533 if (action == CPU_DEAD || action == CPU_DEAD_FROZEN) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700534 atomic_add(*committed, &vm_committed_space);
535 *committed = 0;
Hisashi Hifumi902aaed2007-10-16 01:24:52 -0700536 drain_cpu_pagevecs((long)hcpu);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700537 }
538 return NOTIFY_OK;
539}
540#endif /* CONFIG_HOTPLUG_CPU */
541#endif /* CONFIG_SMP */
542
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543/*
544 * Perform any setup for the swap system
545 */
546void __init swap_setup(void)
547{
548 unsigned long megs = num_physpages >> (20 - PAGE_SHIFT);
549
550 /* Use a smaller cluster for small-memory machines */
551 if (megs < 16)
552 page_cluster = 2;
553 else
554 page_cluster = 3;
555 /*
556 * Right now other parts of the system means that we
557 * _really_ don't want to cluster much more
558 */
Ingo Molnar02316062006-12-06 20:38:17 -0800559#ifdef CONFIG_HOTPLUG_CPU
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560 hotcpu_notifier(cpu_swap_callback, 0);
Ingo Molnar02316062006-12-06 20:38:17 -0800561#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -0700562}