blob: f5cb6b23cedaff46c003e9a0720f79465ba451d5 [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>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020
21#include <asm/pgtable.h>
Hugh Dickinsb6478892020-06-25 20:29:59 -070022#include "internal.h"
Linus Torvalds1da177e2005-04-16 15:20:36 -070023
24/*
25 * swapper_space is a fiction, retained to simplify the path through
Jens Axboe7eaceac2011-03-10 08:52:07 +010026 * vmscan's shrink_page_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070027 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070028static const struct address_space_operations swap_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070029 .writepage = swap_writepage,
Mel Gorman62c230b2012-07-31 16:44:55 -070030 .set_page_dirty = swap_set_page_dirty,
Andrew Morton1c939232014-10-09 15:27:59 -070031#ifdef CONFIG_MIGRATION
Christoph Lametere965f962006-02-01 03:05:41 -080032 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -070033#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070034};
35
Shaohua Li33806f02013-02-22 16:34:37 -080036struct address_space swapper_spaces[MAX_SWAPFILES] = {
37 [0 ... MAX_SWAPFILES - 1] = {
38 .page_tree = RADIX_TREE_INIT(GFP_ATOMIC|__GFP_NOWARN),
David Herrmann4bb5f5d2014-08-08 14:25:25 -070039 .i_mmap_writable = ATOMIC_INIT(0),
Shaohua Li33806f02013-02-22 16:34:37 -080040 .a_ops = &swap_aops,
Huang Ying371a0962016-10-07 16:59:30 -070041 /* swap cache doesn't use writeback related tags */
42 .flags = 1 << AS_NO_WRITEBACK_TAGS,
Shaohua Li33806f02013-02-22 16:34:37 -080043 }
Linus Torvalds1da177e2005-04-16 15:20:36 -070044};
Linus Torvalds1da177e2005-04-16 15:20:36 -070045
46#define INC_CACHE_INFO(x) do { swap_cache_info.x++; } while (0)
47
48static struct {
49 unsigned long add_total;
50 unsigned long del_total;
51 unsigned long find_success;
52 unsigned long find_total;
Linus Torvalds1da177e2005-04-16 15:20:36 -070053} swap_cache_info;
54
Shaohua Li33806f02013-02-22 16:34:37 -080055unsigned 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 Li579f8292014-02-06 12:04:21 -080065static atomic_t swapin_readahead_hits = ATOMIC_INIT(4);
66
Linus Torvalds1da177e2005-04-16 15:20:36 -070067void show_swap_cache_info(void)
68{
Shaohua Li33806f02013-02-22 16:34:37 -080069 printk("%lu pages in swap cache\n", total_swapcache_pages());
Johannes Weiner2c97b7f2008-07-25 19:46:01 -070070 printk("Swap cache stats: add %lu, delete %lu, find %lu/%lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -070071 swap_cache_info.add_total, swap_cache_info.del_total,
Hugh Dickinsbb63be02008-02-04 22:28:49 -080072 swap_cache_info.find_success, swap_cache_info.find_total);
Shaohua Liec8acf22013-02-22 16:34:38 -080073 printk("Free swap = %ldkB\n",
74 get_nr_swap_pages() << (PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -070075 printk("Total swap = %lukB\n", total_swap_pages << (PAGE_SHIFT - 10));
76}
77
78/*
Daisuke Nishimura31a56392009-09-21 17:02:50 -070079 * __add_to_swap_cache resembles add_to_page_cache_locked on swapper_space,
Linus Torvalds1da177e2005-04-16 15:20:36 -070080 * but sets SwapCache flag and private instead of mapping and index.
81 */
Seth Jennings2f772e62013-04-29 15:08:34 -070082int __add_to_swap_cache(struct page *page, swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -070083{
84 int error;
Shaohua Li33806f02013-02-22 16:34:37 -080085 struct address_space *address_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -070086
Sasha Levin309381fea2014-01-23 15:52:54 -080087 VM_BUG_ON_PAGE(!PageLocked(page), page);
88 VM_BUG_ON_PAGE(PageSwapCache(page), page);
89 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Hugh Dickins51726b12009-01-06 14:39:25 -080090
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +030091 get_page(page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -070092 SetPageSwapCache(page);
93 set_page_private(page, entry.val);
94
Shaohua Li33806f02013-02-22 16:34:37 -080095 address_space = swap_address_space(entry);
96 spin_lock_irq(&address_space->tree_lock);
97 error = radix_tree_insert(&address_space->page_tree,
Huang Yingf6ab1f72016-10-07 17:00:21 -070098 swp_offset(entry), page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -070099 if (likely(!error)) {
Shaohua Li33806f02013-02-22 16:34:37 -0800100 address_space->nrpages++;
Mel Gorman11fb9982016-07-28 15:46:20 -0700101 __inc_node_page_state(page, NR_FILE_PAGES);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700102 INC_CACHE_INFO(add_total);
103 }
Shaohua Li33806f02013-02-22 16:34:37 -0800104 spin_unlock_irq(&address_space->tree_lock);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700105
106 if (unlikely(error)) {
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700107 /*
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 Nishimura31a56392009-09-21 17:02:50 -0700113 set_page_private(page, 0UL);
114 ClearPageSwapCache(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300115 put_page(page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700116 }
117
118 return error;
119}
120
121
122int add_to_swap_cache(struct page *page, swp_entry_t entry, gfp_t gfp_mask)
123{
124 int error;
125
Jan Kara5e4c0d972013-09-11 14:26:05 -0700126 error = radix_tree_maybe_preload(gfp_mask);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700127 if (!error) {
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700128 error = __add_to_swap_cache(page, entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700129 radix_tree_preload_end();
Hugh Dickinsfa1de902008-02-07 00:14:13 -0800130 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700131 return error;
132}
133
Linus Torvalds1da177e2005-04-16 15:20:36 -0700134/*
135 * This must be called only on pages that have
136 * been verified to be in the swap cache.
137 */
138void __delete_from_swap_cache(struct page *page)
139{
Shaohua Li33806f02013-02-22 16:34:37 -0800140 swp_entry_t entry;
141 struct address_space *address_space;
142
Sasha Levin309381fea2014-01-23 15:52:54 -0800143 VM_BUG_ON_PAGE(!PageLocked(page), page);
144 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
145 VM_BUG_ON_PAGE(PageWriteback(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700146
Shaohua Li33806f02013-02-22 16:34:37 -0800147 entry.val = page_private(page);
148 address_space = swap_address_space(entry);
Huang Yingf6ab1f72016-10-07 17:00:21 -0700149 radix_tree_delete(&address_space->page_tree, swp_offset(entry));
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700150 set_page_private(page, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151 ClearPageSwapCache(page);
Shaohua Li33806f02013-02-22 16:34:37 -0800152 address_space->nrpages--;
Mel Gorman11fb9982016-07-28 15:46:20 -0700153 __dec_node_page_state(page, NR_FILE_PAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700154 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 Li5bc7b8a2013-04-29 15:08:36 -0700164int add_to_swap(struct page *page, struct list_head *list)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700165{
166 swp_entry_t entry;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167 int err;
168
Sasha Levin309381fea2014-01-23 15:52:54 -0800169 VM_BUG_ON_PAGE(!PageLocked(page), page);
170 VM_BUG_ON_PAGE(!PageUptodate(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700171
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700172 entry = get_swap_page();
173 if (!entry.val)
174 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700175
Vladimir Davydov37e84352016-01-20 15:02:56 -0800176 if (mem_cgroup_try_charge_swap(page, entry)) {
177 swapcache_free(entry);
178 return 0;
179 }
180
Andrea Arcangeli3f04f622011-01-13 15:46:47 -0800181 if (unlikely(PageTransHuge(page)))
Shaohua Li5bc7b8a2013-04-29 15:08:36 -0700182 if (unlikely(split_huge_page_to_list(page, list))) {
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700183 swapcache_free(entry);
Andrea Arcangeli3f04f622011-01-13 15:46:47 -0800184 return 0;
185 }
186
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700187 /*
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 Kim854e9ed2016-01-15 16:54:53 -0800196 * Add it to the swap cache.
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700197 */
198 err = add_to_swap_cache(page, entry,
199 __GFP_HIGH|__GFP_NOMEMALLOC|__GFP_NOWARN);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700200
Minchan Kim854e9ed2016-01-15 16:54:53 -0800201 if (!err) {
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700202 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 Weiner0a31bc92014-08-08 14:19:22 -0700208 swapcache_free(entry);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700209 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700210 }
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 */
219void delete_from_swap_cache(struct page *page)
220{
221 swp_entry_t entry;
Shaohua Li33806f02013-02-22 16:34:37 -0800222 struct address_space *address_space;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700224 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700225
Shaohua Li33806f02013-02-22 16:34:37 -0800226 address_space = swap_address_space(entry);
227 spin_lock_irq(&address_space->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228 __delete_from_swap_cache(page);
Shaohua Li33806f02013-02-22 16:34:37 -0800229 spin_unlock_irq(&address_space->tree_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700230
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700231 swapcache_free(entry);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300232 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700233}
234
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235/*
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 Dickinsa2c43ee2009-01-06 14:39:36 -0800239 * here because we are going to recheck again inside
240 * try_to_free_swap() _with_ the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700241 * - Marcelo
242 */
243static inline void free_swap_cache(struct page *page)
244{
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800245 if (PageSwapCache(page) && !page_mapped(page) && trylock_page(page)) {
246 try_to_free_swap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247 unlock_page(page);
248 }
249}
250
251/*
252 * Perform a free_page(), also freeing any swap cache associated with
Hugh Dickinsb8072f02005-10-29 18:16:41 -0700253 * this page if it is the last user of the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254 */
255void free_page_and_swap_cache(struct page *page)
256{
257 free_swap_cache(page);
Aaron Lu6fcb52a2016-10-07 17:00:08 -0700258 if (!is_huge_zero_page(page))
Gerald Schaefer770a5372016-06-08 15:33:50 -0700259 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700260}
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 */
266void free_pages_and_swap_cache(struct page **pages, int nr)
267{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 struct page **pagep = pages;
Michal Hockoaabfb572014-10-09 15:28:52 -0700269 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700270
271 lru_add_drain();
Michal Hockoaabfb572014-10-09 15:28:52 -0700272 for (i = 0; i < nr; i++)
273 free_swap_cache(pagep[i]);
274 release_pages(pagep, nr, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275}
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 */
283struct page * lookup_swap_cache(swp_entry_t entry)
284{
285 struct page *page;
286
Huang Yingf6ab1f72016-10-07 17:00:21 -0700287 page = find_get_page(swap_address_space(entry), swp_offset(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700288
Shaohua Li579f8292014-02-06 12:04:21 -0800289 if (page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700290 INC_CACHE_INFO(find_success);
Shaohua Li579f8292014-02-06 12:04:21 -0800291 if (TestClearPageReadahead(page))
292 atomic_inc(&swapin_readahead_hits);
293 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700294
295 INC_CACHE_INFO(find_total);
296 return page;
297}
298
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700299struct 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 Torvalds1da177e2005-04-16 15:20:36 -0700302{
303 struct page *found_page, *new_page = NULL;
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700304 struct address_space *swapper_space = swap_address_space(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700305 int err;
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700306 *new_page_allocated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700307
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 Yingf6ab1f72016-10-07 17:00:21 -0700314 found_page = find_get_page(swapper_space, swp_offset(entry));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700315 if (found_page)
316 break;
317
318 /*
319 * Get a new page to read into from swap.
320 */
321 if (!new_page) {
Hugh Dickins02098fe2008-02-04 22:28:42 -0800322 new_page = alloc_page_vma(gfp_mask, vma, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700323 if (!new_page)
324 break; /* Out of memory */
325 }
326
327 /*
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700328 * call radix_tree_preload() while we can wait.
329 */
Hugh Dickinsb6478892020-06-25 20:29:59 -0700330 err = radix_tree_maybe_preload(gfp_mask & GFP_RECLAIM_MASK);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700331 if (err)
332 break;
333
334 /*
Hugh Dickinsf0009442008-02-04 22:28:49 -0800335 * Swap entry may have been freed since our caller observed it.
336 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700337 err = swapcache_prepare(entry);
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700338 if (err == -EEXIST) {
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700339 radix_tree_preload_end();
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700340 /*
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.
354 */
355 cond_resched();
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700356 continue;
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700357 }
358 if (err) { /* swp entry is obsolete ? */
359 radix_tree_preload_end();
Hugh Dickinsf0009442008-02-04 22:28:49 -0800360 break;
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700361 }
Hugh Dickinsf0009442008-02-04 22:28:49 -0800362
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700363 /* May fail (-ENOMEM) if radix-tree node allocation failed. */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800364 __SetPageLocked(new_page);
Hugh Dickinsfa9949d2016-05-19 17:12:41 -0700365 __SetPageSwapBacked(new_page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700366 err = __add_to_swap_cache(new_page, entry);
Nick Piggin529ae9a2008-08-02 12:01:03 +0200367 if (likely(!err)) {
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700368 radix_tree_preload_end();
Linus Torvalds1da177e2005-04-16 15:20:36 -0700369 /*
370 * Initiate read into locked page and return.
371 */
Rik van Rielc5fdae42008-10-18 20:26:36 -0700372 lru_cache_add_anon(new_page);
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700373 *new_page_allocated = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700374 return new_page;
375 }
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700376 radix_tree_preload_end();
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800377 __ClearPageLocked(new_page);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700378 /*
379 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
380 * clear SWAP_HAS_CACHE flag.
381 */
Johannes Weiner0a31bc92014-08-08 14:19:22 -0700382 swapcache_free(entry);
Hugh Dickinsf0009442008-02-04 22:28:49 -0800383 } while (err != -ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700384
385 if (new_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300386 put_page(new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700387 return found_page;
388}
Hugh Dickins46017e92008-02-04 22:28:41 -0800389
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700390/*
391 * Locate a page of swap in physical memory, reserving swap cache space
392 * and reading the disk if it is not already cached.
393 * A failure return means that either the page allocation failed or that
394 * the swap entry is no longer in use.
395 */
396struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
397 struct vm_area_struct *vma, unsigned long addr)
398{
399 bool page_was_allocated;
400 struct page *retpage = __read_swap_cache_async(entry, gfp_mask,
401 vma, addr, &page_was_allocated);
402
403 if (page_was_allocated)
404 swap_readpage(retpage);
405
406 return retpage;
407}
408
Shaohua Li579f8292014-02-06 12:04:21 -0800409static unsigned long swapin_nr_pages(unsigned long offset)
410{
411 static unsigned long prev_offset;
412 unsigned int pages, max_pages, last_ra;
413 static atomic_t last_readahead_pages;
414
Jason Low4db0c3c2015-04-15 16:14:08 -0700415 max_pages = 1 << READ_ONCE(page_cluster);
Shaohua Li579f8292014-02-06 12:04:21 -0800416 if (max_pages <= 1)
417 return 1;
418
419 /*
420 * This heuristic has been found to work well on both sequential and
421 * random loads, swapping to hard disk or to SSD: please don't ask
422 * what the "+ 2" means, it just happens to work well, that's all.
423 */
424 pages = atomic_xchg(&swapin_readahead_hits, 0) + 2;
425 if (pages == 2) {
426 /*
427 * We can have no readahead hits to judge by: but must not get
428 * stuck here forever, so check for an adjacent offset instead
429 * (and don't even bother to check whether swap type is same).
430 */
431 if (offset != prev_offset + 1 && offset != prev_offset - 1)
432 pages = 1;
433 prev_offset = offset;
434 } else {
435 unsigned int roundup = 4;
436 while (roundup < pages)
437 roundup <<= 1;
438 pages = roundup;
439 }
440
441 if (pages > max_pages)
442 pages = max_pages;
443
444 /* Don't shrink readahead too fast */
445 last_ra = atomic_read(&last_readahead_pages) / 2;
446 if (pages < last_ra)
447 pages = last_ra;
448 atomic_set(&last_readahead_pages, pages);
449
450 return pages;
451}
452
Hugh Dickins46017e92008-02-04 22:28:41 -0800453/**
454 * swapin_readahead - swap in pages in hope we need them soon
455 * @entry: swap entry of this memory
Randy Dunlap76824862008-03-19 17:00:40 -0700456 * @gfp_mask: memory allocation flags
Hugh Dickins46017e92008-02-04 22:28:41 -0800457 * @vma: user vma this address belongs to
458 * @addr: target address for mempolicy
459 *
460 * Returns the struct page for entry and addr, after queueing swapin.
461 *
462 * Primitive swap readahead code. We simply read an aligned block of
463 * (1 << page_cluster) entries in the swap area. This method is chosen
464 * because it doesn't cost us any seek time. We also make sure to queue
465 * the 'original' request together with the readahead ones...
466 *
467 * This has been extended to use the NUMA policies from the mm triggering
468 * the readahead.
469 *
470 * Caller must hold down_read on the vma->vm_mm if vma is not NULL.
471 */
Hugh Dickins02098fe2008-02-04 22:28:42 -0800472struct page *swapin_readahead(swp_entry_t entry, gfp_t gfp_mask,
Hugh Dickins46017e92008-02-04 22:28:41 -0800473 struct vm_area_struct *vma, unsigned long addr)
474{
Hugh Dickins46017e92008-02-04 22:28:41 -0800475 struct page *page;
Shaohua Li579f8292014-02-06 12:04:21 -0800476 unsigned long entry_offset = swp_offset(entry);
477 unsigned long offset = entry_offset;
Rik van Riel67f96aa2012-03-21 16:33:50 -0700478 unsigned long start_offset, end_offset;
Shaohua Li579f8292014-02-06 12:04:21 -0800479 unsigned long mask;
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700480 struct blk_plug plug;
Hugh Dickins46017e92008-02-04 22:28:41 -0800481
Shaohua Li579f8292014-02-06 12:04:21 -0800482 mask = swapin_nr_pages(offset) - 1;
483 if (!mask)
484 goto skip;
485
Rik van Riel67f96aa2012-03-21 16:33:50 -0700486 /* Read a page_cluster sized and aligned cluster around offset. */
487 start_offset = offset & ~mask;
488 end_offset = offset | mask;
489 if (!start_offset) /* First page is swap header. */
490 start_offset++;
491
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700492 blk_start_plug(&plug);
Rik van Riel67f96aa2012-03-21 16:33:50 -0700493 for (offset = start_offset; offset <= end_offset ; offset++) {
Hugh Dickins46017e92008-02-04 22:28:41 -0800494 /* Ok, do the async read-ahead now */
495 page = read_swap_cache_async(swp_entry(swp_type(entry), offset),
Hugh Dickins02098fe2008-02-04 22:28:42 -0800496 gfp_mask, vma, addr);
Hugh Dickins46017e92008-02-04 22:28:41 -0800497 if (!page)
Rik van Riel67f96aa2012-03-21 16:33:50 -0700498 continue;
Shaohua Li579f8292014-02-06 12:04:21 -0800499 if (offset != entry_offset)
500 SetPageReadahead(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300501 put_page(page);
Hugh Dickins46017e92008-02-04 22:28:41 -0800502 }
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700503 blk_finish_plug(&plug);
504
Hugh Dickins46017e92008-02-04 22:28:41 -0800505 lru_add_drain(); /* Push any new pages onto the LRU now */
Shaohua Li579f8292014-02-06 12:04:21 -0800506skip:
Hugh Dickins02098fe2008-02-04 22:28:42 -0800507 return read_swap_cache_async(entry, gfp_mask, vma, addr);
Hugh Dickins46017e92008-02-04 22:28:41 -0800508}