mm/swap: don't SetPageWorkingset unconditionally during swapin
[linux-2.6-microblaze.git] / mm / swap_state.c
1 // SPDX-License-Identifier: GPL-2.0
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  */
10 #include <linux/mm.h>
11 #include <linux/gfp.h>
12 #include <linux/kernel_stat.h>
13 #include <linux/swap.h>
14 #include <linux/swapops.h>
15 #include <linux/init.h>
16 #include <linux/pagemap.h>
17 #include <linux/backing-dev.h>
18 #include <linux/blkdev.h>
19 #include <linux/pagevec.h>
20 #include <linux/migrate.h>
21 #include <linux/vmalloc.h>
22 #include <linux/swap_slots.h>
23 #include <linux/huge_mm.h>
24 #include <linux/shmem_fs.h>
25 #include "internal.h"
26
27 /*
28  * swapper_space is a fiction, retained to simplify the path through
29  * vmscan's shrink_page_list.
30  */
31 static const struct address_space_operations swap_aops = {
32         .writepage      = swap_writepage,
33         .set_page_dirty = swap_set_page_dirty,
34 #ifdef CONFIG_MIGRATION
35         .migratepage    = migrate_page,
36 #endif
37 };
38
39 struct address_space *swapper_spaces[MAX_SWAPFILES] __read_mostly;
40 static unsigned int nr_swapper_spaces[MAX_SWAPFILES] __read_mostly;
41 static bool enable_vma_readahead __read_mostly = true;
42
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)
60
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))
63
64 static struct {
65         unsigned long add_total;
66         unsigned long del_total;
67         unsigned long find_success;
68         unsigned long find_total;
69 } swap_cache_info;
70
71 unsigned long total_swapcache_pages(void)
72 {
73         unsigned int i, j, nr;
74         unsigned long ret = 0;
75         struct address_space *spaces;
76         struct swap_info_struct *si;
77
78         for (i = 0; i < MAX_SWAPFILES; i++) {
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))
83                         continue;
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];
90                 for (j = 0; j < nr; j++)
91                         ret += spaces[j].nrpages;
92                 put_swap_device(si);
93         }
94         return ret;
95 }
96
97 static atomic_t swapin_readahead_hits = ATOMIC_INIT(4);
98
99 void show_swap_cache_info(void)
100 {
101         printk("%lu pages in swap cache\n", total_swapcache_pages());
102         printk("Swap cache stats: add %lu, delete %lu, find %lu/%lu\n",
103                 swap_cache_info.add_total, swap_cache_info.del_total,
104                 swap_cache_info.find_success, swap_cache_info.find_total);
105         printk("Free swap  = %ldkB\n",
106                 get_nr_swap_pages() << (PAGE_SHIFT - 10));
107         printk("Total swap = %lukB\n", total_swap_pages << (PAGE_SHIFT - 10));
108 }
109
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
124 /*
125  * add_to_swap_cache resembles add_to_page_cache_locked on swapper_space,
126  * but sets SwapCache flag and private instead of mapping and index.
127  */
128 int add_to_swap_cache(struct page *page, swp_entry_t entry,
129                         gfp_t gfp, void **shadowp)
130 {
131         struct address_space *address_space = swap_address_space(entry);
132         pgoff_t idx = swp_offset(entry);
133         XA_STATE_ORDER(xas, &address_space->i_pages, idx, compound_order(page));
134         unsigned long i, nr = thp_nr_pages(page);
135         void *old;
136
137         VM_BUG_ON_PAGE(!PageLocked(page), page);
138         VM_BUG_ON_PAGE(PageSwapCache(page), page);
139         VM_BUG_ON_PAGE(!PageSwapBacked(page), page);
140
141         page_ref_add(page, nr);
142         SetPageSwapCache(page);
143
144         do {
145                 unsigned long nr_shadows = 0;
146
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);
153                         old = xas_load(&xas);
154                         if (xa_is_value(old)) {
155                                 nr_shadows++;
156                                 if (shadowp)
157                                         *shadowp = old;
158                         }
159                         set_page_private(page + i, entry.val + i);
160                         xas_store(&xas, page);
161                         xas_next(&xas);
162                 }
163                 address_space->nrexceptional -= nr_shadows;
164                 address_space->nrpages += nr;
165                 __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, nr);
166                 ADD_CACHE_INFO(add_total, nr);
167 unlock:
168                 xas_unlock_irq(&xas);
169         } while (xas_nomem(&xas, gfp));
170
171         if (!xas_error(&xas))
172                 return 0;
173
174         ClearPageSwapCache(page);
175         page_ref_sub(page, nr);
176         return xas_error(&xas);
177 }
178
179 /*
180  * This must be called only on pages that have
181  * been verified to be in the swap cache.
182  */
183 void __delete_from_swap_cache(struct page *page,
184                         swp_entry_t entry, void *shadow)
185 {
186         struct address_space *address_space = swap_address_space(entry);
187         int i, nr = thp_nr_pages(page);
188         pgoff_t idx = swp_offset(entry);
189         XA_STATE(xas, &address_space->i_pages, idx);
190
191         VM_BUG_ON_PAGE(!PageLocked(page), page);
192         VM_BUG_ON_PAGE(!PageSwapCache(page), page);
193         VM_BUG_ON_PAGE(PageWriteback(page), page);
194
195         for (i = 0; i < nr; i++) {
196                 void *entry = xas_store(&xas, shadow);
197                 VM_BUG_ON_PAGE(entry != page, entry);
198                 set_page_private(page + i, 0);
199                 xas_next(&xas);
200         }
201         ClearPageSwapCache(page);
202         if (shadow)
203                 address_space->nrexceptional += nr;
204         address_space->nrpages -= nr;
205         __mod_node_page_state(page_pgdat(page), NR_FILE_PAGES, -nr);
206         ADD_CACHE_INFO(del_total, nr);
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  */
216 int add_to_swap(struct page *page)
217 {
218         swp_entry_t entry;
219         int err;
220
221         VM_BUG_ON_PAGE(!PageLocked(page), page);
222         VM_BUG_ON_PAGE(!PageUptodate(page), page);
223
224         entry = get_swap_page(page);
225         if (!entry.val)
226                 return 0;
227
228         /*
229          * XArray node allocations from PF_MEMALLOC contexts could
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         /*
237          * Add it to the swap cache.
238          */
239         err = add_to_swap_cache(page, entry,
240                         __GFP_HIGH|__GFP_NOMEMALLOC|__GFP_NOWARN, NULL);
241         if (err)
242                 /*
243                  * add_to_swap_cache() doesn't return -EEXIST, so we can safely
244                  * clear SWAP_HAS_CACHE flag.
245                  */
246                 goto fail;
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's 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);
258
259         return 1;
260
261 fail:
262         put_swap_page(page, entry);
263         return 0;
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 {
274         swp_entry_t entry = { .val = page_private(page) };
275         struct address_space *address_space = swap_address_space(entry);
276
277         xa_lock_irq(&address_space->i_pages);
278         __delete_from_swap_cache(page, entry, NULL);
279         xa_unlock_irq(&address_space->i_pages);
280
281         put_swap_page(page, entry);
282         page_ref_sub(page, thp_nr_pages(page));
283 }
284
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
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
320  * here because we are going to recheck again inside
321  * try_to_free_swap() _with_ the lock.
322  *                                      - Marcelo
323  */
324 static inline void free_swap_cache(struct page *page)
325 {
326         if (PageSwapCache(page) && !page_mapped(page) && trylock_page(page)) {
327                 try_to_free_swap(page);
328                 unlock_page(page);
329         }
330 }
331
332 /* 
333  * Perform a free_page(), also freeing any swap cache associated with
334  * this page if it is the last user of the page.
335  */
336 void free_page_and_swap_cache(struct page *page)
337 {
338         free_swap_cache(page);
339         if (!is_huge_zero_page(page))
340                 put_page(page);
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 {
349         struct page **pagep = pages;
350         int i;
351
352         lru_add_drain();
353         for (i = 0; i < nr; i++)
354                 free_swap_cache(pagep[i]);
355         release_pages(pagep, nr);
356 }
357
358 static inline bool swap_use_vma_readahead(void)
359 {
360         return READ_ONCE(enable_vma_readahead) && !atomic_read(&nr_rotate_swap);
361 }
362
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  */
369 struct page *lookup_swap_cache(swp_entry_t entry, struct vm_area_struct *vma,
370                                unsigned long addr)
371 {
372         struct page *page;
373         struct swap_info_struct *si;
374
375         si = get_swap_device(entry);
376         if (!si)
377                 return NULL;
378         page = find_get_page(swap_address_space(entry), swp_offset(entry));
379         put_swap_device(si);
380
381         INC_CACHE_INFO(find_total);
382         if (page) {
383                 bool vma_ra = swap_use_vma_readahead();
384                 bool readahead;
385
386                 INC_CACHE_INFO(find_success);
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                  */
391                 if (unlikely(PageTransCompound(page)))
392                         return page;
393
394                 readahead = TestClearPageReadahead(page);
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);
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                 }
407
408                 if (readahead) {
409                         count_vm_event(SWAP_RA_HIT);
410                         if (!vma || !vma_ra)
411                                 atomic_inc(&swapin_readahead_hits);
412                 }
413         }
414
415         return page;
416 }
417
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 (!page)
435                 return page;
436         if (!xa_is_value(page))
437                 return find_subpage(page, index);
438         if (!shmem_mapping(mapping))
439                 return NULL;
440
441         swp = radix_to_swp_entry(page);
442         /* Prevent swapoff from happening to us */
443         si = get_swap_device(swp);
444         if (!si)
445                 return NULL;
446         page = find_get_page(swap_address_space(swp), swp_offset(swp));
447         put_swap_device(si);
448         return page;
449 }
450
451 struct page *__read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
452                         struct vm_area_struct *vma, unsigned long addr,
453                         bool *new_page_allocated)
454 {
455         struct swap_info_struct *si;
456         struct page *page;
457         void *shadow = NULL;
458
459         *new_page_allocated = false;
460
461         for (;;) {
462                 int err;
463                 /*
464                  * First check the swap cache.  Since this is normally
465                  * called after lookup_swap_cache() failed, re-calling
466                  * that would confuse statistics.
467                  */
468                 si = get_swap_device(entry);
469                 if (!si)
470                         return NULL;
471                 page = find_get_page(swap_address_space(entry),
472                                      swp_offset(entry));
473                 put_swap_device(si);
474                 if (page)
475                         return page;
476
477                 /*
478                  * Just skip read ahead for unused swap slot.
479                  * During swap_off when swap_slot_cache is disabled,
480                  * we have to handle the race between putting
481                  * swap entry in swap cache and marking swap slot
482                  * as SWAP_HAS_CACHE.  That's done in later part of code or
483                  * else swap_off will be aborted if we return NULL.
484                  */
485                 if (!__swp_swapcount(entry) && swap_slot_cache_enabled)
486                         return NULL;
487
488                 /*
489                  * Get a new page to read into from swap.  Allocate it now,
490                  * before marking swap_map SWAP_HAS_CACHE, when -EEXIST will
491                  * cause any racers to loop around until we add it to cache.
492                  */
493                 page = alloc_page_vma(gfp_mask, vma, addr);
494                 if (!page)
495                         return NULL;
496
497                 /*
498                  * Swap entry may have been freed since our caller observed it.
499                  */
500                 err = swapcache_prepare(entry);
501                 if (!err)
502                         break;
503
504                 put_page(page);
505                 if (err != -EEXIST)
506                         return NULL;
507
508                 /*
509                  * We might race against __delete_from_swap_cache(), and
510                  * stumble across a swap_map entry whose SWAP_HAS_CACHE
511                  * has not yet been cleared.  Or race against another
512                  * __read_swap_cache_async(), which has set SWAP_HAS_CACHE
513                  * in swap_map, but not yet added its page to swap cache.
514                  */
515                 cond_resched();
516         }
517
518         /*
519          * The swap entry is ours to swap in. Prepare the new page.
520          */
521
522         __SetPageLocked(page);
523         __SetPageSwapBacked(page);
524
525         /* May fail (-ENOMEM) if XArray node allocation failed. */
526         if (add_to_swap_cache(page, entry, gfp_mask & GFP_RECLAIM_MASK, &shadow)) {
527                 put_swap_page(page, entry);
528                 goto fail_unlock;
529         }
530
531         if (mem_cgroup_charge(page, NULL, gfp_mask)) {
532                 delete_from_swap_cache(page);
533                 goto fail_unlock;
534         }
535
536         if (shadow)
537                 workingset_refault(page, shadow);
538
539         /* Caller will initiate read into locked page */
540         lru_cache_add(page);
541         *new_page_allocated = true;
542         return page;
543
544 fail_unlock:
545         unlock_page(page);
546         put_page(page);
547         return NULL;
548 }
549
550 /*
551  * Locate a page of swap in physical memory, reserving swap cache space
552  * and reading the disk if it is not already cached.
553  * A failure return means that either the page allocation failed or that
554  * the swap entry is no longer in use.
555  */
556 struct page *read_swap_cache_async(swp_entry_t entry, gfp_t gfp_mask,
557                 struct vm_area_struct *vma, unsigned long addr, bool do_poll)
558 {
559         bool page_was_allocated;
560         struct page *retpage = __read_swap_cache_async(entry, gfp_mask,
561                         vma, addr, &page_was_allocated);
562
563         if (page_was_allocated)
564                 swap_readpage(retpage, do_poll);
565
566         return retpage;
567 }
568
569 static unsigned int __swapin_nr_pages(unsigned long prev_offset,
570                                       unsigned long offset,
571                                       int hits,
572                                       int max_pages,
573                                       int prev_win)
574 {
575         unsigned int pages, last_ra;
576
577         /*
578          * This heuristic has been found to work well on both sequential and
579          * random loads, swapping to hard disk or to SSD: please don't ask
580          * what the "+ 2" means, it just happens to work well, that's all.
581          */
582         pages = hits + 2;
583         if (pages == 2) {
584                 /*
585                  * We can have no readahead hits to judge by: but must not get
586                  * stuck here forever, so check for an adjacent offset instead
587                  * (and don't even bother to check whether swap type is same).
588                  */
589                 if (offset != prev_offset + 1 && offset != prev_offset - 1)
590                         pages = 1;
591         } else {
592                 unsigned int roundup = 4;
593                 while (roundup < pages)
594                         roundup <<= 1;
595                 pages = roundup;
596         }
597
598         if (pages > max_pages)
599                 pages = max_pages;
600
601         /* Don't shrink readahead too fast */
602         last_ra = prev_win / 2;
603         if (pages < last_ra)
604                 pages = last_ra;
605
606         return pages;
607 }
608
609 static unsigned long swapin_nr_pages(unsigned long offset)
610 {
611         static unsigned long prev_offset;
612         unsigned int hits, pages, max_pages;
613         static atomic_t last_readahead_pages;
614
615         max_pages = 1 << READ_ONCE(page_cluster);
616         if (max_pages <= 1)
617                 return 1;
618
619         hits = atomic_xchg(&swapin_readahead_hits, 0);
620         pages = __swapin_nr_pages(READ_ONCE(prev_offset), offset, hits,
621                                   max_pages,
622                                   atomic_read(&last_readahead_pages));
623         if (!hits)
624                 WRITE_ONCE(prev_offset, offset);
625         atomic_set(&last_readahead_pages, pages);
626
627         return pages;
628 }
629
630 /**
631  * swap_cluster_readahead - swap in pages in hope we need them soon
632  * @entry: swap entry of this memory
633  * @gfp_mask: memory allocation flags
634  * @vmf: fault information
635  *
636  * Returns the struct page for entry and addr, after queueing swapin.
637  *
638  * Primitive swap readahead code. We simply read an aligned block of
639  * (1 << page_cluster) entries in the swap area. This method is chosen
640  * because it doesn't cost us any seek time.  We also make sure to queue
641  * the 'original' request together with the readahead ones...
642  *
643  * This has been extended to use the NUMA policies from the mm triggering
644  * the readahead.
645  *
646  * Caller must hold read mmap_lock if vmf->vma is not NULL.
647  */
648 struct page *swap_cluster_readahead(swp_entry_t entry, gfp_t gfp_mask,
649                                 struct vm_fault *vmf)
650 {
651         struct page *page;
652         unsigned long entry_offset = swp_offset(entry);
653         unsigned long offset = entry_offset;
654         unsigned long start_offset, end_offset;
655         unsigned long mask;
656         struct swap_info_struct *si = swp_swap_info(entry);
657         struct blk_plug plug;
658         bool do_poll = true, page_allocated;
659         struct vm_area_struct *vma = vmf->vma;
660         unsigned long addr = vmf->address;
661
662         mask = swapin_nr_pages(offset) - 1;
663         if (!mask)
664                 goto skip;
665
666         /* Test swap type to make sure the dereference is safe */
667         if (likely(si->flags & (SWP_BLKDEV | SWP_FS_OPS))) {
668                 struct inode *inode = si->swap_file->f_mapping->host;
669                 if (inode_read_congested(inode))
670                         goto skip;
671         }
672
673         do_poll = false;
674         /* Read a page_cluster sized and aligned cluster around offset. */
675         start_offset = offset & ~mask;
676         end_offset = offset | mask;
677         if (!start_offset)      /* First page is swap header. */
678                 start_offset++;
679         if (end_offset >= si->max)
680                 end_offset = si->max - 1;
681
682         blk_start_plug(&plug);
683         for (offset = start_offset; offset <= end_offset ; offset++) {
684                 /* Ok, do the async read-ahead now */
685                 page = __read_swap_cache_async(
686                         swp_entry(swp_type(entry), offset),
687                         gfp_mask, vma, addr, &page_allocated);
688                 if (!page)
689                         continue;
690                 if (page_allocated) {
691                         swap_readpage(page, false);
692                         if (offset != entry_offset) {
693                                 SetPageReadahead(page);
694                                 count_vm_event(SWAP_RA);
695                         }
696                 }
697                 put_page(page);
698         }
699         blk_finish_plug(&plug);
700
701         lru_add_drain();        /* Push any new pages onto the LRU now */
702 skip:
703         return read_swap_cache_async(entry, gfp_mask, vma, addr, do_poll);
704 }
705
706 int init_swap_address_space(unsigned int type, unsigned long nr_pages)
707 {
708         struct address_space *spaces, *space;
709         unsigned int i, nr;
710
711         nr = DIV_ROUND_UP(nr_pages, SWAP_ADDRESS_SPACE_PAGES);
712         spaces = kvcalloc(nr, sizeof(struct address_space), GFP_KERNEL);
713         if (!spaces)
714                 return -ENOMEM;
715         for (i = 0; i < nr; i++) {
716                 space = spaces + i;
717                 xa_init_flags(&space->i_pages, XA_FLAGS_LOCK_IRQ);
718                 atomic_set(&space->i_mmap_writable, 0);
719                 space->a_ops = &swap_aops;
720                 /* swap cache doesn't use writeback related tags */
721                 mapping_set_no_writeback_tags(space);
722         }
723         nr_swapper_spaces[type] = nr;
724         swapper_spaces[type] = spaces;
725
726         return 0;
727 }
728
729 void exit_swap_address_space(unsigned int type)
730 {
731         kvfree(swapper_spaces[type]);
732         nr_swapper_spaces[type] = 0;
733         swapper_spaces[type] = NULL;
734 }
735
736 static inline void swap_ra_clamp_pfn(struct vm_area_struct *vma,
737                                      unsigned long faddr,
738                                      unsigned long lpfn,
739                                      unsigned long rpfn,
740                                      unsigned long *start,
741                                      unsigned long *end)
742 {
743         *start = max3(lpfn, PFN_DOWN(vma->vm_start),
744                       PFN_DOWN(faddr & PMD_MASK));
745         *end = min3(rpfn, PFN_DOWN(vma->vm_end),
746                     PFN_DOWN((faddr & PMD_MASK) + PMD_SIZE));
747 }
748
749 static void swap_ra_info(struct vm_fault *vmf,
750                         struct vma_swap_readahead *ra_info)
751 {
752         struct vm_area_struct *vma = vmf->vma;
753         unsigned long ra_val;
754         swp_entry_t entry;
755         unsigned long faddr, pfn, fpfn;
756         unsigned long start, end;
757         pte_t *pte, *orig_pte;
758         unsigned int max_win, hits, prev_win, win, left;
759 #ifndef CONFIG_64BIT
760         pte_t *tpte;
761 #endif
762
763         max_win = 1 << min_t(unsigned int, READ_ONCE(page_cluster),
764                              SWAP_RA_ORDER_CEILING);
765         if (max_win == 1) {
766                 ra_info->win = 1;
767                 return;
768         }
769
770         faddr = vmf->address;
771         orig_pte = pte = pte_offset_map(vmf->pmd, faddr);
772         entry = pte_to_swp_entry(*pte);
773         if ((unlikely(non_swap_entry(entry)))) {
774                 pte_unmap(orig_pte);
775                 return;
776         }
777
778         fpfn = PFN_DOWN(faddr);
779         ra_val = GET_SWAP_RA_VAL(vma);
780         pfn = PFN_DOWN(SWAP_RA_ADDR(ra_val));
781         prev_win = SWAP_RA_WIN(ra_val);
782         hits = SWAP_RA_HITS(ra_val);
783         ra_info->win = win = __swapin_nr_pages(pfn, fpfn, hits,
784                                                max_win, prev_win);
785         atomic_long_set(&vma->swap_readahead_info,
786                         SWAP_RA_VAL(faddr, win, 0));
787
788         if (win == 1) {
789                 pte_unmap(orig_pte);
790                 return;
791         }
792
793         /* Copy the PTEs because the page table may be unmapped */
794         if (fpfn == pfn + 1)
795                 swap_ra_clamp_pfn(vma, faddr, fpfn, fpfn + win, &start, &end);
796         else if (pfn == fpfn + 1)
797                 swap_ra_clamp_pfn(vma, faddr, fpfn - win + 1, fpfn + 1,
798                                   &start, &end);
799         else {
800                 left = (win - 1) / 2;
801                 swap_ra_clamp_pfn(vma, faddr, fpfn - left, fpfn + win - left,
802                                   &start, &end);
803         }
804         ra_info->nr_pte = end - start;
805         ra_info->offset = fpfn - start;
806         pte -= ra_info->offset;
807 #ifdef CONFIG_64BIT
808         ra_info->ptes = pte;
809 #else
810         tpte = ra_info->ptes;
811         for (pfn = start; pfn != end; pfn++)
812                 *tpte++ = *pte++;
813 #endif
814         pte_unmap(orig_pte);
815 }
816
817 /**
818  * swap_vma_readahead - swap in pages in hope we need them soon
819  * @fentry: swap entry of this memory
820  * @gfp_mask: memory allocation flags
821  * @vmf: fault information
822  *
823  * Returns the struct page for entry and addr, after queueing swapin.
824  *
825  * Primitive swap readahead code. We simply read in a few pages whoes
826  * virtual addresses are around the fault address in the same vma.
827  *
828  * Caller must hold read mmap_lock if vmf->vma is not NULL.
829  *
830  */
831 static struct page *swap_vma_readahead(swp_entry_t fentry, gfp_t gfp_mask,
832                                        struct vm_fault *vmf)
833 {
834         struct blk_plug plug;
835         struct vm_area_struct *vma = vmf->vma;
836         struct page *page;
837         pte_t *pte, pentry;
838         swp_entry_t entry;
839         unsigned int i;
840         bool page_allocated;
841         struct vma_swap_readahead ra_info = {
842                 .win = 1,
843         };
844
845         swap_ra_info(vmf, &ra_info);
846         if (ra_info.win == 1)
847                 goto skip;
848
849         blk_start_plug(&plug);
850         for (i = 0, pte = ra_info.ptes; i < ra_info.nr_pte;
851              i++, pte++) {
852                 pentry = *pte;
853                 if (pte_none(pentry))
854                         continue;
855                 if (pte_present(pentry))
856                         continue;
857                 entry = pte_to_swp_entry(pentry);
858                 if (unlikely(non_swap_entry(entry)))
859                         continue;
860                 page = __read_swap_cache_async(entry, gfp_mask, vma,
861                                                vmf->address, &page_allocated);
862                 if (!page)
863                         continue;
864                 if (page_allocated) {
865                         swap_readpage(page, false);
866                         if (i != ra_info.offset) {
867                                 SetPageReadahead(page);
868                                 count_vm_event(SWAP_RA);
869                         }
870                 }
871                 put_page(page);
872         }
873         blk_finish_plug(&plug);
874         lru_add_drain();
875 skip:
876         return read_swap_cache_async(fentry, gfp_mask, vma, vmf->address,
877                                      ra_info.win == 1);
878 }
879
880 /**
881  * swapin_readahead - swap in pages in hope we need them soon
882  * @entry: swap entry of this memory
883  * @gfp_mask: memory allocation flags
884  * @vmf: fault information
885  *
886  * Returns the struct page for entry and addr, after queueing swapin.
887  *
888  * It's a main entry function for swap readahead. By the configuration,
889  * it will read ahead blocks by cluster-based(ie, physical disk based)
890  * or vma-based(ie, virtual address based on faulty address) readahead.
891  */
892 struct page *swapin_readahead(swp_entry_t entry, gfp_t gfp_mask,
893                                 struct vm_fault *vmf)
894 {
895         return swap_use_vma_readahead() ?
896                         swap_vma_readahead(entry, gfp_mask, vmf) :
897                         swap_cluster_readahead(entry, gfp_mask, vmf);
898 }
899
900 #ifdef CONFIG_SYSFS
901 static ssize_t vma_ra_enabled_show(struct kobject *kobj,
902                                      struct kobj_attribute *attr, char *buf)
903 {
904         return sysfs_emit(buf, "%s\n",
905                           enable_vma_readahead ? "true" : "false");
906 }
907 static ssize_t vma_ra_enabled_store(struct kobject *kobj,
908                                       struct kobj_attribute *attr,
909                                       const char *buf, size_t count)
910 {
911         if (!strncmp(buf, "true", 4) || !strncmp(buf, "1", 1))
912                 enable_vma_readahead = true;
913         else if (!strncmp(buf, "false", 5) || !strncmp(buf, "0", 1))
914                 enable_vma_readahead = false;
915         else
916                 return -EINVAL;
917
918         return count;
919 }
920 static struct kobj_attribute vma_ra_enabled_attr =
921         __ATTR(vma_ra_enabled, 0644, vma_ra_enabled_show,
922                vma_ra_enabled_store);
923
924 static struct attribute *swap_attrs[] = {
925         &vma_ra_enabled_attr.attr,
926         NULL,
927 };
928
929 static const struct attribute_group swap_attr_group = {
930         .attrs = swap_attrs,
931 };
932
933 static int __init swap_init_sysfs(void)
934 {
935         int err;
936         struct kobject *swap_kobj;
937
938         swap_kobj = kobject_create_and_add("swap", mm_kobj);
939         if (!swap_kobj) {
940                 pr_err("failed to create swap kobject\n");
941                 return -ENOMEM;
942         }
943         err = sysfs_create_group(swap_kobj, &swap_attr_group);
944         if (err) {
945                 pr_err("failed to register swap group\n");
946                 goto delete_obj;
947         }
948         return 0;
949
950 delete_obj:
951         kobject_put(swap_kobj);
952         return err;
953 }
954 subsys_initcall(swap_init_sysfs);
955 #endif