blob: 9c71b6b2562fee671e710347c7f4ff6ae54400ac [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
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 Torvalds1da177e2005-04-16 15:20:36 -07009#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090010#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/kernel_stat.h>
12#include <linux/swap.h>
Hugh Dickins46017e92008-02-04 22:28:41 -080013#include <linux/swapops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070014#include <linux/init.h>
15#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070016#include <linux/backing-dev.h>
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -070017#include <linux/blkdev.h>
Hugh Dickinsc484d412006-01-06 00:10:55 -080018#include <linux/pagevec.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080019#include <linux/migrate.h>
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080020#include <linux/vmalloc.h>
Tim Chen67afa382017-02-22 15:45:39 -080021#include <linux/swap_slots.h>
Huang Ying38d8b4e2017-07-06 15:37:18 -070022#include <linux/huge_mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24#include <asm/pgtable.h>
25
26/*
27 * swapper_space is a fiction, retained to simplify the path through
Jens Axboe7eaceac2011-03-10 08:52:07 +010028 * vmscan's shrink_page_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070030static const struct address_space_operations swap_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070031 .writepage = swap_writepage,
Mel Gorman62c230b2012-07-31 16:44:55 -070032 .set_page_dirty = swap_set_page_dirty,
Andrew Morton1c939232014-10-09 15:27:59 -070033#ifdef CONFIG_MIGRATION
Christoph Lametere965f962006-02-01 03:05:41 -080034 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -070035#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070036};
37
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080038struct address_space *swapper_spaces[MAX_SWAPFILES];
39static unsigned int nr_swapper_spaces[MAX_SWAPFILES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070040
41#define INC_CACHE_INFO(x) do { swap_cache_info.x++; } while (0)
Huang Ying38d8b4e2017-07-06 15:37:18 -070042#define ADD_CACHE_INFO(x, nr) do { swap_cache_info.x += (nr); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070043
44static struct {
45 unsigned long add_total;
46 unsigned long del_total;
47 unsigned long find_success;
48 unsigned long find_total;
Linus Torvalds1da177e2005-04-16 15:20:36 -070049} swap_cache_info;
50
Shaohua Li33806f02013-02-22 16:34:37 -080051unsigned long total_swapcache_pages(void)
52{
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080053 unsigned int i, j, nr;
Shaohua Li33806f02013-02-22 16:34:37 -080054 unsigned long ret = 0;
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080055 struct address_space *spaces;
Shaohua Li33806f02013-02-22 16:34:37 -080056
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080057 rcu_read_lock();
58 for (i = 0; i < MAX_SWAPFILES; i++) {
59 /*
60 * The corresponding entries in nr_swapper_spaces and
61 * swapper_spaces will be reused only after at least
62 * one grace period. So it is impossible for them
63 * belongs to different usage.
64 */
65 nr = nr_swapper_spaces[i];
66 spaces = rcu_dereference(swapper_spaces[i]);
67 if (!nr || !spaces)
68 continue;
69 for (j = 0; j < nr; j++)
70 ret += spaces[j].nrpages;
71 }
72 rcu_read_unlock();
Shaohua Li33806f02013-02-22 16:34:37 -080073 return ret;
74}
75
Shaohua Li579f8292014-02-06 12:04:21 -080076static atomic_t swapin_readahead_hits = ATOMIC_INIT(4);
77
Linus Torvalds1da177e2005-04-16 15:20:36 -070078void show_swap_cache_info(void)
79{
Shaohua Li33806f02013-02-22 16:34:37 -080080 printk("%lu pages in swap cache\n", total_swapcache_pages());
Johannes Weiner2c97b7f2008-07-25 19:46:01 -070081 printk("Swap cache stats: add %lu, delete %lu, find %lu/%lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070082 swap_cache_info.add_total, swap_cache_info.del_total,
Hugh Dickinsbb63be02008-02-04 22:28:49 -080083 swap_cache_info.find_success, swap_cache_info.find_total);
Shaohua Liec8acf22013-02-22 16:34:38 -080084 printk("Free swap = %ldkB\n",
85 get_nr_swap_pages() << (PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070086 printk("Total swap = %lukB\n", total_swap_pages << (PAGE_SHIFT - 10));
87}
88
89/*
Daisuke Nishimura31a56392009-09-21 17:02:50 -070090 * __add_to_swap_cache resembles add_to_page_cache_locked on swapper_space,
Linus Torvalds1da177e2005-04-16 15:20:36 -070091 * but sets SwapCache flag and private instead of mapping and index.
92 */
Seth Jennings2f772e62013-04-29 15:08:34 -070093int __add_to_swap_cache(struct page *page, swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070094{
Huang Ying38d8b4e2017-07-06 15:37:18 -070095 int error, i, nr = hpage_nr_pages(page);
Shaohua Li33806f02013-02-22 16:34:37 -080096 struct address_space *address_space;
Huang Ying38d8b4e2017-07-06 15:37:18 -070097 pgoff_t idx = swp_offset(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -070098
Sasha Levin309381fea2014-01-23 15:52:54 -080099 VM_BUG_ON_PAGE(!PageLocked(page), page);
100 VM_BUG_ON_PAGE(PageSwapCache(page), page);
101 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Hugh Dickins51726b12009-01-06 14:39:25 -0800102
Huang Ying38d8b4e2017-07-06 15:37:18 -0700103 page_ref_add(page, nr);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700104 SetPageSwapCache(page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700105
Shaohua Li33806f02013-02-22 16:34:37 -0800106 address_space = swap_address_space(entry);
107 spin_lock_irq(&address_space->tree_lock);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700108 for (i = 0; i < nr; i++) {
109 set_page_private(page + i, entry.val + i);
110 error = radix_tree_insert(&address_space->page_tree,
111 idx + i, page + i);
112 if (unlikely(error))
113 break;
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700114 }
Huang Ying38d8b4e2017-07-06 15:37:18 -0700115 if (likely(!error)) {
116 address_space->nrpages += nr;
117 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
118 ADD_CACHE_INFO(add_total, nr);
119 } else {
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700120 /*
121 * Only the context which have set SWAP_HAS_CACHE flag
122 * would call add_to_swap_cache().
123 * So add_to_swap_cache() doesn't returns -EEXIST.
124 */
125 VM_BUG_ON(error == -EEXIST);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700126 set_page_private(page + i, 0UL);
127 while (i--) {
128 radix_tree_delete(&address_space->page_tree, idx + i);
129 set_page_private(page + i, 0UL);
130 }
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700131 ClearPageSwapCache(page);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700132 page_ref_sub(page, nr);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700133 }
Huang Ying38d8b4e2017-07-06 15:37:18 -0700134 spin_unlock_irq(&address_space->tree_lock);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700135
136 return error;
137}
138
139
140int add_to_swap_cache(struct page *page, swp_entry_t entry, gfp_t gfp_mask)
141{
142 int error;
143
Huang Ying38d8b4e2017-07-06 15:37:18 -0700144 error = radix_tree_maybe_preload_order(gfp_mask, compound_order(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700145 if (!error) {
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700146 error = __add_to_swap_cache(page, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700147 radix_tree_preload_end();
Hugh Dickinsfa1de902008-02-07 00:14:13 -0800148 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700149 return error;
150}
151
Linus Torvalds1da177e2005-04-16 15:20:36 -0700152/*
153 * This must be called only on pages that have
154 * been verified to be in the swap cache.
155 */
156void __delete_from_swap_cache(struct page *page)
157{
Shaohua Li33806f02013-02-22 16:34:37 -0800158 struct address_space *address_space;
Huang Ying38d8b4e2017-07-06 15:37:18 -0700159 int i, nr = hpage_nr_pages(page);
160 swp_entry_t entry;
161 pgoff_t idx;
Shaohua Li33806f02013-02-22 16:34:37 -0800162
Sasha Levin309381fea2014-01-23 15:52:54 -0800163 VM_BUG_ON_PAGE(!PageLocked(page), page);
164 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
165 VM_BUG_ON_PAGE(PageWriteback(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700166
Shaohua Li33806f02013-02-22 16:34:37 -0800167 entry.val = page_private(page);
168 address_space = swap_address_space(entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700169 idx = swp_offset(entry);
170 for (i = 0; i < nr; i++) {
171 radix_tree_delete(&address_space->page_tree, idx + i);
172 set_page_private(page + i, 0);
173 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700174 ClearPageSwapCache(page);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700175 address_space->nrpages -= nr;
176 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, -nr);
177 ADD_CACHE_INFO(del_total, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700178}
179
180/**
181 * add_to_swap - allocate swap space for a page
182 * @page: page we want to move to swap
183 *
184 * Allocate swap space for the page and add the page to the
185 * swap cache. Caller needs to hold the page lock.
186 */
Minchan Kim0f074652017-07-06 15:37:24 -0700187int add_to_swap(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700188{
189 swp_entry_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700190 int err;
191
Sasha Levin309381fea2014-01-23 15:52:54 -0800192 VM_BUG_ON_PAGE(!PageLocked(page), page);
193 VM_BUG_ON_PAGE(!PageUptodate(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700194
Huang Ying38d8b4e2017-07-06 15:37:18 -0700195 entry = get_swap_page(page);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700196 if (!entry.val)
Minchan Kim0f074652017-07-06 15:37:24 -0700197 return 0;
198
Huang Ying38d8b4e2017-07-06 15:37:18 -0700199 if (mem_cgroup_try_charge_swap(page, entry))
Minchan Kim0f074652017-07-06 15:37:24 -0700200 goto fail;
Andrea Arcangeli3f04f622011-01-13 15:46:47 -0800201
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700202 /*
203 * Radix-tree node allocations from PF_MEMALLOC contexts could
204 * completely exhaust the page allocator. __GFP_NOMEMALLOC
205 * stops emergency reserves from being allocated.
206 *
207 * TODO: this could cause a theoretical memory reclaim
208 * deadlock in the swap out path.
209 */
210 /*
Minchan Kim854e9ed2016-01-15 16:54:53 -0800211 * Add it to the swap cache.
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700212 */
213 err = add_to_swap_cache(page, entry,
214 __GFP_HIGH|__GFP_NOMEMALLOC|__GFP_NOWARN);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700215 /* -ENOMEM radix-tree allocation failure */
216 if (err)
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700217 /*
218 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
219 * clear SWAP_HAS_CACHE flag.
220 */
Minchan Kim0f074652017-07-06 15:37:24 -0700221 goto fail;
Huang Ying38d8b4e2017-07-06 15:37:18 -0700222
223 return 1;
224
Huang Ying38d8b4e2017-07-06 15:37:18 -0700225fail:
Minchan Kim0f074652017-07-06 15:37:24 -0700226 put_swap_page(page, entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700227 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228}
229
230/*
231 * This must be called only on pages that have
232 * been verified to be in the swap cache and locked.
233 * It will never put the page into the free list,
234 * the caller has a reference on the page.
235 */
236void delete_from_swap_cache(struct page *page)
237{
238 swp_entry_t entry;
Shaohua Li33806f02013-02-22 16:34:37 -0800239 struct address_space *address_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700240
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700241 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700242
Shaohua Li33806f02013-02-22 16:34:37 -0800243 address_space = swap_address_space(entry);
244 spin_lock_irq(&address_space->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700245 __delete_from_swap_cache(page);
Shaohua Li33806f02013-02-22 16:34:37 -0800246 spin_unlock_irq(&address_space->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Minchan Kim75f6d6d2017-07-06 15:37:21 -0700248 put_swap_page(page, entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700249 page_ref_sub(page, hpage_nr_pages(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700250}
251
Linus Torvalds1da177e2005-04-16 15:20:36 -0700252/*
253 * If we are the only user, then try to free up the swap cache.
254 *
255 * Its ok to check for PageSwapCache without the page lock
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800256 * here because we are going to recheck again inside
257 * try_to_free_swap() _with_ the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700258 * - Marcelo
259 */
260static inline void free_swap_cache(struct page *page)
261{
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800262 if (PageSwapCache(page) && !page_mapped(page) && trylock_page(page)) {
263 try_to_free_swap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700264 unlock_page(page);
265 }
266}
267
268/*
269 * Perform a free_page(), also freeing any swap cache associated with
Hugh Dickinsb8072f02005-10-29 18:16:41 -0700270 * this page if it is the last user of the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700271 */
272void free_page_and_swap_cache(struct page *page)
273{
274 free_swap_cache(page);
Aaron Lu6fcb52a2016-10-07 17:00:08 -0700275 if (!is_huge_zero_page(page))
Gerald Schaefer770a5372016-06-08 15:33:50 -0700276 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700277}
278
279/*
280 * Passed an array of pages, drop them all from swapcache and then release
281 * them. They are removed from the LRU and freed if this is their last use.
282 */
283void free_pages_and_swap_cache(struct page **pages, int nr)
284{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700285 struct page **pagep = pages;
Michal Hockoaabfb572014-10-09 15:28:52 -0700286 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700287
288 lru_add_drain();
Michal Hockoaabfb572014-10-09 15:28:52 -0700289 for (i = 0; i < nr; i++)
290 free_swap_cache(pagep[i]);
291 release_pages(pagep, nr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292}
293
294/*
295 * Lookup a swap entry in the swap cache. A found page will be returned
296 * unlocked and with its refcount incremented - we rely on the kernel
297 * lock getting page table operations atomic even if we drop the page
298 * lock before returning.
299 */
300struct page * lookup_swap_cache(swp_entry_t entry)
301{
302 struct page *page;
303
Huang Yingf6ab1f72016-10-07 17:00:21 -0700304 page = find_get_page(swap_address_space(entry), swp_offset(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305
Huang Ying38d8b4e2017-07-06 15:37:18 -0700306 if (page && likely(!PageTransCompound(page))) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307 INC_CACHE_INFO(find_success);
Shaohua Li579f8292014-02-06 12:04:21 -0800308 if (TestClearPageReadahead(page))
309 atomic_inc(&swapin_readahead_hits);
310 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311
312 INC_CACHE_INFO(find_total);
313 return page;
314}
315
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700316struct page *__read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
317 struct vm_area_struct *vma, unsigned long addr,
318 bool *new_page_allocated)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700319{
320 struct page *found_page, *new_page = NULL;
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700321 struct address_space *swapper_space = swap_address_space(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700322 int err;
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700323 *new_page_allocated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324
325 do {
326 /*
327 * First check the swap cache. Since this is normally
328 * called after lookup_swap_cache() failed, re-calling
329 * that would confuse statistics.
330 */
Huang Yingf6ab1f72016-10-07 17:00:21 -0700331 found_page = find_get_page(swapper_space, swp_offset(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700332 if (found_page)
333 break;
334
Huang Yingba81f832017-02-22 15:45:46 -0800335 /*
336 * Just skip read ahead for unused swap slot.
337 * During swap_off when swap_slot_cache is disabled,
338 * we have to handle the race between putting
339 * swap entry in swap cache and marking swap slot
340 * as SWAP_HAS_CACHE. That's done in later part of code or
341 * else swap_off will be aborted if we return NULL.
342 */
343 if (!__swp_swapcount(entry) && swap_slot_cache_enabled)
344 break;
Tim Chene8c26ab2017-02-22 15:45:29 -0800345
Linus Torvalds1da177e2005-04-16 15:20:36 -0700346 /*
347 * Get a new page to read into from swap.
348 */
349 if (!new_page) {
Hugh Dickins02098fe2008-02-04 22:28:42 -0800350 new_page = alloc_page_vma(gfp_mask, vma, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700351 if (!new_page)
352 break; /* Out of memory */
353 }
354
355 /*
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700356 * call radix_tree_preload() while we can wait.
357 */
Jan Kara5e4c0d972013-09-11 14:26:05 -0700358 err = radix_tree_maybe_preload(gfp_mask & GFP_KERNEL);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700359 if (err)
360 break;
361
362 /*
Hugh Dickinsf0009442008-02-04 22:28:49 -0800363 * Swap entry may have been freed since our caller observed it.
364 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700365 err = swapcache_prepare(entry);
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700366 if (err == -EEXIST) {
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700367 radix_tree_preload_end();
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700368 /*
369 * We might race against get_swap_page() and stumble
370 * across a SWAP_HAS_CACHE swap_map entry whose page
Huang Ying9c1cc2e2017-05-03 14:54:33 -0700371 * has not been brought into the swapcache yet.
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700372 */
373 cond_resched();
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700374 continue;
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700375 }
376 if (err) { /* swp entry is obsolete ? */
377 radix_tree_preload_end();
Hugh Dickinsf0009442008-02-04 22:28:49 -0800378 break;
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700379 }
Hugh Dickinsf0009442008-02-04 22:28:49 -0800380
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700381 /* May fail (-ENOMEM) if radix-tree node allocation failed. */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800382 __SetPageLocked(new_page);
Hugh Dickinsfa9949d2016-05-19 17:12:41 -0700383 __SetPageSwapBacked(new_page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700384 err = __add_to_swap_cache(new_page, entry);
Nick Piggin529ae9a2008-08-02 12:01:03 +0200385 if (likely(!err)) {
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700386 radix_tree_preload_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 /*
388 * Initiate read into locked page and return.
389 */
Rik van Rielc5fdae42008-10-18 20:26:36 -0700390 lru_cache_add_anon(new_page);
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700391 *new_page_allocated = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700392 return new_page;
393 }
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700394 radix_tree_preload_end();
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800395 __ClearPageLocked(new_page);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700396 /*
397 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
398 * clear SWAP_HAS_CACHE flag.
399 */
Minchan Kim75f6d6d2017-07-06 15:37:21 -0700400 put_swap_page(new_page, entry);
Hugh Dickinsf0009442008-02-04 22:28:49 -0800401 } while (err != -ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700402
403 if (new_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300404 put_page(new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700405 return found_page;
406}
Hugh Dickins46017e92008-02-04 22:28:41 -0800407
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700408/*
409 * Locate a page of swap in physical memory, reserving swap cache space
410 * and reading the disk if it is not already cached.
411 * A failure return means that either the page allocation failed or that
412 * the swap entry is no longer in use.
413 */
414struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
415 struct vm_area_struct *vma, unsigned long addr)
416{
417 bool page_was_allocated;
418 struct page *retpage = __read_swap_cache_async(entry, gfp_mask,
419 vma, addr, &page_was_allocated);
420
421 if (page_was_allocated)
422 swap_readpage(retpage);
423
424 return retpage;
425}
426
Shaohua Li579f8292014-02-06 12:04:21 -0800427static unsigned long swapin_nr_pages(unsigned long offset)
428{
429 static unsigned long prev_offset;
430 unsigned int pages, max_pages, last_ra;
431 static atomic_t last_readahead_pages;
432
Jason Low4db0c3c2015-04-15 16:14:08 -0700433 max_pages = 1 << READ_ONCE(page_cluster);
Shaohua Li579f8292014-02-06 12:04:21 -0800434 if (max_pages <= 1)
435 return 1;
436
437 /*
438 * This heuristic has been found to work well on both sequential and
439 * random loads, swapping to hard disk or to SSD: please don't ask
440 * what the "+ 2" means, it just happens to work well, that's all.
441 */
442 pages = atomic_xchg(&swapin_readahead_hits, 0) + 2;
443 if (pages == 2) {
444 /*
445 * We can have no readahead hits to judge by: but must not get
446 * stuck here forever, so check for an adjacent offset instead
447 * (and don't even bother to check whether swap type is same).
448 */
449 if (offset != prev_offset + 1 && offset != prev_offset - 1)
450 pages = 1;
451 prev_offset = offset;
452 } else {
453 unsigned int roundup = 4;
454 while (roundup < pages)
455 roundup <<= 1;
456 pages = roundup;
457 }
458
459 if (pages > max_pages)
460 pages = max_pages;
461
462 /* Don't shrink readahead too fast */
463 last_ra = atomic_read(&last_readahead_pages) / 2;
464 if (pages < last_ra)
465 pages = last_ra;
466 atomic_set(&last_readahead_pages, pages);
467
468 return pages;
469}
470
Hugh Dickins46017e92008-02-04 22:28:41 -0800471/**
472 * swapin_readahead - swap in pages in hope we need them soon
473 * @entry: swap entry of this memory
Randy Dunlap76824862008-03-19 17:00:40 -0700474 * @gfp_mask: memory allocation flags
Hugh Dickins46017e92008-02-04 22:28:41 -0800475 * @vma: user vma this address belongs to
476 * @addr: target address for mempolicy
477 *
478 * Returns the struct page for entry and addr, after queueing swapin.
479 *
480 * Primitive swap readahead code. We simply read an aligned block of
481 * (1 << page_cluster) entries in the swap area. This method is chosen
482 * because it doesn't cost us any seek time. We also make sure to queue
483 * the 'original' request together with the readahead ones...
484 *
485 * This has been extended to use the NUMA policies from the mm triggering
486 * the readahead.
487 *
488 * Caller must hold down_read on the vma->vm_mm if vma is not NULL.
489 */
Hugh Dickins02098fe2008-02-04 22:28:42 -0800490struct page *swapin_readahead(swp_entry_t entry, gfp_t gfp_mask,
Hugh Dickins46017e92008-02-04 22:28:41 -0800491 struct vm_area_struct *vma, unsigned long addr)
492{
Hugh Dickins46017e92008-02-04 22:28:41 -0800493 struct page *page;
Shaohua Li579f8292014-02-06 12:04:21 -0800494 unsigned long entry_offset = swp_offset(entry);
495 unsigned long offset = entry_offset;
Rik van Riel67f96aa2012-03-21 16:33:50 -0700496 unsigned long start_offset, end_offset;
Shaohua Li579f8292014-02-06 12:04:21 -0800497 unsigned long mask;
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700498 struct blk_plug plug;
Hugh Dickins46017e92008-02-04 22:28:41 -0800499
Shaohua Li579f8292014-02-06 12:04:21 -0800500 mask = swapin_nr_pages(offset) - 1;
501 if (!mask)
502 goto skip;
503
Rik van Riel67f96aa2012-03-21 16:33:50 -0700504 /* Read a page_cluster sized and aligned cluster around offset. */
505 start_offset = offset & ~mask;
506 end_offset = offset | mask;
507 if (!start_offset) /* First page is swap header. */
508 start_offset++;
509
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700510 blk_start_plug(&plug);
Rik van Riel67f96aa2012-03-21 16:33:50 -0700511 for (offset = start_offset; offset <= end_offset ; offset++) {
Hugh Dickins46017e92008-02-04 22:28:41 -0800512 /* Ok, do the async read-ahead now */
513 page = read_swap_cache_async(swp_entry(swp_type(entry), offset),
Hugh Dickins02098fe2008-02-04 22:28:42 -0800514 gfp_mask, vma, addr);
Hugh Dickins46017e92008-02-04 22:28:41 -0800515 if (!page)
Rik van Riel67f96aa2012-03-21 16:33:50 -0700516 continue;
Huang Ying38d8b4e2017-07-06 15:37:18 -0700517 if (offset != entry_offset && likely(!PageTransCompound(page)))
Shaohua Li579f8292014-02-06 12:04:21 -0800518 SetPageReadahead(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300519 put_page(page);
Hugh Dickins46017e92008-02-04 22:28:41 -0800520 }
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700521 blk_finish_plug(&plug);
522
Hugh Dickins46017e92008-02-04 22:28:41 -0800523 lru_add_drain(); /* Push any new pages onto the LRU now */
Shaohua Li579f8292014-02-06 12:04:21 -0800524skip:
Hugh Dickins02098fe2008-02-04 22:28:42 -0800525 return read_swap_cache_async(entry, gfp_mask, vma, addr);
Hugh Dickins46017e92008-02-04 22:28:41 -0800526}
Huang, Ying4b3ef9d2017-02-22 15:45:26 -0800527
528int init_swap_address_space(unsigned int type, unsigned long nr_pages)
529{
530 struct address_space *spaces, *space;
531 unsigned int i, nr;
532
533 nr = DIV_ROUND_UP(nr_pages, SWAP_ADDRESS_SPACE_PAGES);
Huang Ying54f180d2017-05-08 15:57:40 -0700534 spaces = kvzalloc(sizeof(struct address_space) * nr, GFP_KERNEL);
Huang, Ying4b3ef9d2017-02-22 15:45:26 -0800535 if (!spaces)
536 return -ENOMEM;
537 for (i = 0; i < nr; i++) {
538 space = spaces + i;
539 INIT_RADIX_TREE(&space->page_tree, GFP_ATOMIC|__GFP_NOWARN);
540 atomic_set(&space->i_mmap_writable, 0);
541 space->a_ops = &swap_aops;
542 /* swap cache doesn't use writeback related tags */
543 mapping_set_no_writeback_tags(space);
544 spin_lock_init(&space->tree_lock);
545 }
546 nr_swapper_spaces[type] = nr;
547 rcu_assign_pointer(swapper_spaces[type], spaces);
548
549 return 0;
550}
551
552void exit_swap_address_space(unsigned int type)
553{
554 struct address_space *spaces;
555
556 spaces = swapper_spaces[type];
557 nr_swapper_spaces[type] = 0;
558 rcu_assign_pointer(swapper_spaces[type], NULL);
559 synchronize_rcu();
560 kvfree(spaces);
561}