Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * linux/mm/swap_state.c |
| 3 | * |
| 4 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
| 5 | * Swap reorganised 29.12.95, Stephen Tweedie |
| 6 | * |
| 7 | * Rewritten to use page cache, (C) 1998 Stephen Tweedie |
| 8 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | #include <linux/mm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 10 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel_stat.h> |
| 12 | #include <linux/swap.h> |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 13 | #include <linux/swapops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 14 | #include <linux/init.h> |
| 15 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 16 | #include <linux/backing-dev.h> |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 17 | #include <linux/blkdev.h> |
Hugh Dickins | c484d41 | 2006-01-06 00:10:55 -0800 | [diff] [blame] | 18 | #include <linux/pagevec.h> |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 19 | #include <linux/migrate.h> |
Zhenhua Huang | 05b7b7c | 2018-10-12 17:51:32 +0800 | [diff] [blame] | 20 | #include <linux/delay.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include <asm/pgtable.h> |
| 23 | |
| 24 | /* |
| 25 | * swapper_space is a fiction, retained to simplify the path through |
Jens Axboe | 7eaceac | 2011-03-10 08:52:07 +0100 | [diff] [blame] | 26 | * vmscan's shrink_page_list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 27 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 28 | static const struct address_space_operations swap_aops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 29 | .writepage = swap_writepage, |
Mel Gorman | 62c230b | 2012-07-31 16:44:55 -0700 | [diff] [blame] | 30 | .set_page_dirty = swap_set_page_dirty, |
Andrew Morton | 1c93923 | 2014-10-09 15:27:59 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_MIGRATION |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 32 | .migratepage = migrate_page, |
Andrew Morton | 1c93923 | 2014-10-09 15:27:59 -0700 | [diff] [blame] | 33 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 34 | }; |
| 35 | |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 36 | struct address_space swapper_spaces[MAX_SWAPFILES] = { |
| 37 | [0 ... MAX_SWAPFILES - 1] = { |
| 38 | .page_tree = RADIX_TREE_INIT(GFP_ATOMIC|__GFP_NOWARN), |
David Herrmann | 4bb5f5d | 2014-08-08 14:25:25 -0700 | [diff] [blame] | 39 | .i_mmap_writable = ATOMIC_INIT(0), |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 40 | .a_ops = &swap_aops, |
Huang Ying | 371a096 | 2016-10-07 16:59:30 -0700 | [diff] [blame] | 41 | /* swap cache doesn't use writeback related tags */ |
| 42 | .flags = 1 << AS_NO_WRITEBACK_TAGS, |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 43 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 44 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 45 | |
| 46 | #define INC_CACHE_INFO(x) do { swap_cache_info.x++; } while (0) |
| 47 | |
| 48 | static struct { |
| 49 | unsigned long add_total; |
| 50 | unsigned long del_total; |
| 51 | unsigned long find_success; |
| 52 | unsigned long find_total; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 53 | } swap_cache_info; |
| 54 | |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 55 | unsigned long total_swapcache_pages(void) |
| 56 | { |
| 57 | int i; |
| 58 | unsigned long ret = 0; |
| 59 | |
| 60 | for (i = 0; i < MAX_SWAPFILES; i++) |
| 61 | ret += swapper_spaces[i].nrpages; |
| 62 | return ret; |
| 63 | } |
| 64 | |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 65 | static atomic_t swapin_readahead_hits = ATOMIC_INIT(4); |
| 66 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 67 | void show_swap_cache_info(void) |
| 68 | { |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 69 | printk("%lu pages in swap cache\n", total_swapcache_pages()); |
Johannes Weiner | 2c97b7f | 2008-07-25 19:46:01 -0700 | [diff] [blame] | 70 | printk("Swap cache stats: add %lu, delete %lu, find %lu/%lu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 71 | swap_cache_info.add_total, swap_cache_info.del_total, |
Hugh Dickins | bb63be0 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 72 | swap_cache_info.find_success, swap_cache_info.find_total); |
Shaohua Li | ec8acf2 | 2013-02-22 16:34:38 -0800 | [diff] [blame] | 73 | printk("Free swap = %ldkB\n", |
| 74 | get_nr_swap_pages() << (PAGE_SHIFT - 10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | printk("Total swap = %lukB\n", total_swap_pages << (PAGE_SHIFT - 10)); |
| 76 | } |
| 77 | |
| 78 | /* |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 79 | * __add_to_swap_cache resembles add_to_page_cache_locked on swapper_space, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 80 | * but sets SwapCache flag and private instead of mapping and index. |
| 81 | */ |
Seth Jennings | 2f772e6 | 2013-04-29 15:08:34 -0700 | [diff] [blame] | 82 | int __add_to_swap_cache(struct page *page, swp_entry_t entry) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | { |
| 84 | int error; |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 85 | struct address_space *address_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 87 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 88 | VM_BUG_ON_PAGE(PageSwapCache(page), page); |
| 89 | VM_BUG_ON_PAGE(!PageSwapBacked(page), page); |
Hugh Dickins | 51726b1 | 2009-01-06 14:39:25 -0800 | [diff] [blame] | 90 | |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 91 | get_page(page); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 92 | SetPageSwapCache(page); |
| 93 | set_page_private(page, entry.val); |
| 94 | |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 95 | address_space = swap_address_space(entry); |
| 96 | spin_lock_irq(&address_space->tree_lock); |
| 97 | error = radix_tree_insert(&address_space->page_tree, |
Huang Ying | f6ab1f7 | 2016-10-07 17:00:21 -0700 | [diff] [blame] | 98 | swp_offset(entry), page); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 99 | if (likely(!error)) { |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 100 | address_space->nrpages++; |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 101 | __inc_node_page_state(page, NR_FILE_PAGES); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 102 | INC_CACHE_INFO(add_total); |
| 103 | } |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 104 | spin_unlock_irq(&address_space->tree_lock); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 105 | |
| 106 | if (unlikely(error)) { |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 107 | /* |
| 108 | * Only the context which have set SWAP_HAS_CACHE flag |
| 109 | * would call add_to_swap_cache(). |
| 110 | * So add_to_swap_cache() doesn't returns -EEXIST. |
| 111 | */ |
| 112 | VM_BUG_ON(error == -EEXIST); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 113 | set_page_private(page, 0UL); |
| 114 | ClearPageSwapCache(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 115 | put_page(page); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 116 | } |
| 117 | |
| 118 | return error; |
| 119 | } |
| 120 | |
| 121 | |
| 122 | int add_to_swap_cache(struct page *page, swp_entry_t entry, gfp_t gfp_mask) |
| 123 | { |
| 124 | int error; |
| 125 | |
Jan Kara | 5e4c0d97 | 2013-09-11 14:26:05 -0700 | [diff] [blame] | 126 | error = radix_tree_maybe_preload(gfp_mask); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 127 | if (!error) { |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 128 | error = __add_to_swap_cache(page, entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 129 | radix_tree_preload_end(); |
Hugh Dickins | fa1de90 | 2008-02-07 00:14:13 -0800 | [diff] [blame] | 130 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 131 | return error; |
| 132 | } |
| 133 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | /* |
| 135 | * This must be called only on pages that have |
| 136 | * been verified to be in the swap cache. |
| 137 | */ |
| 138 | void __delete_from_swap_cache(struct page *page) |
| 139 | { |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 140 | swp_entry_t entry; |
| 141 | struct address_space *address_space; |
| 142 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 143 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 144 | VM_BUG_ON_PAGE(!PageSwapCache(page), page); |
| 145 | VM_BUG_ON_PAGE(PageWriteback(page), page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 146 | |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 147 | entry.val = page_private(page); |
| 148 | address_space = swap_address_space(entry); |
Huang Ying | f6ab1f7 | 2016-10-07 17:00:21 -0700 | [diff] [blame] | 149 | radix_tree_delete(&address_space->page_tree, swp_offset(entry)); |
Hugh Dickins | 4c21e2f | 2005-10-29 18:16:40 -0700 | [diff] [blame] | 150 | set_page_private(page, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 151 | ClearPageSwapCache(page); |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 152 | address_space->nrpages--; |
Mel Gorman | 11fb998 | 2016-07-28 15:46:20 -0700 | [diff] [blame] | 153 | __dec_node_page_state(page, NR_FILE_PAGES); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 154 | INC_CACHE_INFO(del_total); |
| 155 | } |
| 156 | |
| 157 | /** |
| 158 | * add_to_swap - allocate swap space for a page |
| 159 | * @page: page we want to move to swap |
| 160 | * |
| 161 | * Allocate swap space for the page and add the page to the |
| 162 | * swap cache. Caller needs to hold the page lock. |
| 163 | */ |
Shaohua Li | 5bc7b8a | 2013-04-29 15:08:36 -0700 | [diff] [blame] | 164 | int add_to_swap(struct page *page, struct list_head *list) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 165 | { |
| 166 | swp_entry_t entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 167 | int err; |
| 168 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 169 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 170 | VM_BUG_ON_PAGE(!PageUptodate(page), page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 171 | |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 172 | entry = get_swap_page(); |
| 173 | if (!entry.val) |
| 174 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 175 | |
Vladimir Davydov | 37e8435 | 2016-01-20 15:02:56 -0800 | [diff] [blame] | 176 | if (mem_cgroup_try_charge_swap(page, entry)) { |
| 177 | swapcache_free(entry); |
| 178 | return 0; |
| 179 | } |
| 180 | |
Andrea Arcangeli | 3f04f62 | 2011-01-13 15:46:47 -0800 | [diff] [blame] | 181 | if (unlikely(PageTransHuge(page))) |
Shaohua Li | 5bc7b8a | 2013-04-29 15:08:36 -0700 | [diff] [blame] | 182 | if (unlikely(split_huge_page_to_list(page, list))) { |
Johannes Weiner | 0a31bc9 | 2014-08-08 14:19:22 -0700 | [diff] [blame] | 183 | swapcache_free(entry); |
Andrea Arcangeli | 3f04f62 | 2011-01-13 15:46:47 -0800 | [diff] [blame] | 184 | return 0; |
| 185 | } |
| 186 | |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 187 | /* |
| 188 | * Radix-tree node allocations from PF_MEMALLOC contexts could |
| 189 | * completely exhaust the page allocator. __GFP_NOMEMALLOC |
| 190 | * stops emergency reserves from being allocated. |
| 191 | * |
| 192 | * TODO: this could cause a theoretical memory reclaim |
| 193 | * deadlock in the swap out path. |
| 194 | */ |
| 195 | /* |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 196 | * Add it to the swap cache. |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 197 | */ |
| 198 | err = add_to_swap_cache(page, entry, |
| 199 | __GFP_HIGH|__GFP_NOMEMALLOC|__GFP_NOWARN); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 200 | |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 201 | if (!err) { |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 202 | return 1; |
| 203 | } else { /* -ENOMEM radix-tree allocation failure */ |
| 204 | /* |
| 205 | * add_to_swap_cache() doesn't return -EEXIST, so we can safely |
| 206 | * clear SWAP_HAS_CACHE flag. |
| 207 | */ |
Johannes Weiner | 0a31bc9 | 2014-08-08 14:19:22 -0700 | [diff] [blame] | 208 | swapcache_free(entry); |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 209 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 210 | } |
| 211 | } |
| 212 | |
| 213 | /* |
| 214 | * This must be called only on pages that have |
| 215 | * been verified to be in the swap cache and locked. |
| 216 | * It will never put the page into the free list, |
| 217 | * the caller has a reference on the page. |
| 218 | */ |
| 219 | void delete_from_swap_cache(struct page *page) |
| 220 | { |
| 221 | swp_entry_t entry; |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 222 | struct address_space *address_space; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Hugh Dickins | 4c21e2f | 2005-10-29 18:16:40 -0700 | [diff] [blame] | 224 | entry.val = page_private(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 225 | |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 226 | address_space = swap_address_space(entry); |
| 227 | spin_lock_irq(&address_space->tree_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 228 | __delete_from_swap_cache(page); |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 229 | spin_unlock_irq(&address_space->tree_lock); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 230 | |
Johannes Weiner | 0a31bc9 | 2014-08-08 14:19:22 -0700 | [diff] [blame] | 231 | swapcache_free(entry); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 232 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 233 | } |
| 234 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 235 | /* |
| 236 | * If we are the only user, then try to free up the swap cache. |
| 237 | * |
| 238 | * Its ok to check for PageSwapCache without the page lock |
Hugh Dickins | a2c43ee | 2009-01-06 14:39:36 -0800 | [diff] [blame] | 239 | * here because we are going to recheck again inside |
| 240 | * try_to_free_swap() _with_ the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 241 | * - Marcelo |
| 242 | */ |
| 243 | static inline void free_swap_cache(struct page *page) |
| 244 | { |
Hugh Dickins | a2c43ee | 2009-01-06 14:39:36 -0800 | [diff] [blame] | 245 | if (PageSwapCache(page) && !page_mapped(page) && trylock_page(page)) { |
| 246 | try_to_free_swap(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 247 | unlock_page(page); |
| 248 | } |
| 249 | } |
| 250 | |
| 251 | /* |
| 252 | * Perform a free_page(), also freeing any swap cache associated with |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 253 | * this page if it is the last user of the page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 254 | */ |
| 255 | void free_page_and_swap_cache(struct page *page) |
| 256 | { |
| 257 | free_swap_cache(page); |
Aaron Lu | 6fcb52a | 2016-10-07 17:00:08 -0700 | [diff] [blame] | 258 | if (!is_huge_zero_page(page)) |
Gerald Schaefer | 770a537 | 2016-06-08 15:33:50 -0700 | [diff] [blame] | 259 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 260 | } |
| 261 | |
| 262 | /* |
| 263 | * Passed an array of pages, drop them all from swapcache and then release |
| 264 | * them. They are removed from the LRU and freed if this is their last use. |
| 265 | */ |
| 266 | void free_pages_and_swap_cache(struct page **pages, int nr) |
| 267 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 268 | struct page **pagep = pages; |
Michal Hocko | aabfb57 | 2014-10-09 15:28:52 -0700 | [diff] [blame] | 269 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | |
| 271 | lru_add_drain(); |
Michal Hocko | aabfb57 | 2014-10-09 15:28:52 -0700 | [diff] [blame] | 272 | for (i = 0; i < nr; i++) |
| 273 | free_swap_cache(pagep[i]); |
| 274 | release_pages(pagep, nr, false); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | } |
| 276 | |
| 277 | /* |
| 278 | * Lookup a swap entry in the swap cache. A found page will be returned |
| 279 | * unlocked and with its refcount incremented - we rely on the kernel |
| 280 | * lock getting page table operations atomic even if we drop the page |
| 281 | * lock before returning. |
| 282 | */ |
| 283 | struct page * lookup_swap_cache(swp_entry_t entry) |
| 284 | { |
| 285 | struct page *page; |
| 286 | |
Huang Ying | f6ab1f7 | 2016-10-07 17:00:21 -0700 | [diff] [blame] | 287 | page = find_get_page(swap_address_space(entry), swp_offset(entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 289 | if (page) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 290 | INC_CACHE_INFO(find_success); |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 291 | if (TestClearPageReadahead(page)) |
| 292 | atomic_inc(&swapin_readahead_hits); |
| 293 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 294 | |
| 295 | INC_CACHE_INFO(find_total); |
| 296 | return page; |
| 297 | } |
| 298 | |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 299 | struct page *__read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask, |
| 300 | struct vm_area_struct *vma, unsigned long addr, |
| 301 | bool *new_page_allocated) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 302 | { |
| 303 | struct page *found_page, *new_page = NULL; |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 304 | struct address_space *swapper_space = swap_address_space(entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 305 | int err; |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 306 | *new_page_allocated = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 307 | |
| 308 | do { |
| 309 | /* |
| 310 | * First check the swap cache. Since this is normally |
| 311 | * called after lookup_swap_cache() failed, re-calling |
| 312 | * that would confuse statistics. |
| 313 | */ |
Huang Ying | f6ab1f7 | 2016-10-07 17:00:21 -0700 | [diff] [blame] | 314 | found_page = find_get_page(swapper_space, swp_offset(entry)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 315 | if (found_page) |
| 316 | break; |
| 317 | |
| 318 | /* |
| 319 | * Get a new page to read into from swap. |
| 320 | */ |
| 321 | if (!new_page) { |
Hugh Dickins | 02098fe | 2008-02-04 22:28:42 -0800 | [diff] [blame] | 322 | new_page = alloc_page_vma(gfp_mask, vma, addr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | if (!new_page) |
| 324 | break; /* Out of memory */ |
| 325 | } |
| 326 | |
| 327 | /* |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 328 | * call radix_tree_preload() while we can wait. |
| 329 | */ |
Jan Kara | 5e4c0d97 | 2013-09-11 14:26:05 -0700 | [diff] [blame] | 330 | err = radix_tree_maybe_preload(gfp_mask & GFP_KERNEL); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 331 | if (err) |
| 332 | break; |
| 333 | |
| 334 | /* |
Hugh Dickins | f000944 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 335 | * Swap entry may have been freed since our caller observed it. |
| 336 | */ |
KAMEZAWA Hiroyuki | 355cfa7 | 2009-06-16 15:32:53 -0700 | [diff] [blame] | 337 | err = swapcache_prepare(entry); |
Rafael Aquini | cbab0e4 | 2013-06-12 14:04:49 -0700 | [diff] [blame] | 338 | if (err == -EEXIST) { |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 339 | radix_tree_preload_end(); |
Rafael Aquini | cbab0e4 | 2013-06-12 14:04:49 -0700 | [diff] [blame] | 340 | /* |
| 341 | * We might race against get_swap_page() and stumble |
| 342 | * across a SWAP_HAS_CACHE swap_map entry whose page |
| 343 | * has not been brought into the swapcache yet, while |
| 344 | * the other end is scheduled away waiting on discard |
| 345 | * I/O completion at scan_swap_map(). |
| 346 | * |
| 347 | * In order to avoid turning this transitory state |
| 348 | * into a permanent loop around this -EEXIST case |
| 349 | * if !CONFIG_PREEMPT and the I/O completion happens |
| 350 | * to be waiting on the CPU waitqueue where we are now |
| 351 | * busy looping, we just conditionally invoke the |
| 352 | * scheduler here, if there are some more important |
| 353 | * tasks to run. |
Zhenhua Huang | 05b7b7c | 2018-10-12 17:51:32 +0800 | [diff] [blame] | 354 | * |
| 355 | * cond_resched() may not work if the process is RT. |
| 356 | * We need a usleep_range() give up CPU to another task. |
Rafael Aquini | cbab0e4 | 2013-06-12 14:04:49 -0700 | [diff] [blame] | 357 | */ |
Zhenhua Huang | 05b7b7c | 2018-10-12 17:51:32 +0800 | [diff] [blame] | 358 | usleep_range(500, 1000); |
KAMEZAWA Hiroyuki | 355cfa7 | 2009-06-16 15:32:53 -0700 | [diff] [blame] | 359 | continue; |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 360 | } |
| 361 | if (err) { /* swp entry is obsolete ? */ |
| 362 | radix_tree_preload_end(); |
Hugh Dickins | f000944 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 363 | break; |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 364 | } |
Hugh Dickins | f000944 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 365 | |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 366 | /* May fail (-ENOMEM) if radix-tree node allocation failed. */ |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 367 | __SetPageLocked(new_page); |
Hugh Dickins | fa9949d | 2016-05-19 17:12:41 -0700 | [diff] [blame] | 368 | __SetPageSwapBacked(new_page); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 369 | err = __add_to_swap_cache(new_page, entry); |
Nick Piggin | 529ae9a | 2008-08-02 12:01:03 +0200 | [diff] [blame] | 370 | if (likely(!err)) { |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 371 | radix_tree_preload_end(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 372 | /* |
| 373 | * Initiate read into locked page and return. |
| 374 | */ |
Johannes Weiner | a238332 | 2018-10-26 15:06:04 -0700 | [diff] [blame] | 375 | SetPageWorkingset(new_page); |
Rik van Riel | c5fdae4 | 2008-10-18 20:26:36 -0700 | [diff] [blame] | 376 | lru_cache_add_anon(new_page); |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 377 | *new_page_allocated = true; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 378 | return new_page; |
| 379 | } |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 380 | radix_tree_preload_end(); |
Kirill A. Shutemov | 48c935a | 2016-01-15 16:51:24 -0800 | [diff] [blame] | 381 | __ClearPageLocked(new_page); |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 382 | /* |
| 383 | * add_to_swap_cache() doesn't return -EEXIST, so we can safely |
| 384 | * clear SWAP_HAS_CACHE flag. |
| 385 | */ |
Johannes Weiner | 0a31bc9 | 2014-08-08 14:19:22 -0700 | [diff] [blame] | 386 | swapcache_free(entry); |
Hugh Dickins | f000944 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 387 | } while (err != -ENOMEM); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | |
| 389 | if (new_page) |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 390 | put_page(new_page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | return found_page; |
| 392 | } |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 393 | |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 394 | /* |
| 395 | * Locate a page of swap in physical memory, reserving swap cache space |
| 396 | * and reading the disk if it is not already cached. |
| 397 | * A failure return means that either the page allocation failed or that |
| 398 | * the swap entry is no longer in use. |
| 399 | */ |
| 400 | struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask, |
| 401 | struct vm_area_struct *vma, unsigned long addr) |
| 402 | { |
| 403 | bool page_was_allocated; |
| 404 | struct page *retpage = __read_swap_cache_async(entry, gfp_mask, |
| 405 | vma, addr, &page_was_allocated); |
| 406 | |
| 407 | if (page_was_allocated) |
| 408 | swap_readpage(retpage); |
| 409 | |
| 410 | return retpage; |
| 411 | } |
| 412 | |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 413 | static unsigned long swapin_nr_pages(unsigned long offset) |
| 414 | { |
| 415 | static unsigned long prev_offset; |
| 416 | unsigned int pages, max_pages, last_ra; |
| 417 | static atomic_t last_readahead_pages; |
| 418 | |
Jason Low | 4db0c3c | 2015-04-15 16:14:08 -0700 | [diff] [blame] | 419 | max_pages = 1 << READ_ONCE(page_cluster); |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 420 | if (max_pages <= 1) |
| 421 | return 1; |
| 422 | |
| 423 | /* |
| 424 | * This heuristic has been found to work well on both sequential and |
| 425 | * random loads, swapping to hard disk or to SSD: please don't ask |
| 426 | * what the "+ 2" means, it just happens to work well, that's all. |
| 427 | */ |
| 428 | pages = atomic_xchg(&swapin_readahead_hits, 0) + 2; |
| 429 | if (pages == 2) { |
| 430 | /* |
| 431 | * We can have no readahead hits to judge by: but must not get |
| 432 | * stuck here forever, so check for an adjacent offset instead |
| 433 | * (and don't even bother to check whether swap type is same). |
| 434 | */ |
| 435 | if (offset != prev_offset + 1 && offset != prev_offset - 1) |
| 436 | pages = 1; |
| 437 | prev_offset = offset; |
| 438 | } else { |
| 439 | unsigned int roundup = 4; |
| 440 | while (roundup < pages) |
| 441 | roundup <<= 1; |
| 442 | pages = roundup; |
| 443 | } |
| 444 | |
| 445 | if (pages > max_pages) |
| 446 | pages = max_pages; |
| 447 | |
| 448 | /* Don't shrink readahead too fast */ |
| 449 | last_ra = atomic_read(&last_readahead_pages) / 2; |
| 450 | if (pages < last_ra) |
| 451 | pages = last_ra; |
| 452 | atomic_set(&last_readahead_pages, pages); |
| 453 | |
| 454 | return pages; |
| 455 | } |
| 456 | |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 457 | /** |
| 458 | * swapin_readahead - swap in pages in hope we need them soon |
| 459 | * @entry: swap entry of this memory |
Randy Dunlap | 7682486 | 2008-03-19 17:00:40 -0700 | [diff] [blame] | 460 | * @gfp_mask: memory allocation flags |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 461 | * @vma: user vma this address belongs to |
| 462 | * @addr: target address for mempolicy |
| 463 | * |
| 464 | * Returns the struct page for entry and addr, after queueing swapin. |
| 465 | * |
| 466 | * Primitive swap readahead code. We simply read an aligned block of |
| 467 | * (1 << page_cluster) entries in the swap area. This method is chosen |
| 468 | * because it doesn't cost us any seek time. We also make sure to queue |
| 469 | * the 'original' request together with the readahead ones... |
| 470 | * |
| 471 | * This has been extended to use the NUMA policies from the mm triggering |
| 472 | * the readahead. |
| 473 | * |
| 474 | * Caller must hold down_read on the vma->vm_mm if vma is not NULL. |
Laurent Dufour | dd2b465 | 2018-04-17 16:33:15 +0200 | [diff] [blame] | 475 | * This is needed to ensure the VMA will not be freed in our back. In the case |
| 476 | * of the speculative page fault handler, this cannot happen, even if we don't |
| 477 | * hold the mmap_sem. Callees are assumed to take care of reading VMA's fields |
| 478 | * using READ_ONCE() to read consistent values. |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 479 | */ |
Hugh Dickins | 02098fe | 2008-02-04 22:28:42 -0800 | [diff] [blame] | 480 | struct page *swapin_readahead(swp_entry_t entry, gfp_t gfp_mask, |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 481 | struct vm_area_struct *vma, unsigned long addr) |
| 482 | { |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 483 | struct page *page; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 484 | unsigned long entry_offset = swp_offset(entry); |
| 485 | unsigned long offset = entry_offset; |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 486 | unsigned long start_offset, end_offset; |
Vinayak Menon | ee081c23 | 2015-11-20 13:37:08 +0530 | [diff] [blame] | 487 | unsigned long mask; |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 488 | struct blk_plug plug; |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 489 | |
Vinayak Menon | ee081c23 | 2015-11-20 13:37:08 +0530 | [diff] [blame] | 490 | mask = is_swap_fast(entry) ? 0 : swapin_nr_pages(offset) - 1; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 491 | if (!mask) |
| 492 | goto skip; |
| 493 | |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 494 | /* Read a page_cluster sized and aligned cluster around offset. */ |
| 495 | start_offset = offset & ~mask; |
| 496 | end_offset = offset | mask; |
| 497 | if (!start_offset) /* First page is swap header. */ |
| 498 | start_offset++; |
| 499 | |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 500 | blk_start_plug(&plug); |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 501 | for (offset = start_offset; offset <= end_offset ; offset++) { |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 502 | /* Ok, do the async read-ahead now */ |
| 503 | page = read_swap_cache_async(swp_entry(swp_type(entry), offset), |
Hugh Dickins | 02098fe | 2008-02-04 22:28:42 -0800 | [diff] [blame] | 504 | gfp_mask, vma, addr); |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 505 | if (!page) |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 506 | continue; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 507 | if (offset != entry_offset) |
| 508 | SetPageReadahead(page); |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 509 | put_page(page); |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 510 | } |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 511 | blk_finish_plug(&plug); |
| 512 | |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 513 | lru_add_drain(); /* Push any new pages onto the LRU now */ |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 514 | skip: |
Hugh Dickins | 02098fe | 2008-02-04 22:28:42 -0800 | [diff] [blame] | 515 | return read_swap_cache_async(entry, gfp_mask, vma, addr); |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 516 | } |