blob: 61453f1faf72dd9910b823307356aaeca4677185 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001// SPDX-License-Identifier: GPL-2.0
Linus Torvalds1da177e2005-04-16 15:20:36 -07002/*
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 Torvalds1da177e2005-04-16 15:20:36 -070010#include <linux/mm.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090011#include <linux/gfp.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070012#include <linux/kernel_stat.h>
13#include <linux/swap.h>
Hugh Dickins46017e92008-02-04 22:28:41 -080014#include <linux/swapops.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070015#include <linux/init.h>
16#include <linux/pagemap.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070017#include <linux/backing-dev.h>
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -070018#include <linux/blkdev.h>
Hugh Dickinsc484d412006-01-06 00:10:55 -080019#include <linux/pagevec.h>
Christoph Lameterb20a3502006-03-22 00:09:12 -080020#include <linux/migrate.h>
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080021#include <linux/vmalloc.h>
Tim Chen67afa382017-02-22 15:45:39 -080022#include <linux/swap_slots.h>
Huang Ying38d8b4e2017-07-06 15:37:18 -070023#include <linux/huge_mm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070024
25#include <asm/pgtable.h>
26
27/*
28 * swapper_space is a fiction, retained to simplify the path through
Jens Axboe7eaceac2011-03-10 08:52:07 +010029 * vmscan's shrink_page_list.
Linus Torvalds1da177e2005-04-16 15:20:36 -070030 */
Christoph Hellwigf5e54d62006-06-28 04:26:44 -070031static const struct address_space_operations swap_aops = {
Linus Torvalds1da177e2005-04-16 15:20:36 -070032 .writepage = swap_writepage,
Mel Gorman62c230b2012-07-31 16:44:55 -070033 .set_page_dirty = swap_set_page_dirty,
Andrew Morton1c939232014-10-09 15:27:59 -070034#ifdef CONFIG_MIGRATION
Christoph Lametere965f962006-02-01 03:05:41 -080035 .migratepage = migrate_page,
Andrew Morton1c939232014-10-09 15:27:59 -070036#endif
Linus Torvalds1da177e2005-04-16 15:20:36 -070037};
38
Changbin Du783cb682017-11-15 17:36:06 -080039struct address_space *swapper_spaces[MAX_SWAPFILES] __read_mostly;
40static unsigned int nr_swapper_spaces[MAX_SWAPFILES] __read_mostly;
Colin Ian Kingf5c754d2018-04-05 16:25:05 -070041static bool enable_vma_readahead __read_mostly = true;
Huang Yingec560172017-09-06 16:24:36 -070042
Huang Yingec560172017-09-06 16:24:36 -070043#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 Torvalds1da177e2005-04-16 15:20:36 -070060
61#define INC_CACHE_INFO(x) do { swap_cache_info.x++; } while (0)
Huang Ying38d8b4e2017-07-06 15:37:18 -070062#define ADD_CACHE_INFO(x, nr) do { swap_cache_info.x += (nr); } while (0)
Linus Torvalds1da177e2005-04-16 15:20:36 -070063
64static struct {
65 unsigned long add_total;
66 unsigned long del_total;
67 unsigned long find_success;
68 unsigned long find_total;
Linus Torvalds1da177e2005-04-16 15:20:36 -070069} swap_cache_info;
70
Shaohua Li33806f02013-02-22 16:34:37 -080071unsigned long total_swapcache_pages(void)
72{
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080073 unsigned int i, j, nr;
Shaohua Li33806f02013-02-22 16:34:37 -080074 unsigned long ret = 0;
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080075 struct address_space *spaces;
Shaohua Li33806f02013-02-22 16:34:37 -080076
Huang, Ying4b3ef9d2017-02-22 15:45:26 -080077 rcu_read_lock();
78 for (i = 0; i < MAX_SWAPFILES; i++) {
79 /*
80 * The corresponding entries in nr_swapper_spaces and
81 * swapper_spaces will be reused only after at least
82 * one grace period. So it is impossible for them
83 * belongs to different usage.
84 */
85 nr = nr_swapper_spaces[i];
86 spaces = rcu_dereference(swapper_spaces[i]);
87 if (!nr || !spaces)
88 continue;
89 for (j = 0; j < nr; j++)
90 ret += spaces[j].nrpages;
91 }
92 rcu_read_unlock();
Shaohua Li33806f02013-02-22 16:34:37 -080093 return ret;
94}
95
Shaohua Li579f8292014-02-06 12:04:21 -080096static atomic_t swapin_readahead_hits = ATOMIC_INIT(4);
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098void show_swap_cache_info(void)
99{
Shaohua Li33806f02013-02-22 16:34:37 -0800100 printk("%lu pages in swap cache\n", total_swapcache_pages());
Johannes Weiner2c97b7f2008-07-25 19:46:01 -0700101 printk("Swap cache stats: add %lu, delete %lu, find %lu/%lu\n",
Linus Torvalds1da177e2005-04-16 15:20:36 -0700102 swap_cache_info.add_total, swap_cache_info.del_total,
Hugh Dickinsbb63be02008-02-04 22:28:49 -0800103 swap_cache_info.find_success, swap_cache_info.find_total);
Shaohua Liec8acf22013-02-22 16:34:38 -0800104 printk("Free swap = %ldkB\n",
105 get_nr_swap_pages() << (PAGE_SHIFT - 10));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700106 printk("Total swap = %lukB\n", total_swap_pages << (PAGE_SHIFT - 10));
107}
108
109/*
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500110 * add_to_swap_cache resembles add_to_page_cache_locked on swapper_space,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700111 * but sets SwapCache flag and private instead of mapping and index.
112 */
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500113int add_to_swap_cache(struct page *page, swp_entry_t entry, gfp_t gfp)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700114{
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500115 struct address_space *address_space = swap_address_space(entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700116 pgoff_t idx = swp_offset(entry);
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500117 XA_STATE_ORDER(xas, &address_space->i_pages, idx, compound_order(page));
118 unsigned long i, nr = 1UL << compound_order(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119
Sasha Levin309381fea2014-01-23 15:52:54 -0800120 VM_BUG_ON_PAGE(!PageLocked(page), page);
121 VM_BUG_ON_PAGE(PageSwapCache(page), page);
122 VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
Hugh Dickins51726b12009-01-06 14:39:25 -0800123
Huang Ying38d8b4e2017-07-06 15:37:18 -0700124 page_ref_add(page, nr);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700125 SetPageSwapCache(page);
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700126
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500127 do {
128 xas_lock_irq(&xas);
129 xas_create_range(&xas);
130 if (xas_error(&xas))
131 goto unlock;
132 for (i = 0; i < nr; i++) {
133 VM_BUG_ON_PAGE(xas.xa_index != idx + i, page);
134 set_page_private(page + i, entry.val + i);
Linus Torvalds69bf4b62019-07-05 19:55:18 -0700135 xas_store(&xas, page + i);
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500136 xas_next(&xas);
137 }
Huang Ying38d8b4e2017-07-06 15:37:18 -0700138 address_space->nrpages += nr;
139 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
140 ADD_CACHE_INFO(add_total, nr);
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500141unlock:
142 xas_unlock_irq(&xas);
143 } while (xas_nomem(&xas, gfp));
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700144
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500145 if (!xas_error(&xas))
146 return 0;
Daisuke Nishimura31a56392009-09-21 17:02:50 -0700147
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500148 ClearPageSwapCache(page);
149 page_ref_sub(page, nr);
150 return xas_error(&xas);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700151}
152
Linus Torvalds1da177e2005-04-16 15:20:36 -0700153/*
154 * This must be called only on pages that have
155 * been verified to be in the swap cache.
156 */
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500157void __delete_from_swap_cache(struct page *page, swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700158{
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500159 struct address_space *address_space = swap_address_space(entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700160 int i, nr = hpage_nr_pages(page);
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500161 pgoff_t idx = swp_offset(entry);
162 XA_STATE(xas, &address_space->i_pages, idx);
Shaohua Li33806f02013-02-22 16:34:37 -0800163
Sasha Levin309381fea2014-01-23 15:52:54 -0800164 VM_BUG_ON_PAGE(!PageLocked(page), page);
165 VM_BUG_ON_PAGE(!PageSwapCache(page), page);
166 VM_BUG_ON_PAGE(PageWriteback(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700167
Huang Ying38d8b4e2017-07-06 15:37:18 -0700168 for (i = 0; i < nr; i++) {
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500169 void *entry = xas_store(&xas, NULL);
Linus Torvalds69bf4b62019-07-05 19:55:18 -0700170 VM_BUG_ON_PAGE(entry != page + i, entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700171 set_page_private(page + i, 0);
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500172 xas_next(&xas);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700173 }
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
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700199 /*
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500200 * XArray node allocations from PF_MEMALLOC contexts could
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700201 * completely exhaust the page allocator. __GFP_NOMEMALLOC
202 * stops emergency reserves from being allocated.
203 *
204 * TODO: this could cause a theoretical memory reclaim
205 * deadlock in the swap out path.
206 */
207 /*
Minchan Kim854e9ed2016-01-15 16:54:53 -0800208 * Add it to the swap cache.
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700209 */
210 err = add_to_swap_cache(page, entry,
211 __GFP_HIGH|__GFP_NOMEMALLOC|__GFP_NOWARN);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700212 if (err)
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700213 /*
214 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
215 * clear SWAP_HAS_CACHE flag.
216 */
Minchan Kim0f074652017-07-06 15:37:24 -0700217 goto fail;
Shaohua Li96254562017-10-03 16:15:32 -0700218 /*
219 * Normally the page will be dirtied in unmap because its pte should be
220 * dirty. A special case is MADV_FREE page. The page'e pte could have
221 * dirty bit cleared but the page's SwapBacked bit is still set because
222 * clearing the dirty bit and SwapBacked bit has no lock protected. For
223 * such page, unmap will not set dirty bit for it, so page reclaim will
224 * not write the page out. This can cause data corruption when the page
225 * is swap in later. Always setting the dirty bit for the page solves
226 * the problem.
227 */
228 set_page_dirty(page);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700229
230 return 1;
231
Huang Ying38d8b4e2017-07-06 15:37:18 -0700232fail:
Minchan Kim0f074652017-07-06 15:37:24 -0700233 put_swap_page(page, entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700234 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700235}
236
237/*
238 * This must be called only on pages that have
239 * been verified to be in the swap cache and locked.
240 * It will never put the page into the free list,
241 * the caller has a reference on the page.
242 */
243void delete_from_swap_cache(struct page *page)
244{
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500245 swp_entry_t entry = { .val = page_private(page) };
246 struct address_space *address_space = swap_address_space(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700247
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700248 xa_lock_irq(&address_space->i_pages);
Matthew Wilcox4e17ec22017-11-29 08:32:39 -0500249 __delete_from_swap_cache(page, entry);
Matthew Wilcoxb93b0162018-04-10 16:36:56 -0700250 xa_unlock_irq(&address_space->i_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700251
Minchan Kim75f6d6d2017-07-06 15:37:21 -0700252 put_swap_page(page, entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700253 page_ref_sub(page, hpage_nr_pages(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700254}
255
Linus Torvalds1da177e2005-04-16 15:20:36 -0700256/*
257 * If we are the only user, then try to free up the swap cache.
258 *
259 * Its ok to check for PageSwapCache without the page lock
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800260 * here because we are going to recheck again inside
261 * try_to_free_swap() _with_ the lock.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700262 * - Marcelo
263 */
264static inline void free_swap_cache(struct page *page)
265{
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800266 if (PageSwapCache(page) && !page_mapped(page) && trylock_page(page)) {
267 try_to_free_swap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700268 unlock_page(page);
269 }
270}
271
272/*
273 * Perform a free_page(), also freeing any swap cache associated with
Hugh Dickinsb8072f02005-10-29 18:16:41 -0700274 * this page if it is the last user of the page.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700275 */
276void free_page_and_swap_cache(struct page *page)
277{
278 free_swap_cache(page);
Aaron Lu6fcb52a2016-10-07 17:00:08 -0700279 if (!is_huge_zero_page(page))
Gerald Schaefer770a5372016-06-08 15:33:50 -0700280 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281}
282
283/*
284 * Passed an array of pages, drop them all from swapcache and then release
285 * them. They are removed from the LRU and freed if this is their last use.
286 */
287void free_pages_and_swap_cache(struct page **pages, int nr)
288{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700289 struct page **pagep = pages;
Michal Hockoaabfb572014-10-09 15:28:52 -0700290 int i;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700291
292 lru_add_drain();
Michal Hockoaabfb572014-10-09 15:28:52 -0700293 for (i = 0; i < nr; i++)
294 free_swap_cache(pagep[i]);
Mel Gormanc6f92f92017-11-15 17:37:55 -0800295 release_pages(pagep, nr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700296}
297
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700298static inline bool swap_use_vma_readahead(void)
299{
300 return READ_ONCE(enable_vma_readahead) && !atomic_read(&nr_rotate_swap);
301}
302
Linus Torvalds1da177e2005-04-16 15:20:36 -0700303/*
304 * Lookup a swap entry in the swap cache. A found page will be returned
305 * unlocked and with its refcount incremented - we rely on the kernel
306 * lock getting page table operations atomic even if we drop the page
307 * lock before returning.
308 */
Huang Yingec560172017-09-06 16:24:36 -0700309struct page *lookup_swap_cache(swp_entry_t entry, struct vm_area_struct *vma,
310 unsigned long addr)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700311{
312 struct page *page;
Huang Yingeb085572019-07-11 20:55:33 -0700313 struct swap_info_struct *si;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700314
Huang Yingeb085572019-07-11 20:55:33 -0700315 si = get_swap_device(entry);
316 if (!si)
317 return NULL;
Huang Yingf6ab1f72016-10-07 17:00:21 -0700318 page = find_get_page(swap_address_space(entry), swp_offset(entry));
Huang Yingeb085572019-07-11 20:55:33 -0700319 put_swap_device(si);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700320
Huang Yingec560172017-09-06 16:24:36 -0700321 INC_CACHE_INFO(find_total);
322 if (page) {
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700323 bool vma_ra = swap_use_vma_readahead();
324 bool readahead;
325
Linus Torvalds1da177e2005-04-16 15:20:36 -0700326 INC_CACHE_INFO(find_success);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700327 /*
328 * At the moment, we don't support PG_readahead for anon THP
329 * so let's bail out rather than confusing the readahead stat.
330 */
Huang Yingec560172017-09-06 16:24:36 -0700331 if (unlikely(PageTransCompound(page)))
332 return page;
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700333
Huang Yingec560172017-09-06 16:24:36 -0700334 readahead = TestClearPageReadahead(page);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700335 if (vma && vma_ra) {
336 unsigned long ra_val;
337 int win, hits;
338
339 ra_val = GET_SWAP_RA_VAL(vma);
340 win = SWAP_RA_WIN(ra_val);
341 hits = SWAP_RA_HITS(ra_val);
Huang Yingec560172017-09-06 16:24:36 -0700342 if (readahead)
343 hits = min_t(int, hits + 1, SWAP_RA_HITS_MAX);
344 atomic_long_set(&vma->swap_readahead_info,
345 SWAP_RA_VAL(addr, win, hits));
346 }
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700347
Huang Yingec560172017-09-06 16:24:36 -0700348 if (readahead) {
Huang Yingcbc65df2017-09-06 16:24:29 -0700349 count_vm_event(SWAP_RA_HIT);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700350 if (!vma || !vma_ra)
Huang Yingec560172017-09-06 16:24:36 -0700351 atomic_inc(&swapin_readahead_hits);
Huang Yingcbc65df2017-09-06 16:24:29 -0700352 }
Shaohua Li579f8292014-02-06 12:04:21 -0800353 }
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700354
Linus Torvalds1da177e2005-04-16 15:20:36 -0700355 return page;
356}
357
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700358struct page *__read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
359 struct vm_area_struct *vma, unsigned long addr,
360 bool *new_page_allocated)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700361{
Huang Yingeb085572019-07-11 20:55:33 -0700362 struct page *found_page = NULL, *new_page = NULL;
363 struct swap_info_struct *si;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700364 int err;
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700365 *new_page_allocated = false;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700366
367 do {
368 /*
369 * First check the swap cache. Since this is normally
370 * called after lookup_swap_cache() failed, re-calling
371 * that would confuse statistics.
372 */
Huang Yingeb085572019-07-11 20:55:33 -0700373 si = get_swap_device(entry);
374 if (!si)
375 break;
376 found_page = find_get_page(swap_address_space(entry),
377 swp_offset(entry));
378 put_swap_device(si);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700379 if (found_page)
380 break;
381
Huang Yingba81f832017-02-22 15:45:46 -0800382 /*
383 * Just skip read ahead for unused swap slot.
384 * During swap_off when swap_slot_cache is disabled,
385 * we have to handle the race between putting
386 * swap entry in swap cache and marking swap slot
387 * as SWAP_HAS_CACHE. That's done in later part of code or
388 * else swap_off will be aborted if we return NULL.
389 */
390 if (!__swp_swapcount(entry) && swap_slot_cache_enabled)
391 break;
Tim Chene8c26ab2017-02-22 15:45:29 -0800392
Linus Torvalds1da177e2005-04-16 15:20:36 -0700393 /*
394 * Get a new page to read into from swap.
395 */
396 if (!new_page) {
Hugh Dickins02098fe2008-02-04 22:28:42 -0800397 new_page = alloc_page_vma(gfp_mask, vma, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700398 if (!new_page)
399 break; /* Out of memory */
400 }
401
402 /*
Hugh Dickinsf0009442008-02-04 22:28:49 -0800403 * Swap entry may have been freed since our caller observed it.
404 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700405 err = swapcache_prepare(entry);
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700406 if (err == -EEXIST) {
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700407 /*
408 * We might race against get_swap_page() and stumble
409 * across a SWAP_HAS_CACHE swap_map entry whose page
Huang Ying9c1cc2e2017-05-03 14:54:33 -0700410 * has not been brought into the swapcache yet.
Rafael Aquinicbab0e42013-06-12 14:04:49 -0700411 */
412 cond_resched();
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700413 continue;
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500414 } else if (err) /* swp entry is obsolete ? */
Hugh Dickinsf0009442008-02-04 22:28:49 -0800415 break;
416
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500417 /* May fail (-ENOMEM) if XArray node allocation failed. */
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800418 __SetPageLocked(new_page);
Hugh Dickinsfa9949d2016-05-19 17:12:41 -0700419 __SetPageSwapBacked(new_page);
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500420 err = add_to_swap_cache(new_page, entry, gfp_mask & GFP_KERNEL);
Nick Piggin529ae9a2008-08-02 12:01:03 +0200421 if (likely(!err)) {
Matthew Wilcox8d93b412017-11-27 15:46:54 -0500422 /* Initiate read into locked page */
Johannes Weiner1899ad12018-10-26 15:06:04 -0700423 SetPageWorkingset(new_page);
Rik van Rielc5fdae42008-10-18 20:26:36 -0700424 lru_cache_add_anon(new_page);
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700425 *new_page_allocated = true;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700426 return new_page;
427 }
Kirill A. Shutemov48c935a2016-01-15 16:51:24 -0800428 __ClearPageLocked(new_page);
Daisuke Nishimura2ca45322009-09-21 17:02:52 -0700429 /*
430 * add_to_swap_cache() doesn't return -EEXIST, so we can safely
431 * clear SWAP_HAS_CACHE flag.
432 */
Minchan Kim75f6d6d2017-07-06 15:37:21 -0700433 put_swap_page(new_page, entry);
Hugh Dickinsf0009442008-02-04 22:28:49 -0800434 } while (err != -ENOMEM);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700435
436 if (new_page)
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300437 put_page(new_page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700438 return found_page;
439}
Hugh Dickins46017e92008-02-04 22:28:41 -0800440
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700441/*
442 * Locate a page of swap in physical memory, reserving swap cache space
443 * and reading the disk if it is not already cached.
444 * A failure return means that either the page allocation failed or that
445 * the swap entry is no longer in use.
446 */
447struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
Shaohua Li23955622017-07-10 15:47:11 -0700448 struct vm_area_struct *vma, unsigned long addr, bool do_poll)
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700449{
450 bool page_was_allocated;
451 struct page *retpage = __read_swap_cache_async(entry, gfp_mask,
452 vma, addr, &page_was_allocated);
453
454 if (page_was_allocated)
Shaohua Li23955622017-07-10 15:47:11 -0700455 swap_readpage(retpage, do_poll);
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700456
457 return retpage;
458}
459
Huang Yingec560172017-09-06 16:24:36 -0700460static unsigned int __swapin_nr_pages(unsigned long prev_offset,
461 unsigned long offset,
462 int hits,
463 int max_pages,
464 int prev_win)
Shaohua Li579f8292014-02-06 12:04:21 -0800465{
Huang Yingec560172017-09-06 16:24:36 -0700466 unsigned int pages, last_ra;
Shaohua Li579f8292014-02-06 12:04:21 -0800467
468 /*
469 * This heuristic has been found to work well on both sequential and
470 * random loads, swapping to hard disk or to SSD: please don't ask
471 * what the "+ 2" means, it just happens to work well, that's all.
472 */
Huang Yingec560172017-09-06 16:24:36 -0700473 pages = hits + 2;
Shaohua Li579f8292014-02-06 12:04:21 -0800474 if (pages == 2) {
475 /*
476 * We can have no readahead hits to judge by: but must not get
477 * stuck here forever, so check for an adjacent offset instead
478 * (and don't even bother to check whether swap type is same).
479 */
480 if (offset != prev_offset + 1 && offset != prev_offset - 1)
481 pages = 1;
Shaohua Li579f8292014-02-06 12:04:21 -0800482 } else {
483 unsigned int roundup = 4;
484 while (roundup < pages)
485 roundup <<= 1;
486 pages = roundup;
487 }
488
489 if (pages > max_pages)
490 pages = max_pages;
491
492 /* Don't shrink readahead too fast */
Huang Yingec560172017-09-06 16:24:36 -0700493 last_ra = prev_win / 2;
Shaohua Li579f8292014-02-06 12:04:21 -0800494 if (pages < last_ra)
495 pages = last_ra;
Huang Yingec560172017-09-06 16:24:36 -0700496
497 return pages;
498}
499
500static unsigned long swapin_nr_pages(unsigned long offset)
501{
502 static unsigned long prev_offset;
503 unsigned int hits, pages, max_pages;
504 static atomic_t last_readahead_pages;
505
506 max_pages = 1 << READ_ONCE(page_cluster);
507 if (max_pages <= 1)
508 return 1;
509
510 hits = atomic_xchg(&swapin_readahead_hits, 0);
511 pages = __swapin_nr_pages(prev_offset, offset, hits, max_pages,
512 atomic_read(&last_readahead_pages));
513 if (!hits)
514 prev_offset = offset;
Shaohua Li579f8292014-02-06 12:04:21 -0800515 atomic_set(&last_readahead_pages, pages);
516
517 return pages;
518}
519
Hugh Dickins46017e92008-02-04 22:28:41 -0800520/**
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700521 * swap_cluster_readahead - swap in pages in hope we need them soon
Hugh Dickins46017e92008-02-04 22:28:41 -0800522 * @entry: swap entry of this memory
Randy Dunlap76824862008-03-19 17:00:40 -0700523 * @gfp_mask: memory allocation flags
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700524 * @vmf: fault information
Hugh Dickins46017e92008-02-04 22:28:41 -0800525 *
526 * Returns the struct page for entry and addr, after queueing swapin.
527 *
528 * Primitive swap readahead code. We simply read an aligned block of
529 * (1 << page_cluster) entries in the swap area. This method is chosen
530 * because it doesn't cost us any seek time. We also make sure to queue
531 * the 'original' request together with the readahead ones...
532 *
533 * This has been extended to use the NUMA policies from the mm triggering
534 * the readahead.
535 *
Yang Shie9f59872019-03-05 15:44:15 -0800536 * Caller must hold read mmap_sem if vmf->vma is not NULL.
Hugh Dickins46017e92008-02-04 22:28:41 -0800537 */
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700538struct page *swap_cluster_readahead(swp_entry_t entry, gfp_t gfp_mask,
539 struct vm_fault *vmf)
Hugh Dickins46017e92008-02-04 22:28:41 -0800540{
Hugh Dickins46017e92008-02-04 22:28:41 -0800541 struct page *page;
Shaohua Li579f8292014-02-06 12:04:21 -0800542 unsigned long entry_offset = swp_offset(entry);
543 unsigned long offset = entry_offset;
Rik van Riel67f96aa2012-03-21 16:33:50 -0700544 unsigned long start_offset, end_offset;
Shaohua Li579f8292014-02-06 12:04:21 -0800545 unsigned long mask;
Huang Yinge9a6eff2017-11-15 17:33:15 -0800546 struct swap_info_struct *si = swp_swap_info(entry);
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700547 struct blk_plug plug;
Huang Yingc4fa6302017-09-06 16:24:33 -0700548 bool do_poll = true, page_allocated;
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700549 struct vm_area_struct *vma = vmf->vma;
550 unsigned long addr = vmf->address;
Hugh Dickins46017e92008-02-04 22:28:41 -0800551
Shaohua Li579f8292014-02-06 12:04:21 -0800552 mask = swapin_nr_pages(offset) - 1;
553 if (!mask)
554 goto skip;
555
Yang Shi8fd2e0b2019-03-05 15:44:11 -0800556 /* Test swap type to make sure the dereference is safe */
557 if (likely(si->flags & (SWP_BLKDEV | SWP_FS))) {
558 struct inode *inode = si->swap_file->f_mapping->host;
559 if (inode_read_congested(inode))
560 goto skip;
561 }
562
Shaohua Li23955622017-07-10 15:47:11 -0700563 do_poll = false;
Rik van Riel67f96aa2012-03-21 16:33:50 -0700564 /* Read a page_cluster sized and aligned cluster around offset. */
565 start_offset = offset & ~mask;
566 end_offset = offset | mask;
567 if (!start_offset) /* First page is swap header. */
568 start_offset++;
Huang Yinge9a6eff2017-11-15 17:33:15 -0800569 if (end_offset >= si->max)
570 end_offset = si->max - 1;
Rik van Riel67f96aa2012-03-21 16:33:50 -0700571
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700572 blk_start_plug(&plug);
Rik van Riel67f96aa2012-03-21 16:33:50 -0700573 for (offset = start_offset; offset <= end_offset ; offset++) {
Hugh Dickins46017e92008-02-04 22:28:41 -0800574 /* Ok, do the async read-ahead now */
Huang Yingc4fa6302017-09-06 16:24:33 -0700575 page = __read_swap_cache_async(
576 swp_entry(swp_type(entry), offset),
577 gfp_mask, vma, addr, &page_allocated);
Hugh Dickins46017e92008-02-04 22:28:41 -0800578 if (!page)
Rik van Riel67f96aa2012-03-21 16:33:50 -0700579 continue;
Huang Yingc4fa6302017-09-06 16:24:33 -0700580 if (page_allocated) {
581 swap_readpage(page, false);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700582 if (offset != entry_offset) {
Huang Yingc4fa6302017-09-06 16:24:33 -0700583 SetPageReadahead(page);
584 count_vm_event(SWAP_RA);
585 }
Huang Yingcbc65df2017-09-06 16:24:29 -0700586 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300587 put_page(page);
Hugh Dickins46017e92008-02-04 22:28:41 -0800588 }
Christian Ehrhardt3fb5c292012-07-31 16:41:44 -0700589 blk_finish_plug(&plug);
590
Hugh Dickins46017e92008-02-04 22:28:41 -0800591 lru_add_drain(); /* Push any new pages onto the LRU now */
Shaohua Li579f8292014-02-06 12:04:21 -0800592skip:
Shaohua Li23955622017-07-10 15:47:11 -0700593 return read_swap_cache_async(entry, gfp_mask, vma, addr, do_poll);
Hugh Dickins46017e92008-02-04 22:28:41 -0800594}
Huang, Ying4b3ef9d2017-02-22 15:45:26 -0800595
596int init_swap_address_space(unsigned int type, unsigned long nr_pages)
597{
598 struct address_space *spaces, *space;
599 unsigned int i, nr;
600
601 nr = DIV_ROUND_UP(nr_pages, SWAP_ADDRESS_SPACE_PAGES);
Kees Cook778e1cd2018-06-12 14:04:48 -0700602 spaces = kvcalloc(nr, sizeof(struct address_space), GFP_KERNEL);
Huang, Ying4b3ef9d2017-02-22 15:45:26 -0800603 if (!spaces)
604 return -ENOMEM;
605 for (i = 0; i < nr; i++) {
606 space = spaces + i;
Matthew Wilcoxa2833482017-12-05 19:04:20 -0500607 xa_init_flags(&space->i_pages, XA_FLAGS_LOCK_IRQ);
Huang, Ying4b3ef9d2017-02-22 15:45:26 -0800608 atomic_set(&space->i_mmap_writable, 0);
609 space->a_ops = &swap_aops;
610 /* swap cache doesn't use writeback related tags */
611 mapping_set_no_writeback_tags(space);
Huang, Ying4b3ef9d2017-02-22 15:45:26 -0800612 }
613 nr_swapper_spaces[type] = nr;
614 rcu_assign_pointer(swapper_spaces[type], spaces);
615
616 return 0;
617}
618
619void exit_swap_address_space(unsigned int type)
620{
621 struct address_space *spaces;
622
623 spaces = swapper_spaces[type];
624 nr_swapper_spaces[type] = 0;
625 rcu_assign_pointer(swapper_spaces[type], NULL);
626 synchronize_rcu();
627 kvfree(spaces);
628}
Huang Yingec560172017-09-06 16:24:36 -0700629
630static inline void swap_ra_clamp_pfn(struct vm_area_struct *vma,
631 unsigned long faddr,
632 unsigned long lpfn,
633 unsigned long rpfn,
634 unsigned long *start,
635 unsigned long *end)
636{
637 *start = max3(lpfn, PFN_DOWN(vma->vm_start),
638 PFN_DOWN(faddr & PMD_MASK));
639 *end = min3(rpfn, PFN_DOWN(vma->vm_end),
640 PFN_DOWN((faddr & PMD_MASK) + PMD_SIZE));
641}
642
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700643static void swap_ra_info(struct vm_fault *vmf,
644 struct vma_swap_readahead *ra_info)
Huang Yingec560172017-09-06 16:24:36 -0700645{
646 struct vm_area_struct *vma = vmf->vma;
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700647 unsigned long ra_val;
Huang Yingec560172017-09-06 16:24:36 -0700648 swp_entry_t entry;
649 unsigned long faddr, pfn, fpfn;
650 unsigned long start, end;
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700651 pte_t *pte, *orig_pte;
Huang Yingec560172017-09-06 16:24:36 -0700652 unsigned int max_win, hits, prev_win, win, left;
653#ifndef CONFIG_64BIT
654 pte_t *tpte;
655#endif
656
Huang Ying61b63972017-10-13 15:58:29 -0700657 max_win = 1 << min_t(unsigned int, READ_ONCE(page_cluster),
658 SWAP_RA_ORDER_CEILING);
659 if (max_win == 1) {
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700660 ra_info->win = 1;
661 return;
Huang Ying61b63972017-10-13 15:58:29 -0700662 }
663
Huang Yingec560172017-09-06 16:24:36 -0700664 faddr = vmf->address;
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700665 orig_pte = pte = pte_offset_map(vmf->pmd, faddr);
666 entry = pte_to_swp_entry(*pte);
667 if ((unlikely(non_swap_entry(entry)))) {
668 pte_unmap(orig_pte);
669 return;
670 }
Huang Yingec560172017-09-06 16:24:36 -0700671
Huang Yingec560172017-09-06 16:24:36 -0700672 fpfn = PFN_DOWN(faddr);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700673 ra_val = GET_SWAP_RA_VAL(vma);
674 pfn = PFN_DOWN(SWAP_RA_ADDR(ra_val));
675 prev_win = SWAP_RA_WIN(ra_val);
676 hits = SWAP_RA_HITS(ra_val);
677 ra_info->win = win = __swapin_nr_pages(pfn, fpfn, hits,
Huang Yingec560172017-09-06 16:24:36 -0700678 max_win, prev_win);
679 atomic_long_set(&vma->swap_readahead_info,
680 SWAP_RA_VAL(faddr, win, 0));
681
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700682 if (win == 1) {
683 pte_unmap(orig_pte);
684 return;
685 }
Huang Yingec560172017-09-06 16:24:36 -0700686
687 /* Copy the PTEs because the page table may be unmapped */
688 if (fpfn == pfn + 1)
689 swap_ra_clamp_pfn(vma, faddr, fpfn, fpfn + win, &start, &end);
690 else if (pfn == fpfn + 1)
691 swap_ra_clamp_pfn(vma, faddr, fpfn - win + 1, fpfn + 1,
692 &start, &end);
693 else {
694 left = (win - 1) / 2;
695 swap_ra_clamp_pfn(vma, faddr, fpfn - left, fpfn + win - left,
696 &start, &end);
697 }
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700698 ra_info->nr_pte = end - start;
699 ra_info->offset = fpfn - start;
700 pte -= ra_info->offset;
Huang Yingec560172017-09-06 16:24:36 -0700701#ifdef CONFIG_64BIT
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700702 ra_info->ptes = pte;
Huang Yingec560172017-09-06 16:24:36 -0700703#else
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700704 tpte = ra_info->ptes;
Huang Yingec560172017-09-06 16:24:36 -0700705 for (pfn = start; pfn != end; pfn++)
706 *tpte++ = *pte++;
707#endif
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700708 pte_unmap(orig_pte);
Huang Yingec560172017-09-06 16:24:36 -0700709}
710
Yang Shie9f59872019-03-05 15:44:15 -0800711/**
712 * swap_vma_readahead - swap in pages in hope we need them soon
713 * @entry: swap entry of this memory
714 * @gfp_mask: memory allocation flags
715 * @vmf: fault information
716 *
717 * Returns the struct page for entry and addr, after queueing swapin.
718 *
719 * Primitive swap readahead code. We simply read in a few pages whoes
720 * virtual addresses are around the fault address in the same vma.
721 *
722 * Caller must hold read mmap_sem if vmf->vma is not NULL.
723 *
724 */
Colin Ian Kingf5c754d2018-04-05 16:25:05 -0700725static struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask,
726 struct vm_fault *vmf)
Huang Yingec560172017-09-06 16:24:36 -0700727{
728 struct blk_plug plug;
729 struct vm_area_struct *vma = vmf->vma;
730 struct page *page;
731 pte_t *pte, pentry;
732 swp_entry_t entry;
733 unsigned int i;
734 bool page_allocated;
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700735 struct vma_swap_readahead ra_info = {0,};
Huang Yingec560172017-09-06 16:24:36 -0700736
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700737 swap_ra_info(vmf, &ra_info);
738 if (ra_info.win == 1)
Huang Yingec560172017-09-06 16:24:36 -0700739 goto skip;
740
741 blk_start_plug(&plug);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700742 for (i = 0, pte = ra_info.ptes; i < ra_info.nr_pte;
Huang Yingec560172017-09-06 16:24:36 -0700743 i++, pte++) {
744 pentry = *pte;
745 if (pte_none(pentry))
746 continue;
747 if (pte_present(pentry))
748 continue;
749 entry = pte_to_swp_entry(pentry);
750 if (unlikely(non_swap_entry(entry)))
751 continue;
752 page = __read_swap_cache_async(entry, gfp_mask, vma,
753 vmf->address, &page_allocated);
754 if (!page)
755 continue;
756 if (page_allocated) {
757 swap_readpage(page, false);
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700758 if (i != ra_info.offset) {
Huang Yingec560172017-09-06 16:24:36 -0700759 SetPageReadahead(page);
760 count_vm_event(SWAP_RA);
761 }
762 }
763 put_page(page);
764 }
765 blk_finish_plug(&plug);
766 lru_add_drain();
767skip:
768 return read_swap_cache_async(fentry, gfp_mask, vma, vmf->address,
Minchan Kimeaf649eb2018-04-05 16:23:39 -0700769 ra_info.win == 1);
Huang Yingec560172017-09-06 16:24:36 -0700770}
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700771
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700772/**
773 * swapin_readahead - swap in pages in hope we need them soon
774 * @entry: swap entry of this memory
775 * @gfp_mask: memory allocation flags
776 * @vmf: fault information
777 *
778 * Returns the struct page for entry and addr, after queueing swapin.
779 *
780 * It's a main entry function for swap readahead. By the configuration,
781 * it will read ahead blocks by cluster-based(ie, physical disk based)
782 * or vma-based(ie, virtual address based on faulty address) readahead.
783 */
784struct page *swapin_readahead(swp_entry_t entry, gfp_t gfp_mask,
785 struct vm_fault *vmf)
786{
787 return swap_use_vma_readahead() ?
788 swap_vma_readahead(entry, gfp_mask, vmf) :
789 swap_cluster_readahead(entry, gfp_mask, vmf);
790}
791
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700792#ifdef CONFIG_SYSFS
793static ssize_t vma_ra_enabled_show(struct kobject *kobj,
794 struct kobj_attribute *attr, char *buf)
795{
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700796 return sprintf(buf, "%s\n", enable_vma_readahead ? "true" : "false");
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700797}
798static ssize_t vma_ra_enabled_store(struct kobject *kobj,
799 struct kobj_attribute *attr,
800 const char *buf, size_t count)
801{
802 if (!strncmp(buf, "true", 4) || !strncmp(buf, "1", 1))
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700803 enable_vma_readahead = true;
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700804 else if (!strncmp(buf, "false", 5) || !strncmp(buf, "0", 1))
Minchan Kime9e9b7e2018-04-05 16:23:42 -0700805 enable_vma_readahead = false;
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700806 else
807 return -EINVAL;
808
809 return count;
810}
811static struct kobj_attribute vma_ra_enabled_attr =
812 __ATTR(vma_ra_enabled, 0644, vma_ra_enabled_show,
813 vma_ra_enabled_store);
814
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700815static struct attribute *swap_attrs[] = {
816 &vma_ra_enabled_attr.attr,
Huang Yingd9bfcfd2017-09-06 16:24:40 -0700817 NULL,
818};
819
820static struct attribute_group swap_attr_group = {
821 .attrs = swap_attrs,
822};
823
824static int __init swap_init_sysfs(void)
825{
826 int err;
827 struct kobject *swap_kobj;
828
829 swap_kobj = kobject_create_and_add("swap", mm_kobj);
830 if (!swap_kobj) {
831 pr_err("failed to create swap kobject\n");
832 return -ENOMEM;
833 }
834 err = sysfs_create_group(swap_kobj, &swap_attr_group);
835 if (err) {
836 pr_err("failed to register swap group\n");
837 goto delete_obj;
838 }
839 return 0;
840
841delete_obj:
842 kobject_put(swap_kobj);
843 return err;
844}
845subsys_initcall(swap_init_sysfs);
846#endif