4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
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.
12 * Swap aging added 23.2.95, Stephen Tweedie.
13 * Buffermem limits added 12.3.98, Rik van Riel.
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() */
27 #include <linux/percpu_counter.h>
28 #include <linux/percpu.h>
29 #include <linux/cpu.h>
30 #include <linux/notifier.h>
32 /* How many pages do we try to swap or page in/out together? */
35 static DEFINE_PER_CPU(struct pagevec
, lru_add_pvecs
) = { 0, };
36 static DEFINE_PER_CPU(struct pagevec
, lru_add_active_pvecs
) = { 0, };
37 static DEFINE_PER_CPU(struct pagevec
, lru_rotate_pvecs
) = { 0, };
40 * This path almost never happens for VM activity - pages are normally
41 * freed via pagevecs. But it gets used by networking.
43 static void fastcall
__page_cache_release(struct page
*page
)
47 struct zone
*zone
= page_zone(page
);
49 spin_lock_irqsave(&zone
->lru_lock
, flags
);
50 VM_BUG_ON(!PageLRU(page
));
52 del_page_from_lru(zone
, page
);
53 spin_unlock_irqrestore(&zone
->lru_lock
, flags
);
58 static void put_compound_page(struct page
*page
)
60 page
= compound_head(page
);
61 if (put_page_testzero(page
)) {
62 compound_page_dtor
*dtor
;
64 dtor
= get_compound_page_dtor(page
);
69 void put_page(struct page
*page
)
71 if (unlikely(PageCompound(page
)))
72 put_compound_page(page
);
73 else if (put_page_testzero(page
))
74 __page_cache_release(page
);
76 EXPORT_SYMBOL(put_page
);
79 * put_pages_list(): release a list of pages
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.
84 * @pages: list of pages threaded on page->lru
86 void put_pages_list(struct list_head
*pages
)
88 while (!list_empty(pages
)) {
91 victim
= list_entry(pages
->prev
, struct page
, lru
);
92 list_del(&victim
->lru
);
93 page_cache_release(victim
);
96 EXPORT_SYMBOL(put_pages_list
);
99 * pagevec_move_tail() must be called with IRQ disabled.
100 * Otherwise this may cause nasty races.
102 static void pagevec_move_tail(struct pagevec
*pvec
)
106 struct zone
*zone
= NULL
;
108 for (i
= 0; i
< pagevec_count(pvec
); i
++) {
109 struct page
*page
= pvec
->pages
[i
];
110 struct zone
*pagezone
= page_zone(page
);
112 if (pagezone
!= zone
) {
114 spin_unlock(&zone
->lru_lock
);
116 spin_lock(&zone
->lru_lock
);
118 if (PageLRU(page
) && !PageActive(page
)) {
119 list_move_tail(&page
->lru
, &zone
->inactive_list
);
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
);
131 * 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
135 * Returns zero if it cleared PG_writeback.
137 int rotate_reclaimable_page(struct page
*page
)
139 struct pagevec
*pvec
;
142 if (PageLocked(page
))
146 if (PageActive(page
))
151 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
);
158 if (!test_clear_page_writeback(page
))
165 * FIXME: speed this up?
167 void fastcall
activate_page(struct page
*page
)
169 struct zone
*zone
= page_zone(page
);
171 spin_lock_irq(&zone
->lru_lock
);
172 if (PageLRU(page
) && !PageActive(page
)) {
173 del_page_from_inactive_list(zone
, page
);
175 add_page_to_active_list(zone
, page
);
176 __count_vm_event(PGACTIVATE
);
178 spin_unlock_irq(&zone
->lru_lock
);
182 * Mark a page as having seen activity.
184 * inactive,unreferenced -> inactive,referenced
185 * inactive,referenced -> active,unreferenced
186 * active,unreferenced -> active,referenced
188 void fastcall
mark_page_accessed(struct page
*page
)
190 if (!PageActive(page
) && PageReferenced(page
) && PageLRU(page
)) {
192 ClearPageReferenced(page
);
193 } else if (!PageReferenced(page
)) {
194 SetPageReferenced(page
);
198 EXPORT_SYMBOL(mark_page_accessed
);
201 * lru_cache_add: add a page to the page lists
202 * @page: the page to add
204 void fastcall
lru_cache_add(struct page
*page
)
206 struct pagevec
*pvec
= &get_cpu_var(lru_add_pvecs
);
208 page_cache_get(page
);
209 if (!pagevec_add(pvec
, page
))
210 __pagevec_lru_add(pvec
);
211 put_cpu_var(lru_add_pvecs
);
214 void fastcall
lru_cache_add_active(struct page
*page
)
216 struct pagevec
*pvec
= &get_cpu_var(lru_add_active_pvecs
);
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
);
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.
229 static void drain_cpu_pagevecs(int cpu
)
231 struct pagevec
*pvec
;
233 pvec
= &per_cpu(lru_add_pvecs
, cpu
);
234 if (pagevec_count(pvec
))
235 __pagevec_lru_add(pvec
);
237 pvec
= &per_cpu(lru_add_active_pvecs
, cpu
);
238 if (pagevec_count(pvec
))
239 __pagevec_lru_add_active(pvec
);
241 pvec
= &per_cpu(lru_rotate_pvecs
, cpu
);
242 if (pagevec_count(pvec
)) {
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
);
252 void lru_add_drain(void)
254 drain_cpu_pagevecs(get_cpu());
259 static void lru_add_drain_per_cpu(struct work_struct
*dummy
)
265 * Returns 0 for success
267 int lru_add_drain_all(void)
269 return schedule_on_each_cpu(lru_add_drain_per_cpu
);
275 * Returns 0 for success
277 int lru_add_drain_all(void)
285 * 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
289 * Avoid taking zone->lru_lock if possible, but if it is taken, retain it
290 * for the remainder of the operation.
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.
296 void release_pages(struct page
**pages
, int nr
, int cold
)
299 struct pagevec pages_to_free
;
300 struct zone
*zone
= NULL
;
301 unsigned long uninitialized_var(flags
);
303 pagevec_init(&pages_to_free
, cold
);
304 for (i
= 0; i
< nr
; i
++) {
305 struct page
*page
= pages
[i
];
307 if (unlikely(PageCompound(page
))) {
309 spin_unlock_irqrestore(&zone
->lru_lock
, flags
);
312 put_compound_page(page
);
316 if (!put_page_testzero(page
))
320 struct zone
*pagezone
= page_zone(page
);
321 if (pagezone
!= zone
) {
323 spin_unlock_irqrestore(&zone
->lru_lock
,
326 spin_lock_irqsave(&zone
->lru_lock
, flags
);
328 VM_BUG_ON(!PageLRU(page
));
329 __ClearPageLRU(page
);
330 del_page_from_lru(zone
, page
);
333 if (!pagevec_add(&pages_to_free
, page
)) {
335 spin_unlock_irqrestore(&zone
->lru_lock
, flags
);
338 __pagevec_free(&pages_to_free
);
339 pagevec_reinit(&pages_to_free
);
343 spin_unlock_irqrestore(&zone
->lru_lock
, flags
);
345 pagevec_free(&pages_to_free
);
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.
354 * So __pagevec_release() will drain those queues here. __pagevec_lru_add()
355 * and __pagevec_lru_add_active() call release_pages() directly to avoid
358 void __pagevec_release(struct pagevec
*pvec
)
361 release_pages(pvec
->pages
, pagevec_count(pvec
), pvec
->cold
);
362 pagevec_reinit(pvec
);
365 EXPORT_SYMBOL(__pagevec_release
);
368 * pagevec_release() for pages which are known to not be on the LRU
370 * This function reinitialises the caller's pagevec.
372 void __pagevec_release_nonlru(struct pagevec
*pvec
)
375 struct pagevec pages_to_free
;
377 pagevec_init(&pages_to_free
, pvec
->cold
);
378 for (i
= 0; i
< pagevec_count(pvec
); i
++) {
379 struct page
*page
= pvec
->pages
[i
];
381 VM_BUG_ON(PageLRU(page
));
382 if (put_page_testzero(page
))
383 pagevec_add(&pages_to_free
, page
);
385 pagevec_free(&pages_to_free
);
386 pagevec_reinit(pvec
);
390 * Add the passed pages to the LRU, then drop the caller's refcount
391 * on them. Reinitialises the caller's pagevec.
393 void __pagevec_lru_add(struct pagevec
*pvec
)
396 struct zone
*zone
= NULL
;
398 for (i
= 0; i
< pagevec_count(pvec
); i
++) {
399 struct page
*page
= pvec
->pages
[i
];
400 struct zone
*pagezone
= page_zone(page
);
402 if (pagezone
!= zone
) {
404 spin_unlock_irq(&zone
->lru_lock
);
406 spin_lock_irq(&zone
->lru_lock
);
408 VM_BUG_ON(PageLRU(page
));
410 add_page_to_inactive_list(zone
, page
);
413 spin_unlock_irq(&zone
->lru_lock
);
414 release_pages(pvec
->pages
, pvec
->nr
, pvec
->cold
);
415 pagevec_reinit(pvec
);
418 EXPORT_SYMBOL(__pagevec_lru_add
);
420 void __pagevec_lru_add_active(struct pagevec
*pvec
)
423 struct zone
*zone
= NULL
;
425 for (i
= 0; i
< pagevec_count(pvec
); i
++) {
426 struct page
*page
= pvec
->pages
[i
];
427 struct zone
*pagezone
= page_zone(page
);
429 if (pagezone
!= zone
) {
431 spin_unlock_irq(&zone
->lru_lock
);
433 spin_lock_irq(&zone
->lru_lock
);
435 VM_BUG_ON(PageLRU(page
));
437 VM_BUG_ON(PageActive(page
));
439 add_page_to_active_list(zone
, page
);
442 spin_unlock_irq(&zone
->lru_lock
);
443 release_pages(pvec
->pages
, pvec
->nr
, pvec
->cold
);
444 pagevec_reinit(pvec
);
448 * Try to drop buffers from the pages in a pagevec
450 void pagevec_strip(struct pagevec
*pvec
)
454 for (i
= 0; i
< pagevec_count(pvec
); i
++) {
455 struct page
*page
= pvec
->pages
[i
];
457 if (PagePrivate(page
) && !TestSetPageLocked(page
)) {
458 if (PagePrivate(page
))
459 try_to_release_page(page
, 0);
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
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.
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.
479 * pagevec_lookup() returns the number of pages which were found.
481 unsigned pagevec_lookup(struct pagevec
*pvec
, struct address_space
*mapping
,
482 pgoff_t start
, unsigned nr_pages
)
484 pvec
->nr
= find_get_pages(mapping
, start
, nr_pages
, pvec
->pages
);
485 return pagevec_count(pvec
);
488 EXPORT_SYMBOL(pagevec_lookup
);
490 unsigned pagevec_lookup_tag(struct pagevec
*pvec
, struct address_space
*mapping
,
491 pgoff_t
*index
, int tag
, unsigned nr_pages
)
493 pvec
->nr
= find_get_pages_tag(mapping
, index
, tag
,
494 nr_pages
, pvec
->pages
);
495 return pagevec_count(pvec
);
498 EXPORT_SYMBOL(pagevec_lookup_tag
);
502 * We tolerate a little inaccuracy to avoid ping-ponging the counter between
505 #define ACCT_THRESHOLD max(16, NR_CPUS * 2)
507 static DEFINE_PER_CPU(long, committed_space
) = 0;
509 void vm_acct_memory(long pages
)
514 local
= &__get_cpu_var(committed_space
);
516 if (*local
> ACCT_THRESHOLD
|| *local
< -ACCT_THRESHOLD
) {
517 atomic_add(*local
, &vm_committed_space
);
523 #ifdef CONFIG_HOTPLUG_CPU
525 /* Drop the CPU's cached committed space back into the central pool. */
526 static int cpu_swap_callback(struct notifier_block
*nfb
,
527 unsigned long action
,
532 committed
= &per_cpu(committed_space
, (long)hcpu
);
533 if (action
== CPU_DEAD
|| action
== CPU_DEAD_FROZEN
) {
534 atomic_add(*committed
, &vm_committed_space
);
536 drain_cpu_pagevecs((long)hcpu
);
540 #endif /* CONFIG_HOTPLUG_CPU */
541 #endif /* CONFIG_SMP */
544 * Perform any setup for the swap system
546 void __init
swap_setup(void)
548 unsigned long megs
= num_physpages
>> (20 - PAGE_SHIFT
);
550 /* Use a smaller cluster for small-memory machines */
556 * Right now other parts of the system means that we
557 * _really_ don't want to cluster much more
559 #ifdef CONFIG_HOTPLUG_CPU
560 hotcpu_notifier(cpu_swap_callback
, 0);