[IRDA]: kill drivers/net/irda/sir_core.c
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / mm / swap.c
blobee6d71ccfa56fe77173bc7806797b5fc01ec1112
1 /*
2 * linux/mm/swap.c
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 */
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.
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() */
27 #include <linux/module.h>
28 #include <linux/percpu_counter.h>
29 #include <linux/percpu.h>
30 #include <linux/cpu.h>
31 #include <linux/notifier.h>
32 #include <linux/init.h>
34 /* How many pages do we try to swap or page in/out together? */
35 int page_cluster;
37 void put_page(struct page *page)
39 if (unlikely(PageCompound(page))) {
40 page = (struct page *)page_private(page);
41 if (put_page_testzero(page)) {
42 void (*dtor)(struct page *page);
44 dtor = (void (*)(struct page *))page[1].mapping;
45 (*dtor)(page);
47 return;
49 if (put_page_testzero(page))
50 __page_cache_release(page);
52 EXPORT_SYMBOL(put_page);
55 * Writeback is about to end against a page which has been marked for immediate
56 * reclaim. If it still appears to be reclaimable, move it to the tail of the
57 * inactive list. The page still has PageWriteback set, which will pin it.
59 * We don't expect many pages to come through here, so don't bother batching
60 * things up.
62 * To avoid placing the page at the tail of the LRU while PG_writeback is still
63 * set, this function will clear PG_writeback before performing the page
64 * motion. Do that inside the lru lock because once PG_writeback is cleared
65 * we may not touch the page.
67 * Returns zero if it cleared PG_writeback.
69 int rotate_reclaimable_page(struct page *page)
71 struct zone *zone;
72 unsigned long flags;
74 if (PageLocked(page))
75 return 1;
76 if (PageDirty(page))
77 return 1;
78 if (PageActive(page))
79 return 1;
80 if (!PageLRU(page))
81 return 1;
83 zone = page_zone(page);
84 spin_lock_irqsave(&zone->lru_lock, flags);
85 if (PageLRU(page) && !PageActive(page)) {
86 list_del(&page->lru);
87 list_add_tail(&page->lru, &zone->inactive_list);
88 inc_page_state(pgrotated);
90 if (!test_clear_page_writeback(page))
91 BUG();
92 spin_unlock_irqrestore(&zone->lru_lock, flags);
93 return 0;
97 * FIXME: speed this up?
99 void fastcall activate_page(struct page *page)
101 struct zone *zone = page_zone(page);
103 spin_lock_irq(&zone->lru_lock);
104 if (PageLRU(page) && !PageActive(page)) {
105 del_page_from_inactive_list(zone, page);
106 SetPageActive(page);
107 add_page_to_active_list(zone, page);
108 inc_page_state(pgactivate);
110 spin_unlock_irq(&zone->lru_lock);
114 * Mark a page as having seen activity.
116 * inactive,unreferenced -> inactive,referenced
117 * inactive,referenced -> active,unreferenced
118 * active,unreferenced -> active,referenced
120 void fastcall mark_page_accessed(struct page *page)
122 if (!PageActive(page) && PageReferenced(page) && PageLRU(page)) {
123 activate_page(page);
124 ClearPageReferenced(page);
125 } else if (!PageReferenced(page)) {
126 SetPageReferenced(page);
130 EXPORT_SYMBOL(mark_page_accessed);
133 * lru_cache_add: add a page to the page lists
134 * @page: the page to add
136 static DEFINE_PER_CPU(struct pagevec, lru_add_pvecs) = { 0, };
137 static DEFINE_PER_CPU(struct pagevec, lru_add_active_pvecs) = { 0, };
139 void fastcall lru_cache_add(struct page *page)
141 struct pagevec *pvec = &get_cpu_var(lru_add_pvecs);
143 page_cache_get(page);
144 if (!pagevec_add(pvec, page))
145 __pagevec_lru_add(pvec);
146 put_cpu_var(lru_add_pvecs);
149 void fastcall lru_cache_add_active(struct page *page)
151 struct pagevec *pvec = &get_cpu_var(lru_add_active_pvecs);
153 page_cache_get(page);
154 if (!pagevec_add(pvec, page))
155 __pagevec_lru_add_active(pvec);
156 put_cpu_var(lru_add_active_pvecs);
159 static void __lru_add_drain(int cpu)
161 struct pagevec *pvec = &per_cpu(lru_add_pvecs, cpu);
163 /* CPU is dead, so no locking needed. */
164 if (pagevec_count(pvec))
165 __pagevec_lru_add(pvec);
166 pvec = &per_cpu(lru_add_active_pvecs, cpu);
167 if (pagevec_count(pvec))
168 __pagevec_lru_add_active(pvec);
171 void lru_add_drain(void)
173 __lru_add_drain(get_cpu());
174 put_cpu();
178 * This path almost never happens for VM activity - pages are normally
179 * freed via pagevecs. But it gets used by networking.
181 void fastcall __page_cache_release(struct page *page)
183 unsigned long flags;
184 struct zone *zone = page_zone(page);
186 spin_lock_irqsave(&zone->lru_lock, flags);
187 if (TestClearPageLRU(page))
188 del_page_from_lru(zone, page);
189 if (page_count(page) != 0)
190 page = NULL;
191 spin_unlock_irqrestore(&zone->lru_lock, flags);
192 if (page)
193 free_hot_page(page);
196 EXPORT_SYMBOL(__page_cache_release);
199 * Batched page_cache_release(). Decrement the reference count on all the
200 * passed pages. If it fell to zero then remove the page from the LRU and
201 * free it.
203 * Avoid taking zone->lru_lock if possible, but if it is taken, retain it
204 * for the remainder of the operation.
206 * The locking in this function is against shrink_cache(): we recheck the
207 * page count inside the lock to see whether shrink_cache grabbed the page
208 * via the LRU. If it did, give up: shrink_cache will free it.
210 void release_pages(struct page **pages, int nr, int cold)
212 int i;
213 struct pagevec pages_to_free;
214 struct zone *zone = NULL;
216 pagevec_init(&pages_to_free, cold);
217 for (i = 0; i < nr; i++) {
218 struct page *page = pages[i];
219 struct zone *pagezone;
221 if (!put_page_testzero(page))
222 continue;
224 pagezone = page_zone(page);
225 if (pagezone != zone) {
226 if (zone)
227 spin_unlock_irq(&zone->lru_lock);
228 zone = pagezone;
229 spin_lock_irq(&zone->lru_lock);
231 if (TestClearPageLRU(page))
232 del_page_from_lru(zone, page);
233 if (page_count(page) == 0) {
234 if (!pagevec_add(&pages_to_free, page)) {
235 spin_unlock_irq(&zone->lru_lock);
236 __pagevec_free(&pages_to_free);
237 pagevec_reinit(&pages_to_free);
238 zone = NULL; /* No lock is held */
242 if (zone)
243 spin_unlock_irq(&zone->lru_lock);
245 pagevec_free(&pages_to_free);
249 * The pages which we're about to release may be in the deferred lru-addition
250 * queues. That would prevent them from really being freed right now. That's
251 * OK from a correctness point of view but is inefficient - those pages may be
252 * cache-warm and we want to give them back to the page allocator ASAP.
254 * So __pagevec_release() will drain those queues here. __pagevec_lru_add()
255 * and __pagevec_lru_add_active() call release_pages() directly to avoid
256 * mutual recursion.
258 void __pagevec_release(struct pagevec *pvec)
260 lru_add_drain();
261 release_pages(pvec->pages, pagevec_count(pvec), pvec->cold);
262 pagevec_reinit(pvec);
265 EXPORT_SYMBOL(__pagevec_release);
268 * pagevec_release() for pages which are known to not be on the LRU
270 * This function reinitialises the caller's pagevec.
272 void __pagevec_release_nonlru(struct pagevec *pvec)
274 int i;
275 struct pagevec pages_to_free;
277 pagevec_init(&pages_to_free, pvec->cold);
278 for (i = 0; i < pagevec_count(pvec); i++) {
279 struct page *page = pvec->pages[i];
281 BUG_ON(PageLRU(page));
282 if (put_page_testzero(page))
283 pagevec_add(&pages_to_free, page);
285 pagevec_free(&pages_to_free);
286 pagevec_reinit(pvec);
290 * Add the passed pages to the LRU, then drop the caller's refcount
291 * on them. Reinitialises the caller's pagevec.
293 void __pagevec_lru_add(struct pagevec *pvec)
295 int i;
296 struct zone *zone = NULL;
298 for (i = 0; i < pagevec_count(pvec); i++) {
299 struct page *page = pvec->pages[i];
300 struct zone *pagezone = page_zone(page);
302 if (pagezone != zone) {
303 if (zone)
304 spin_unlock_irq(&zone->lru_lock);
305 zone = pagezone;
306 spin_lock_irq(&zone->lru_lock);
308 if (TestSetPageLRU(page))
309 BUG();
310 add_page_to_inactive_list(zone, page);
312 if (zone)
313 spin_unlock_irq(&zone->lru_lock);
314 release_pages(pvec->pages, pvec->nr, pvec->cold);
315 pagevec_reinit(pvec);
318 EXPORT_SYMBOL(__pagevec_lru_add);
320 void __pagevec_lru_add_active(struct pagevec *pvec)
322 int i;
323 struct zone *zone = NULL;
325 for (i = 0; i < pagevec_count(pvec); i++) {
326 struct page *page = pvec->pages[i];
327 struct zone *pagezone = page_zone(page);
329 if (pagezone != zone) {
330 if (zone)
331 spin_unlock_irq(&zone->lru_lock);
332 zone = pagezone;
333 spin_lock_irq(&zone->lru_lock);
335 if (TestSetPageLRU(page))
336 BUG();
337 if (TestSetPageActive(page))
338 BUG();
339 add_page_to_active_list(zone, page);
341 if (zone)
342 spin_unlock_irq(&zone->lru_lock);
343 release_pages(pvec->pages, pvec->nr, pvec->cold);
344 pagevec_reinit(pvec);
348 * Try to drop buffers from the pages in a pagevec
350 void pagevec_strip(struct pagevec *pvec)
352 int i;
354 for (i = 0; i < pagevec_count(pvec); i++) {
355 struct page *page = pvec->pages[i];
357 if (PagePrivate(page) && !TestSetPageLocked(page)) {
358 try_to_release_page(page, 0);
359 unlock_page(page);
365 * pagevec_lookup - gang pagecache lookup
366 * @pvec: Where the resulting pages are placed
367 * @mapping: The address_space to search
368 * @start: The starting page index
369 * @nr_pages: The maximum number of pages
371 * pagevec_lookup() will search for and return a group of up to @nr_pages pages
372 * in the mapping. The pages are placed in @pvec. pagevec_lookup() takes a
373 * reference against the pages in @pvec.
375 * The search returns a group of mapping-contiguous pages with ascending
376 * indexes. There may be holes in the indices due to not-present pages.
378 * pagevec_lookup() returns the number of pages which were found.
380 unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping,
381 pgoff_t start, unsigned nr_pages)
383 pvec->nr = find_get_pages(mapping, start, nr_pages, pvec->pages);
384 return pagevec_count(pvec);
387 unsigned pagevec_lookup_tag(struct pagevec *pvec, struct address_space *mapping,
388 pgoff_t *index, int tag, unsigned nr_pages)
390 pvec->nr = find_get_pages_tag(mapping, index, tag,
391 nr_pages, pvec->pages);
392 return pagevec_count(pvec);
395 EXPORT_SYMBOL(pagevec_lookup_tag);
397 #ifdef CONFIG_SMP
399 * We tolerate a little inaccuracy to avoid ping-ponging the counter between
400 * CPUs
402 #define ACCT_THRESHOLD max(16, NR_CPUS * 2)
404 static DEFINE_PER_CPU(long, committed_space) = 0;
406 void vm_acct_memory(long pages)
408 long *local;
410 preempt_disable();
411 local = &__get_cpu_var(committed_space);
412 *local += pages;
413 if (*local > ACCT_THRESHOLD || *local < -ACCT_THRESHOLD) {
414 atomic_add(*local, &vm_committed_space);
415 *local = 0;
417 preempt_enable();
420 #ifdef CONFIG_HOTPLUG_CPU
422 /* Drop the CPU's cached committed space back into the central pool. */
423 static int cpu_swap_callback(struct notifier_block *nfb,
424 unsigned long action,
425 void *hcpu)
427 long *committed;
429 committed = &per_cpu(committed_space, (long)hcpu);
430 if (action == CPU_DEAD) {
431 atomic_add(*committed, &vm_committed_space);
432 *committed = 0;
433 __lru_add_drain((long)hcpu);
435 return NOTIFY_OK;
437 #endif /* CONFIG_HOTPLUG_CPU */
438 #endif /* CONFIG_SMP */
440 #ifdef CONFIG_SMP
441 void percpu_counter_mod(struct percpu_counter *fbc, long amount)
443 long count;
444 long *pcount;
445 int cpu = get_cpu();
447 pcount = per_cpu_ptr(fbc->counters, cpu);
448 count = *pcount + amount;
449 if (count >= FBC_BATCH || count <= -FBC_BATCH) {
450 spin_lock(&fbc->lock);
451 fbc->count += count;
452 spin_unlock(&fbc->lock);
453 count = 0;
455 *pcount = count;
456 put_cpu();
458 EXPORT_SYMBOL(percpu_counter_mod);
459 #endif
462 * Perform any setup for the swap system
464 void __init swap_setup(void)
466 unsigned long megs = num_physpages >> (20 - PAGE_SHIFT);
468 /* Use a smaller cluster for small-memory machines */
469 if (megs < 16)
470 page_cluster = 2;
471 else
472 page_cluster = 3;
474 * Right now other parts of the system means that we
475 * _really_ don't want to cluster much more
477 hotcpu_notifier(cpu_swap_callback, 0);