Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0 |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2 | /* |
| 3 | * linux/mm/swap_state.c |
| 4 | * |
| 5 | * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds |
| 6 | * Swap reorganised 29.12.95, Stephen Tweedie |
| 7 | * |
| 8 | * Rewritten to use page cache, (C) 1998 Stephen Tweedie |
| 9 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 10 | #include <linux/mm.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 11 | #include <linux/gfp.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 12 | #include <linux/kernel_stat.h> |
| 13 | #include <linux/swap.h> |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 14 | #include <linux/swapops.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <linux/init.h> |
| 16 | #include <linux/pagemap.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 17 | #include <linux/backing-dev.h> |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 18 | #include <linux/blkdev.h> |
Hugh Dickins | c484d41 | 2006-01-06 00:10:55 -0800 | [diff] [blame] | 19 | #include <linux/pagevec.h> |
Christoph Lameter | b20a350 | 2006-03-22 00:09:12 -0800 | [diff] [blame] | 20 | #include <linux/migrate.h> |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 21 | #include <linux/vmalloc.h> |
Tim Chen | 67afa38 | 2017-02-22 15:45:39 -0800 | [diff] [blame] | 22 | #include <linux/swap_slots.h> |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 23 | #include <linux/huge_mm.h> |
Matthew Wilcox (Oracle) | 61ef186 | 2020-10-13 16:51:17 -0700 | [diff] [blame^] | 24 | #include <linux/shmem_fs.h> |
Hugh Dickins | 243bce0 | 2020-06-25 20:29:59 -0700 | [diff] [blame] | 25 | #include "internal.h" |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * swapper_space is a fiction, retained to simplify the path through |
Jens Axboe | 7eaceac | 2011-03-10 08:52:07 +0100 | [diff] [blame] | 29 | * vmscan's shrink_page_list. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | */ |
Christoph Hellwig | f5e54d6 | 2006-06-28 04:26:44 -0700 | [diff] [blame] | 31 | static const struct address_space_operations swap_aops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 32 | .writepage = swap_writepage, |
Mel Gorman | 62c230b | 2012-07-31 16:44:55 -0700 | [diff] [blame] | 33 | .set_page_dirty = swap_set_page_dirty, |
Andrew Morton | 1c93923 | 2014-10-09 15:27:59 -0700 | [diff] [blame] | 34 | #ifdef CONFIG_MIGRATION |
Christoph Lameter | e965f96 | 2006-02-01 03:05:41 -0800 | [diff] [blame] | 35 | .migratepage = migrate_page, |
Andrew Morton | 1c93923 | 2014-10-09 15:27:59 -0700 | [diff] [blame] | 36 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | }; |
| 38 | |
Changbin Du | 783cb68 | 2017-11-15 17:36:06 -0800 | [diff] [blame] | 39 | struct address_space *swapper_spaces[MAX_SWAPFILES] __read_mostly; |
| 40 | static unsigned int nr_swapper_spaces[MAX_SWAPFILES] __read_mostly; |
Colin Ian King | f5c754d | 2018-04-05 16:25:05 -0700 | [diff] [blame] | 41 | static bool enable_vma_readahead __read_mostly = true; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 42 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 43 | #define SWAP_RA_WIN_SHIFT (PAGE_SHIFT / 2) |
| 44 | #define SWAP_RA_HITS_MASK ((1UL << SWAP_RA_WIN_SHIFT) - 1) |
| 45 | #define SWAP_RA_HITS_MAX SWAP_RA_HITS_MASK |
| 46 | #define SWAP_RA_WIN_MASK (~PAGE_MASK & ~SWAP_RA_HITS_MASK) |
| 47 | |
| 48 | #define SWAP_RA_HITS(v) ((v) & SWAP_RA_HITS_MASK) |
| 49 | #define SWAP_RA_WIN(v) (((v) & SWAP_RA_WIN_MASK) >> SWAP_RA_WIN_SHIFT) |
| 50 | #define SWAP_RA_ADDR(v) ((v) & PAGE_MASK) |
| 51 | |
| 52 | #define SWAP_RA_VAL(addr, win, hits) \ |
| 53 | (((addr) & PAGE_MASK) | \ |
| 54 | (((win) << SWAP_RA_WIN_SHIFT) & SWAP_RA_WIN_MASK) | \ |
| 55 | ((hits) & SWAP_RA_HITS_MASK)) |
| 56 | |
| 57 | /* Initial readahead hits is 4 to start up with a small window */ |
| 58 | #define GET_SWAP_RA_VAL(vma) \ |
| 59 | (atomic_long_read(&(vma)->swap_readahead_info) ? : 4) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Qian Cai | b96a3db | 2020-08-14 17:31:24 -0700 | [diff] [blame] | 61 | #define INC_CACHE_INFO(x) data_race(swap_cache_info.x++) |
| 62 | #define ADD_CACHE_INFO(x, nr) data_race(swap_cache_info.x += (nr)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 63 | |
| 64 | static struct { |
| 65 | unsigned long add_total; |
| 66 | unsigned long del_total; |
| 67 | unsigned long find_success; |
| 68 | unsigned long find_total; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 69 | } swap_cache_info; |
| 70 | |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 71 | unsigned long total_swapcache_pages(void) |
| 72 | { |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 73 | unsigned int i, j, nr; |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 74 | unsigned long ret = 0; |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 75 | struct address_space *spaces; |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 76 | struct swap_info_struct *si; |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 77 | |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 78 | for (i = 0; i < MAX_SWAPFILES; i++) { |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 79 | swp_entry_t entry = swp_entry(i, 1); |
| 80 | |
| 81 | /* Avoid get_swap_device() to warn for bad swap entry */ |
| 82 | if (!swp_swap_info(entry)) |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 83 | continue; |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 84 | /* Prevent swapoff to free swapper_spaces */ |
| 85 | si = get_swap_device(entry); |
| 86 | if (!si) |
| 87 | continue; |
| 88 | nr = nr_swapper_spaces[i]; |
| 89 | spaces = swapper_spaces[i]; |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 90 | for (j = 0; j < nr; j++) |
| 91 | ret += spaces[j].nrpages; |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 92 | put_swap_device(si); |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 93 | } |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 94 | return ret; |
| 95 | } |
| 96 | |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 97 | static atomic_t swapin_readahead_hits = ATOMIC_INIT(4); |
| 98 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | void show_swap_cache_info(void) |
| 100 | { |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 101 | printk("%lu pages in swap cache\n", total_swapcache_pages()); |
Johannes Weiner | 2c97b7f | 2008-07-25 19:46:01 -0700 | [diff] [blame] | 102 | printk("Swap cache stats: add %lu, delete %lu, find %lu/%lu\n", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | swap_cache_info.add_total, swap_cache_info.del_total, |
Hugh Dickins | bb63be0 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 104 | swap_cache_info.find_success, swap_cache_info.find_total); |
Shaohua Li | ec8acf2 | 2013-02-22 16:34:38 -0800 | [diff] [blame] | 105 | printk("Free swap = %ldkB\n", |
| 106 | get_nr_swap_pages() << (PAGE_SHIFT - 10)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 107 | printk("Total swap = %lukB\n", total_swap_pages << (PAGE_SHIFT - 10)); |
| 108 | } |
| 109 | |
Joonsoo Kim | aae466b | 2020-08-11 18:30:50 -0700 | [diff] [blame] | 110 | void *get_shadow_from_swap_cache(swp_entry_t entry) |
| 111 | { |
| 112 | struct address_space *address_space = swap_address_space(entry); |
| 113 | pgoff_t idx = swp_offset(entry); |
| 114 | struct page *page; |
| 115 | |
| 116 | page = find_get_entry(address_space, idx); |
| 117 | if (xa_is_value(page)) |
| 118 | return page; |
| 119 | if (page) |
| 120 | put_page(page); |
| 121 | return NULL; |
| 122 | } |
| 123 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 124 | /* |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 125 | * 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] | 126 | * but sets SwapCache flag and private instead of mapping and index. |
| 127 | */ |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 128 | int add_to_swap_cache(struct page *page, swp_entry_t entry, |
| 129 | gfp_t gfp, void **shadowp) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | { |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 131 | struct address_space *address_space = swap_address_space(entry); |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 132 | pgoff_t idx = swp_offset(entry); |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 133 | XA_STATE_ORDER(xas, &address_space->i_pages, idx, compound_order(page)); |
Matthew Wilcox (Oracle) | 6c35784 | 2020-08-14 17:30:37 -0700 | [diff] [blame] | 134 | unsigned long i, nr = thp_nr_pages(page); |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 135 | void *old; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 136 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 137 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 138 | VM_BUG_ON_PAGE(PageSwapCache(page), page); |
| 139 | VM_BUG_ON_PAGE(!PageSwapBacked(page), page); |
Hugh Dickins | 51726b1 | 2009-01-06 14:39:25 -0800 | [diff] [blame] | 140 | |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 141 | page_ref_add(page, nr); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 142 | SetPageSwapCache(page); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 143 | |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 144 | do { |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 145 | unsigned long nr_shadows = 0; |
| 146 | |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 147 | xas_lock_irq(&xas); |
| 148 | xas_create_range(&xas); |
| 149 | if (xas_error(&xas)) |
| 150 | goto unlock; |
| 151 | for (i = 0; i < nr; i++) { |
| 152 | VM_BUG_ON_PAGE(xas.xa_index != idx + i, page); |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 153 | old = xas_load(&xas); |
| 154 | if (xa_is_value(old)) { |
| 155 | nr_shadows++; |
| 156 | if (shadowp) |
| 157 | *shadowp = old; |
| 158 | } |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 159 | set_page_private(page + i, entry.val + i); |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 160 | xas_store(&xas, page); |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 161 | xas_next(&xas); |
| 162 | } |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 163 | address_space->nrexceptional -= nr_shadows; |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 164 | address_space->nrpages += nr; |
| 165 | __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr); |
| 166 | ADD_CACHE_INFO(add_total, nr); |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 167 | unlock: |
| 168 | xas_unlock_irq(&xas); |
| 169 | } while (xas_nomem(&xas, gfp)); |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 170 | |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 171 | if (!xas_error(&xas)) |
| 172 | return 0; |
Daisuke Nishimura | 31a5639 | 2009-09-21 17:02:50 -0700 | [diff] [blame] | 173 | |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 174 | ClearPageSwapCache(page); |
| 175 | page_ref_sub(page, nr); |
| 176 | return xas_error(&xas); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 177 | } |
| 178 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 179 | /* |
| 180 | * This must be called only on pages that have |
| 181 | * been verified to be in the swap cache. |
| 182 | */ |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 183 | void __delete_from_swap_cache(struct page *page, |
| 184 | swp_entry_t entry, void *shadow) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 185 | { |
Matthew Wilcox | 4e17ec2 | 2017-11-29 08:32:39 -0500 | [diff] [blame] | 186 | struct address_space *address_space = swap_address_space(entry); |
Matthew Wilcox (Oracle) | 6c35784 | 2020-08-14 17:30:37 -0700 | [diff] [blame] | 187 | int i, nr = thp_nr_pages(page); |
Matthew Wilcox | 4e17ec2 | 2017-11-29 08:32:39 -0500 | [diff] [blame] | 188 | pgoff_t idx = swp_offset(entry); |
| 189 | XA_STATE(xas, &address_space->i_pages, idx); |
Shaohua Li | 33806f0 | 2013-02-22 16:34:37 -0800 | [diff] [blame] | 190 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 191 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 192 | VM_BUG_ON_PAGE(!PageSwapCache(page), page); |
| 193 | VM_BUG_ON_PAGE(PageWriteback(page), page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 194 | |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 195 | for (i = 0; i < nr; i++) { |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 196 | void *entry = xas_store(&xas, shadow); |
Matthew Wilcox (Oracle) | 4101196 | 2019-09-23 15:34:52 -0700 | [diff] [blame] | 197 | VM_BUG_ON_PAGE(entry != page, entry); |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 198 | set_page_private(page + i, 0); |
Matthew Wilcox | 4e17ec2 | 2017-11-29 08:32:39 -0500 | [diff] [blame] | 199 | xas_next(&xas); |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 200 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 201 | ClearPageSwapCache(page); |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 202 | if (shadow) |
| 203 | address_space->nrexceptional += nr; |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 204 | address_space->nrpages -= nr; |
| 205 | __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, -nr); |
| 206 | ADD_CACHE_INFO(del_total, nr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 207 | } |
| 208 | |
| 209 | /** |
| 210 | * add_to_swap - allocate swap space for a page |
| 211 | * @page: page we want to move to swap |
| 212 | * |
| 213 | * Allocate swap space for the page and add the page to the |
| 214 | * swap cache. Caller needs to hold the page lock. |
| 215 | */ |
Minchan Kim | 0f07465 | 2017-07-06 15:37:24 -0700 | [diff] [blame] | 216 | int add_to_swap(struct page *page) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 217 | { |
| 218 | swp_entry_t entry; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 219 | int err; |
| 220 | |
Sasha Levin | 309381fea | 2014-01-23 15:52:54 -0800 | [diff] [blame] | 221 | VM_BUG_ON_PAGE(!PageLocked(page), page); |
| 222 | VM_BUG_ON_PAGE(!PageUptodate(page), page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 224 | entry = get_swap_page(page); |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 225 | if (!entry.val) |
Minchan Kim | 0f07465 | 2017-07-06 15:37:24 -0700 | [diff] [blame] | 226 | return 0; |
| 227 | |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 228 | /* |
Matthew Wilcox | 8d93b41 | 2017-11-27 15:46:54 -0500 | [diff] [blame] | 229 | * XArray node allocations from PF_MEMALLOC contexts could |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 230 | * completely exhaust the page allocator. __GFP_NOMEMALLOC |
| 231 | * stops emergency reserves from being allocated. |
| 232 | * |
| 233 | * TODO: this could cause a theoretical memory reclaim |
| 234 | * deadlock in the swap out path. |
| 235 | */ |
| 236 | /* |
Minchan Kim | 854e9ed | 2016-01-15 16:54:53 -0800 | [diff] [blame] | 237 | * Add it to the swap cache. |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 238 | */ |
| 239 | err = add_to_swap_cache(page, entry, |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 240 | __GFP_HIGH|__GFP_NOMEMALLOC|__GFP_NOWARN, NULL); |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 241 | if (err) |
Daisuke Nishimura | 2ca4532 | 2009-09-21 17:02:52 -0700 | [diff] [blame] | 242 | /* |
| 243 | * add_to_swap_cache() doesn't return -EEXIST, so we can safely |
| 244 | * clear SWAP_HAS_CACHE flag. |
| 245 | */ |
Minchan Kim | 0f07465 | 2017-07-06 15:37:24 -0700 | [diff] [blame] | 246 | goto fail; |
Shaohua Li | 9625456 | 2017-10-03 16:15:32 -0700 | [diff] [blame] | 247 | /* |
| 248 | * Normally the page will be dirtied in unmap because its pte should be |
| 249 | * dirty. A special case is MADV_FREE page. The page'e pte could have |
| 250 | * dirty bit cleared but the page's SwapBacked bit is still set because |
| 251 | * clearing the dirty bit and SwapBacked bit has no lock protected. For |
| 252 | * such page, unmap will not set dirty bit for it, so page reclaim will |
| 253 | * not write the page out. This can cause data corruption when the page |
| 254 | * is swap in later. Always setting the dirty bit for the page solves |
| 255 | * the problem. |
| 256 | */ |
| 257 | set_page_dirty(page); |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 258 | |
| 259 | return 1; |
| 260 | |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 261 | fail: |
Minchan Kim | 0f07465 | 2017-07-06 15:37:24 -0700 | [diff] [blame] | 262 | put_swap_page(page, entry); |
Huang Ying | 38d8b4e | 2017-07-06 15:37:18 -0700 | [diff] [blame] | 263 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 264 | } |
| 265 | |
| 266 | /* |
| 267 | * This must be called only on pages that have |
| 268 | * been verified to be in the swap cache and locked. |
| 269 | * It will never put the page into the free list, |
| 270 | * the caller has a reference on the page. |
| 271 | */ |
| 272 | void delete_from_swap_cache(struct page *page) |
| 273 | { |
Matthew Wilcox | 4e17ec2 | 2017-11-29 08:32:39 -0500 | [diff] [blame] | 274 | swp_entry_t entry = { .val = page_private(page) }; |
| 275 | struct address_space *address_space = swap_address_space(entry); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 276 | |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 277 | xa_lock_irq(&address_space->i_pages); |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 278 | __delete_from_swap_cache(page, entry, NULL); |
Matthew Wilcox | b93b016 | 2018-04-10 16:36:56 -0700 | [diff] [blame] | 279 | xa_unlock_irq(&address_space->i_pages); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 280 | |
Minchan Kim | 75f6d6d | 2017-07-06 15:37:21 -0700 | [diff] [blame] | 281 | put_swap_page(page, entry); |
Matthew Wilcox (Oracle) | 6c35784 | 2020-08-14 17:30:37 -0700 | [diff] [blame] | 282 | page_ref_sub(page, thp_nr_pages(page)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | } |
| 284 | |
Joonsoo Kim | 3852f67 | 2020-08-11 18:30:47 -0700 | [diff] [blame] | 285 | void clear_shadow_from_swap_cache(int type, unsigned long begin, |
| 286 | unsigned long end) |
| 287 | { |
| 288 | unsigned long curr = begin; |
| 289 | void *old; |
| 290 | |
| 291 | for (;;) { |
| 292 | unsigned long nr_shadows = 0; |
| 293 | swp_entry_t entry = swp_entry(type, curr); |
| 294 | struct address_space *address_space = swap_address_space(entry); |
| 295 | XA_STATE(xas, &address_space->i_pages, curr); |
| 296 | |
| 297 | xa_lock_irq(&address_space->i_pages); |
| 298 | xas_for_each(&xas, old, end) { |
| 299 | if (!xa_is_value(old)) |
| 300 | continue; |
| 301 | xas_store(&xas, NULL); |
| 302 | nr_shadows++; |
| 303 | } |
| 304 | address_space->nrexceptional -= nr_shadows; |
| 305 | xa_unlock_irq(&address_space->i_pages); |
| 306 | |
| 307 | /* search the next swapcache until we meet end */ |
| 308 | curr >>= SWAP_ADDRESS_SPACE_SHIFT; |
| 309 | curr++; |
| 310 | curr <<= SWAP_ADDRESS_SPACE_SHIFT; |
| 311 | if (curr > end) |
| 312 | break; |
| 313 | } |
| 314 | } |
| 315 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 316 | /* |
| 317 | * If we are the only user, then try to free up the swap cache. |
| 318 | * |
| 319 | * Its ok to check for PageSwapCache without the page lock |
Hugh Dickins | a2c43ee | 2009-01-06 14:39:36 -0800 | [diff] [blame] | 320 | * here because we are going to recheck again inside |
| 321 | * try_to_free_swap() _with_ the lock. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 322 | * - Marcelo |
| 323 | */ |
| 324 | static inline void free_swap_cache(struct page *page) |
| 325 | { |
Hugh Dickins | a2c43ee | 2009-01-06 14:39:36 -0800 | [diff] [blame] | 326 | if (PageSwapCache(page) && !page_mapped(page) && trylock_page(page)) { |
| 327 | try_to_free_swap(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | unlock_page(page); |
| 329 | } |
| 330 | } |
| 331 | |
| 332 | /* |
| 333 | * Perform a free_page(), also freeing any swap cache associated with |
Hugh Dickins | b8072f0 | 2005-10-29 18:16:41 -0700 | [diff] [blame] | 334 | * this page if it is the last user of the page. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 335 | */ |
| 336 | void free_page_and_swap_cache(struct page *page) |
| 337 | { |
| 338 | free_swap_cache(page); |
Aaron Lu | 6fcb52a | 2016-10-07 17:00:08 -0700 | [diff] [blame] | 339 | if (!is_huge_zero_page(page)) |
Gerald Schaefer | 770a537 | 2016-06-08 15:33:50 -0700 | [diff] [blame] | 340 | put_page(page); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 341 | } |
| 342 | |
| 343 | /* |
| 344 | * Passed an array of pages, drop them all from swapcache and then release |
| 345 | * them. They are removed from the LRU and freed if this is their last use. |
| 346 | */ |
| 347 | void free_pages_and_swap_cache(struct page **pages, int nr) |
| 348 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 349 | struct page **pagep = pages; |
Michal Hocko | aabfb57 | 2014-10-09 15:28:52 -0700 | [diff] [blame] | 350 | int i; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | |
| 352 | lru_add_drain(); |
Michal Hocko | aabfb57 | 2014-10-09 15:28:52 -0700 | [diff] [blame] | 353 | for (i = 0; i < nr; i++) |
| 354 | free_swap_cache(pagep[i]); |
Mel Gorman | c6f92f9 | 2017-11-15 17:37:55 -0800 | [diff] [blame] | 355 | release_pages(pagep, nr); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 356 | } |
| 357 | |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 358 | static inline bool swap_use_vma_readahead(void) |
| 359 | { |
| 360 | return READ_ONCE(enable_vma_readahead) && !atomic_read(&nr_rotate_swap); |
| 361 | } |
| 362 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 363 | /* |
| 364 | * Lookup a swap entry in the swap cache. A found page will be returned |
| 365 | * unlocked and with its refcount incremented - we rely on the kernel |
| 366 | * lock getting page table operations atomic even if we drop the page |
| 367 | * lock before returning. |
| 368 | */ |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 369 | struct page *lookup_swap_cache(swp_entry_t entry, struct vm_area_struct *vma, |
| 370 | unsigned long addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 371 | { |
| 372 | struct page *page; |
Huang Ying | eb08557 | 2019-07-11 20:55:33 -0700 | [diff] [blame] | 373 | struct swap_info_struct *si; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 374 | |
Huang Ying | eb08557 | 2019-07-11 20:55:33 -0700 | [diff] [blame] | 375 | si = get_swap_device(entry); |
| 376 | if (!si) |
| 377 | return NULL; |
Huang Ying | f6ab1f7 | 2016-10-07 17:00:21 -0700 | [diff] [blame] | 378 | page = find_get_page(swap_address_space(entry), swp_offset(entry)); |
Huang Ying | eb08557 | 2019-07-11 20:55:33 -0700 | [diff] [blame] | 379 | put_swap_device(si); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 380 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 381 | INC_CACHE_INFO(find_total); |
| 382 | if (page) { |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 383 | bool vma_ra = swap_use_vma_readahead(); |
| 384 | bool readahead; |
| 385 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 386 | INC_CACHE_INFO(find_success); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 387 | /* |
| 388 | * At the moment, we don't support PG_readahead for anon THP |
| 389 | * so let's bail out rather than confusing the readahead stat. |
| 390 | */ |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 391 | if (unlikely(PageTransCompound(page))) |
| 392 | return page; |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 393 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 394 | readahead = TestClearPageReadahead(page); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 395 | if (vma && vma_ra) { |
| 396 | unsigned long ra_val; |
| 397 | int win, hits; |
| 398 | |
| 399 | ra_val = GET_SWAP_RA_VAL(vma); |
| 400 | win = SWAP_RA_WIN(ra_val); |
| 401 | hits = SWAP_RA_HITS(ra_val); |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 402 | if (readahead) |
| 403 | hits = min_t(int, hits + 1, SWAP_RA_HITS_MAX); |
| 404 | atomic_long_set(&vma->swap_readahead_info, |
| 405 | SWAP_RA_VAL(addr, win, hits)); |
| 406 | } |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 407 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 408 | if (readahead) { |
Huang Ying | cbc65df | 2017-09-06 16:24:29 -0700 | [diff] [blame] | 409 | count_vm_event(SWAP_RA_HIT); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 410 | if (!vma || !vma_ra) |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 411 | atomic_inc(&swapin_readahead_hits); |
Huang Ying | cbc65df | 2017-09-06 16:24:29 -0700 | [diff] [blame] | 412 | } |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 413 | } |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 414 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 415 | return page; |
| 416 | } |
| 417 | |
Matthew Wilcox (Oracle) | 61ef186 | 2020-10-13 16:51:17 -0700 | [diff] [blame^] | 418 | /** |
| 419 | * find_get_incore_page - Find and get a page from the page or swap caches. |
| 420 | * @mapping: The address_space to search. |
| 421 | * @index: The page cache index. |
| 422 | * |
| 423 | * This differs from find_get_page() in that it will also look for the |
| 424 | * page in the swap cache. |
| 425 | * |
| 426 | * Return: The found page or %NULL. |
| 427 | */ |
| 428 | struct page *find_get_incore_page(struct address_space *mapping, pgoff_t index) |
| 429 | { |
| 430 | swp_entry_t swp; |
| 431 | struct swap_info_struct *si; |
| 432 | struct page *page = find_get_entry(mapping, index); |
| 433 | |
| 434 | if (!xa_is_value(page)) |
| 435 | return page; |
| 436 | if (!shmem_mapping(mapping)) |
| 437 | return NULL; |
| 438 | |
| 439 | swp = radix_to_swp_entry(page); |
| 440 | /* Prevent swapoff from happening to us */ |
| 441 | si = get_swap_device(swp); |
| 442 | if (!si) |
| 443 | return NULL; |
| 444 | page = find_get_page(swap_address_space(swp), swp_offset(swp)); |
| 445 | put_swap_device(si); |
| 446 | return page; |
| 447 | } |
| 448 | |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 449 | struct page *__read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask, |
| 450 | struct vm_area_struct *vma, unsigned long addr, |
| 451 | bool *new_page_allocated) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | { |
Huang Ying | eb08557 | 2019-07-11 20:55:33 -0700 | [diff] [blame] | 453 | struct swap_info_struct *si; |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 454 | struct page *page; |
Joonsoo Kim | aae466b | 2020-08-11 18:30:50 -0700 | [diff] [blame] | 455 | void *shadow = NULL; |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 456 | |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 457 | *new_page_allocated = false; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 459 | for (;;) { |
| 460 | int err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | /* |
| 462 | * First check the swap cache. Since this is normally |
| 463 | * called after lookup_swap_cache() failed, re-calling |
| 464 | * that would confuse statistics. |
| 465 | */ |
Huang Ying | eb08557 | 2019-07-11 20:55:33 -0700 | [diff] [blame] | 466 | si = get_swap_device(entry); |
| 467 | if (!si) |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 468 | return NULL; |
| 469 | page = find_get_page(swap_address_space(entry), |
| 470 | swp_offset(entry)); |
Huang Ying | eb08557 | 2019-07-11 20:55:33 -0700 | [diff] [blame] | 471 | put_swap_device(si); |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 472 | if (page) |
| 473 | return page; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
Huang Ying | ba81f83 | 2017-02-22 15:45:46 -0800 | [diff] [blame] | 475 | /* |
| 476 | * Just skip read ahead for unused swap slot. |
| 477 | * During swap_off when swap_slot_cache is disabled, |
| 478 | * we have to handle the race between putting |
| 479 | * swap entry in swap cache and marking swap slot |
| 480 | * as SWAP_HAS_CACHE. That's done in later part of code or |
| 481 | * else swap_off will be aborted if we return NULL. |
| 482 | */ |
| 483 | if (!__swp_swapcount(entry) && swap_slot_cache_enabled) |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 484 | return NULL; |
Tim Chen | e8c26ab | 2017-02-22 15:45:29 -0800 | [diff] [blame] | 485 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 486 | /* |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 487 | * Get a new page to read into from swap. Allocate it now, |
| 488 | * before marking swap_map SWAP_HAS_CACHE, when -EEXIST will |
| 489 | * cause any racers to loop around until we add it to cache. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 490 | */ |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 491 | page = alloc_page_vma(gfp_mask, vma, addr); |
| 492 | if (!page) |
| 493 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 494 | |
| 495 | /* |
Hugh Dickins | f000944 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 496 | * Swap entry may have been freed since our caller observed it. |
| 497 | */ |
KAMEZAWA Hiroyuki | 355cfa7 | 2009-06-16 15:32:53 -0700 | [diff] [blame] | 498 | err = swapcache_prepare(entry); |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 499 | if (!err) |
Hugh Dickins | f000944 | 2008-02-04 22:28:49 -0800 | [diff] [blame] | 500 | break; |
| 501 | |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 502 | put_page(page); |
| 503 | if (err != -EEXIST) |
| 504 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 506 | /* |
| 507 | * We might race against __delete_from_swap_cache(), and |
| 508 | * stumble across a swap_map entry whose SWAP_HAS_CACHE |
| 509 | * has not yet been cleared. Or race against another |
| 510 | * __read_swap_cache_async(), which has set SWAP_HAS_CACHE |
| 511 | * in swap_map, but not yet added its page to swap cache. |
| 512 | */ |
| 513 | cond_resched(); |
| 514 | } |
| 515 | |
| 516 | /* |
| 517 | * The swap entry is ours to swap in. Prepare the new page. |
| 518 | */ |
| 519 | |
| 520 | __SetPageLocked(page); |
| 521 | __SetPageSwapBacked(page); |
| 522 | |
| 523 | /* May fail (-ENOMEM) if XArray node allocation failed. */ |
Joonsoo Kim | aae466b | 2020-08-11 18:30:50 -0700 | [diff] [blame] | 524 | if (add_to_swap_cache(page, entry, gfp_mask & GFP_RECLAIM_MASK, &shadow)) { |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 525 | put_swap_page(page, entry); |
| 526 | goto fail_unlock; |
| 527 | } |
| 528 | |
Johannes Weiner | d9eb1ea | 2020-06-03 16:02:24 -0700 | [diff] [blame] | 529 | if (mem_cgroup_charge(page, NULL, gfp_mask)) { |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 530 | delete_from_swap_cache(page); |
| 531 | goto fail_unlock; |
| 532 | } |
| 533 | |
Joonsoo Kim | aae466b | 2020-08-11 18:30:50 -0700 | [diff] [blame] | 534 | if (shadow) |
| 535 | workingset_refault(page, shadow); |
Johannes Weiner | 314b57f | 2020-06-03 16:03:03 -0700 | [diff] [blame] | 536 | |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 537 | /* Caller will initiate read into locked page */ |
| 538 | SetPageWorkingset(page); |
Johannes Weiner | 6058eae | 2020-06-03 16:02:40 -0700 | [diff] [blame] | 539 | lru_cache_add(page); |
Johannes Weiner | 4c6355b | 2020-06-03 16:02:17 -0700 | [diff] [blame] | 540 | *new_page_allocated = true; |
| 541 | return page; |
| 542 | |
| 543 | fail_unlock: |
| 544 | unlock_page(page); |
| 545 | put_page(page); |
| 546 | return NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 547 | } |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 548 | |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 549 | /* |
| 550 | * Locate a page of swap in physical memory, reserving swap cache space |
| 551 | * and reading the disk if it is not already cached. |
| 552 | * A failure return means that either the page allocation failed or that |
| 553 | * the swap entry is no longer in use. |
| 554 | */ |
| 555 | struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask, |
Shaohua Li | 2395562 | 2017-07-10 15:47:11 -0700 | [diff] [blame] | 556 | struct vm_area_struct *vma, unsigned long addr, bool do_poll) |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 557 | { |
| 558 | bool page_was_allocated; |
| 559 | struct page *retpage = __read_swap_cache_async(entry, gfp_mask, |
| 560 | vma, addr, &page_was_allocated); |
| 561 | |
| 562 | if (page_was_allocated) |
Shaohua Li | 2395562 | 2017-07-10 15:47:11 -0700 | [diff] [blame] | 563 | swap_readpage(retpage, do_poll); |
Dmitry Safonov | 5b999aa | 2015-09-08 15:05:00 -0700 | [diff] [blame] | 564 | |
| 565 | return retpage; |
| 566 | } |
| 567 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 568 | static unsigned int __swapin_nr_pages(unsigned long prev_offset, |
| 569 | unsigned long offset, |
| 570 | int hits, |
| 571 | int max_pages, |
| 572 | int prev_win) |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 573 | { |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 574 | unsigned int pages, last_ra; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 575 | |
| 576 | /* |
| 577 | * This heuristic has been found to work well on both sequential and |
| 578 | * random loads, swapping to hard disk or to SSD: please don't ask |
| 579 | * what the "+ 2" means, it just happens to work well, that's all. |
| 580 | */ |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 581 | pages = hits + 2; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 582 | if (pages == 2) { |
| 583 | /* |
| 584 | * We can have no readahead hits to judge by: but must not get |
| 585 | * stuck here forever, so check for an adjacent offset instead |
| 586 | * (and don't even bother to check whether swap type is same). |
| 587 | */ |
| 588 | if (offset != prev_offset + 1 && offset != prev_offset - 1) |
| 589 | pages = 1; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 590 | } else { |
| 591 | unsigned int roundup = 4; |
| 592 | while (roundup < pages) |
| 593 | roundup <<= 1; |
| 594 | pages = roundup; |
| 595 | } |
| 596 | |
| 597 | if (pages > max_pages) |
| 598 | pages = max_pages; |
| 599 | |
| 600 | /* Don't shrink readahead too fast */ |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 601 | last_ra = prev_win / 2; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 602 | if (pages < last_ra) |
| 603 | pages = last_ra; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 604 | |
| 605 | return pages; |
| 606 | } |
| 607 | |
| 608 | static unsigned long swapin_nr_pages(unsigned long offset) |
| 609 | { |
| 610 | static unsigned long prev_offset; |
| 611 | unsigned int hits, pages, max_pages; |
| 612 | static atomic_t last_readahead_pages; |
| 613 | |
| 614 | max_pages = 1 << READ_ONCE(page_cluster); |
| 615 | if (max_pages <= 1) |
| 616 | return 1; |
| 617 | |
| 618 | hits = atomic_xchg(&swapin_readahead_hits, 0); |
Qian Cai | d6c1f09 | 2020-06-01 21:48:40 -0700 | [diff] [blame] | 619 | pages = __swapin_nr_pages(READ_ONCE(prev_offset), offset, hits, |
| 620 | max_pages, |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 621 | atomic_read(&last_readahead_pages)); |
| 622 | if (!hits) |
Qian Cai | d6c1f09 | 2020-06-01 21:48:40 -0700 | [diff] [blame] | 623 | WRITE_ONCE(prev_offset, offset); |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 624 | atomic_set(&last_readahead_pages, pages); |
| 625 | |
| 626 | return pages; |
| 627 | } |
| 628 | |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 629 | /** |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 630 | * swap_cluster_readahead - swap in pages in hope we need them soon |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 631 | * @entry: swap entry of this memory |
Randy Dunlap | 7682486 | 2008-03-19 17:00:40 -0700 | [diff] [blame] | 632 | * @gfp_mask: memory allocation flags |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 633 | * @vmf: fault information |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 634 | * |
| 635 | * Returns the struct page for entry and addr, after queueing swapin. |
| 636 | * |
| 637 | * Primitive swap readahead code. We simply read an aligned block of |
| 638 | * (1 << page_cluster) entries in the swap area. This method is chosen |
| 639 | * because it doesn't cost us any seek time. We also make sure to queue |
| 640 | * the 'original' request together with the readahead ones... |
| 641 | * |
| 642 | * This has been extended to use the NUMA policies from the mm triggering |
| 643 | * the readahead. |
| 644 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 645 | * Caller must hold read mmap_lock if vmf->vma is not NULL. |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 646 | */ |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 647 | struct page *swap_cluster_readahead(swp_entry_t entry, gfp_t gfp_mask, |
| 648 | struct vm_fault *vmf) |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 649 | { |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 650 | struct page *page; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 651 | unsigned long entry_offset = swp_offset(entry); |
| 652 | unsigned long offset = entry_offset; |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 653 | unsigned long start_offset, end_offset; |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 654 | unsigned long mask; |
Huang Ying | e9a6eff | 2017-11-15 17:33:15 -0800 | [diff] [blame] | 655 | struct swap_info_struct *si = swp_swap_info(entry); |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 656 | struct blk_plug plug; |
Huang Ying | c4fa630 | 2017-09-06 16:24:33 -0700 | [diff] [blame] | 657 | bool do_poll = true, page_allocated; |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 658 | struct vm_area_struct *vma = vmf->vma; |
| 659 | unsigned long addr = vmf->address; |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 660 | |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 661 | mask = swapin_nr_pages(offset) - 1; |
| 662 | if (!mask) |
| 663 | goto skip; |
| 664 | |
Yang Shi | 8fd2e0b | 2019-03-05 15:44:11 -0800 | [diff] [blame] | 665 | /* Test swap type to make sure the dereference is safe */ |
| 666 | if (likely(si->flags & (SWP_BLKDEV | SWP_FS))) { |
| 667 | struct inode *inode = si->swap_file->f_mapping->host; |
| 668 | if (inode_read_congested(inode)) |
| 669 | goto skip; |
| 670 | } |
| 671 | |
Shaohua Li | 2395562 | 2017-07-10 15:47:11 -0700 | [diff] [blame] | 672 | do_poll = false; |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 673 | /* Read a page_cluster sized and aligned cluster around offset. */ |
| 674 | start_offset = offset & ~mask; |
| 675 | end_offset = offset | mask; |
| 676 | if (!start_offset) /* First page is swap header. */ |
| 677 | start_offset++; |
Huang Ying | e9a6eff | 2017-11-15 17:33:15 -0800 | [diff] [blame] | 678 | if (end_offset >= si->max) |
| 679 | end_offset = si->max - 1; |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 680 | |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 681 | blk_start_plug(&plug); |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 682 | for (offset = start_offset; offset <= end_offset ; offset++) { |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 683 | /* Ok, do the async read-ahead now */ |
Huang Ying | c4fa630 | 2017-09-06 16:24:33 -0700 | [diff] [blame] | 684 | page = __read_swap_cache_async( |
| 685 | swp_entry(swp_type(entry), offset), |
| 686 | gfp_mask, vma, addr, &page_allocated); |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 687 | if (!page) |
Rik van Riel | 67f96aa | 2012-03-21 16:33:50 -0700 | [diff] [blame] | 688 | continue; |
Huang Ying | c4fa630 | 2017-09-06 16:24:33 -0700 | [diff] [blame] | 689 | if (page_allocated) { |
| 690 | swap_readpage(page, false); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 691 | if (offset != entry_offset) { |
Huang Ying | c4fa630 | 2017-09-06 16:24:33 -0700 | [diff] [blame] | 692 | SetPageReadahead(page); |
| 693 | count_vm_event(SWAP_RA); |
| 694 | } |
Huang Ying | cbc65df | 2017-09-06 16:24:29 -0700 | [diff] [blame] | 695 | } |
Kirill A. Shutemov | 09cbfea | 2016-04-01 15:29:47 +0300 | [diff] [blame] | 696 | put_page(page); |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 697 | } |
Christian Ehrhardt | 3fb5c29 | 2012-07-31 16:41:44 -0700 | [diff] [blame] | 698 | blk_finish_plug(&plug); |
| 699 | |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 700 | lru_add_drain(); /* Push any new pages onto the LRU now */ |
Shaohua Li | 579f829 | 2014-02-06 12:04:21 -0800 | [diff] [blame] | 701 | skip: |
Shaohua Li | 2395562 | 2017-07-10 15:47:11 -0700 | [diff] [blame] | 702 | return read_swap_cache_async(entry, gfp_mask, vma, addr, do_poll); |
Hugh Dickins | 46017e9 | 2008-02-04 22:28:41 -0800 | [diff] [blame] | 703 | } |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 704 | |
| 705 | int init_swap_address_space(unsigned int type, unsigned long nr_pages) |
| 706 | { |
| 707 | struct address_space *spaces, *space; |
| 708 | unsigned int i, nr; |
| 709 | |
| 710 | nr = DIV_ROUND_UP(nr_pages, SWAP_ADDRESS_SPACE_PAGES); |
Kees Cook | 778e1cd | 2018-06-12 14:04:48 -0700 | [diff] [blame] | 711 | spaces = kvcalloc(nr, sizeof(struct address_space), GFP_KERNEL); |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 712 | if (!spaces) |
| 713 | return -ENOMEM; |
| 714 | for (i = 0; i < nr; i++) { |
| 715 | space = spaces + i; |
Matthew Wilcox | a283348 | 2017-12-05 19:04:20 -0500 | [diff] [blame] | 716 | xa_init_flags(&space->i_pages, XA_FLAGS_LOCK_IRQ); |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 717 | atomic_set(&space->i_mmap_writable, 0); |
| 718 | space->a_ops = &swap_aops; |
| 719 | /* swap cache doesn't use writeback related tags */ |
| 720 | mapping_set_no_writeback_tags(space); |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 721 | } |
| 722 | nr_swapper_spaces[type] = nr; |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 723 | swapper_spaces[type] = spaces; |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 724 | |
| 725 | return 0; |
| 726 | } |
| 727 | |
| 728 | void exit_swap_address_space(unsigned int type) |
| 729 | { |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 730 | kvfree(swapper_spaces[type]); |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 731 | nr_swapper_spaces[type] = 0; |
Huang Ying | 054f1d1 | 2019-07-11 20:55:37 -0700 | [diff] [blame] | 732 | swapper_spaces[type] = NULL; |
Huang, Ying | 4b3ef9d | 2017-02-22 15:45:26 -0800 | [diff] [blame] | 733 | } |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 734 | |
| 735 | static inline void swap_ra_clamp_pfn(struct vm_area_struct *vma, |
| 736 | unsigned long faddr, |
| 737 | unsigned long lpfn, |
| 738 | unsigned long rpfn, |
| 739 | unsigned long *start, |
| 740 | unsigned long *end) |
| 741 | { |
| 742 | *start = max3(lpfn, PFN_DOWN(vma->vm_start), |
| 743 | PFN_DOWN(faddr & PMD_MASK)); |
| 744 | *end = min3(rpfn, PFN_DOWN(vma->vm_end), |
| 745 | PFN_DOWN((faddr & PMD_MASK) + PMD_SIZE)); |
| 746 | } |
| 747 | |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 748 | static void swap_ra_info(struct vm_fault *vmf, |
| 749 | struct vma_swap_readahead *ra_info) |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 750 | { |
| 751 | struct vm_area_struct *vma = vmf->vma; |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 752 | unsigned long ra_val; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 753 | swp_entry_t entry; |
| 754 | unsigned long faddr, pfn, fpfn; |
| 755 | unsigned long start, end; |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 756 | pte_t *pte, *orig_pte; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 757 | unsigned int max_win, hits, prev_win, win, left; |
| 758 | #ifndef CONFIG_64BIT |
| 759 | pte_t *tpte; |
| 760 | #endif |
| 761 | |
Huang Ying | 61b6397 | 2017-10-13 15:58:29 -0700 | [diff] [blame] | 762 | max_win = 1 << min_t(unsigned int, READ_ONCE(page_cluster), |
| 763 | SWAP_RA_ORDER_CEILING); |
| 764 | if (max_win == 1) { |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 765 | ra_info->win = 1; |
| 766 | return; |
Huang Ying | 61b6397 | 2017-10-13 15:58:29 -0700 | [diff] [blame] | 767 | } |
| 768 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 769 | faddr = vmf->address; |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 770 | orig_pte = pte = pte_offset_map(vmf->pmd, faddr); |
| 771 | entry = pte_to_swp_entry(*pte); |
| 772 | if ((unlikely(non_swap_entry(entry)))) { |
| 773 | pte_unmap(orig_pte); |
| 774 | return; |
| 775 | } |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 776 | |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 777 | fpfn = PFN_DOWN(faddr); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 778 | ra_val = GET_SWAP_RA_VAL(vma); |
| 779 | pfn = PFN_DOWN(SWAP_RA_ADDR(ra_val)); |
| 780 | prev_win = SWAP_RA_WIN(ra_val); |
| 781 | hits = SWAP_RA_HITS(ra_val); |
| 782 | ra_info->win = win = __swapin_nr_pages(pfn, fpfn, hits, |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 783 | max_win, prev_win); |
| 784 | atomic_long_set(&vma->swap_readahead_info, |
| 785 | SWAP_RA_VAL(faddr, win, 0)); |
| 786 | |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 787 | if (win == 1) { |
| 788 | pte_unmap(orig_pte); |
| 789 | return; |
| 790 | } |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 791 | |
| 792 | /* Copy the PTEs because the page table may be unmapped */ |
| 793 | if (fpfn == pfn + 1) |
| 794 | swap_ra_clamp_pfn(vma, faddr, fpfn, fpfn + win, &start, &end); |
| 795 | else if (pfn == fpfn + 1) |
| 796 | swap_ra_clamp_pfn(vma, faddr, fpfn - win + 1, fpfn + 1, |
| 797 | &start, &end); |
| 798 | else { |
| 799 | left = (win - 1) / 2; |
| 800 | swap_ra_clamp_pfn(vma, faddr, fpfn - left, fpfn + win - left, |
| 801 | &start, &end); |
| 802 | } |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 803 | ra_info->nr_pte = end - start; |
| 804 | ra_info->offset = fpfn - start; |
| 805 | pte -= ra_info->offset; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 806 | #ifdef CONFIG_64BIT |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 807 | ra_info->ptes = pte; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 808 | #else |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 809 | tpte = ra_info->ptes; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 810 | for (pfn = start; pfn != end; pfn++) |
| 811 | *tpte++ = *pte++; |
| 812 | #endif |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 813 | pte_unmap(orig_pte); |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 814 | } |
| 815 | |
Yang Shi | e9f5987 | 2019-03-05 15:44:15 -0800 | [diff] [blame] | 816 | /** |
| 817 | * swap_vma_readahead - swap in pages in hope we need them soon |
Krzysztof Kozlowski | 27ec487 | 2020-08-06 23:20:14 -0700 | [diff] [blame] | 818 | * @fentry: swap entry of this memory |
Yang Shi | e9f5987 | 2019-03-05 15:44:15 -0800 | [diff] [blame] | 819 | * @gfp_mask: memory allocation flags |
| 820 | * @vmf: fault information |
| 821 | * |
| 822 | * Returns the struct page for entry and addr, after queueing swapin. |
| 823 | * |
| 824 | * Primitive swap readahead code. We simply read in a few pages whoes |
| 825 | * virtual addresses are around the fault address in the same vma. |
| 826 | * |
Michel Lespinasse | c1e8d7c | 2020-06-08 21:33:54 -0700 | [diff] [blame] | 827 | * Caller must hold read mmap_lock if vmf->vma is not NULL. |
Yang Shi | e9f5987 | 2019-03-05 15:44:15 -0800 | [diff] [blame] | 828 | * |
| 829 | */ |
Colin Ian King | f5c754d | 2018-04-05 16:25:05 -0700 | [diff] [blame] | 830 | static struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask, |
| 831 | struct vm_fault *vmf) |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 832 | { |
| 833 | struct blk_plug plug; |
| 834 | struct vm_area_struct *vma = vmf->vma; |
| 835 | struct page *page; |
| 836 | pte_t *pte, pentry; |
| 837 | swp_entry_t entry; |
| 838 | unsigned int i; |
| 839 | bool page_allocated; |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 840 | struct vma_swap_readahead ra_info = {0,}; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 841 | |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 842 | swap_ra_info(vmf, &ra_info); |
| 843 | if (ra_info.win == 1) |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 844 | goto skip; |
| 845 | |
| 846 | blk_start_plug(&plug); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 847 | for (i = 0, pte = ra_info.ptes; i < ra_info.nr_pte; |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 848 | i++, pte++) { |
| 849 | pentry = *pte; |
| 850 | if (pte_none(pentry)) |
| 851 | continue; |
| 852 | if (pte_present(pentry)) |
| 853 | continue; |
| 854 | entry = pte_to_swp_entry(pentry); |
| 855 | if (unlikely(non_swap_entry(entry))) |
| 856 | continue; |
| 857 | page = __read_swap_cache_async(entry, gfp_mask, vma, |
| 858 | vmf->address, &page_allocated); |
| 859 | if (!page) |
| 860 | continue; |
| 861 | if (page_allocated) { |
| 862 | swap_readpage(page, false); |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 863 | if (i != ra_info.offset) { |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 864 | SetPageReadahead(page); |
| 865 | count_vm_event(SWAP_RA); |
| 866 | } |
| 867 | } |
| 868 | put_page(page); |
| 869 | } |
| 870 | blk_finish_plug(&plug); |
| 871 | lru_add_drain(); |
| 872 | skip: |
| 873 | return read_swap_cache_async(fentry, gfp_mask, vma, vmf->address, |
Minchan Kim | eaf649eb | 2018-04-05 16:23:39 -0700 | [diff] [blame] | 874 | ra_info.win == 1); |
Huang Ying | ec56017 | 2017-09-06 16:24:36 -0700 | [diff] [blame] | 875 | } |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 876 | |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 877 | /** |
| 878 | * swapin_readahead - swap in pages in hope we need them soon |
| 879 | * @entry: swap entry of this memory |
| 880 | * @gfp_mask: memory allocation flags |
| 881 | * @vmf: fault information |
| 882 | * |
| 883 | * Returns the struct page for entry and addr, after queueing swapin. |
| 884 | * |
| 885 | * It's a main entry function for swap readahead. By the configuration, |
| 886 | * it will read ahead blocks by cluster-based(ie, physical disk based) |
| 887 | * or vma-based(ie, virtual address based on faulty address) readahead. |
| 888 | */ |
| 889 | struct page *swapin_readahead(swp_entry_t entry, gfp_t gfp_mask, |
| 890 | struct vm_fault *vmf) |
| 891 | { |
| 892 | return swap_use_vma_readahead() ? |
| 893 | swap_vma_readahead(entry, gfp_mask, vmf) : |
| 894 | swap_cluster_readahead(entry, gfp_mask, vmf); |
| 895 | } |
| 896 | |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 897 | #ifdef CONFIG_SYSFS |
| 898 | static ssize_t vma_ra_enabled_show(struct kobject *kobj, |
| 899 | struct kobj_attribute *attr, char *buf) |
| 900 | { |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 901 | return sprintf(buf, "%s\n", enable_vma_readahead ? "true" : "false"); |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 902 | } |
| 903 | static ssize_t vma_ra_enabled_store(struct kobject *kobj, |
| 904 | struct kobj_attribute *attr, |
| 905 | const char *buf, size_t count) |
| 906 | { |
| 907 | if (!strncmp(buf, "true", 4) || !strncmp(buf, "1", 1)) |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 908 | enable_vma_readahead = true; |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 909 | else if (!strncmp(buf, "false", 5) || !strncmp(buf, "0", 1)) |
Minchan Kim | e9e9b7e | 2018-04-05 16:23:42 -0700 | [diff] [blame] | 910 | enable_vma_readahead = false; |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 911 | else |
| 912 | return -EINVAL; |
| 913 | |
| 914 | return count; |
| 915 | } |
| 916 | static struct kobj_attribute vma_ra_enabled_attr = |
| 917 | __ATTR(vma_ra_enabled, 0644, vma_ra_enabled_show, |
| 918 | vma_ra_enabled_store); |
| 919 | |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 920 | static struct attribute *swap_attrs[] = { |
| 921 | &vma_ra_enabled_attr.attr, |
Huang Ying | d9bfcfd | 2017-09-06 16:24:40 -0700 | [diff] [blame] | 922 | NULL, |
| 923 | }; |
| 924 | |
| 925 | static struct attribute_group swap_attr_group = { |
| 926 | .attrs = swap_attrs, |
| 927 | }; |
| 928 | |
| 929 | static int __init swap_init_sysfs(void) |
| 930 | { |
| 931 | int err; |
| 932 | struct kobject *swap_kobj; |
| 933 | |
| 934 | swap_kobj = kobject_create_and_add("swap", mm_kobj); |
| 935 | if (!swap_kobj) { |
| 936 | pr_err("failed to create swap kobject\n"); |
| 937 | return -ENOMEM; |
| 938 | } |
| 939 | err = sysfs_create_group(swap_kobj, &swap_attr_group); |
| 940 | if (err) { |
| 941 | pr_err("failed to register swap group\n"); |
| 942 | goto delete_obj; |
| 943 | } |
| 944 | return 0; |
| 945 | |
| 946 | delete_obj: |
| 947 | kobject_put(swap_kobj); |
| 948 | return err; |
| 949 | } |
| 950 | subsys_initcall(swap_init_sysfs); |
| 951 | #endif |