Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/mm/swap.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
| 5 | */ |
| 6 | |
| 7 | /* |
Simon Arlott | 183ff22 | 2007-10-20 01:27:18 +0200 | [diff] [blame] | 8 | * This file contains the default values for the operation of the |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
Paul Gortmaker | b95f1b31 | 2011-10-16 02:01:52 -0400 | [diff] [blame] | 24 | #include <linux/export.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 25 | #include <linux/mm_inline.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | #include <linux/percpu_counter.h> |
| 27 | #include <linux/percpu.h> |
| 28 | #include <linux/cpu.h> |
| 29 | #include <linux/notifier.h> |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 30 | #include <linux/backing-dev.h> |
Balbir Singh | 66e1707 | 2008-02-07 00:13:56 -0800 | [diff] [blame] | 31 | #include <linux/memcontrol.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 32 | #include <linux/gfp.h> |
Kent Overstreet | a27bb33 | 2013-05-07 16:19:08 -0700 | [diff] [blame] | 33 | #include <linux/uio.h> |
Khalid Aziz | 7cb2ef5 | 2013-09-11 14:22:20 -0700 | [diff] [blame] | 34 | #include <linux/hugetlb.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 35 | |
Lee Schermerhorn | 64d6519 | 2008-10-18 20:26:52 -0700 | [diff] [blame] | 36 | #include "internal.h" |
| 37 | |
Mel Gorman | c6286c9 | 2013-07-03 15:02:26 -0700 | [diff] [blame] | 38 | #define CREATE_TRACE_POINTS |
| 39 | #include <trace/events/pagemap.h> |
| 40 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | /* How many pages do we try to swap or page in/out together? */ |
| 42 | int page_cluster; |
| 43 | |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 44 | static DEFINE_PER_CPU(struct pagevec, lru_add_pvec); |
Vegard Nossum | f84f9504 | 2008-07-23 21:28:14 -0700 | [diff] [blame] | 45 | static DEFINE_PER_CPU(struct pagevec, lru_rotate_pvecs); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 46 | static DEFINE_PER_CPU(struct pagevec, lru_deactivate_pvecs); |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 47 | |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 48 | /* |
| 49 | * This path almost never happens for VM activity - pages are normally |
| 50 | * freed via pagevecs. But it gets used by networking. |
| 51 | */ |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 52 | static void __page_cache_release(struct page *page) |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 53 | { |
| 54 | if (PageLRU(page)) { |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 55 | struct zone *zone = page_zone(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 56 | struct lruvec *lruvec; |
| 57 | unsigned long flags; |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 58 | |
| 59 | spin_lock_irqsave(&zone->lru_lock, flags); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 60 | lruvec = mem_cgroup_page_lruvec(page, zone); |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 61 | VM_BUG_ON(!PageLRU(page)); |
| 62 | __ClearPageLRU(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 63 | del_page_from_lru_list(page, lruvec, page_off_lru(page)); |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 64 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
| 65 | } |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 66 | } |
| 67 | |
| 68 | static void __put_single_page(struct page *page) |
| 69 | { |
| 70 | __page_cache_release(page); |
Li Hong | fc91668 | 2010-03-05 13:41:54 -0800 | [diff] [blame] | 71 | free_hot_cold_page(page, 0); |
Adrian Bunk | b221385 | 2006-09-25 23:31:02 -0700 | [diff] [blame] | 72 | } |
| 73 | |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 74 | static void __put_compound_page(struct page *page) |
| 75 | { |
| 76 | compound_page_dtor *dtor; |
| 77 | |
| 78 | __page_cache_release(page); |
| 79 | dtor = get_compound_page_dtor(page); |
| 80 | (*dtor)(page); |
| 81 | } |
| 82 | |
Nick Piggin | 8519fb3 | 2006-02-07 12:58:52 -0800 | [diff] [blame] | 83 | static void put_compound_page(struct page *page) |
| 84 | { |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 85 | if (unlikely(PageTail(page))) { |
| 86 | /* __split_huge_page_refcount can run under us */ |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 87 | struct page *page_head = compound_trans_head(page); |
| 88 | |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 89 | /* |
| 90 | * THP can not break up slab pages so avoid taking |
Andrea Arcangeli | 44518d2 | 2014-01-21 15:48:54 -0800 | [diff] [blame^] | 91 | * compound_lock() and skip the tail page refcounting |
| 92 | * (in _mapcount) too. Slab performs non-atomic bit |
| 93 | * ops on page->flags for better performance. In |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 94 | * particular slab_unlock() in slub used to be a hot |
| 95 | * path. It is still hot on arches that do not support |
| 96 | * this_cpu_cmpxchg_double(). |
| 97 | * |
| 98 | * If "page" is part of a slab or hugetlbfs page it |
| 99 | * cannot be splitted and the head page cannot change |
| 100 | * from under us. And if "page" is part of a THP page |
| 101 | * under splitting, if the head page pointed by the |
| 102 | * THP tail isn't a THP head anymore, we'll find |
| 103 | * PageTail clear after smp_rmb() and we'll treat it |
| 104 | * as a single page. |
| 105 | */ |
Andrea Arcangeli | 44518d2 | 2014-01-21 15:48:54 -0800 | [diff] [blame^] | 106 | if (!__compound_tail_refcounted(page_head)) { |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 107 | /* |
| 108 | * If "page" is a THP tail, we must read the tail page |
| 109 | * flags after the head page flags. The |
| 110 | * split_huge_page side enforces write memory |
| 111 | * barriers between clearing PageTail and before the |
| 112 | * head page can be freed and reallocated. |
| 113 | */ |
| 114 | smp_rmb(); |
| 115 | if (likely(PageTail(page))) { |
| 116 | /* |
| 117 | * __split_huge_page_refcount |
| 118 | * cannot race here. |
| 119 | */ |
| 120 | VM_BUG_ON(!PageHead(page_head)); |
Andrea Arcangeli | 44518d2 | 2014-01-21 15:48:54 -0800 | [diff] [blame^] | 121 | VM_BUG_ON(page_mapcount(page) != 0); |
| 122 | if (put_page_testzero(page_head)) { |
| 123 | /* |
| 124 | * If this is the tail of a |
| 125 | * slab compound page, the |
| 126 | * tail pin must not be the |
| 127 | * last reference held on the |
| 128 | * page, because the PG_slab |
| 129 | * cannot be cleared before |
| 130 | * all tail pins (which skips |
| 131 | * the _mapcount tail |
| 132 | * refcounting) have been |
| 133 | * released. For hugetlbfs the |
| 134 | * tail pin may be the last |
| 135 | * reference on the page |
| 136 | * instead, because |
| 137 | * PageHeadHuge will not go |
| 138 | * away until the compound |
| 139 | * page enters the buddy |
| 140 | * allocator. |
| 141 | */ |
| 142 | VM_BUG_ON(PageSlab(page_head)); |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 143 | __put_compound_page(page_head); |
Andrea Arcangeli | 44518d2 | 2014-01-21 15:48:54 -0800 | [diff] [blame^] | 144 | } |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 145 | return; |
| 146 | } else |
| 147 | /* |
| 148 | * __split_huge_page_refcount |
| 149 | * run before us, "page" was a |
| 150 | * THP tail. The split |
| 151 | * page_head has been freed |
| 152 | * and reallocated as slab or |
| 153 | * hugetlbfs page of smaller |
| 154 | * order (only possible if |
| 155 | * reallocated as slab on |
| 156 | * x86). |
| 157 | */ |
| 158 | goto out_put_single; |
| 159 | } |
| 160 | |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 161 | if (likely(page != page_head && |
| 162 | get_page_unless_zero(page_head))) { |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 163 | unsigned long flags; |
Pravin B Shelar | 5bf5f03 | 2012-05-29 15:06:49 -0700 | [diff] [blame] | 164 | |
| 165 | /* |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 166 | * page_head wasn't a dangling pointer but it |
| 167 | * may not be a head page anymore by the time |
| 168 | * we obtain the lock. That is ok as long as it |
| 169 | * can't be freed from under us. |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 170 | */ |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 171 | flags = compound_lock_irqsave(page_head); |
| 172 | if (unlikely(!PageTail(page))) { |
| 173 | /* __split_huge_page_refcount run before us */ |
| 174 | compound_unlock_irqrestore(page_head, flags); |
Andrea Arcangeli | 27c73ae | 2013-11-21 14:32:02 -0800 | [diff] [blame] | 175 | if (put_page_testzero(page_head)) { |
| 176 | /* |
| 177 | * The head page may have been |
| 178 | * freed and reallocated as a |
| 179 | * compound page of smaller |
| 180 | * order and then freed again. |
| 181 | * All we know is that it |
| 182 | * cannot have become: a THP |
| 183 | * page, a compound page of |
| 184 | * higher order, a tail page. |
| 185 | * That is because we still |
| 186 | * hold the refcount of the |
| 187 | * split THP tail and |
| 188 | * page_head was the THP head |
| 189 | * before the split. |
| 190 | */ |
| 191 | if (PageHead(page_head)) |
| 192 | __put_compound_page(page_head); |
| 193 | else |
| 194 | __put_single_page(page_head); |
| 195 | } |
Pravin B Shelar | 5bf5f03 | 2012-05-29 15:06:49 -0700 | [diff] [blame] | 196 | out_put_single: |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 197 | if (put_page_testzero(page)) |
| 198 | __put_single_page(page); |
| 199 | return; |
| 200 | } |
| 201 | VM_BUG_ON(page_head != page->first_page); |
| 202 | /* |
| 203 | * We can release the refcount taken by |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 204 | * get_page_unless_zero() now that |
| 205 | * __split_huge_page_refcount() is blocked on |
| 206 | * the compound_lock. |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 207 | */ |
| 208 | if (put_page_testzero(page_head)) |
| 209 | VM_BUG_ON(1); |
| 210 | /* __split_huge_page_refcount will wait now */ |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 211 | VM_BUG_ON(page_mapcount(page) <= 0); |
| 212 | atomic_dec(&page->_mapcount); |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 213 | VM_BUG_ON(atomic_read(&page_head->_count) <= 0); |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 214 | VM_BUG_ON(atomic_read(&page->_count) != 0); |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 215 | compound_unlock_irqrestore(page_head, flags); |
Pravin B Shelar | 5bf5f03 | 2012-05-29 15:06:49 -0700 | [diff] [blame] | 216 | |
Andrea Arcangeli | a95a82e | 2011-01-13 15:46:33 -0800 | [diff] [blame] | 217 | if (put_page_testzero(page_head)) { |
| 218 | if (PageHead(page_head)) |
| 219 | __put_compound_page(page_head); |
| 220 | else |
| 221 | __put_single_page(page_head); |
| 222 | } |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 223 | } else { |
| 224 | /* page_head is a dangling pointer */ |
| 225 | VM_BUG_ON(PageTail(page)); |
| 226 | goto out_put_single; |
| 227 | } |
| 228 | } else if (put_page_testzero(page)) { |
| 229 | if (PageHead(page)) |
| 230 | __put_compound_page(page); |
| 231 | else |
| 232 | __put_single_page(page); |
Nick Piggin | 8519fb3 | 2006-02-07 12:58:52 -0800 | [diff] [blame] | 233 | } |
| 234 | } |
| 235 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 236 | void put_page(struct page *page) |
| 237 | { |
Nick Piggin | 8519fb3 | 2006-02-07 12:58:52 -0800 | [diff] [blame] | 238 | if (unlikely(PageCompound(page))) |
| 239 | put_compound_page(page); |
| 240 | else if (put_page_testzero(page)) |
Andrea Arcangeli | 9180706 | 2011-01-13 15:46:32 -0800 | [diff] [blame] | 241 | __put_single_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 242 | } |
| 243 | EXPORT_SYMBOL(put_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 244 | |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 245 | /* |
| 246 | * This function is exported but must not be called by anything other |
| 247 | * than get_page(). It implements the slow path of get_page(). |
| 248 | */ |
| 249 | bool __get_page_tail(struct page *page) |
| 250 | { |
| 251 | /* |
| 252 | * This takes care of get_page() if run on a tail page |
| 253 | * returned by one of the get_user_pages/follow_page variants. |
| 254 | * get_user_pages/follow_page itself doesn't need the compound |
| 255 | * lock because it runs __get_page_tail_foll() under the |
| 256 | * proper PT lock that already serializes against |
| 257 | * split_huge_page(). |
| 258 | */ |
Andrea Arcangeli | 27c73ae | 2013-11-21 14:32:02 -0800 | [diff] [blame] | 259 | unsigned long flags; |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 260 | bool got; |
Andrea Arcangeli | 27c73ae | 2013-11-21 14:32:02 -0800 | [diff] [blame] | 261 | struct page *page_head = compound_trans_head(page); |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 262 | |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 263 | /* Ref to put_compound_page() comment. */ |
| 264 | if (PageSlab(page_head) || PageHeadHuge(page_head)) { |
| 265 | smp_rmb(); |
| 266 | if (likely(PageTail(page))) { |
| 267 | /* |
| 268 | * This is a hugetlbfs page or a slab |
| 269 | * page. __split_huge_page_refcount |
| 270 | * cannot race here. |
| 271 | */ |
| 272 | VM_BUG_ON(!PageHead(page_head)); |
| 273 | __get_page_tail_foll(page, true); |
| 274 | return true; |
| 275 | } else { |
| 276 | /* |
| 277 | * __split_huge_page_refcount run |
| 278 | * before us, "page" was a THP |
| 279 | * tail. The split page_head has been |
| 280 | * freed and reallocated as slab or |
| 281 | * hugetlbfs page of smaller order |
| 282 | * (only possible if reallocated as |
| 283 | * slab on x86). |
| 284 | */ |
| 285 | return false; |
Pravin B Shelar | 5bf5f03 | 2012-05-29 15:06:49 -0700 | [diff] [blame] | 286 | } |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 287 | } |
Andrea Arcangeli | 27c73ae | 2013-11-21 14:32:02 -0800 | [diff] [blame] | 288 | |
Andrea Arcangeli | ebf360f | 2014-01-21 15:48:51 -0800 | [diff] [blame] | 289 | got = false; |
| 290 | if (likely(page != page_head && get_page_unless_zero(page_head))) { |
Andrea Arcangeli | 27c73ae | 2013-11-21 14:32:02 -0800 | [diff] [blame] | 291 | /* |
| 292 | * page_head wasn't a dangling pointer but it |
| 293 | * may not be a head page anymore by the time |
| 294 | * we obtain the lock. That is ok as long as it |
| 295 | * can't be freed from under us. |
| 296 | */ |
| 297 | flags = compound_lock_irqsave(page_head); |
| 298 | /* here __split_huge_page_refcount won't run anymore */ |
| 299 | if (likely(PageTail(page))) { |
| 300 | __get_page_tail_foll(page, false); |
| 301 | got = true; |
| 302 | } |
| 303 | compound_unlock_irqrestore(page_head, flags); |
| 304 | if (unlikely(!got)) |
| 305 | put_page(page_head); |
Andrea Arcangeli | 70b50f9 | 2011-11-02 13:36:59 -0700 | [diff] [blame] | 306 | } |
| 307 | return got; |
| 308 | } |
| 309 | EXPORT_SYMBOL(__get_page_tail); |
| 310 | |
Alexander Zarochentsev | 1d7ea73 | 2006-08-13 23:24:27 -0700 | [diff] [blame] | 311 | /** |
Randy Dunlap | 7682486 | 2008-03-19 17:00:40 -0700 | [diff] [blame] | 312 | * put_pages_list() - release a list of pages |
| 313 | * @pages: list of pages threaded on page->lru |
Alexander Zarochentsev | 1d7ea73 | 2006-08-13 23:24:27 -0700 | [diff] [blame] | 314 | * |
| 315 | * Release a list of pages which are strung together on page.lru. Currently |
| 316 | * used by read_cache_pages() and related error recovery code. |
Alexander Zarochentsev | 1d7ea73 | 2006-08-13 23:24:27 -0700 | [diff] [blame] | 317 | */ |
| 318 | void put_pages_list(struct list_head *pages) |
| 319 | { |
| 320 | while (!list_empty(pages)) { |
| 321 | struct page *victim; |
| 322 | |
| 323 | victim = list_entry(pages->prev, struct page, lru); |
| 324 | list_del(&victim->lru); |
| 325 | page_cache_release(victim); |
| 326 | } |
| 327 | } |
| 328 | EXPORT_SYMBOL(put_pages_list); |
| 329 | |
Mel Gorman | 18022c5 | 2012-07-31 16:44:51 -0700 | [diff] [blame] | 330 | /* |
| 331 | * get_kernel_pages() - pin kernel pages in memory |
| 332 | * @kiov: An array of struct kvec structures |
| 333 | * @nr_segs: number of segments to pin |
| 334 | * @write: pinning for read/write, currently ignored |
| 335 | * @pages: array that receives pointers to the pages pinned. |
| 336 | * Should be at least nr_segs long. |
| 337 | * |
| 338 | * Returns number of pages pinned. This may be fewer than the number |
| 339 | * requested. If nr_pages is 0 or negative, returns 0. If no pages |
| 340 | * were pinned, returns -errno. Each page returned must be released |
| 341 | * with a put_page() call when it is finished with. |
| 342 | */ |
| 343 | int get_kernel_pages(const struct kvec *kiov, int nr_segs, int write, |
| 344 | struct page **pages) |
| 345 | { |
| 346 | int seg; |
| 347 | |
| 348 | for (seg = 0; seg < nr_segs; seg++) { |
| 349 | if (WARN_ON(kiov[seg].iov_len != PAGE_SIZE)) |
| 350 | return seg; |
| 351 | |
Mel Gorman | 5a17811 | 2012-07-31 16:45:02 -0700 | [diff] [blame] | 352 | pages[seg] = kmap_to_page(kiov[seg].iov_base); |
Mel Gorman | 18022c5 | 2012-07-31 16:44:51 -0700 | [diff] [blame] | 353 | page_cache_get(pages[seg]); |
| 354 | } |
| 355 | |
| 356 | return seg; |
| 357 | } |
| 358 | EXPORT_SYMBOL_GPL(get_kernel_pages); |
| 359 | |
| 360 | /* |
| 361 | * get_kernel_page() - pin a kernel page in memory |
| 362 | * @start: starting kernel address |
| 363 | * @write: pinning for read/write, currently ignored |
| 364 | * @pages: array that receives pointer to the page pinned. |
| 365 | * Must be at least nr_segs long. |
| 366 | * |
| 367 | * Returns 1 if page is pinned. If the page was not pinned, returns |
| 368 | * -errno. The page returned must be released with a put_page() call |
| 369 | * when it is finished with. |
| 370 | */ |
| 371 | int get_kernel_page(unsigned long start, int write, struct page **pages) |
| 372 | { |
| 373 | const struct kvec kiov = { |
| 374 | .iov_base = (void *)start, |
| 375 | .iov_len = PAGE_SIZE |
| 376 | }; |
| 377 | |
| 378 | return get_kernel_pages(&kiov, 1, write, pages); |
| 379 | } |
| 380 | EXPORT_SYMBOL_GPL(get_kernel_page); |
| 381 | |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 382 | static void pagevec_lru_move_fn(struct pagevec *pvec, |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 383 | void (*move_fn)(struct page *page, struct lruvec *lruvec, void *arg), |
| 384 | void *arg) |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 385 | { |
| 386 | int i; |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 387 | struct zone *zone = NULL; |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 388 | struct lruvec *lruvec; |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 389 | unsigned long flags = 0; |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 390 | |
| 391 | for (i = 0; i < pagevec_count(pvec); i++) { |
| 392 | struct page *page = pvec->pages[i]; |
| 393 | struct zone *pagezone = page_zone(page); |
| 394 | |
| 395 | if (pagezone != zone) { |
| 396 | if (zone) |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 397 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 398 | zone = pagezone; |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 399 | spin_lock_irqsave(&zone->lru_lock, flags); |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 400 | } |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 401 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 402 | lruvec = mem_cgroup_page_lruvec(page, zone); |
| 403 | (*move_fn)(page, lruvec, arg); |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 404 | } |
| 405 | if (zone) |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 406 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
Linus Torvalds | 83896fb | 2011-01-17 14:42:34 -0800 | [diff] [blame] | 407 | release_pages(pvec->pages, pvec->nr, pvec->cold); |
| 408 | pagevec_reinit(pvec); |
Shaohua Li | d8505de | 2011-01-13 15:47:33 -0800 | [diff] [blame] | 409 | } |
| 410 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 411 | static void pagevec_move_tail_fn(struct page *page, struct lruvec *lruvec, |
| 412 | void *arg) |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 413 | { |
| 414 | int *pgmoved = arg; |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 415 | |
| 416 | if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) { |
| 417 | enum lru_list lru = page_lru_base_type(page); |
Johannes Weiner | 925b767 | 2012-01-12 17:18:15 -0800 | [diff] [blame] | 418 | list_move_tail(&page->lru, &lruvec->lists[lru]); |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 419 | (*pgmoved)++; |
| 420 | } |
| 421 | } |
| 422 | |
| 423 | /* |
| 424 | * pagevec_move_tail() must be called with IRQ disabled. |
| 425 | * Otherwise this may cause nasty races. |
| 426 | */ |
| 427 | static void pagevec_move_tail(struct pagevec *pvec) |
| 428 | { |
| 429 | int pgmoved = 0; |
| 430 | |
| 431 | pagevec_lru_move_fn(pvec, pagevec_move_tail_fn, &pgmoved); |
| 432 | __count_vm_events(PGROTATED, pgmoved); |
| 433 | } |
| 434 | |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 435 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | * Writeback is about to end against a page which has been marked for immediate |
| 437 | * reclaim. If it still appears to be reclaimable, move it to the tail of the |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 438 | * inactive list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 439 | */ |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 440 | void rotate_reclaimable_page(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | { |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 442 | if (!PageLocked(page) && !PageDirty(page) && !PageActive(page) && |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 443 | !PageUnevictable(page) && PageLRU(page)) { |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 444 | struct pagevec *pvec; |
| 445 | unsigned long flags; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | |
Miklos Szeredi | ac6aadb | 2008-04-28 02:12:38 -0700 | [diff] [blame] | 447 | page_cache_get(page); |
| 448 | local_irq_save(flags); |
| 449 | pvec = &__get_cpu_var(lru_rotate_pvecs); |
| 450 | if (!pagevec_add(pvec, page)) |
| 451 | pagevec_move_tail(pvec); |
| 452 | local_irq_restore(flags); |
| 453 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | } |
| 455 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 456 | static void update_page_reclaim_stat(struct lruvec *lruvec, |
KOSAKI Motohiro | 3e2f41f | 2009-01-07 18:08:20 -0800 | [diff] [blame] | 457 | int file, int rotated) |
| 458 | { |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 459 | struct zone_reclaim_stat *reclaim_stat = &lruvec->reclaim_stat; |
KOSAKI Motohiro | 3e2f41f | 2009-01-07 18:08:20 -0800 | [diff] [blame] | 460 | |
| 461 | reclaim_stat->recent_scanned[file]++; |
| 462 | if (rotated) |
| 463 | reclaim_stat->recent_rotated[file]++; |
KOSAKI Motohiro | 3e2f41f | 2009-01-07 18:08:20 -0800 | [diff] [blame] | 464 | } |
| 465 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 466 | static void __activate_page(struct page *page, struct lruvec *lruvec, |
| 467 | void *arg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | { |
Linus Torvalds | 7a60857 | 2011-01-17 14:42:19 -0800 | [diff] [blame] | 469 | if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) { |
| 470 | int file = page_is_file_cache(page); |
| 471 | int lru = page_lru_base_type(page); |
Linus Torvalds | 7a60857 | 2011-01-17 14:42:19 -0800 | [diff] [blame] | 472 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 473 | del_page_from_lru_list(page, lruvec, lru); |
Linus Torvalds | 7a60857 | 2011-01-17 14:42:19 -0800 | [diff] [blame] | 474 | SetPageActive(page); |
| 475 | lru += LRU_ACTIVE; |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 476 | add_page_to_lru_list(page, lruvec, lru); |
Mel Gorman | c6286c9 | 2013-07-03 15:02:26 -0700 | [diff] [blame] | 477 | trace_mm_lru_activate(page, page_to_pfn(page)); |
Linus Torvalds | 7a60857 | 2011-01-17 14:42:19 -0800 | [diff] [blame] | 478 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 479 | __count_vm_event(PGACTIVATE); |
| 480 | update_page_reclaim_stat(lruvec, file, 1); |
Linus Torvalds | 7a60857 | 2011-01-17 14:42:19 -0800 | [diff] [blame] | 481 | } |
Shaohua Li | eb709b0 | 2011-05-24 17:12:55 -0700 | [diff] [blame] | 482 | } |
| 483 | |
| 484 | #ifdef CONFIG_SMP |
| 485 | static DEFINE_PER_CPU(struct pagevec, activate_page_pvecs); |
| 486 | |
| 487 | static void activate_page_drain(int cpu) |
| 488 | { |
| 489 | struct pagevec *pvec = &per_cpu(activate_page_pvecs, cpu); |
| 490 | |
| 491 | if (pagevec_count(pvec)) |
| 492 | pagevec_lru_move_fn(pvec, __activate_page, NULL); |
| 493 | } |
| 494 | |
Chris Metcalf | 5fbc461 | 2013-09-12 15:13:55 -0700 | [diff] [blame] | 495 | static bool need_activate_page_drain(int cpu) |
| 496 | { |
| 497 | return pagevec_count(&per_cpu(activate_page_pvecs, cpu)) != 0; |
| 498 | } |
| 499 | |
Shaohua Li | eb709b0 | 2011-05-24 17:12:55 -0700 | [diff] [blame] | 500 | void activate_page(struct page *page) |
| 501 | { |
| 502 | if (PageLRU(page) && !PageActive(page) && !PageUnevictable(page)) { |
| 503 | struct pagevec *pvec = &get_cpu_var(activate_page_pvecs); |
| 504 | |
| 505 | page_cache_get(page); |
| 506 | if (!pagevec_add(pvec, page)) |
| 507 | pagevec_lru_move_fn(pvec, __activate_page, NULL); |
| 508 | put_cpu_var(activate_page_pvecs); |
| 509 | } |
| 510 | } |
| 511 | |
| 512 | #else |
| 513 | static inline void activate_page_drain(int cpu) |
| 514 | { |
| 515 | } |
| 516 | |
Chris Metcalf | 5fbc461 | 2013-09-12 15:13:55 -0700 | [diff] [blame] | 517 | static bool need_activate_page_drain(int cpu) |
| 518 | { |
| 519 | return false; |
| 520 | } |
| 521 | |
Shaohua Li | eb709b0 | 2011-05-24 17:12:55 -0700 | [diff] [blame] | 522 | void activate_page(struct page *page) |
| 523 | { |
| 524 | struct zone *zone = page_zone(page); |
| 525 | |
| 526 | spin_lock_irq(&zone->lru_lock); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 527 | __activate_page(page, mem_cgroup_page_lruvec(page, zone), NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | spin_unlock_irq(&zone->lru_lock); |
| 529 | } |
Shaohua Li | eb709b0 | 2011-05-24 17:12:55 -0700 | [diff] [blame] | 530 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 531 | |
Mel Gorman | 059285a | 2013-07-03 15:02:30 -0700 | [diff] [blame] | 532 | static void __lru_cache_activate_page(struct page *page) |
| 533 | { |
| 534 | struct pagevec *pvec = &get_cpu_var(lru_add_pvec); |
| 535 | int i; |
| 536 | |
| 537 | /* |
| 538 | * Search backwards on the optimistic assumption that the page being |
| 539 | * activated has just been added to this pagevec. Note that only |
| 540 | * the local pagevec is examined as a !PageLRU page could be in the |
| 541 | * process of being released, reclaimed, migrated or on a remote |
| 542 | * pagevec that is currently being drained. Furthermore, marking |
| 543 | * a remote pagevec's page PageActive potentially hits a race where |
| 544 | * a page is marked PageActive just after it is added to the inactive |
| 545 | * list causing accounting errors and BUG_ON checks to trigger. |
| 546 | */ |
| 547 | for (i = pagevec_count(pvec) - 1; i >= 0; i--) { |
| 548 | struct page *pagevec_page = pvec->pages[i]; |
| 549 | |
| 550 | if (pagevec_page == page) { |
| 551 | SetPageActive(page); |
| 552 | break; |
| 553 | } |
| 554 | } |
| 555 | |
| 556 | put_cpu_var(lru_add_pvec); |
| 557 | } |
| 558 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 559 | /* |
| 560 | * Mark a page as having seen activity. |
| 561 | * |
| 562 | * inactive,unreferenced -> inactive,referenced |
| 563 | * inactive,referenced -> active,unreferenced |
| 564 | * active,unreferenced -> active,referenced |
| 565 | */ |
Harvey Harrison | 920c7a5 | 2008-02-04 22:29:26 -0800 | [diff] [blame] | 566 | void mark_page_accessed(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 567 | { |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 568 | if (!PageActive(page) && !PageUnevictable(page) && |
Mel Gorman | 059285a | 2013-07-03 15:02:30 -0700 | [diff] [blame] | 569 | PageReferenced(page)) { |
| 570 | |
| 571 | /* |
| 572 | * If the page is on the LRU, queue it for activation via |
| 573 | * activate_page_pvecs. Otherwise, assume the page is on a |
| 574 | * pagevec, mark it active and it'll be moved to the active |
| 575 | * LRU on the next drain. |
| 576 | */ |
| 577 | if (PageLRU(page)) |
| 578 | activate_page(page); |
| 579 | else |
| 580 | __lru_cache_activate_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 581 | ClearPageReferenced(page); |
| 582 | } else if (!PageReferenced(page)) { |
| 583 | SetPageReferenced(page); |
| 584 | } |
| 585 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 586 | EXPORT_SYMBOL(mark_page_accessed); |
| 587 | |
Robin Dong | d741c9c | 2012-10-08 16:29:05 -0700 | [diff] [blame] | 588 | /* |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 589 | * Queue the page for addition to the LRU via pagevec. The decision on whether |
| 590 | * to add the page to the [in]active [file|anon] list is deferred until the |
| 591 | * pagevec is drained. This gives a chance for the caller of __lru_cache_add() |
| 592 | * have the page added to the active list using mark_page_accessed(). |
Robin Dong | d741c9c | 2012-10-08 16:29:05 -0700 | [diff] [blame] | 593 | */ |
Mel Gorman | c53954a | 2013-07-03 15:02:34 -0700 | [diff] [blame] | 594 | void __lru_cache_add(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | { |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 596 | struct pagevec *pvec = &get_cpu_var(lru_add_pvec); |
| 597 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | page_cache_get(page); |
Robin Dong | d741c9c | 2012-10-08 16:29:05 -0700 | [diff] [blame] | 599 | if (!pagevec_space(pvec)) |
Mel Gorman | a0b8cab3 | 2013-07-03 15:02:32 -0700 | [diff] [blame] | 600 | __pagevec_lru_add(pvec); |
Robin Dong | d741c9c | 2012-10-08 16:29:05 -0700 | [diff] [blame] | 601 | pagevec_add(pvec, page); |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 602 | put_cpu_var(lru_add_pvec); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 603 | } |
Miklos Szeredi | 47846b0 | 2010-05-25 15:06:06 +0200 | [diff] [blame] | 604 | EXPORT_SYMBOL(__lru_cache_add); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 605 | |
KOSAKI Motohiro | f04e9eb | 2008-10-18 20:26:19 -0700 | [diff] [blame] | 606 | /** |
Mel Gorman | c53954a | 2013-07-03 15:02:34 -0700 | [diff] [blame] | 607 | * lru_cache_add - add a page to a page list |
KOSAKI Motohiro | f04e9eb | 2008-10-18 20:26:19 -0700 | [diff] [blame] | 608 | * @page: the page to be added to the LRU. |
KOSAKI Motohiro | f04e9eb | 2008-10-18 20:26:19 -0700 | [diff] [blame] | 609 | */ |
Mel Gorman | c53954a | 2013-07-03 15:02:34 -0700 | [diff] [blame] | 610 | void lru_cache_add(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 611 | { |
Naoya Horiguchi | ef2a2cb | 2013-07-31 13:53:37 -0700 | [diff] [blame] | 612 | VM_BUG_ON(PageActive(page) && PageUnevictable(page)); |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 613 | VM_BUG_ON(PageLRU(page)); |
Mel Gorman | c53954a | 2013-07-03 15:02:34 -0700 | [diff] [blame] | 614 | __lru_cache_add(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 615 | } |
| 616 | |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 617 | /** |
| 618 | * add_page_to_unevictable_list - add a page to the unevictable list |
| 619 | * @page: the page to be added to the unevictable list |
| 620 | * |
| 621 | * Add page directly to its zone's unevictable list. To avoid races with |
| 622 | * tasks that might be making the page evictable, through eg. munlock, |
| 623 | * munmap or exit, while it's not on the lru, we want to add the page |
| 624 | * while it's locked or otherwise "invisible" to other tasks. This is |
| 625 | * difficult to do when using the pagevec cache, so bypass that. |
| 626 | */ |
| 627 | void add_page_to_unevictable_list(struct page *page) |
| 628 | { |
| 629 | struct zone *zone = page_zone(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 630 | struct lruvec *lruvec; |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 631 | |
| 632 | spin_lock_irq(&zone->lru_lock); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 633 | lruvec = mem_cgroup_page_lruvec(page, zone); |
Naoya Horiguchi | ef2a2cb | 2013-07-31 13:53:37 -0700 | [diff] [blame] | 634 | ClearPageActive(page); |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 635 | SetPageUnevictable(page); |
| 636 | SetPageLRU(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 637 | add_page_to_lru_list(page, lruvec, LRU_UNEVICTABLE); |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 638 | spin_unlock_irq(&zone->lru_lock); |
| 639 | } |
| 640 | |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 641 | /* |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 642 | * If the page can not be invalidated, it is moved to the |
| 643 | * inactive list to speed up its reclaim. It is moved to the |
| 644 | * head of the list, rather than the tail, to give the flusher |
| 645 | * threads some time to write it out, as this is much more |
| 646 | * effective than the single-page writeout from reclaim. |
Minchan Kim | 278df9f | 2011-03-22 16:32:54 -0700 | [diff] [blame] | 647 | * |
| 648 | * If the page isn't page_mapped and dirty/writeback, the page |
| 649 | * could reclaim asap using PG_reclaim. |
| 650 | * |
| 651 | * 1. active, mapped page -> none |
| 652 | * 2. active, dirty/writeback page -> inactive, head, PG_reclaim |
| 653 | * 3. inactive, mapped page -> none |
| 654 | * 4. inactive, dirty/writeback page -> inactive, head, PG_reclaim |
| 655 | * 5. inactive, clean -> inactive, tail |
| 656 | * 6. Others -> none |
| 657 | * |
| 658 | * In 4, why it moves inactive's head, the VM expects the page would |
| 659 | * be write it out by flusher threads as this is much more effective |
| 660 | * than the single-page writeout from reclaim. |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 661 | */ |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 662 | static void lru_deactivate_fn(struct page *page, struct lruvec *lruvec, |
| 663 | void *arg) |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 664 | { |
| 665 | int lru, file; |
Minchan Kim | 278df9f | 2011-03-22 16:32:54 -0700 | [diff] [blame] | 666 | bool active; |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 667 | |
Minchan Kim | 278df9f | 2011-03-22 16:32:54 -0700 | [diff] [blame] | 668 | if (!PageLRU(page)) |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 669 | return; |
| 670 | |
Minchan Kim | bad49d9 | 2011-05-11 15:13:30 -0700 | [diff] [blame] | 671 | if (PageUnevictable(page)) |
| 672 | return; |
| 673 | |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 674 | /* Some processes are using the page */ |
| 675 | if (page_mapped(page)) |
| 676 | return; |
| 677 | |
Minchan Kim | 278df9f | 2011-03-22 16:32:54 -0700 | [diff] [blame] | 678 | active = PageActive(page); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 679 | file = page_is_file_cache(page); |
| 680 | lru = page_lru_base_type(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 681 | |
| 682 | del_page_from_lru_list(page, lruvec, lru + active); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 683 | ClearPageActive(page); |
| 684 | ClearPageReferenced(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 685 | add_page_to_lru_list(page, lruvec, lru); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 686 | |
Minchan Kim | 278df9f | 2011-03-22 16:32:54 -0700 | [diff] [blame] | 687 | if (PageWriteback(page) || PageDirty(page)) { |
| 688 | /* |
| 689 | * PG_reclaim could be raced with end_page_writeback |
| 690 | * It can make readahead confusing. But race window |
| 691 | * is _really_ small and it's non-critical problem. |
| 692 | */ |
| 693 | SetPageReclaim(page); |
| 694 | } else { |
| 695 | /* |
| 696 | * The page's writeback ends up during pagevec |
| 697 | * We moves tha page into tail of inactive. |
| 698 | */ |
Johannes Weiner | 925b767 | 2012-01-12 17:18:15 -0800 | [diff] [blame] | 699 | list_move_tail(&page->lru, &lruvec->lists[lru]); |
Minchan Kim | 278df9f | 2011-03-22 16:32:54 -0700 | [diff] [blame] | 700 | __count_vm_event(PGROTATED); |
| 701 | } |
| 702 | |
| 703 | if (active) |
| 704 | __count_vm_event(PGDEACTIVATE); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 705 | update_page_reclaim_stat(lruvec, file, 0); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 706 | } |
| 707 | |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 708 | /* |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 709 | * Drain pages out of the cpu's pagevecs. |
| 710 | * Either "cpu" is the current CPU, and preemption has already been |
| 711 | * disabled; or "cpu" is being hot-unplugged, and is already dead. |
| 712 | */ |
Konstantin Khlebnikov | f0cb3c7 | 2012-03-21 16:34:06 -0700 | [diff] [blame] | 713 | void lru_add_drain_cpu(int cpu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 714 | { |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 715 | struct pagevec *pvec = &per_cpu(lru_add_pvec, cpu); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 717 | if (pagevec_count(pvec)) |
Mel Gorman | a0b8cab3 | 2013-07-03 15:02:32 -0700 | [diff] [blame] | 718 | __pagevec_lru_add(pvec); |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 719 | |
| 720 | pvec = &per_cpu(lru_rotate_pvecs, cpu); |
| 721 | if (pagevec_count(pvec)) { |
| 722 | unsigned long flags; |
| 723 | |
| 724 | /* No harm done if a racing interrupt already did this */ |
| 725 | local_irq_save(flags); |
| 726 | pagevec_move_tail(pvec); |
| 727 | local_irq_restore(flags); |
| 728 | } |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 729 | |
| 730 | pvec = &per_cpu(lru_deactivate_pvecs, cpu); |
| 731 | if (pagevec_count(pvec)) |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 732 | pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL); |
Shaohua Li | eb709b0 | 2011-05-24 17:12:55 -0700 | [diff] [blame] | 733 | |
| 734 | activate_page_drain(cpu); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 735 | } |
| 736 | |
| 737 | /** |
| 738 | * deactivate_page - forcefully deactivate a page |
| 739 | * @page: page to deactivate |
| 740 | * |
| 741 | * This function hints the VM that @page is a good reclaim candidate, |
| 742 | * for example if its invalidation fails due to the page being dirty |
| 743 | * or under writeback. |
| 744 | */ |
| 745 | void deactivate_page(struct page *page) |
| 746 | { |
Minchan Kim | 821ed6b | 2011-05-24 17:12:31 -0700 | [diff] [blame] | 747 | /* |
| 748 | * In a workload with many unevictable page such as mprotect, unevictable |
| 749 | * page deactivation for accelerating reclaim is pointless. |
| 750 | */ |
| 751 | if (PageUnevictable(page)) |
| 752 | return; |
| 753 | |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 754 | if (likely(get_page_unless_zero(page))) { |
| 755 | struct pagevec *pvec = &get_cpu_var(lru_deactivate_pvecs); |
| 756 | |
| 757 | if (!pagevec_add(pvec, page)) |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 758 | pagevec_lru_move_fn(pvec, lru_deactivate_fn, NULL); |
Minchan Kim | 3156018 | 2011-03-22 16:32:52 -0700 | [diff] [blame] | 759 | put_cpu_var(lru_deactivate_pvecs); |
| 760 | } |
Andrew Morton | 80bfed9 | 2006-01-06 00:11:14 -0800 | [diff] [blame] | 761 | } |
| 762 | |
| 763 | void lru_add_drain(void) |
| 764 | { |
Konstantin Khlebnikov | f0cb3c7 | 2012-03-21 16:34:06 -0700 | [diff] [blame] | 765 | lru_add_drain_cpu(get_cpu()); |
Andrew Morton | 80bfed9 | 2006-01-06 00:11:14 -0800 | [diff] [blame] | 766 | put_cpu(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 767 | } |
| 768 | |
David Howells | c402895 | 2006-11-22 14:57:56 +0000 | [diff] [blame] | 769 | static void lru_add_drain_per_cpu(struct work_struct *dummy) |
Nick Piggin | 053837f | 2006-01-18 17:42:27 -0800 | [diff] [blame] | 770 | { |
| 771 | lru_add_drain(); |
| 772 | } |
| 773 | |
Chris Metcalf | 5fbc461 | 2013-09-12 15:13:55 -0700 | [diff] [blame] | 774 | static DEFINE_PER_CPU(struct work_struct, lru_add_drain_work); |
| 775 | |
| 776 | void lru_add_drain_all(void) |
Nick Piggin | 053837f | 2006-01-18 17:42:27 -0800 | [diff] [blame] | 777 | { |
Chris Metcalf | 5fbc461 | 2013-09-12 15:13:55 -0700 | [diff] [blame] | 778 | static DEFINE_MUTEX(lock); |
| 779 | static struct cpumask has_work; |
| 780 | int cpu; |
| 781 | |
| 782 | mutex_lock(&lock); |
| 783 | get_online_cpus(); |
| 784 | cpumask_clear(&has_work); |
| 785 | |
| 786 | for_each_online_cpu(cpu) { |
| 787 | struct work_struct *work = &per_cpu(lru_add_drain_work, cpu); |
| 788 | |
| 789 | if (pagevec_count(&per_cpu(lru_add_pvec, cpu)) || |
| 790 | pagevec_count(&per_cpu(lru_rotate_pvecs, cpu)) || |
| 791 | pagevec_count(&per_cpu(lru_deactivate_pvecs, cpu)) || |
| 792 | need_activate_page_drain(cpu)) { |
| 793 | INIT_WORK(work, lru_add_drain_per_cpu); |
| 794 | schedule_work_on(cpu, work); |
| 795 | cpumask_set_cpu(cpu, &has_work); |
| 796 | } |
| 797 | } |
| 798 | |
| 799 | for_each_cpu(cpu, &has_work) |
| 800 | flush_work(&per_cpu(lru_add_drain_work, cpu)); |
| 801 | |
| 802 | put_online_cpus(); |
| 803 | mutex_unlock(&lock); |
Nick Piggin | 053837f | 2006-01-18 17:42:27 -0800 | [diff] [blame] | 804 | } |
| 805 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 806 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | * Batched page_cache_release(). Decrement the reference count on all the |
| 808 | * passed pages. If it fell to zero then remove the page from the LRU and |
| 809 | * free it. |
| 810 | * |
| 811 | * Avoid taking zone->lru_lock if possible, but if it is taken, retain it |
| 812 | * for the remainder of the operation. |
| 813 | * |
Fernando Luis Vazquez Cao | ab33dc0 | 2008-07-29 22:33:40 -0700 | [diff] [blame] | 814 | * The locking in this function is against shrink_inactive_list(): we recheck |
| 815 | * the page count inside the lock to see whether shrink_inactive_list() |
| 816 | * grabbed the page via the LRU. If it did, give up: shrink_inactive_list() |
| 817 | * will free it. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | */ |
| 819 | void release_pages(struct page **pages, int nr, int cold) |
| 820 | { |
| 821 | int i; |
Konstantin Khlebnikov | cc59850 | 2012-01-10 15:07:04 -0800 | [diff] [blame] | 822 | LIST_HEAD(pages_to_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 823 | struct zone *zone = NULL; |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 824 | struct lruvec *lruvec; |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 825 | unsigned long uninitialized_var(flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 827 | for (i = 0; i < nr; i++) { |
| 828 | struct page *page = pages[i]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 829 | |
Nick Piggin | 8519fb3 | 2006-02-07 12:58:52 -0800 | [diff] [blame] | 830 | if (unlikely(PageCompound(page))) { |
| 831 | if (zone) { |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 832 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
Nick Piggin | 8519fb3 | 2006-02-07 12:58:52 -0800 | [diff] [blame] | 833 | zone = NULL; |
| 834 | } |
| 835 | put_compound_page(page); |
| 836 | continue; |
| 837 | } |
| 838 | |
Nick Piggin | b581003 | 2005-10-29 18:16:12 -0700 | [diff] [blame] | 839 | if (!put_page_testzero(page)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 840 | continue; |
| 841 | |
Nick Piggin | 46453a6 | 2006-03-22 00:07:58 -0800 | [diff] [blame] | 842 | if (PageLRU(page)) { |
| 843 | struct zone *pagezone = page_zone(page); |
Lee Schermerhorn | 894bc31 | 2008-10-18 20:26:39 -0700 | [diff] [blame] | 844 | |
Nick Piggin | 46453a6 | 2006-03-22 00:07:58 -0800 | [diff] [blame] | 845 | if (pagezone != zone) { |
| 846 | if (zone) |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 847 | spin_unlock_irqrestore(&zone->lru_lock, |
| 848 | flags); |
Nick Piggin | 46453a6 | 2006-03-22 00:07:58 -0800 | [diff] [blame] | 849 | zone = pagezone; |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 850 | spin_lock_irqsave(&zone->lru_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 851 | } |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 852 | |
| 853 | lruvec = mem_cgroup_page_lruvec(page, zone); |
Nick Piggin | 725d704 | 2006-09-25 23:30:55 -0700 | [diff] [blame] | 854 | VM_BUG_ON(!PageLRU(page)); |
Nick Piggin | 6745391 | 2006-03-22 00:08:00 -0800 | [diff] [blame] | 855 | __ClearPageLRU(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 856 | del_page_from_lru_list(page, lruvec, page_off_lru(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 857 | } |
Nick Piggin | 46453a6 | 2006-03-22 00:07:58 -0800 | [diff] [blame] | 858 | |
Mel Gorman | c53954a | 2013-07-03 15:02:34 -0700 | [diff] [blame] | 859 | /* Clear Active bit in case of parallel mark_page_accessed */ |
| 860 | ClearPageActive(page); |
| 861 | |
Konstantin Khlebnikov | cc59850 | 2012-01-10 15:07:04 -0800 | [diff] [blame] | 862 | list_add(&page->lru, &pages_to_free); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 863 | } |
| 864 | if (zone) |
Hisashi Hifumi | 902aaed | 2007-10-16 01:24:52 -0700 | [diff] [blame] | 865 | spin_unlock_irqrestore(&zone->lru_lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 866 | |
Konstantin Khlebnikov | cc59850 | 2012-01-10 15:07:04 -0800 | [diff] [blame] | 867 | free_hot_cold_page_list(&pages_to_free, cold); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 868 | } |
Miklos Szeredi | 0be8557 | 2010-10-27 15:34:46 -0700 | [diff] [blame] | 869 | EXPORT_SYMBOL(release_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 870 | |
| 871 | /* |
| 872 | * The pages which we're about to release may be in the deferred lru-addition |
| 873 | * queues. That would prevent them from really being freed right now. That's |
| 874 | * OK from a correctness point of view but is inefficient - those pages may be |
| 875 | * cache-warm and we want to give them back to the page allocator ASAP. |
| 876 | * |
| 877 | * So __pagevec_release() will drain those queues here. __pagevec_lru_add() |
| 878 | * and __pagevec_lru_add_active() call release_pages() directly to avoid |
| 879 | * mutual recursion. |
| 880 | */ |
| 881 | void __pagevec_release(struct pagevec *pvec) |
| 882 | { |
| 883 | lru_add_drain(); |
| 884 | release_pages(pvec->pages, pagevec_count(pvec), pvec->cold); |
| 885 | pagevec_reinit(pvec); |
| 886 | } |
Steve French | 7f28570 | 2005-11-01 10:22:55 -0800 | [diff] [blame] | 887 | EXPORT_SYMBOL(__pagevec_release); |
| 888 | |
Hugh Dickins | 12d2710 | 2012-01-12 17:19:52 -0800 | [diff] [blame] | 889 | #ifdef CONFIG_TRANSPARENT_HUGEPAGE |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 890 | /* used by __split_huge_page_refcount() */ |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 891 | void lru_add_page_tail(struct page *page, struct page *page_tail, |
Shaohua Li | 5bc7b8a | 2013-04-29 15:08:36 -0700 | [diff] [blame] | 892 | struct lruvec *lruvec, struct list_head *list) |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 893 | { |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 894 | const int file = 0; |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 895 | |
| 896 | VM_BUG_ON(!PageHead(page)); |
| 897 | VM_BUG_ON(PageCompound(page_tail)); |
| 898 | VM_BUG_ON(PageLRU(page_tail)); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 899 | VM_BUG_ON(NR_CPUS != 1 && |
| 900 | !spin_is_locked(&lruvec_zone(lruvec)->lru_lock)); |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 901 | |
Shaohua Li | 5bc7b8a | 2013-04-29 15:08:36 -0700 | [diff] [blame] | 902 | if (!list) |
| 903 | SetPageLRU(page_tail); |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 904 | |
Hugh Dickins | 12d2710 | 2012-01-12 17:19:52 -0800 | [diff] [blame] | 905 | if (likely(PageLRU(page))) |
| 906 | list_add_tail(&page_tail->lru, &page->lru); |
Shaohua Li | 5bc7b8a | 2013-04-29 15:08:36 -0700 | [diff] [blame] | 907 | else if (list) { |
| 908 | /* page reclaim is reclaiming a huge page */ |
| 909 | get_page(page_tail); |
| 910 | list_add_tail(&page_tail->lru, list); |
| 911 | } else { |
Hugh Dickins | 12d2710 | 2012-01-12 17:19:52 -0800 | [diff] [blame] | 912 | struct list_head *list_head; |
| 913 | /* |
| 914 | * Head page has not yet been counted, as an hpage, |
| 915 | * so we must account for each subpage individually. |
| 916 | * |
| 917 | * Use the standard add function to put page_tail on the list, |
| 918 | * but then correct its position so they all end up in order. |
| 919 | */ |
Kirill A. Shutemov | e180cf8 | 2013-07-31 13:53:39 -0700 | [diff] [blame] | 920 | add_page_to_lru_list(page_tail, lruvec, page_lru(page_tail)); |
Hugh Dickins | 12d2710 | 2012-01-12 17:19:52 -0800 | [diff] [blame] | 921 | list_head = page_tail->lru.prev; |
| 922 | list_move_tail(&page_tail->lru, list_head); |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 923 | } |
Hugh Dickins | 7512102 | 2012-03-05 14:59:18 -0800 | [diff] [blame] | 924 | |
| 925 | if (!PageUnevictable(page)) |
Kirill A. Shutemov | e180cf8 | 2013-07-31 13:53:39 -0700 | [diff] [blame] | 926 | update_page_reclaim_stat(lruvec, file, PageActive(page_tail)); |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 927 | } |
Hugh Dickins | 12d2710 | 2012-01-12 17:19:52 -0800 | [diff] [blame] | 928 | #endif /* CONFIG_TRANSPARENT_HUGEPAGE */ |
Andrea Arcangeli | 71e3aac | 2011-01-13 15:46:52 -0800 | [diff] [blame] | 929 | |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 930 | static void __pagevec_lru_add_fn(struct page *page, struct lruvec *lruvec, |
| 931 | void *arg) |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 932 | { |
Mel Gorman | 13f7f78 | 2013-07-03 15:02:28 -0700 | [diff] [blame] | 933 | int file = page_is_file_cache(page); |
| 934 | int active = PageActive(page); |
| 935 | enum lru_list lru = page_lru(page); |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 936 | |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 937 | VM_BUG_ON(PageLRU(page)); |
| 938 | |
| 939 | SetPageLRU(page); |
Hugh Dickins | fa9add6 | 2012-05-29 15:07:09 -0700 | [diff] [blame] | 940 | add_page_to_lru_list(page, lruvec, lru); |
| 941 | update_page_reclaim_stat(lruvec, file, active); |
Mel Gorman | c6286c9 | 2013-07-03 15:02:26 -0700 | [diff] [blame] | 942 | trace_mm_lru_insertion(page, page_to_pfn(page), lru, trace_pagemap_flags(page)); |
Shaohua Li | 3dd7ae8 | 2011-03-22 16:33:45 -0700 | [diff] [blame] | 943 | } |
| 944 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 945 | /* |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | * Add the passed pages to the LRU, then drop the caller's refcount |
| 947 | * on them. Reinitialises the caller's pagevec. |
| 948 | */ |
Mel Gorman | a0b8cab3 | 2013-07-03 15:02:32 -0700 | [diff] [blame] | 949 | void __pagevec_lru_add(struct pagevec *pvec) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 950 | { |
Mel Gorman | a0b8cab3 | 2013-07-03 15:02:32 -0700 | [diff] [blame] | 951 | pagevec_lru_move_fn(pvec, __pagevec_lru_add_fn, NULL); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 952 | } |
Hugh Dickins | 5095ae83 | 2012-01-12 17:19:58 -0800 | [diff] [blame] | 953 | EXPORT_SYMBOL(__pagevec_lru_add); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 955 | /** |
| 956 | * pagevec_lookup - gang pagecache lookup |
| 957 | * @pvec: Where the resulting pages are placed |
| 958 | * @mapping: The address_space to search |
| 959 | * @start: The starting page index |
| 960 | * @nr_pages: The maximum number of pages |
| 961 | * |
| 962 | * pagevec_lookup() will search for and return a group of up to @nr_pages pages |
| 963 | * in the mapping. The pages are placed in @pvec. pagevec_lookup() takes a |
| 964 | * reference against the pages in @pvec. |
| 965 | * |
| 966 | * The search returns a group of mapping-contiguous pages with ascending |
| 967 | * indexes. There may be holes in the indices due to not-present pages. |
| 968 | * |
| 969 | * pagevec_lookup() returns the number of pages which were found. |
| 970 | */ |
| 971 | unsigned pagevec_lookup(struct pagevec *pvec, struct address_space *mapping, |
| 972 | pgoff_t start, unsigned nr_pages) |
| 973 | { |
| 974 | pvec->nr = find_get_pages(mapping, start, nr_pages, pvec->pages); |
| 975 | return pagevec_count(pvec); |
| 976 | } |
Christoph Hellwig | 78539fd | 2006-01-11 20:47:41 +1100 | [diff] [blame] | 977 | EXPORT_SYMBOL(pagevec_lookup); |
| 978 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 979 | unsigned pagevec_lookup_tag(struct pagevec *pvec, struct address_space *mapping, |
| 980 | pgoff_t *index, int tag, unsigned nr_pages) |
| 981 | { |
| 982 | pvec->nr = find_get_pages_tag(mapping, index, tag, |
| 983 | nr_pages, pvec->pages); |
| 984 | return pagevec_count(pvec); |
| 985 | } |
Steve French | 7f28570 | 2005-11-01 10:22:55 -0800 | [diff] [blame] | 986 | EXPORT_SYMBOL(pagevec_lookup_tag); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 987 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 988 | /* |
| 989 | * Perform any setup for the swap system |
| 990 | */ |
| 991 | void __init swap_setup(void) |
| 992 | { |
Jan Beulich | 4481374 | 2009-09-21 17:03:05 -0700 | [diff] [blame] | 993 | unsigned long megs = totalram_pages >> (20 - PAGE_SHIFT); |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 994 | #ifdef CONFIG_SWAP |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 995 | int i; |
| 996 | |
Mikulas Patocka | 8077c0d | 2013-10-14 12:14:13 -0400 | [diff] [blame] | 997 | if (bdi_init(swapper_spaces[0].backing_dev_info)) |
| 998 | panic("Failed to init swap bdi"); |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 999 | for (i = 0; i < MAX_SWAPFILES; i++) { |
| 1000 | spin_lock_init(&swapper_spaces[i].tree_lock); |
| 1001 | INIT_LIST_HEAD(&swapper_spaces[i].i_mmap_nonlinear); |
| 1002 | } |
Peter Zijlstra | e0bf68d | 2007-10-16 23:25:46 -0700 | [diff] [blame] | 1003 | #endif |
| 1004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1005 | /* Use a smaller cluster for small-memory machines */ |
| 1006 | if (megs < 16) |
| 1007 | page_cluster = 2; |
| 1008 | else |
| 1009 | page_cluster = 3; |
| 1010 | /* |
| 1011 | * Right now other parts of the system means that we |
| 1012 | * _really_ don't want to cluster much more |
| 1013 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | } |