blob: 3c1172b53436f51713df81ad8632034ddc3e6552 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001/*
2 * linux/mm/swapfile.c
3 *
4 * Copyright (C) 1991, 1992, 1993, 1994 Linus Torvalds
5 * Swap reorganised 29.12.95, Stephen Tweedie
6 */
7
Linus Torvalds1da177e2005-04-16 15:20:36 -07008#include <linux/mm.h>
Ingo Molnar6e84f312017-02-08 18:51:29 +01009#include <linux/sched/mm.h>
Ingo Molnar29930022017-02-08 18:51:36 +010010#include <linux/sched/task.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070011#include <linux/hugetlb.h>
12#include <linux/mman.h>
13#include <linux/slab.h>
14#include <linux/kernel_stat.h>
15#include <linux/swap.h>
16#include <linux/vmalloc.h>
17#include <linux/pagemap.h>
18#include <linux/namei.h>
Hugh Dickins072441e2011-06-27 16:18:02 -070019#include <linux/shmem_fs.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/blkdev.h>
Hugh Dickins20137a42009-01-06 14:39:54 -080021#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070022#include <linux/writeback.h>
23#include <linux/proc_fs.h>
24#include <linux/seq_file.h>
25#include <linux/init.h>
Hugh Dickins5ad64682009-12-14 17:59:24 -080026#include <linux/ksm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070027#include <linux/rmap.h>
28#include <linux/security.h>
29#include <linux/backing-dev.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -080030#include <linux/mutex.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080031#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032#include <linux/syscalls.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080033#include <linux/memcontrol.h>
Kay Sievers66d7dd52010-10-26 14:22:06 -070034#include <linux/poll.h>
David Rientjes72788c32011-05-24 17:11:40 -070035#include <linux/oom.h>
Dan Magenheimer38b5faf2012-04-09 17:08:06 -060036#include <linux/frontswap.h>
37#include <linux/swapfile.h>
Mel Gormanf981c592012-07-31 16:44:47 -070038#include <linux/export.h>
Tim Chen67afa382017-02-22 15:45:39 -080039#include <linux/swap_slots.h>
Huang Ying155b5f82017-07-06 15:40:31 -070040#include <linux/sort.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070041
42#include <asm/pgtable.h>
43#include <asm/tlbflush.h>
44#include <linux/swapops.h>
Johannes Weiner5d1ea482014-12-10 15:44:55 -080045#include <linux/swap_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070046
Hugh Dickins570a335b2009-12-14 17:58:46 -080047static bool swap_count_continued(struct swap_info_struct *, pgoff_t,
48 unsigned char);
49static void free_swap_count_continuations(struct swap_info_struct *);
Lee Schermerhornd4906e12009-12-14 17:58:49 -080050static sector_t map_swap_entry(swp_entry_t, struct block_device**);
Hugh Dickins570a335b2009-12-14 17:58:46 -080051
Dan Magenheimer38b5faf2012-04-09 17:08:06 -060052DEFINE_SPINLOCK(swap_lock);
Adrian Bunk7c363b82008-07-25 19:46:24 -070053static unsigned int nr_swapfiles;
Shaohua Liec8acf22013-02-22 16:34:38 -080054atomic_long_t nr_swap_pages;
Chris Wilsonfb0fec52015-12-04 15:58:53 +000055/*
56 * Some modules use swappable objects and may try to swap them out under
57 * memory pressure (via the shrinker). Before doing so, they may wish to
58 * check to see if any swap space is available.
59 */
60EXPORT_SYMBOL_GPL(nr_swap_pages);
Shaohua Liec8acf22013-02-22 16:34:38 -080061/* protected with swap_lock. reading in vm_swap_full() doesn't need lock */
Linus Torvalds1da177e2005-04-16 15:20:36 -070062long total_swap_pages;
Aaron Lua2468cc2017-09-06 16:24:57 -070063static int least_priority = -1;
Linus Torvalds1da177e2005-04-16 15:20:36 -070064
Linus Torvalds1da177e2005-04-16 15:20:36 -070065static const char Bad_file[] = "Bad swap file entry ";
66static const char Unused_file[] = "Unused swap file entry ";
67static const char Bad_offset[] = "Bad swap offset entry ";
68static const char Unused_offset[] = "Unused swap offset entry ";
69
Dan Streetmanadfab832014-06-04 16:09:53 -070070/*
71 * all active swap_info_structs
72 * protected with swap_lock, and ordered by priority.
73 */
Dan Streetman18ab4d42014-06-04 16:09:59 -070074PLIST_HEAD(swap_active_head);
75
76/*
77 * all available (active, not full) swap_info_structs
78 * protected with swap_avail_lock, ordered by priority.
79 * This is used by get_swap_page() instead of swap_active_head
80 * because swap_active_head includes all swap_info_structs,
81 * but get_swap_page() doesn't need to look at full ones.
82 * This uses its own lock instead of swap_lock because when a
83 * swap_info_struct changes between not-full/full, it needs to
84 * add/remove itself to/from this list, but the swap_info_struct->lock
85 * is held and the locking order requires swap_lock to be taken
86 * before any swap_info_struct->lock.
87 */
Colin Ian Kingbfc6b1c2018-04-10 16:29:55 -070088static struct plist_head *swap_avail_heads;
Dan Streetman18ab4d42014-06-04 16:09:59 -070089static DEFINE_SPINLOCK(swap_avail_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -070090
Dan Magenheimer38b5faf2012-04-09 17:08:06 -060091struct swap_info_struct *swap_info[MAX_SWAPFILES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070092
Ingo Molnarfc0abb12006-01-18 17:42:33 -080093static DEFINE_MUTEX(swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070094
Kay Sievers66d7dd52010-10-26 14:22:06 -070095static DECLARE_WAIT_QUEUE_HEAD(proc_poll_wait);
96/* Activity counter to indicate that a swapon or swapoff has occurred */
97static atomic_t proc_poll_event = ATOMIC_INIT(0);
98
Huang Ying81a02982017-09-06 16:24:43 -070099atomic_t nr_rotate_swap = ATOMIC_INIT(0);
100
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800101static inline unsigned char swap_count(unsigned char ent)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700102{
Daniel Jordan955c97f2018-06-14 15:26:21 -0700103 return ent & ~SWAP_HAS_CACHE; /* may include COUNT_CONTINUED flag */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700104}
105
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800106/* returns 1 if swap entry is freed */
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700107static int
108__try_to_reclaim_swap(struct swap_info_struct *si, unsigned long offset)
109{
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800110 swp_entry_t entry = swp_entry(si->type, offset);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700111 struct page *page;
112 int ret = 0;
113
Huang Yingf6ab1f72016-10-07 17:00:21 -0700114 page = find_get_page(swap_address_space(entry), swp_offset(entry));
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700115 if (!page)
116 return 0;
117 /*
118 * This function is called from scan_swap_map() and it's called
119 * by vmscan.c at reclaiming pages. So, we hold a lock on a page, here.
120 * We have to use trylock for avoiding deadlock. This is a special
121 * case and you should use try_to_free_swap() with explicit lock_page()
122 * in usual operations.
123 */
124 if (trylock_page(page)) {
125 ret = try_to_free_swap(page);
126 unlock_page(page);
127 }
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +0300128 put_page(page);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700129 return ret;
130}
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700131
Linus Torvalds1da177e2005-04-16 15:20:36 -0700132/*
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800133 * swapon tell device that all the old swap contents can be discarded,
134 * to allow the swap device to optimize its wear-levelling.
135 */
136static int discard_swap(struct swap_info_struct *si)
137{
138 struct swap_extent *se;
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800139 sector_t start_block;
140 sector_t nr_blocks;
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800141 int err = 0;
142
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800143 /* Do not discard the swap header page! */
144 se = &si->first_swap_extent;
145 start_block = (se->start_block + 1) << (PAGE_SHIFT - 9);
146 nr_blocks = ((sector_t)se->nr_pages - 1) << (PAGE_SHIFT - 9);
147 if (nr_blocks) {
148 err = blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200149 nr_blocks, GFP_KERNEL, 0);
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800150 if (err)
151 return err;
152 cond_resched();
153 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800154
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800155 list_for_each_entry(se, &si->first_swap_extent.list, list) {
156 start_block = se->start_block << (PAGE_SHIFT - 9);
157 nr_blocks = (sector_t)se->nr_pages << (PAGE_SHIFT - 9);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800158
159 err = blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200160 nr_blocks, GFP_KERNEL, 0);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800161 if (err)
162 break;
163
164 cond_resched();
165 }
166 return err; /* That will often be -EOPNOTSUPP */
167}
168
Hugh Dickins7992fde2009-01-06 14:39:53 -0800169/*
170 * swap allocation tell device that a cluster of swap can now be discarded,
171 * to allow the swap device to optimize its wear-levelling.
172 */
173static void discard_swap_cluster(struct swap_info_struct *si,
174 pgoff_t start_page, pgoff_t nr_pages)
175{
176 struct swap_extent *se = si->curr_swap_extent;
177 int found_extent = 0;
178
179 while (nr_pages) {
Hugh Dickins7992fde2009-01-06 14:39:53 -0800180 if (se->start_page <= start_page &&
181 start_page < se->start_page + se->nr_pages) {
182 pgoff_t offset = start_page - se->start_page;
183 sector_t start_block = se->start_block + offset;
Hugh Dickins858a29902009-01-06 14:39:56 -0800184 sector_t nr_blocks = se->nr_pages - offset;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800185
186 if (nr_blocks > nr_pages)
187 nr_blocks = nr_pages;
188 start_page += nr_blocks;
189 nr_pages -= nr_blocks;
190
191 if (!found_extent++)
192 si->curr_swap_extent = se;
193
194 start_block <<= PAGE_SHIFT - 9;
195 nr_blocks <<= PAGE_SHIFT - 9;
196 if (blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200197 nr_blocks, GFP_NOIO, 0))
Hugh Dickins7992fde2009-01-06 14:39:53 -0800198 break;
199 }
200
Geliang Tanga8ae4992016-01-14 15:20:45 -0800201 se = list_next_entry(se, list);
Hugh Dickins7992fde2009-01-06 14:39:53 -0800202 }
203}
204
Huang Ying38d8b4e2017-07-06 15:37:18 -0700205#ifdef CONFIG_THP_SWAP
206#define SWAPFILE_CLUSTER HPAGE_PMD_NR
207#else
Hugh Dickins048c27f2005-09-03 15:54:40 -0700208#define SWAPFILE_CLUSTER 256
Huang Ying38d8b4e2017-07-06 15:37:18 -0700209#endif
Hugh Dickins048c27f2005-09-03 15:54:40 -0700210#define LATENCY_LIMIT 256
211
Shaohua Li2a8f9442013-09-11 14:20:28 -0700212static inline void cluster_set_flag(struct swap_cluster_info *info,
213 unsigned int flag)
214{
215 info->flags = flag;
216}
217
218static inline unsigned int cluster_count(struct swap_cluster_info *info)
219{
220 return info->data;
221}
222
223static inline void cluster_set_count(struct swap_cluster_info *info,
224 unsigned int c)
225{
226 info->data = c;
227}
228
229static inline void cluster_set_count_flag(struct swap_cluster_info *info,
230 unsigned int c, unsigned int f)
231{
232 info->flags = f;
233 info->data = c;
234}
235
236static inline unsigned int cluster_next(struct swap_cluster_info *info)
237{
238 return info->data;
239}
240
241static inline void cluster_set_next(struct swap_cluster_info *info,
242 unsigned int n)
243{
244 info->data = n;
245}
246
247static inline void cluster_set_next_flag(struct swap_cluster_info *info,
248 unsigned int n, unsigned int f)
249{
250 info->flags = f;
251 info->data = n;
252}
253
254static inline bool cluster_is_free(struct swap_cluster_info *info)
255{
256 return info->flags & CLUSTER_FLAG_FREE;
257}
258
259static inline bool cluster_is_null(struct swap_cluster_info *info)
260{
261 return info->flags & CLUSTER_FLAG_NEXT_NULL;
262}
263
264static inline void cluster_set_null(struct swap_cluster_info *info)
265{
266 info->flags = CLUSTER_FLAG_NEXT_NULL;
267 info->data = 0;
268}
269
Huang Yinge0709822017-09-06 16:22:16 -0700270static inline bool cluster_is_huge(struct swap_cluster_info *info)
271{
Huang Ying33ee0112018-08-21 21:52:13 -0700272 if (IS_ENABLED(CONFIG_THP_SWAP))
273 return info->flags & CLUSTER_FLAG_HUGE;
274 return false;
Huang Yinge0709822017-09-06 16:22:16 -0700275}
276
277static inline void cluster_clear_huge(struct swap_cluster_info *info)
278{
279 info->flags &= ~CLUSTER_FLAG_HUGE;
280}
281
Huang, Ying235b6212017-02-22 15:45:22 -0800282static inline struct swap_cluster_info *lock_cluster(struct swap_info_struct *si,
283 unsigned long offset)
284{
285 struct swap_cluster_info *ci;
286
287 ci = si->cluster_info;
288 if (ci) {
289 ci += offset / SWAPFILE_CLUSTER;
290 spin_lock(&ci->lock);
291 }
292 return ci;
293}
294
295static inline void unlock_cluster(struct swap_cluster_info *ci)
296{
297 if (ci)
298 spin_unlock(&ci->lock);
299}
300
Huang Ying59d98bf2018-08-21 21:52:01 -0700301/*
302 * Determine the locking method in use for this device. Return
303 * swap_cluster_info if SSD-style cluster-based locking is in place.
304 */
Huang, Ying235b6212017-02-22 15:45:22 -0800305static inline struct swap_cluster_info *lock_cluster_or_swap_info(
Huang Ying59d98bf2018-08-21 21:52:01 -0700306 struct swap_info_struct *si, unsigned long offset)
Huang, Ying235b6212017-02-22 15:45:22 -0800307{
308 struct swap_cluster_info *ci;
309
Huang Ying59d98bf2018-08-21 21:52:01 -0700310 /* Try to use fine-grained SSD-style locking if available: */
Huang, Ying235b6212017-02-22 15:45:22 -0800311 ci = lock_cluster(si, offset);
Huang Ying59d98bf2018-08-21 21:52:01 -0700312 /* Otherwise, fall back to traditional, coarse locking: */
Huang, Ying235b6212017-02-22 15:45:22 -0800313 if (!ci)
314 spin_lock(&si->lock);
315
316 return ci;
317}
318
319static inline void unlock_cluster_or_swap_info(struct swap_info_struct *si,
320 struct swap_cluster_info *ci)
321{
322 if (ci)
323 unlock_cluster(ci);
324 else
325 spin_unlock(&si->lock);
326}
327
Huang Ying6b534912016-10-07 16:58:42 -0700328static inline bool cluster_list_empty(struct swap_cluster_list *list)
329{
330 return cluster_is_null(&list->head);
331}
332
333static inline unsigned int cluster_list_first(struct swap_cluster_list *list)
334{
335 return cluster_next(&list->head);
336}
337
338static void cluster_list_init(struct swap_cluster_list *list)
339{
340 cluster_set_null(&list->head);
341 cluster_set_null(&list->tail);
342}
343
344static void cluster_list_add_tail(struct swap_cluster_list *list,
345 struct swap_cluster_info *ci,
346 unsigned int idx)
347{
348 if (cluster_list_empty(list)) {
349 cluster_set_next_flag(&list->head, idx, 0);
350 cluster_set_next_flag(&list->tail, idx, 0);
351 } else {
Huang, Ying235b6212017-02-22 15:45:22 -0800352 struct swap_cluster_info *ci_tail;
Huang Ying6b534912016-10-07 16:58:42 -0700353 unsigned int tail = cluster_next(&list->tail);
354
Huang, Ying235b6212017-02-22 15:45:22 -0800355 /*
356 * Nested cluster lock, but both cluster locks are
357 * only acquired when we held swap_info_struct->lock
358 */
359 ci_tail = ci + tail;
360 spin_lock_nested(&ci_tail->lock, SINGLE_DEPTH_NESTING);
361 cluster_set_next(ci_tail, idx);
Huang Ying0ef017d2017-05-03 14:54:36 -0700362 spin_unlock(&ci_tail->lock);
Huang Ying6b534912016-10-07 16:58:42 -0700363 cluster_set_next_flag(&list->tail, idx, 0);
364 }
365}
366
367static unsigned int cluster_list_del_first(struct swap_cluster_list *list,
368 struct swap_cluster_info *ci)
369{
370 unsigned int idx;
371
372 idx = cluster_next(&list->head);
373 if (cluster_next(&list->tail) == idx) {
374 cluster_set_null(&list->head);
375 cluster_set_null(&list->tail);
376 } else
377 cluster_set_next_flag(&list->head,
378 cluster_next(&ci[idx]), 0);
379
380 return idx;
381}
382
Shaohua Li815c2c52013-09-11 14:20:30 -0700383/* Add a cluster to discard list and schedule it to do discard */
384static void swap_cluster_schedule_discard(struct swap_info_struct *si,
385 unsigned int idx)
386{
387 /*
388 * If scan_swap_map() can't find a free cluster, it will check
389 * si->swap_map directly. To make sure the discarding cluster isn't
390 * taken by scan_swap_map(), mark the swap entries bad (occupied). It
391 * will be cleared after discard
392 */
393 memset(si->swap_map + idx * SWAPFILE_CLUSTER,
394 SWAP_MAP_BAD, SWAPFILE_CLUSTER);
395
Huang Ying6b534912016-10-07 16:58:42 -0700396 cluster_list_add_tail(&si->discard_clusters, si->cluster_info, idx);
Shaohua Li815c2c52013-09-11 14:20:30 -0700397
398 schedule_work(&si->discard_work);
399}
400
Huang Ying38d8b4e2017-07-06 15:37:18 -0700401static void __free_cluster(struct swap_info_struct *si, unsigned long idx)
402{
403 struct swap_cluster_info *ci = si->cluster_info;
404
405 cluster_set_flag(ci + idx, CLUSTER_FLAG_FREE);
406 cluster_list_add_tail(&si->free_clusters, ci, idx);
407}
408
Shaohua Li815c2c52013-09-11 14:20:30 -0700409/*
410 * Doing discard actually. After a cluster discard is finished, the cluster
411 * will be added to free cluster list. caller should hold si->lock.
412*/
413static void swap_do_scheduled_discard(struct swap_info_struct *si)
414{
Huang, Ying235b6212017-02-22 15:45:22 -0800415 struct swap_cluster_info *info, *ci;
Shaohua Li815c2c52013-09-11 14:20:30 -0700416 unsigned int idx;
417
418 info = si->cluster_info;
419
Huang Ying6b534912016-10-07 16:58:42 -0700420 while (!cluster_list_empty(&si->discard_clusters)) {
421 idx = cluster_list_del_first(&si->discard_clusters, info);
Shaohua Li815c2c52013-09-11 14:20:30 -0700422 spin_unlock(&si->lock);
423
424 discard_swap_cluster(si, idx * SWAPFILE_CLUSTER,
425 SWAPFILE_CLUSTER);
426
427 spin_lock(&si->lock);
Huang, Ying235b6212017-02-22 15:45:22 -0800428 ci = lock_cluster(si, idx * SWAPFILE_CLUSTER);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700429 __free_cluster(si, idx);
Shaohua Li815c2c52013-09-11 14:20:30 -0700430 memset(si->swap_map + idx * SWAPFILE_CLUSTER,
431 0, SWAPFILE_CLUSTER);
Huang, Ying235b6212017-02-22 15:45:22 -0800432 unlock_cluster(ci);
Shaohua Li815c2c52013-09-11 14:20:30 -0700433 }
434}
435
436static void swap_discard_work(struct work_struct *work)
437{
438 struct swap_info_struct *si;
439
440 si = container_of(work, struct swap_info_struct, discard_work);
441
442 spin_lock(&si->lock);
443 swap_do_scheduled_discard(si);
444 spin_unlock(&si->lock);
445}
446
Huang Ying38d8b4e2017-07-06 15:37:18 -0700447static void alloc_cluster(struct swap_info_struct *si, unsigned long idx)
448{
449 struct swap_cluster_info *ci = si->cluster_info;
450
451 VM_BUG_ON(cluster_list_first(&si->free_clusters) != idx);
452 cluster_list_del_first(&si->free_clusters, ci);
453 cluster_set_count_flag(ci + idx, 0, 0);
454}
455
456static void free_cluster(struct swap_info_struct *si, unsigned long idx)
457{
458 struct swap_cluster_info *ci = si->cluster_info + idx;
459
460 VM_BUG_ON(cluster_count(ci) != 0);
461 /*
462 * If the swap is discardable, prepare discard the cluster
463 * instead of free it immediately. The cluster will be freed
464 * after discard.
465 */
466 if ((si->flags & (SWP_WRITEOK | SWP_PAGE_DISCARD)) ==
467 (SWP_WRITEOK | SWP_PAGE_DISCARD)) {
468 swap_cluster_schedule_discard(si, idx);
469 return;
470 }
471
472 __free_cluster(si, idx);
473}
474
Shaohua Li2a8f9442013-09-11 14:20:28 -0700475/*
476 * The cluster corresponding to page_nr will be used. The cluster will be
477 * removed from free cluster list and its usage counter will be increased.
478 */
479static void inc_cluster_info_page(struct swap_info_struct *p,
480 struct swap_cluster_info *cluster_info, unsigned long page_nr)
481{
482 unsigned long idx = page_nr / SWAPFILE_CLUSTER;
483
484 if (!cluster_info)
485 return;
Huang Ying38d8b4e2017-07-06 15:37:18 -0700486 if (cluster_is_free(&cluster_info[idx]))
487 alloc_cluster(p, idx);
Shaohua Li2a8f9442013-09-11 14:20:28 -0700488
489 VM_BUG_ON(cluster_count(&cluster_info[idx]) >= SWAPFILE_CLUSTER);
490 cluster_set_count(&cluster_info[idx],
491 cluster_count(&cluster_info[idx]) + 1);
492}
493
494/*
495 * The cluster corresponding to page_nr decreases one usage. If the usage
496 * counter becomes 0, which means no page in the cluster is in using, we can
497 * optionally discard the cluster and add it to free cluster list.
498 */
499static void dec_cluster_info_page(struct swap_info_struct *p,
500 struct swap_cluster_info *cluster_info, unsigned long page_nr)
501{
502 unsigned long idx = page_nr / SWAPFILE_CLUSTER;
503
504 if (!cluster_info)
505 return;
506
507 VM_BUG_ON(cluster_count(&cluster_info[idx]) == 0);
508 cluster_set_count(&cluster_info[idx],
509 cluster_count(&cluster_info[idx]) - 1);
510
Huang Ying38d8b4e2017-07-06 15:37:18 -0700511 if (cluster_count(&cluster_info[idx]) == 0)
512 free_cluster(p, idx);
Shaohua Li2a8f9442013-09-11 14:20:28 -0700513}
514
515/*
516 * It's possible scan_swap_map() uses a free cluster in the middle of free
517 * cluster list. Avoiding such abuse to avoid list corruption.
518 */
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700519static bool
520scan_swap_map_ssd_cluster_conflict(struct swap_info_struct *si,
Shaohua Li2a8f9442013-09-11 14:20:28 -0700521 unsigned long offset)
522{
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700523 struct percpu_cluster *percpu_cluster;
524 bool conflict;
525
Shaohua Li2a8f9442013-09-11 14:20:28 -0700526 offset /= SWAPFILE_CLUSTER;
Huang Ying6b534912016-10-07 16:58:42 -0700527 conflict = !cluster_list_empty(&si->free_clusters) &&
528 offset != cluster_list_first(&si->free_clusters) &&
Shaohua Li2a8f9442013-09-11 14:20:28 -0700529 cluster_is_free(&si->cluster_info[offset]);
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700530
531 if (!conflict)
532 return false;
533
534 percpu_cluster = this_cpu_ptr(si->percpu_cluster);
535 cluster_set_null(&percpu_cluster->index);
536 return true;
537}
538
539/*
540 * Try to get a swap entry from current cpu's swap entry pool (a cluster). This
541 * might involve allocating a new cluster for current CPU too.
542 */
Tim Chen36005ba2017-02-22 15:45:33 -0800543static bool scan_swap_map_try_ssd_cluster(struct swap_info_struct *si,
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700544 unsigned long *offset, unsigned long *scan_base)
545{
546 struct percpu_cluster *cluster;
Huang, Ying235b6212017-02-22 15:45:22 -0800547 struct swap_cluster_info *ci;
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700548 bool found_free;
Huang, Ying235b6212017-02-22 15:45:22 -0800549 unsigned long tmp, max;
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700550
551new_cluster:
552 cluster = this_cpu_ptr(si->percpu_cluster);
553 if (cluster_is_null(&cluster->index)) {
Huang Ying6b534912016-10-07 16:58:42 -0700554 if (!cluster_list_empty(&si->free_clusters)) {
555 cluster->index = si->free_clusters.head;
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700556 cluster->next = cluster_next(&cluster->index) *
557 SWAPFILE_CLUSTER;
Huang Ying6b534912016-10-07 16:58:42 -0700558 } else if (!cluster_list_empty(&si->discard_clusters)) {
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700559 /*
560 * we don't have free cluster but have some clusters in
561 * discarding, do discard now and reclaim them
562 */
563 swap_do_scheduled_discard(si);
564 *scan_base = *offset = si->cluster_next;
565 goto new_cluster;
566 } else
Tim Chen36005ba2017-02-22 15:45:33 -0800567 return false;
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700568 }
569
570 found_free = false;
571
572 /*
573 * Other CPUs can use our cluster if they can't find a free cluster,
574 * check if there is still free entry in the cluster
575 */
576 tmp = cluster->next;
Huang, Ying235b6212017-02-22 15:45:22 -0800577 max = min_t(unsigned long, si->max,
578 (cluster_next(&cluster->index) + 1) * SWAPFILE_CLUSTER);
579 if (tmp >= max) {
580 cluster_set_null(&cluster->index);
581 goto new_cluster;
582 }
583 ci = lock_cluster(si, tmp);
584 while (tmp < max) {
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700585 if (!si->swap_map[tmp]) {
586 found_free = true;
587 break;
588 }
589 tmp++;
590 }
Huang, Ying235b6212017-02-22 15:45:22 -0800591 unlock_cluster(ci);
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700592 if (!found_free) {
593 cluster_set_null(&cluster->index);
594 goto new_cluster;
595 }
596 cluster->next = tmp + 1;
597 *offset = tmp;
598 *scan_base = tmp;
Tim Chen36005ba2017-02-22 15:45:33 -0800599 return found_free;
Shaohua Li2a8f9442013-09-11 14:20:28 -0700600}
601
Aaron Lua2468cc2017-09-06 16:24:57 -0700602static void __del_from_avail_list(struct swap_info_struct *p)
603{
604 int nid;
605
606 for_each_node(nid)
607 plist_del(&p->avail_lists[nid], &swap_avail_heads[nid]);
608}
609
610static void del_from_avail_list(struct swap_info_struct *p)
611{
612 spin_lock(&swap_avail_lock);
613 __del_from_avail_list(p);
614 spin_unlock(&swap_avail_lock);
615}
616
Huang Ying38d8b4e2017-07-06 15:37:18 -0700617static void swap_range_alloc(struct swap_info_struct *si, unsigned long offset,
618 unsigned int nr_entries)
619{
620 unsigned int end = offset + nr_entries - 1;
621
622 if (offset == si->lowest_bit)
623 si->lowest_bit += nr_entries;
624 if (end == si->highest_bit)
625 si->highest_bit -= nr_entries;
626 si->inuse_pages += nr_entries;
627 if (si->inuse_pages == si->pages) {
628 si->lowest_bit = si->max;
629 si->highest_bit = 0;
Aaron Lua2468cc2017-09-06 16:24:57 -0700630 del_from_avail_list(si);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700631 }
632}
633
Aaron Lua2468cc2017-09-06 16:24:57 -0700634static void add_to_avail_list(struct swap_info_struct *p)
635{
636 int nid;
637
638 spin_lock(&swap_avail_lock);
639 for_each_node(nid) {
640 WARN_ON(!plist_node_empty(&p->avail_lists[nid]));
641 plist_add(&p->avail_lists[nid], &swap_avail_heads[nid]);
642 }
643 spin_unlock(&swap_avail_lock);
644}
645
Huang Ying38d8b4e2017-07-06 15:37:18 -0700646static void swap_range_free(struct swap_info_struct *si, unsigned long offset,
647 unsigned int nr_entries)
648{
649 unsigned long end = offset + nr_entries - 1;
650 void (*swap_slot_free_notify)(struct block_device *, unsigned long);
651
652 if (offset < si->lowest_bit)
653 si->lowest_bit = offset;
654 if (end > si->highest_bit) {
655 bool was_full = !si->highest_bit;
656
657 si->highest_bit = end;
Aaron Lua2468cc2017-09-06 16:24:57 -0700658 if (was_full && (si->flags & SWP_WRITEOK))
659 add_to_avail_list(si);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700660 }
661 atomic_long_add(nr_entries, &nr_swap_pages);
662 si->inuse_pages -= nr_entries;
663 if (si->flags & SWP_BLKDEV)
664 swap_slot_free_notify =
665 si->bdev->bd_disk->fops->swap_slot_free_notify;
666 else
667 swap_slot_free_notify = NULL;
668 while (offset <= end) {
669 frontswap_invalidate_page(si->type, offset);
670 if (swap_slot_free_notify)
671 swap_slot_free_notify(si->bdev, offset);
672 offset++;
673 }
674}
675
Tim Chen36005ba2017-02-22 15:45:33 -0800676static int scan_swap_map_slots(struct swap_info_struct *si,
677 unsigned char usage, int nr,
678 swp_entry_t slots[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679{
Huang, Ying235b6212017-02-22 15:45:22 -0800680 struct swap_cluster_info *ci;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800681 unsigned long offset;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800682 unsigned long scan_base;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800683 unsigned long last_in_cluster = 0;
Hugh Dickins048c27f2005-09-03 15:54:40 -0700684 int latency_ration = LATENCY_LIMIT;
Tim Chen36005ba2017-02-22 15:45:33 -0800685 int n_ret = 0;
686
687 if (nr > SWAP_BATCH)
688 nr = SWAP_BATCH;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800690 /*
Hugh Dickins7dfad412005-09-03 15:54:38 -0700691 * We try to cluster swap pages by allocating them sequentially
692 * in swap. Once we've allocated SWAPFILE_CLUSTER pages this
693 * way, however, we resort to first-free allocation, starting
694 * a new cluster. This prevents us from scattering swap pages
695 * all over the entire swap partition, so that we reduce
696 * overall disk seek times between swap pages. -- sct
697 * But we do now try to find an empty cluster. -Andrea
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800698 * And we let swap pages go all over an SSD partition. Hugh
Hugh Dickins7dfad412005-09-03 15:54:38 -0700699 */
700
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700701 si->flags += SWP_SCANNING;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800702 scan_base = offset = si->cluster_next;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800703
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700704 /* SSD algorithm */
705 if (si->cluster_info) {
Tim Chen36005ba2017-02-22 15:45:33 -0800706 if (scan_swap_map_try_ssd_cluster(si, &offset, &scan_base))
707 goto checks;
708 else
709 goto scan;
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700710 }
711
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800712 if (unlikely(!si->cluster_nr--)) {
713 if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER) {
714 si->cluster_nr = SWAPFILE_CLUSTER - 1;
715 goto checks;
716 }
Shaohua Li2a8f9442013-09-11 14:20:28 -0700717
Shaohua Liec8acf22013-02-22 16:34:38 -0800718 spin_unlock(&si->lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700719
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800720 /*
721 * If seek is expensive, start searching for new cluster from
722 * start of partition, to minimize the span of allocated swap.
Chen Yucong50088c42014-06-04 16:10:57 -0700723 * If seek is cheap, that is the SWP_SOLIDSTATE si->cluster_info
724 * case, just handled by scan_swap_map_try_ssd_cluster() above.
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800725 */
Chen Yucong50088c42014-06-04 16:10:57 -0700726 scan_base = offset = si->lowest_bit;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700727 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
728
729 /* Locate the first empty (unaligned) cluster */
730 for (; last_in_cluster <= si->highest_bit; offset++) {
731 if (si->swap_map[offset])
732 last_in_cluster = offset + SWAPFILE_CLUSTER;
733 else if (offset == last_in_cluster) {
Shaohua Liec8acf22013-02-22 16:34:38 -0800734 spin_lock(&si->lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800735 offset -= SWAPFILE_CLUSTER - 1;
736 si->cluster_next = offset;
737 si->cluster_nr = SWAPFILE_CLUSTER - 1;
738 goto checks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700739 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700740 if (unlikely(--latency_ration < 0)) {
741 cond_resched();
742 latency_ration = LATENCY_LIMIT;
743 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700744 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800745
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800746 offset = scan_base;
Shaohua Liec8acf22013-02-22 16:34:38 -0800747 spin_lock(&si->lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800748 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700749 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700750
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800751checks:
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700752 if (si->cluster_info) {
Tim Chen36005ba2017-02-22 15:45:33 -0800753 while (scan_swap_map_ssd_cluster_conflict(si, offset)) {
754 /* take a break if we already got some slots */
755 if (n_ret)
756 goto done;
757 if (!scan_swap_map_try_ssd_cluster(si, &offset,
758 &scan_base))
759 goto scan;
760 }
Shaohua Liebc2a1a2013-09-11 14:20:32 -0700761 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800762 if (!(si->flags & SWP_WRITEOK))
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700763 goto no_page;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700764 if (!si->highest_bit)
765 goto no_page;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800766 if (offset > si->highest_bit)
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800767 scan_base = offset = si->lowest_bit;
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700768
Huang, Ying235b6212017-02-22 15:45:22 -0800769 ci = lock_cluster(si, offset);
Hugh Dickinsb73d7fc2010-09-09 16:38:09 -0700770 /* reuse swap entry of cache-only swap if not busy. */
771 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700772 int swap_was_freed;
Huang, Ying235b6212017-02-22 15:45:22 -0800773 unlock_cluster(ci);
Shaohua Liec8acf22013-02-22 16:34:38 -0800774 spin_unlock(&si->lock);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700775 swap_was_freed = __try_to_reclaim_swap(si, offset);
Shaohua Liec8acf22013-02-22 16:34:38 -0800776 spin_lock(&si->lock);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700777 /* entry was freed successfully, try to use this again */
778 if (swap_was_freed)
779 goto checks;
780 goto scan; /* check next one */
781 }
782
Huang, Ying235b6212017-02-22 15:45:22 -0800783 if (si->swap_map[offset]) {
784 unlock_cluster(ci);
Tim Chen36005ba2017-02-22 15:45:33 -0800785 if (!n_ret)
786 goto scan;
787 else
788 goto done;
Huang, Ying235b6212017-02-22 15:45:22 -0800789 }
Huang Ying2872bb22017-05-03 14:54:39 -0700790 si->swap_map[offset] = usage;
791 inc_cluster_info_page(si, si->cluster_info, offset);
792 unlock_cluster(ci);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700793
Huang Ying38d8b4e2017-07-06 15:37:18 -0700794 swap_range_alloc(si, offset, 1);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800795 si->cluster_next = offset + 1;
Tim Chen36005ba2017-02-22 15:45:33 -0800796 slots[n_ret++] = swp_entry(si->type, offset);
Hugh Dickins7992fde2009-01-06 14:39:53 -0800797
Tim Chen36005ba2017-02-22 15:45:33 -0800798 /* got enough slots or reach max slots? */
799 if ((n_ret == nr) || (offset >= si->highest_bit))
800 goto done;
801
802 /* search for next available slot */
803
804 /* time to take a break? */
805 if (unlikely(--latency_ration < 0)) {
806 if (n_ret)
807 goto done;
808 spin_unlock(&si->lock);
809 cond_resched();
810 spin_lock(&si->lock);
811 latency_ration = LATENCY_LIMIT;
812 }
813
814 /* try to get more slots in cluster */
815 if (si->cluster_info) {
816 if (scan_swap_map_try_ssd_cluster(si, &offset, &scan_base))
817 goto checks;
818 else
819 goto done;
820 }
821 /* non-ssd case */
822 ++offset;
823
824 /* non-ssd case, still more slots in cluster? */
825 if (si->cluster_nr && !si->swap_map[offset]) {
826 --si->cluster_nr;
827 goto checks;
828 }
829
830done:
831 si->flags -= SWP_SCANNING;
832 return n_ret;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800833
834scan:
Shaohua Liec8acf22013-02-22 16:34:38 -0800835 spin_unlock(&si->lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700836 while (++offset <= si->highest_bit) {
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700837 if (!si->swap_map[offset]) {
Shaohua Liec8acf22013-02-22 16:34:38 -0800838 spin_lock(&si->lock);
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700839 goto checks;
840 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700841 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
Shaohua Liec8acf22013-02-22 16:34:38 -0800842 spin_lock(&si->lock);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700843 goto checks;
844 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700845 if (unlikely(--latency_ration < 0)) {
846 cond_resched();
847 latency_ration = LATENCY_LIMIT;
848 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700849 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800850 offset = si->lowest_bit;
Jamie Liua5998062014-01-23 15:53:40 -0800851 while (offset < scan_base) {
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800852 if (!si->swap_map[offset]) {
Shaohua Liec8acf22013-02-22 16:34:38 -0800853 spin_lock(&si->lock);
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800854 goto checks;
855 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700856 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
Shaohua Liec8acf22013-02-22 16:34:38 -0800857 spin_lock(&si->lock);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700858 goto checks;
859 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800860 if (unlikely(--latency_ration < 0)) {
861 cond_resched();
862 latency_ration = LATENCY_LIMIT;
863 }
Jamie Liua5998062014-01-23 15:53:40 -0800864 offset++;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800865 }
Shaohua Liec8acf22013-02-22 16:34:38 -0800866 spin_lock(&si->lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700867
868no_page:
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700869 si->flags -= SWP_SCANNING;
Tim Chen36005ba2017-02-22 15:45:33 -0800870 return n_ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700871}
872
Huang Ying38d8b4e2017-07-06 15:37:18 -0700873static int swap_alloc_cluster(struct swap_info_struct *si, swp_entry_t *slot)
874{
875 unsigned long idx;
876 struct swap_cluster_info *ci;
877 unsigned long offset, i;
878 unsigned char *map;
879
Huang Yingfe5266d2018-08-21 21:52:05 -0700880 /*
881 * Should not even be attempting cluster allocations when huge
882 * page swap is disabled. Warn and fail the allocation.
883 */
884 if (!IS_ENABLED(CONFIG_THP_SWAP)) {
885 VM_WARN_ON_ONCE(1);
886 return 0;
887 }
888
Huang Ying38d8b4e2017-07-06 15:37:18 -0700889 if (cluster_list_empty(&si->free_clusters))
890 return 0;
891
892 idx = cluster_list_first(&si->free_clusters);
893 offset = idx * SWAPFILE_CLUSTER;
894 ci = lock_cluster(si, offset);
895 alloc_cluster(si, idx);
Huang Yinge0709822017-09-06 16:22:16 -0700896 cluster_set_count_flag(ci, SWAPFILE_CLUSTER, CLUSTER_FLAG_HUGE);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700897
898 map = si->swap_map + offset;
899 for (i = 0; i < SWAPFILE_CLUSTER; i++)
900 map[i] = SWAP_HAS_CACHE;
901 unlock_cluster(ci);
902 swap_range_alloc(si, offset, SWAPFILE_CLUSTER);
903 *slot = swp_entry(si->type, offset);
904
905 return 1;
906}
907
908static void swap_free_cluster(struct swap_info_struct *si, unsigned long idx)
909{
910 unsigned long offset = idx * SWAPFILE_CLUSTER;
911 struct swap_cluster_info *ci;
912
913 ci = lock_cluster(si, offset);
914 cluster_set_count_flag(ci, 0, 0);
915 free_cluster(si, idx);
916 unlock_cluster(ci);
917 swap_range_free(si, offset, SWAPFILE_CLUSTER);
918}
Huang Ying38d8b4e2017-07-06 15:37:18 -0700919
Tim Chen36005ba2017-02-22 15:45:33 -0800920static unsigned long scan_swap_map(struct swap_info_struct *si,
921 unsigned char usage)
922{
923 swp_entry_t entry;
924 int n_ret;
925
926 n_ret = scan_swap_map_slots(si, usage, 1, &entry);
927
928 if (n_ret)
929 return swp_offset(entry);
930 else
931 return 0;
932
933}
934
Huang Ying38d8b4e2017-07-06 15:37:18 -0700935int get_swap_pages(int n_goal, bool cluster, swp_entry_t swp_entries[])
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936{
Huang Ying38d8b4e2017-07-06 15:37:18 -0700937 unsigned long nr_pages = cluster ? SWAPFILE_CLUSTER : 1;
Dan Streetmanadfab832014-06-04 16:09:53 -0700938 struct swap_info_struct *si, *next;
Tim Chen36005ba2017-02-22 15:45:33 -0800939 long avail_pgs;
940 int n_ret = 0;
Aaron Lua2468cc2017-09-06 16:24:57 -0700941 int node;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700942
Huang Ying38d8b4e2017-07-06 15:37:18 -0700943 /* Only single cluster request supported */
944 WARN_ON_ONCE(n_goal > 1 && cluster);
945
946 avail_pgs = atomic_long_read(&nr_swap_pages) / nr_pages;
Tim Chen36005ba2017-02-22 15:45:33 -0800947 if (avail_pgs <= 0)
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700948 goto noswap;
Tim Chen36005ba2017-02-22 15:45:33 -0800949
950 if (n_goal > SWAP_BATCH)
951 n_goal = SWAP_BATCH;
952
953 if (n_goal > avail_pgs)
954 n_goal = avail_pgs;
955
Huang Ying38d8b4e2017-07-06 15:37:18 -0700956 atomic_long_sub(n_goal * nr_pages, &nr_swap_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700957
Dan Streetman18ab4d42014-06-04 16:09:59 -0700958 spin_lock(&swap_avail_lock);
959
960start_over:
Aaron Lua2468cc2017-09-06 16:24:57 -0700961 node = numa_node_id();
962 plist_for_each_entry_safe(si, next, &swap_avail_heads[node], avail_lists[node]) {
Dan Streetman18ab4d42014-06-04 16:09:59 -0700963 /* requeue si to after same-priority siblings */
Aaron Lua2468cc2017-09-06 16:24:57 -0700964 plist_requeue(&si->avail_lists[node], &swap_avail_heads[node]);
Dan Streetman18ab4d42014-06-04 16:09:59 -0700965 spin_unlock(&swap_avail_lock);
Shaohua Liec8acf22013-02-22 16:34:38 -0800966 spin_lock(&si->lock);
Dan Streetmanadfab832014-06-04 16:09:53 -0700967 if (!si->highest_bit || !(si->flags & SWP_WRITEOK)) {
Dan Streetman18ab4d42014-06-04 16:09:59 -0700968 spin_lock(&swap_avail_lock);
Aaron Lua2468cc2017-09-06 16:24:57 -0700969 if (plist_node_empty(&si->avail_lists[node])) {
Dan Streetman18ab4d42014-06-04 16:09:59 -0700970 spin_unlock(&si->lock);
971 goto nextsi;
972 }
973 WARN(!si->highest_bit,
974 "swap_info %d in list but !highest_bit\n",
975 si->type);
976 WARN(!(si->flags & SWP_WRITEOK),
977 "swap_info %d in list but !SWP_WRITEOK\n",
978 si->type);
Aaron Lua2468cc2017-09-06 16:24:57 -0700979 __del_from_avail_list(si);
Shaohua Liec8acf22013-02-22 16:34:38 -0800980 spin_unlock(&si->lock);
Dan Streetman18ab4d42014-06-04 16:09:59 -0700981 goto nextsi;
Shaohua Liec8acf22013-02-22 16:34:38 -0800982 }
Huang Yingf0eea182017-09-06 16:22:23 -0700983 if (cluster) {
984 if (!(si->flags & SWP_FILE))
985 n_ret = swap_alloc_cluster(si, swp_entries);
986 } else
Huang Ying38d8b4e2017-07-06 15:37:18 -0700987 n_ret = scan_swap_map_slots(si, SWAP_HAS_CACHE,
988 n_goal, swp_entries);
Shaohua Liec8acf22013-02-22 16:34:38 -0800989 spin_unlock(&si->lock);
Huang Ying38d8b4e2017-07-06 15:37:18 -0700990 if (n_ret || cluster)
Tim Chen36005ba2017-02-22 15:45:33 -0800991 goto check_out;
Dan Streetman18ab4d42014-06-04 16:09:59 -0700992 pr_debug("scan_swap_map of si %d failed to find offset\n",
Tim Chen36005ba2017-02-22 15:45:33 -0800993 si->type);
994
Dan Streetman18ab4d42014-06-04 16:09:59 -0700995 spin_lock(&swap_avail_lock);
996nextsi:
Dan Streetmanadfab832014-06-04 16:09:53 -0700997 /*
998 * if we got here, it's likely that si was almost full before,
999 * and since scan_swap_map() can drop the si->lock, multiple
1000 * callers probably all tried to get a page from the same si
Dan Streetman18ab4d42014-06-04 16:09:59 -07001001 * and it filled up before we could get one; or, the si filled
1002 * up between us dropping swap_avail_lock and taking si->lock.
1003 * Since we dropped the swap_avail_lock, the swap_avail_head
1004 * list may have been modified; so if next is still in the
Tim Chen36005ba2017-02-22 15:45:33 -08001005 * swap_avail_head list then try it, otherwise start over
1006 * if we have not gotten any slots.
Dan Streetmanadfab832014-06-04 16:09:53 -07001007 */
Aaron Lua2468cc2017-09-06 16:24:57 -07001008 if (plist_node_empty(&next->avail_lists[node]))
Dan Streetman18ab4d42014-06-04 16:09:59 -07001009 goto start_over;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001010 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001011
Dan Streetman18ab4d42014-06-04 16:09:59 -07001012 spin_unlock(&swap_avail_lock);
1013
Tim Chen36005ba2017-02-22 15:45:33 -08001014check_out:
1015 if (n_ret < n_goal)
Huang Ying38d8b4e2017-07-06 15:37:18 -07001016 atomic_long_add((long)(n_goal - n_ret) * nr_pages,
1017 &nr_swap_pages);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001018noswap:
Tim Chen36005ba2017-02-22 15:45:33 -08001019 return n_ret;
1020}
1021
Seth Jennings2de1a7e2013-11-12 15:07:46 -08001022/* The only caller of this function is now suspend routine */
Hugh Dickins910321e2010-09-09 16:38:07 -07001023swp_entry_t get_swap_page_of_type(int type)
1024{
1025 struct swap_info_struct *si;
1026 pgoff_t offset;
1027
Hugh Dickins910321e2010-09-09 16:38:07 -07001028 si = swap_info[type];
Shaohua Liec8acf22013-02-22 16:34:38 -08001029 spin_lock(&si->lock);
Hugh Dickins910321e2010-09-09 16:38:07 -07001030 if (si && (si->flags & SWP_WRITEOK)) {
Shaohua Liec8acf22013-02-22 16:34:38 -08001031 atomic_long_dec(&nr_swap_pages);
Hugh Dickins910321e2010-09-09 16:38:07 -07001032 /* This is called for allocating swap entry, not cache */
1033 offset = scan_swap_map(si, 1);
1034 if (offset) {
Shaohua Liec8acf22013-02-22 16:34:38 -08001035 spin_unlock(&si->lock);
Hugh Dickins910321e2010-09-09 16:38:07 -07001036 return swp_entry(type, offset);
1037 }
Shaohua Liec8acf22013-02-22 16:34:38 -08001038 atomic_long_inc(&nr_swap_pages);
Hugh Dickins910321e2010-09-09 16:38:07 -07001039 }
Shaohua Liec8acf22013-02-22 16:34:38 -08001040 spin_unlock(&si->lock);
Hugh Dickins910321e2010-09-09 16:38:07 -07001041 return (swp_entry_t) {0};
1042}
1043
Tim Chene8c26ab2017-02-22 15:45:29 -08001044static struct swap_info_struct *__swap_info_get(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001045{
Hugh Dickins73c34b62009-12-14 17:58:43 -08001046 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001047 unsigned long offset, type;
1048
1049 if (!entry.val)
1050 goto out;
1051 type = swp_type(entry);
1052 if (type >= nr_swapfiles)
1053 goto bad_nofile;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001054 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001055 if (!(p->flags & SWP_USED))
1056 goto bad_device;
1057 offset = swp_offset(entry);
1058 if (offset >= p->max)
1059 goto bad_offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060 return p;
1061
Linus Torvalds1da177e2005-04-16 15:20:36 -07001062bad_offset:
Huang, Ying6a991fc2017-02-22 15:45:19 -08001063 pr_err("swap_info_get: %s%08lx\n", Bad_offset, entry.val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001064 goto out;
1065bad_device:
Huang, Ying6a991fc2017-02-22 15:45:19 -08001066 pr_err("swap_info_get: %s%08lx\n", Unused_file, entry.val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001067 goto out;
1068bad_nofile:
Huang, Ying6a991fc2017-02-22 15:45:19 -08001069 pr_err("swap_info_get: %s%08lx\n", Bad_file, entry.val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070out:
1071 return NULL;
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001072}
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073
Tim Chene8c26ab2017-02-22 15:45:29 -08001074static struct swap_info_struct *_swap_info_get(swp_entry_t entry)
1075{
1076 struct swap_info_struct *p;
1077
1078 p = __swap_info_get(entry);
1079 if (!p)
1080 goto out;
1081 if (!p->swap_map[swp_offset(entry)])
1082 goto bad_free;
1083 return p;
1084
1085bad_free:
1086 pr_err("swap_info_get: %s%08lx\n", Unused_offset, entry.val);
1087 goto out;
1088out:
1089 return NULL;
1090}
1091
Huang, Ying235b6212017-02-22 15:45:22 -08001092static struct swap_info_struct *swap_info_get(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001093{
Huang, Ying235b6212017-02-22 15:45:22 -08001094 struct swap_info_struct *p;
1095
1096 p = _swap_info_get(entry);
1097 if (p)
1098 spin_lock(&p->lock);
1099 return p;
1100}
1101
Tim Chen7c00baf2017-02-22 15:45:36 -08001102static struct swap_info_struct *swap_info_get_cont(swp_entry_t entry,
1103 struct swap_info_struct *q)
1104{
1105 struct swap_info_struct *p;
1106
1107 p = _swap_info_get(entry);
1108
1109 if (p != q) {
1110 if (q != NULL)
1111 spin_unlock(&q->lock);
1112 if (p != NULL)
1113 spin_lock(&p->lock);
1114 }
1115 return p;
1116}
1117
1118static unsigned char __swap_entry_free(struct swap_info_struct *p,
1119 swp_entry_t entry, unsigned char usage)
Huang, Ying235b6212017-02-22 15:45:22 -08001120{
1121 struct swap_cluster_info *ci;
Hugh Dickins253d5532009-12-14 17:58:44 -08001122 unsigned long offset = swp_offset(entry);
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001123 unsigned char count;
1124 unsigned char has_cache;
Huang, Ying235b6212017-02-22 15:45:22 -08001125
Tim Chen7c00baf2017-02-22 15:45:36 -08001126 ci = lock_cluster_or_swap_info(p, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001128 count = p->swap_map[offset];
Huang, Ying235b6212017-02-22 15:45:22 -08001129
Hugh Dickins253d5532009-12-14 17:58:44 -08001130 has_cache = count & SWAP_HAS_CACHE;
1131 count &= ~SWAP_HAS_CACHE;
1132
1133 if (usage == SWAP_HAS_CACHE) {
1134 VM_BUG_ON(!has_cache);
1135 has_cache = 0;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001136 } else if (count == SWAP_MAP_SHMEM) {
1137 /*
1138 * Or we could insist on shmem.c using a special
1139 * swap_shmem_free() and free_shmem_swap_and_cache()...
1140 */
1141 count = 0;
Hugh Dickins570a335b2009-12-14 17:58:46 -08001142 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) {
1143 if (count == COUNT_CONTINUED) {
1144 if (swap_count_continued(p, offset, count))
1145 count = SWAP_MAP_MAX | COUNT_CONTINUED;
1146 else
1147 count = SWAP_MAP_MAX;
1148 } else
1149 count--;
1150 }
Hugh Dickins253d5532009-12-14 17:58:44 -08001151
Hugh Dickins253d5532009-12-14 17:58:44 -08001152 usage = count | has_cache;
Tim Chen7c00baf2017-02-22 15:45:36 -08001153 p->swap_map[offset] = usage ? : SWAP_HAS_CACHE;
Hugh Dickins253d5532009-12-14 17:58:44 -08001154
Tim Chen7c00baf2017-02-22 15:45:36 -08001155 unlock_cluster_or_swap_info(p, ci);
Huang, Ying235b6212017-02-22 15:45:22 -08001156
Hugh Dickins253d5532009-12-14 17:58:44 -08001157 return usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001158}
1159
Tim Chen7c00baf2017-02-22 15:45:36 -08001160static void swap_entry_free(struct swap_info_struct *p, swp_entry_t entry)
1161{
1162 struct swap_cluster_info *ci;
1163 unsigned long offset = swp_offset(entry);
1164 unsigned char count;
1165
1166 ci = lock_cluster(p, offset);
1167 count = p->swap_map[offset];
1168 VM_BUG_ON(count != SWAP_HAS_CACHE);
1169 p->swap_map[offset] = 0;
1170 dec_cluster_info_page(p, p->cluster_info, offset);
1171 unlock_cluster(ci);
1172
Huang Ying38d8b4e2017-07-06 15:37:18 -07001173 mem_cgroup_uncharge_swap(entry, 1);
1174 swap_range_free(p, offset, 1);
Tim Chen7c00baf2017-02-22 15:45:36 -08001175}
1176
Linus Torvalds1da177e2005-04-16 15:20:36 -07001177/*
Seth Jennings2de1a7e2013-11-12 15:07:46 -08001178 * Caller has made sure that the swap device corresponding to entry
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 * is still around or has not been recycled.
1180 */
1181void swap_free(swp_entry_t entry)
1182{
Hugh Dickins73c34b62009-12-14 17:58:43 -08001183 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001184
Huang, Ying235b6212017-02-22 15:45:22 -08001185 p = _swap_info_get(entry);
Tim Chen7c00baf2017-02-22 15:45:36 -08001186 if (p) {
1187 if (!__swap_entry_free(p, entry, 1))
Tim Chen67afa382017-02-22 15:45:39 -08001188 free_swap_slot(entry);
Tim Chen7c00baf2017-02-22 15:45:36 -08001189 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001190}
1191
1192/*
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07001193 * Called after dropping swapcache to decrease refcnt to swap entries.
1194 */
Minchan Kim75f6d6d2017-07-06 15:37:21 -07001195static void swapcache_free(swp_entry_t entry)
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07001196{
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001197 struct swap_info_struct *p;
1198
Huang, Ying235b6212017-02-22 15:45:22 -08001199 p = _swap_info_get(entry);
Tim Chen7c00baf2017-02-22 15:45:36 -08001200 if (p) {
1201 if (!__swap_entry_free(p, entry, SWAP_HAS_CACHE))
Tim Chen67afa382017-02-22 15:45:39 -08001202 free_swap_slot(entry);
Tim Chen7c00baf2017-02-22 15:45:36 -08001203 }
1204}
1205
Minchan Kim75f6d6d2017-07-06 15:37:21 -07001206static void swapcache_free_cluster(swp_entry_t entry)
Huang Ying38d8b4e2017-07-06 15:37:18 -07001207{
1208 unsigned long offset = swp_offset(entry);
1209 unsigned long idx = offset / SWAPFILE_CLUSTER;
1210 struct swap_cluster_info *ci;
1211 struct swap_info_struct *si;
1212 unsigned char *map;
Huang Yinga3aea832017-09-06 16:22:12 -07001213 unsigned int i, free_entries = 0;
1214 unsigned char val;
Huang Ying38d8b4e2017-07-06 15:37:18 -07001215
Huang Yingfe5266d2018-08-21 21:52:05 -07001216 if (!IS_ENABLED(CONFIG_THP_SWAP))
1217 return;
1218
Huang Yinga3aea832017-09-06 16:22:12 -07001219 si = _swap_info_get(entry);
Huang Ying38d8b4e2017-07-06 15:37:18 -07001220 if (!si)
1221 return;
1222
1223 ci = lock_cluster(si, offset);
Huang Yinge0709822017-09-06 16:22:16 -07001224 VM_BUG_ON(!cluster_is_huge(ci));
Huang Ying38d8b4e2017-07-06 15:37:18 -07001225 map = si->swap_map + offset;
1226 for (i = 0; i < SWAPFILE_CLUSTER; i++) {
Huang Yinga3aea832017-09-06 16:22:12 -07001227 val = map[i];
1228 VM_BUG_ON(!(val & SWAP_HAS_CACHE));
1229 if (val == SWAP_HAS_CACHE)
1230 free_entries++;
1231 }
1232 if (!free_entries) {
1233 for (i = 0; i < SWAPFILE_CLUSTER; i++)
1234 map[i] &= ~SWAP_HAS_CACHE;
Huang Ying38d8b4e2017-07-06 15:37:18 -07001235 }
Huang Yinge0709822017-09-06 16:22:16 -07001236 cluster_clear_huge(ci);
Huang Ying38d8b4e2017-07-06 15:37:18 -07001237 unlock_cluster(ci);
Huang Yinga3aea832017-09-06 16:22:12 -07001238 if (free_entries == SWAPFILE_CLUSTER) {
1239 spin_lock(&si->lock);
1240 ci = lock_cluster(si, offset);
1241 memset(map, 0, SWAPFILE_CLUSTER);
1242 unlock_cluster(ci);
1243 mem_cgroup_uncharge_swap(entry, SWAPFILE_CLUSTER);
1244 swap_free_cluster(si, idx);
1245 spin_unlock(&si->lock);
1246 } else if (free_entries) {
1247 for (i = 0; i < SWAPFILE_CLUSTER; i++, entry.val++) {
1248 if (!__swap_entry_free(si, entry, SWAP_HAS_CACHE))
1249 free_swap_slot(entry);
1250 }
1251 }
Huang Ying38d8b4e2017-07-06 15:37:18 -07001252}
Huang Ying59807682017-09-06 16:22:34 -07001253
Huang Yingfe5266d2018-08-21 21:52:05 -07001254#ifdef CONFIG_THP_SWAP
Huang Ying59807682017-09-06 16:22:34 -07001255int split_swap_cluster(swp_entry_t entry)
1256{
1257 struct swap_info_struct *si;
1258 struct swap_cluster_info *ci;
1259 unsigned long offset = swp_offset(entry);
1260
1261 si = _swap_info_get(entry);
1262 if (!si)
1263 return -EBUSY;
1264 ci = lock_cluster(si, offset);
1265 cluster_clear_huge(ci);
1266 unlock_cluster(ci);
1267 return 0;
1268}
Huang Yingfe5266d2018-08-21 21:52:05 -07001269#endif
Huang Ying38d8b4e2017-07-06 15:37:18 -07001270
Minchan Kim75f6d6d2017-07-06 15:37:21 -07001271void put_swap_page(struct page *page, swp_entry_t entry)
1272{
1273 if (!PageTransHuge(page))
1274 swapcache_free(entry);
1275 else
1276 swapcache_free_cluster(entry);
1277}
1278
Huang Ying155b5f82017-07-06 15:40:31 -07001279static int swp_entry_cmp(const void *ent1, const void *ent2)
1280{
1281 const swp_entry_t *e1 = ent1, *e2 = ent2;
1282
1283 return (int)swp_type(*e1) - (int)swp_type(*e2);
1284}
1285
Tim Chen7c00baf2017-02-22 15:45:36 -08001286void swapcache_free_entries(swp_entry_t *entries, int n)
1287{
1288 struct swap_info_struct *p, *prev;
1289 int i;
1290
1291 if (n <= 0)
1292 return;
1293
1294 prev = NULL;
1295 p = NULL;
Huang Ying155b5f82017-07-06 15:40:31 -07001296
1297 /*
1298 * Sort swap entries by swap device, so each lock is only taken once.
1299 * nr_swapfiles isn't absolutely correct, but the overhead of sort() is
1300 * so low that it isn't necessary to optimize further.
1301 */
1302 if (nr_swapfiles > 1)
1303 sort(entries, n, sizeof(entries[0]), swp_entry_cmp, NULL);
Tim Chen7c00baf2017-02-22 15:45:36 -08001304 for (i = 0; i < n; ++i) {
1305 p = swap_info_get_cont(entries[i], prev);
1306 if (p)
1307 swap_entry_free(p, entries[i]);
Tim Chen7c00baf2017-02-22 15:45:36 -08001308 prev = p;
1309 }
Huang, Ying235b6212017-02-22 15:45:22 -08001310 if (p)
Tim Chen7c00baf2017-02-22 15:45:36 -08001311 spin_unlock(&p->lock);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07001312}
1313
1314/*
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001315 * How many references to page are currently swapped out?
Hugh Dickins570a335b2009-12-14 17:58:46 -08001316 * This does not give an exact answer when swap count is continued,
1317 * but does include the high COUNT_CONTINUED flag to allow for that.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001318 */
Hugh Dickinsbde05d12012-05-29 15:06:38 -07001319int page_swapcount(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001320{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001321 int count = 0;
1322 struct swap_info_struct *p;
Huang, Ying235b6212017-02-22 15:45:22 -08001323 struct swap_cluster_info *ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 swp_entry_t entry;
Huang, Ying235b6212017-02-22 15:45:22 -08001325 unsigned long offset;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326
Hugh Dickins4c21e2f2005-10-29 18:16:40 -07001327 entry.val = page_private(page);
Huang, Ying235b6212017-02-22 15:45:22 -08001328 p = _swap_info_get(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001329 if (p) {
Huang, Ying235b6212017-02-22 15:45:22 -08001330 offset = swp_offset(entry);
1331 ci = lock_cluster_or_swap_info(p, offset);
1332 count = swap_count(p->swap_map[offset]);
1333 unlock_cluster_or_swap_info(p, ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001334 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001335 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336}
1337
Minchan Kimaa8d22a2017-11-15 17:33:11 -08001338int __swap_count(struct swap_info_struct *si, swp_entry_t entry)
1339{
1340 pgoff_t offset = swp_offset(entry);
1341
1342 return swap_count(si->swap_map[offset]);
1343}
1344
Huang Ying322b8afe2017-05-03 14:52:49 -07001345static int swap_swapcount(struct swap_info_struct *si, swp_entry_t entry)
1346{
1347 int count = 0;
1348 pgoff_t offset = swp_offset(entry);
1349 struct swap_cluster_info *ci;
1350
1351 ci = lock_cluster_or_swap_info(si, offset);
1352 count = swap_count(si->swap_map[offset]);
1353 unlock_cluster_or_swap_info(si, ci);
1354 return count;
1355}
1356
Linus Torvalds1da177e2005-04-16 15:20:36 -07001357/*
Minchan Kim8334b962015-09-08 15:00:24 -07001358 * How many references to @entry are currently swapped out?
Tim Chene8c26ab2017-02-22 15:45:29 -08001359 * This does not give an exact answer when swap count is continued,
1360 * but does include the high COUNT_CONTINUED flag to allow for that.
1361 */
1362int __swp_swapcount(swp_entry_t entry)
1363{
1364 int count = 0;
Tim Chene8c26ab2017-02-22 15:45:29 -08001365 struct swap_info_struct *si;
Tim Chene8c26ab2017-02-22 15:45:29 -08001366
1367 si = __swap_info_get(entry);
Huang Ying322b8afe2017-05-03 14:52:49 -07001368 if (si)
1369 count = swap_swapcount(si, entry);
Tim Chene8c26ab2017-02-22 15:45:29 -08001370 return count;
1371}
1372
1373/*
1374 * How many references to @entry are currently swapped out?
Minchan Kim8334b962015-09-08 15:00:24 -07001375 * This considers COUNT_CONTINUED so it returns exact answer.
1376 */
1377int swp_swapcount(swp_entry_t entry)
1378{
1379 int count, tmp_count, n;
1380 struct swap_info_struct *p;
Huang, Ying235b6212017-02-22 15:45:22 -08001381 struct swap_cluster_info *ci;
Minchan Kim8334b962015-09-08 15:00:24 -07001382 struct page *page;
1383 pgoff_t offset;
1384 unsigned char *map;
1385
Huang, Ying235b6212017-02-22 15:45:22 -08001386 p = _swap_info_get(entry);
Minchan Kim8334b962015-09-08 15:00:24 -07001387 if (!p)
1388 return 0;
1389
Huang, Ying235b6212017-02-22 15:45:22 -08001390 offset = swp_offset(entry);
1391
1392 ci = lock_cluster_or_swap_info(p, offset);
1393
1394 count = swap_count(p->swap_map[offset]);
Minchan Kim8334b962015-09-08 15:00:24 -07001395 if (!(count & COUNT_CONTINUED))
1396 goto out;
1397
1398 count &= ~COUNT_CONTINUED;
1399 n = SWAP_MAP_MAX + 1;
1400
Minchan Kim8334b962015-09-08 15:00:24 -07001401 page = vmalloc_to_page(p->swap_map + offset);
1402 offset &= ~PAGE_MASK;
1403 VM_BUG_ON(page_private(page) != SWP_CONTINUED);
1404
1405 do {
Geliang Tanga8ae4992016-01-14 15:20:45 -08001406 page = list_next_entry(page, lru);
Minchan Kim8334b962015-09-08 15:00:24 -07001407 map = kmap_atomic(page);
1408 tmp_count = map[offset];
1409 kunmap_atomic(map);
1410
1411 count += (tmp_count & ~COUNT_CONTINUED) * n;
1412 n *= (SWAP_CONT_MAX + 1);
1413 } while (tmp_count & COUNT_CONTINUED);
1414out:
Huang, Ying235b6212017-02-22 15:45:22 -08001415 unlock_cluster_or_swap_info(p, ci);
Minchan Kim8334b962015-09-08 15:00:24 -07001416 return count;
1417}
1418
Huang Yinge0709822017-09-06 16:22:16 -07001419static bool swap_page_trans_huge_swapped(struct swap_info_struct *si,
1420 swp_entry_t entry)
1421{
1422 struct swap_cluster_info *ci;
1423 unsigned char *map = si->swap_map;
1424 unsigned long roffset = swp_offset(entry);
1425 unsigned long offset = round_down(roffset, SWAPFILE_CLUSTER);
1426 int i;
1427 bool ret = false;
1428
1429 ci = lock_cluster_or_swap_info(si, offset);
1430 if (!ci || !cluster_is_huge(ci)) {
Huang Yingafa47112018-08-21 21:52:09 -07001431 if (swap_count(map[roffset]))
Huang Yinge0709822017-09-06 16:22:16 -07001432 ret = true;
1433 goto unlock_out;
1434 }
1435 for (i = 0; i < SWAPFILE_CLUSTER; i++) {
Huang Yingafa47112018-08-21 21:52:09 -07001436 if (swap_count(map[offset + i])) {
Huang Yinge0709822017-09-06 16:22:16 -07001437 ret = true;
1438 break;
1439 }
1440 }
1441unlock_out:
1442 unlock_cluster_or_swap_info(si, ci);
1443 return ret;
1444}
1445
1446static bool page_swapped(struct page *page)
1447{
1448 swp_entry_t entry;
1449 struct swap_info_struct *si;
1450
Huang Yingfe5266d2018-08-21 21:52:05 -07001451 if (!IS_ENABLED(CONFIG_THP_SWAP) || likely(!PageTransCompound(page)))
Huang Yinge0709822017-09-06 16:22:16 -07001452 return page_swapcount(page) != 0;
1453
1454 page = compound_head(page);
1455 entry.val = page_private(page);
1456 si = _swap_info_get(entry);
1457 if (si)
1458 return swap_page_trans_huge_swapped(si, entry);
1459 return false;
1460}
Huang Yingba3c4ce2017-09-06 16:22:19 -07001461
1462static int page_trans_huge_map_swapcount(struct page *page, int *total_mapcount,
1463 int *total_swapcount)
1464{
1465 int i, map_swapcount, _total_mapcount, _total_swapcount;
1466 unsigned long offset = 0;
1467 struct swap_info_struct *si;
1468 struct swap_cluster_info *ci = NULL;
1469 unsigned char *map = NULL;
1470 int mapcount, swapcount = 0;
1471
1472 /* hugetlbfs shouldn't call it */
1473 VM_BUG_ON_PAGE(PageHuge(page), page);
1474
Huang Yingfe5266d2018-08-21 21:52:05 -07001475 if (!IS_ENABLED(CONFIG_THP_SWAP) || likely(!PageTransCompound(page))) {
1476 mapcount = page_trans_huge_mapcount(page, total_mapcount);
Huang Yingba3c4ce2017-09-06 16:22:19 -07001477 if (PageSwapCache(page))
1478 swapcount = page_swapcount(page);
1479 if (total_swapcount)
1480 *total_swapcount = swapcount;
1481 return mapcount + swapcount;
1482 }
1483
1484 page = compound_head(page);
1485
1486 _total_mapcount = _total_swapcount = map_swapcount = 0;
1487 if (PageSwapCache(page)) {
1488 swp_entry_t entry;
1489
1490 entry.val = page_private(page);
1491 si = _swap_info_get(entry);
1492 if (si) {
1493 map = si->swap_map;
1494 offset = swp_offset(entry);
1495 }
1496 }
1497 if (map)
1498 ci = lock_cluster(si, offset);
1499 for (i = 0; i < HPAGE_PMD_NR; i++) {
1500 mapcount = atomic_read(&page[i]._mapcount) + 1;
1501 _total_mapcount += mapcount;
1502 if (map) {
1503 swapcount = swap_count(map[offset + i]);
1504 _total_swapcount += swapcount;
1505 }
1506 map_swapcount = max(map_swapcount, mapcount + swapcount);
1507 }
1508 unlock_cluster(ci);
1509 if (PageDoubleMap(page)) {
1510 map_swapcount -= 1;
1511 _total_mapcount -= HPAGE_PMD_NR;
1512 }
1513 mapcount = compound_mapcount(page);
1514 map_swapcount += mapcount;
1515 _total_mapcount += mapcount;
1516 if (total_mapcount)
1517 *total_mapcount = _total_mapcount;
1518 if (total_swapcount)
1519 *total_swapcount = _total_swapcount;
1520
1521 return map_swapcount;
1522}
Huang Yinge0709822017-09-06 16:22:16 -07001523
Minchan Kim8334b962015-09-08 15:00:24 -07001524/*
Hugh Dickins7b1fe592009-01-06 14:39:34 -08001525 * We can write to an anon page without COW if there are no other references
1526 * to it. And as a side-effect, free up its swap: because the old content
1527 * on disk will never be read, and seeking back there to write new content
1528 * later would only waste time away from clustering.
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07001529 *
Huang Yingba3c4ce2017-09-06 16:22:19 -07001530 * NOTE: total_map_swapcount should not be relied upon by the caller if
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07001531 * reuse_swap_page() returns false, but it may be always overwritten
1532 * (see the other implementation for CONFIG_SWAP=n).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001533 */
Huang Yingba3c4ce2017-09-06 16:22:19 -07001534bool reuse_swap_page(struct page *page, int *total_map_swapcount)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535{
Huang Yingba3c4ce2017-09-06 16:22:19 -07001536 int count, total_mapcount, total_swapcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001537
Sasha Levin309381fea2014-01-23 15:52:54 -08001538 VM_BUG_ON_PAGE(!PageLocked(page), page);
Hugh Dickins5ad64682009-12-14 17:59:24 -08001539 if (unlikely(PageKsm(page)))
Andrea Arcangeli6d0a07e2016-05-12 15:42:25 -07001540 return false;
Huang Yingba3c4ce2017-09-06 16:22:19 -07001541 count = page_trans_huge_map_swapcount(page, &total_mapcount,
1542 &total_swapcount);
1543 if (total_map_swapcount)
1544 *total_map_swapcount = total_mapcount + total_swapcount;
1545 if (count == 1 && PageSwapCache(page) &&
1546 (likely(!PageTransCompound(page)) ||
1547 /* The remaining swap count will be freed soon */
1548 total_swapcount == page_swapcount(page))) {
Minchan Kimf0571422017-01-10 16:58:15 -08001549 if (!PageWriteback(page)) {
Huang Yingba3c4ce2017-09-06 16:22:19 -07001550 page = compound_head(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -08001551 delete_from_swap_cache(page);
1552 SetPageDirty(page);
Minchan Kimf0571422017-01-10 16:58:15 -08001553 } else {
1554 swp_entry_t entry;
1555 struct swap_info_struct *p;
1556
1557 entry.val = page_private(page);
1558 p = swap_info_get(entry);
1559 if (p->flags & SWP_STABLE_WRITES) {
1560 spin_unlock(&p->lock);
1561 return false;
1562 }
1563 spin_unlock(&p->lock);
Hugh Dickins7b1fe592009-01-06 14:39:34 -08001564 }
1565 }
Huang Yingba3c4ce2017-09-06 16:22:19 -07001566
Hugh Dickins5ad64682009-12-14 17:59:24 -08001567 return count <= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001568}
1569
1570/*
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08001571 * If swap is getting full, or if there are no more mappings of this page,
1572 * then try_to_free_swap is called to free its swap space.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 */
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08001574int try_to_free_swap(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001575{
Sasha Levin309381fea2014-01-23 15:52:54 -08001576 VM_BUG_ON_PAGE(!PageLocked(page), page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001577
1578 if (!PageSwapCache(page))
1579 return 0;
1580 if (PageWriteback(page))
1581 return 0;
Huang Yinge0709822017-09-06 16:22:16 -07001582 if (page_swapped(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001583 return 0;
1584
Hugh Dickinsb73d7fc2010-09-09 16:38:09 -07001585 /*
1586 * Once hibernation has begun to create its image of memory,
1587 * there's a danger that one of the calls to try_to_free_swap()
1588 * - most probably a call from __try_to_reclaim_swap() while
1589 * hibernation is allocating its own swap pages for the image,
1590 * but conceivably even a call from memory reclaim - will free
1591 * the swap from a page which has already been recorded in the
1592 * image as a clean swapcache page, and then reuse its swap for
1593 * another page of the image. On waking from hibernation, the
1594 * original page might be freed under memory pressure, then
1595 * later read back in from swap, now with the wrong data.
1596 *
Seth Jennings2de1a7e2013-11-12 15:07:46 -08001597 * Hibernation suspends storage while it is writing the image
Mel Gormanf90ac392012-01-10 15:07:15 -08001598 * to disk so check that here.
Hugh Dickinsb73d7fc2010-09-09 16:38:09 -07001599 */
Mel Gormanf90ac392012-01-10 15:07:15 -08001600 if (pm_suspended_storage())
Hugh Dickinsb73d7fc2010-09-09 16:38:09 -07001601 return 0;
1602
Huang Yinge0709822017-09-06 16:22:16 -07001603 page = compound_head(page);
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08001604 delete_from_swap_cache(page);
1605 SetPageDirty(page);
1606 return 1;
Rik van Riel68a223942008-10-18 20:26:23 -07001607}
1608
1609/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 * Free the swap entry like above, but also try to
1611 * free the page cache entry if it is the last user.
1612 */
Hugh Dickins2509ef22009-01-06 14:40:10 -08001613int free_swap_and_cache(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614{
Hugh Dickins2509ef22009-01-06 14:40:10 -08001615 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001616 struct page *page = NULL;
Tim Chen7c00baf2017-02-22 15:45:36 -08001617 unsigned char count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618
Andi Kleena7420aa2009-09-16 11:50:05 +02001619 if (non_swap_entry(entry))
Hugh Dickins2509ef22009-01-06 14:40:10 -08001620 return 1;
Christoph Lameter06972122006-06-23 02:03:35 -07001621
Tim Chen7c00baf2017-02-22 15:45:36 -08001622 p = _swap_info_get(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001623 if (p) {
Tim Chen7c00baf2017-02-22 15:45:36 -08001624 count = __swap_entry_free(p, entry, 1);
Huang Yinge0709822017-09-06 16:22:16 -07001625 if (count == SWAP_HAS_CACHE &&
1626 !swap_page_trans_huge_swapped(p, entry)) {
Shaohua Li33806f02013-02-22 16:34:37 -08001627 page = find_get_page(swap_address_space(entry),
Huang Yingf6ab1f72016-10-07 17:00:21 -07001628 swp_offset(entry));
Nick Piggin8413ac92008-10-18 20:26:59 -07001629 if (page && !trylock_page(page)) {
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001630 put_page(page);
Nick Piggin93fac702006-03-31 02:29:56 -08001631 page = NULL;
1632 }
Tim Chen7c00baf2017-02-22 15:45:36 -08001633 } else if (!count)
Tim Chen67afa382017-02-22 15:45:39 -08001634 free_swap_slot(entry);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 }
1636 if (page) {
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -08001637 /*
1638 * Not mapped elsewhere, or swap space full? Free it!
1639 * Also recheck PageSwapCache now page is locked (above).
1640 */
Nick Piggin93fac702006-03-31 02:29:56 -08001641 if (PageSwapCache(page) && !PageWriteback(page) &&
Huang Ying322b8afe2017-05-03 14:52:49 -07001642 (!page_mapped(page) || mem_cgroup_swap_full(page)) &&
Huang Yinge0709822017-09-06 16:22:16 -07001643 !swap_page_trans_huge_swapped(p, entry)) {
1644 page = compound_head(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001645 delete_from_swap_cache(page);
1646 SetPageDirty(page);
1647 }
1648 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03001649 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001650 }
Hugh Dickins2509ef22009-01-06 14:40:10 -08001651 return p != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001652}
1653
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001654#ifdef CONFIG_HIBERNATION
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001655/*
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001656 * Find the swap type that corresponds to given device (if any).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001657 *
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001658 * @offset - number of the PAGE_SIZE-sized block of the device, starting
1659 * from 0, in which the swap header is expected to be located.
1660 *
1661 * This is needed for the suspend to disk (aka swsusp).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001662 */
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -08001663int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001664{
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001665 struct block_device *bdev = NULL;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001666 int type;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001667
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001668 if (device)
1669 bdev = bdget(device);
1670
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001671 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001672 for (type = 0; type < nr_swapfiles; type++) {
1673 struct swap_info_struct *sis = swap_info[type];
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001674
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001675 if (!(sis->flags & SWP_WRITEOK))
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001676 continue;
Rafael J. Wysockib6b5bce2006-08-27 01:23:25 -07001677
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001678 if (!bdev) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -08001679 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +02001680 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -08001681
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -08001682 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001683 return type;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -08001684 }
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001685 if (bdev == sis->bdev) {
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001686 struct swap_extent *se = &sis->first_swap_extent;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001687
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001688 if (se->start_block == offset) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -08001689 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +02001690 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -08001691
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001692 spin_unlock(&swap_lock);
1693 bdput(bdev);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001694 return type;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001695 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001696 }
1697 }
1698 spin_unlock(&swap_lock);
Rafael J. Wysocki915bae92006-12-06 20:34:07 -08001699 if (bdev)
1700 bdput(bdev);
1701
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001702 return -ENODEV;
1703}
1704
1705/*
Hugh Dickins73c34b62009-12-14 17:58:43 -08001706 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
1707 * corresponding to given index in swap_info (swap type).
1708 */
1709sector_t swapdev_block(int type, pgoff_t offset)
1710{
1711 struct block_device *bdev;
1712
1713 if ((unsigned int)type >= nr_swapfiles)
1714 return 0;
1715 if (!(swap_info[type]->flags & SWP_WRITEOK))
1716 return 0;
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001717 return map_swap_entry(swp_entry(type, offset), &bdev);
Hugh Dickins73c34b62009-12-14 17:58:43 -08001718}
1719
1720/*
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001721 * Return either the total number of swap pages of given type, or the number
1722 * of free pages of that type (depending on @free)
1723 *
1724 * This is needed for software suspend
1725 */
1726unsigned int count_swap_pages(int type, int free)
1727{
1728 unsigned int n = 0;
1729
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001730 spin_lock(&swap_lock);
1731 if ((unsigned int)type < nr_swapfiles) {
1732 struct swap_info_struct *sis = swap_info[type];
1733
Shaohua Liec8acf22013-02-22 16:34:38 -08001734 spin_lock(&sis->lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001735 if (sis->flags & SWP_WRITEOK) {
1736 n = sis->pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001737 if (free)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001738 n -= sis->inuse_pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001739 }
Shaohua Liec8acf22013-02-22 16:34:38 -08001740 spin_unlock(&sis->lock);
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001741 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001742 spin_unlock(&swap_lock);
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001743 return n;
1744}
Hugh Dickins73c34b62009-12-14 17:58:43 -08001745#endif /* CONFIG_HIBERNATION */
Rafael J. Wysockif577eb32006-03-23 02:59:59 -08001746
Hugh Dickins9f8bdb32016-01-15 16:57:34 -08001747static inline int pte_same_as_swp(pte_t pte, pte_t swp_pte)
Cyrill Gorcunov179ef712013-08-13 16:00:49 -07001748{
Hugh Dickins9f8bdb32016-01-15 16:57:34 -08001749 return pte_same(pte_swp_clear_soft_dirty(pte), swp_pte);
Cyrill Gorcunov179ef712013-08-13 16:00:49 -07001750}
1751
Linus Torvalds1da177e2005-04-16 15:20:36 -07001752/*
Hugh Dickins72866f62005-10-29 18:15:55 -07001753 * No need to decide whether this PTE shares the swap entry with others,
1754 * just let do_wp_page work it out if a write is requested later - to
1755 * force COW, vm_page_prot omits write permission from any private vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001756 */
Hugh Dickins044d66c2008-02-07 00:14:04 -08001757static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 unsigned long addr, swp_entry_t entry, struct page *page)
1759{
Hugh Dickins9e16b7f2013-02-22 16:36:09 -08001760 struct page *swapcache;
Johannes Weiner72835c82012-01-12 17:18:32 -08001761 struct mem_cgroup *memcg;
Hugh Dickins044d66c2008-02-07 00:14:04 -08001762 spinlock_t *ptl;
1763 pte_t *pte;
1764 int ret = 1;
1765
Hugh Dickins9e16b7f2013-02-22 16:36:09 -08001766 swapcache = page;
1767 page = ksm_might_need_to_copy(page, vma, addr);
1768 if (unlikely(!page))
1769 return -ENOMEM;
1770
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001771 if (mem_cgroup_try_charge(page, vma->vm_mm, GFP_KERNEL,
1772 &memcg, false)) {
Hugh Dickins044d66c2008-02-07 00:14:04 -08001773 ret = -ENOMEM;
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -08001774 goto out_nolock;
1775 }
Hugh Dickins044d66c2008-02-07 00:14:04 -08001776
1777 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
Hugh Dickins9f8bdb32016-01-15 16:57:34 -08001778 if (unlikely(!pte_same_as_swp(*pte, swp_entry_to_pte(entry)))) {
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001779 mem_cgroup_cancel_charge(page, memcg, false);
Hugh Dickins044d66c2008-02-07 00:14:04 -08001780 ret = 0;
1781 goto out;
1782 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001783
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -08001784 dec_mm_counter(vma->vm_mm, MM_SWAPENTS);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -08001785 inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001786 get_page(page);
1787 set_pte_at(vma->vm_mm, addr, pte,
1788 pte_mkold(mk_pte(page, vma->vm_page_prot)));
Johannes Weiner00501b52014-08-08 14:19:20 -07001789 if (page == swapcache) {
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001790 page_add_anon_rmap(page, vma, addr, false);
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001791 mem_cgroup_commit_charge(page, memcg, true, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001792 } else { /* ksm created a completely new copy */
Kirill A. Shutemovd281ee62016-01-15 16:52:16 -08001793 page_add_new_anon_rmap(page, vma, addr, false);
Kirill A. Shutemovf627c2f2016-01-15 16:52:20 -08001794 mem_cgroup_commit_charge(page, memcg, false, false);
Johannes Weiner00501b52014-08-08 14:19:20 -07001795 lru_cache_add_active_or_unevictable(page, vma);
1796 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001797 swap_free(entry);
1798 /*
1799 * Move the page to the active list so it is not
1800 * immediately swapped out again after swapon.
1801 */
1802 activate_page(page);
Hugh Dickins044d66c2008-02-07 00:14:04 -08001803out:
1804 pte_unmap_unlock(pte, ptl);
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -08001805out_nolock:
Hugh Dickins9e16b7f2013-02-22 16:36:09 -08001806 if (page != swapcache) {
1807 unlock_page(page);
1808 put_page(page);
1809 }
Hugh Dickins044d66c2008-02-07 00:14:04 -08001810 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001811}
1812
1813static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
1814 unsigned long addr, unsigned long end,
1815 swp_entry_t entry, struct page *page)
1816{
Linus Torvalds1da177e2005-04-16 15:20:36 -07001817 pte_t swp_pte = swp_entry_to_pte(entry);
Hugh Dickins705e87c2005-10-29 18:16:27 -07001818 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001819 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001820
Hugh Dickins044d66c2008-02-07 00:14:04 -08001821 /*
1822 * We don't actually need pte lock while scanning for swp_pte: since
1823 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
1824 * page table while we're scanning; though it could get zapped, and on
1825 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
1826 * of unmatched parts which look like swp_pte, so unuse_pte must
1827 * recheck under pte lock. Scanning without pte lock lets it be
Seth Jennings2de1a7e2013-11-12 15:07:46 -08001828 * preemptable whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
Hugh Dickins044d66c2008-02-07 00:14:04 -08001829 */
1830 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 do {
1832 /*
1833 * swapoff spends a _lot_ of time in this loop!
1834 * Test inline before going to call unuse_pte.
1835 */
Hugh Dickins9f8bdb32016-01-15 16:57:34 -08001836 if (unlikely(pte_same_as_swp(*pte, swp_pte))) {
Hugh Dickins044d66c2008-02-07 00:14:04 -08001837 pte_unmap(pte);
1838 ret = unuse_pte(vma, pmd, addr, entry, page);
1839 if (ret)
1840 goto out;
1841 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001842 }
1843 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins044d66c2008-02-07 00:14:04 -08001844 pte_unmap(pte - 1);
1845out:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001846 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001847}
1848
1849static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
1850 unsigned long addr, unsigned long end,
1851 swp_entry_t entry, struct page *page)
1852{
1853 pmd_t *pmd;
1854 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001855 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001856
1857 pmd = pmd_offset(pud, addr);
1858 do {
Hugh Dickinsdc644a02016-12-12 16:44:44 -08001859 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001860 next = pmd_addr_end(addr, end);
Andrea Arcangeli1a5a9902012-03-21 16:33:42 -07001861 if (pmd_none_or_trans_huge_or_clear_bad(pmd))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001862 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001863 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
1864 if (ret)
1865 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001866 } while (pmd++, addr = next, addr != end);
1867 return 0;
1868}
1869
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001870static inline int unuse_pud_range(struct vm_area_struct *vma, p4d_t *p4d,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001871 unsigned long addr, unsigned long end,
1872 swp_entry_t entry, struct page *page)
1873{
1874 pud_t *pud;
1875 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001876 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001878 pud = pud_offset(p4d, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001879 do {
1880 next = pud_addr_end(addr, end);
1881 if (pud_none_or_clear_bad(pud))
1882 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001883 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
1884 if (ret)
1885 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001886 } while (pud++, addr = next, addr != end);
1887 return 0;
1888}
1889
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001890static inline int unuse_p4d_range(struct vm_area_struct *vma, pgd_t *pgd,
1891 unsigned long addr, unsigned long end,
1892 swp_entry_t entry, struct page *page)
1893{
1894 p4d_t *p4d;
1895 unsigned long next;
1896 int ret;
1897
1898 p4d = p4d_offset(pgd, addr);
1899 do {
1900 next = p4d_addr_end(addr, end);
1901 if (p4d_none_or_clear_bad(p4d))
1902 continue;
1903 ret = unuse_pud_range(vma, p4d, addr, next, entry, page);
1904 if (ret)
1905 return ret;
1906 } while (p4d++, addr = next, addr != end);
1907 return 0;
1908}
1909
Linus Torvalds1da177e2005-04-16 15:20:36 -07001910static int unuse_vma(struct vm_area_struct *vma,
1911 swp_entry_t entry, struct page *page)
1912{
1913 pgd_t *pgd;
1914 unsigned long addr, end, next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001915 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001916
Hugh Dickins3ca7b3c2009-12-14 17:58:57 -08001917 if (page_anon_vma(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001918 addr = page_address_in_vma(page, vma);
1919 if (addr == -EFAULT)
1920 return 0;
1921 else
1922 end = addr + PAGE_SIZE;
1923 } else {
1924 addr = vma->vm_start;
1925 end = vma->vm_end;
1926 }
1927
1928 pgd = pgd_offset(vma->vm_mm, addr);
1929 do {
1930 next = pgd_addr_end(addr, end);
1931 if (pgd_none_or_clear_bad(pgd))
1932 continue;
Kirill A. Shutemovc2febaf2017-03-09 17:24:07 +03001933 ret = unuse_p4d_range(vma, pgd, addr, next, entry, page);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001934 if (ret)
1935 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001936 } while (pgd++, addr = next, addr != end);
1937 return 0;
1938}
1939
1940static int unuse_mm(struct mm_struct *mm,
1941 swp_entry_t entry, struct page *page)
1942{
1943 struct vm_area_struct *vma;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001944 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001945
1946 if (!down_read_trylock(&mm->mmap_sem)) {
1947 /*
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07001948 * Activate page so shrink_inactive_list is unlikely to unmap
1949 * its ptes while lock is dropped, so swapoff can make progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001950 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001951 activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001952 unlock_page(page);
1953 down_read(&mm->mmap_sem);
1954 lock_page(page);
1955 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001956 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001957 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001958 break;
Hugh Dickinsdc644a02016-12-12 16:44:44 -08001959 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07001960 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001961 up_read(&mm->mmap_sem);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001962 return (ret < 0)? ret: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001963}
1964
1965/*
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06001966 * Scan swap_map (or frontswap_map if frontswap parameter is true)
1967 * from current position to next entry still in use.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001968 * Recycle to start on reaching the end, returning 0 when empty.
1969 */
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001970static unsigned int find_next_to_unuse(struct swap_info_struct *si,
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06001971 unsigned int prev, bool frontswap)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001972{
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001973 unsigned int max = si->max;
1974 unsigned int i = prev;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001975 unsigned char count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976
1977 /*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001978 * No need for swap_lock here: we're just looking
Linus Torvalds1da177e2005-04-16 15:20:36 -07001979 * for whether an entry is in use, not modifying it; false
1980 * hits are okay, and sys_swapoff() has already prevented new
Hugh Dickins5d337b92005-09-03 15:54:41 -07001981 * allocations from this area (while holding swap_lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001982 */
1983 for (;;) {
1984 if (++i >= max) {
1985 if (!prev) {
1986 i = 0;
1987 break;
1988 }
1989 /*
1990 * No entries in use at top of swap_map,
1991 * loop back to start and recheck there.
1992 */
1993 max = prev + 1;
1994 prev = 0;
1995 i = 1;
1996 }
Jason Low4db0c3c2015-04-15 16:14:08 -07001997 count = READ_ONCE(si->swap_map[i]);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001998 if (count && swap_count(count) != SWAP_MAP_BAD)
Hugh Dickinsdc644a02016-12-12 16:44:44 -08001999 if (!frontswap || frontswap_test(si, i))
2000 break;
2001 if ((i % LATENCY_LIMIT) == 0)
2002 cond_resched();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002003 }
2004 return i;
2005}
2006
2007/*
2008 * We completely avoid races by reading each swap page in advance,
2009 * and then search for the process using it. All the necessary
2010 * page table adjustments can then be made atomically.
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06002011 *
2012 * if the boolean frontswap is true, only unuse pages_to_unuse pages;
2013 * pages_to_unuse==0 means all pages; ignored if frontswap is false
Linus Torvalds1da177e2005-04-16 15:20:36 -07002014 */
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06002015int try_to_unuse(unsigned int type, bool frontswap,
2016 unsigned long pages_to_unuse)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002017{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002018 struct swap_info_struct *si = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002019 struct mm_struct *start_mm;
Shaohua Liedfe23d2013-09-11 14:20:31 -07002020 volatile unsigned char *swap_map; /* swap_map is accessed without
2021 * locking. Mark it as volatile
2022 * to prevent compiler doing
2023 * something odd.
2024 */
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002025 unsigned char swcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002026 struct page *page;
2027 swp_entry_t entry;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07002028 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002029 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002030
2031 /*
2032 * When searching mms for an entry, a good strategy is to
2033 * start at the first mm we freed the previous entry from
2034 * (though actually we don't notice whether we or coincidence
2035 * freed the entry). Initialize this start_mm with a hold.
2036 *
2037 * A simpler strategy would be to start at the last mm we
2038 * freed the previous entry from; but that would take less
2039 * advantage of mmlist ordering, which clusters forked mms
2040 * together, child after parent. If we race with dup_mmap(), we
2041 * prefer to resolve parent before child, lest we miss entries
2042 * duplicated after we scanned child: using last mm would invert
Hugh Dickins570a335b2009-12-14 17:58:46 -08002043 * that.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002044 */
2045 start_mm = &init_mm;
Vegard Nossum3fce3712017-02-27 14:30:10 -08002046 mmget(&init_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047
2048 /*
2049 * Keep on scanning until all entries have gone. Usually,
2050 * one pass through swap_map is enough, but not necessarily:
2051 * there are races when an instance of an entry might be missed.
2052 */
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06002053 while ((i = find_next_to_unuse(si, i, frontswap)) != 0) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002054 if (signal_pending(current)) {
2055 retval = -EINTR;
2056 break;
2057 }
2058
Hugh Dickins886bb7e2009-01-06 14:39:48 -08002059 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002060 * Get a page for the entry, using the existing swap
2061 * cache page if there is one. Otherwise, get a clean
Hugh Dickins886bb7e2009-01-06 14:39:48 -08002062 * page and read the swap into it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002063 */
2064 swap_map = &si->swap_map[i];
2065 entry = swp_entry(type, i);
Hugh Dickins02098fe2008-02-04 22:28:42 -08002066 page = read_swap_cache_async(entry,
Shaohua Li23955622017-07-10 15:47:11 -07002067 GFP_HIGHUSER_MOVABLE, NULL, 0, false);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 if (!page) {
2069 /*
2070 * Either swap_duplicate() failed because entry
2071 * has been freed independently, and will not be
2072 * reused since sys_swapoff() already disabled
2073 * allocation from here, or alloc_page() failed.
2074 */
Shaohua Liedfe23d2013-09-11 14:20:31 -07002075 swcount = *swap_map;
2076 /*
2077 * We don't hold lock here, so the swap entry could be
2078 * SWAP_MAP_BAD (when the cluster is discarding).
2079 * Instead of fail out, We can just skip the swap
2080 * entry because swapoff will wait for discarding
2081 * finish anyway.
2082 */
2083 if (!swcount || swcount == SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 continue;
2085 retval = -ENOMEM;
2086 break;
2087 }
2088
2089 /*
2090 * Don't hold on to start_mm if it looks like exiting.
2091 */
2092 if (atomic_read(&start_mm->mm_users) == 1) {
2093 mmput(start_mm);
2094 start_mm = &init_mm;
Vegard Nossum3fce3712017-02-27 14:30:10 -08002095 mmget(&init_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002096 }
2097
2098 /*
2099 * Wait for and lock page. When do_swap_page races with
2100 * try_to_unuse, do_swap_page can handle the fault much
2101 * faster than try_to_unuse can locate the entry. This
2102 * apparently redundant "wait_on_page_locked" lets try_to_unuse
2103 * defer to do_swap_page in such a case - in some tests,
2104 * do_swap_page and try_to_unuse repeatedly compete.
2105 */
2106 wait_on_page_locked(page);
2107 wait_on_page_writeback(page);
2108 lock_page(page);
2109 wait_on_page_writeback(page);
2110
2111 /*
2112 * Remove all references to entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002113 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002114 swcount = *swap_map;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002115 if (swap_count(swcount) == SWAP_MAP_SHMEM) {
2116 retval = shmem_unuse(entry, page);
2117 /* page has already been unlocked and released */
2118 if (retval < 0)
2119 break;
2120 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 }
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002122 if (swap_count(swcount) && start_mm != &init_mm)
2123 retval = unuse_mm(start_mm, entry, page);
2124
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002125 if (swap_count(*swap_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002126 int set_start_mm = (*swap_map >= swcount);
2127 struct list_head *p = &start_mm->mmlist;
2128 struct mm_struct *new_start_mm = start_mm;
2129 struct mm_struct *prev_mm = start_mm;
2130 struct mm_struct *mm;
2131
Vegard Nossum3fce3712017-02-27 14:30:10 -08002132 mmget(new_start_mm);
2133 mmget(prev_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 spin_lock(&mmlist_lock);
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002135 while (swap_count(*swap_map) && !retval &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07002136 (p = p->next) != &start_mm->mmlist) {
2137 mm = list_entry(p, struct mm_struct, mmlist);
Vegard Nossum388f7932017-02-27 14:30:13 -08002138 if (!mmget_not_zero(mm))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002139 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002140 spin_unlock(&mmlist_lock);
2141 mmput(prev_mm);
2142 prev_mm = mm;
2143
2144 cond_resched();
2145
2146 swcount = *swap_map;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002147 if (!swap_count(swcount)) /* any usage ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 ;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002149 else if (mm == &init_mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002150 set_start_mm = 1;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002151 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07002152 retval = unuse_mm(mm, entry, page);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002153
Bo Liu32c5fc12009-11-02 16:50:33 +00002154 if (set_start_mm && *swap_map < swcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002155 mmput(new_start_mm);
Vegard Nossum3fce3712017-02-27 14:30:10 -08002156 mmget(mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002157 new_start_mm = mm;
2158 set_start_mm = 0;
2159 }
2160 spin_lock(&mmlist_lock);
2161 }
2162 spin_unlock(&mmlist_lock);
2163 mmput(prev_mm);
2164 mmput(start_mm);
2165 start_mm = new_start_mm;
2166 }
2167 if (retval) {
2168 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002169 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170 break;
2171 }
2172
2173 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002174 * If a reference remains (rare), we would like to leave
2175 * the page in the swap cache; but try_to_unmap could
2176 * then re-duplicate the entry once we drop page lock,
2177 * so we might loop indefinitely; also, that page could
2178 * not be swapped out to other storage meanwhile. So:
2179 * delete from cache even if there's another reference,
2180 * after ensuring that the data has been saved to disk -
2181 * since if the reference remains (rarer), it will be
2182 * read from disk into another page. Splitting into two
2183 * pages would be incorrect if swap supported "shared
2184 * private" pages, but they are handled by tmpfs files.
Hugh Dickins5ad64682009-12-14 17:59:24 -08002185 *
2186 * Given how unuse_vma() targets one particular offset
2187 * in an anon_vma, once the anon_vma has been determined,
2188 * this splitting happens to be just what is needed to
2189 * handle where KSM pages have been swapped out: re-reading
2190 * is unnecessarily slow, but we can fix that later on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002191 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002192 if (swap_count(*swap_map) &&
2193 PageDirty(page) && PageSwapCache(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002194 struct writeback_control wbc = {
2195 .sync_mode = WB_SYNC_NONE,
2196 };
2197
Huang Yinge0709822017-09-06 16:22:16 -07002198 swap_writepage(compound_head(page), &wbc);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002199 lock_page(page);
2200 wait_on_page_writeback(page);
2201 }
Hugh Dickins68bdc8d2009-01-06 14:39:37 -08002202
2203 /*
2204 * It is conceivable that a racing task removed this page from
2205 * swap cache just before we acquired the page lock at the top,
2206 * or while we dropped it in unuse_mm(). The page might even
2207 * be back in swap cache on another swap area: that we must not
2208 * delete, since it may not have been written out to swap yet.
2209 */
2210 if (PageSwapCache(page) &&
Huang Yinge0709822017-09-06 16:22:16 -07002211 likely(page_private(page) == entry.val) &&
2212 !page_swapped(page))
2213 delete_from_swap_cache(compound_head(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -07002214
2215 /*
2216 * So we could skip searching mms once swap count went
2217 * to 1, we did not mark any present ptes as dirty: must
Anderson Briglia2706a1b2007-07-15 23:38:09 -07002218 * mark page dirty so shrink_page_list will preserve it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219 */
2220 SetPageDirty(page);
2221 unlock_page(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03002222 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002223
2224 /*
2225 * Make sure that we aren't completely killing
2226 * interactive performance.
2227 */
2228 cond_resched();
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06002229 if (frontswap && pages_to_unuse > 0) {
2230 if (!--pages_to_unuse)
2231 break;
2232 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002233 }
2234
2235 mmput(start_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002236 return retval;
2237}
2238
2239/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07002240 * After a successful try_to_unuse, if no swap is now in use, we know
2241 * we can empty the mmlist. swap_lock must be held on entry and exit.
2242 * Note that mmlist_lock nests inside swap_lock, and an mm must be
Linus Torvalds1da177e2005-04-16 15:20:36 -07002243 * added to the mmlist just after page_duplicate - before would be racy.
2244 */
2245static void drain_mmlist(void)
2246{
2247 struct list_head *p, *next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002248 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002250 for (type = 0; type < nr_swapfiles; type++)
2251 if (swap_info[type]->inuse_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002252 return;
2253 spin_lock(&mmlist_lock);
2254 list_for_each_safe(p, next, &init_mm.mmlist)
2255 list_del_init(p);
2256 spin_unlock(&mmlist_lock);
2257}
2258
2259/*
2260 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
Lee Schermerhornd4906e12009-12-14 17:58:49 -08002261 * corresponds to page offset for the specified swap entry.
2262 * Note that the type of this function is sector_t, but it returns page offset
2263 * into the bdev, not sector offset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002264 */
Lee Schermerhornd4906e12009-12-14 17:58:49 -08002265static sector_t map_swap_entry(swp_entry_t entry, struct block_device **bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002266{
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08002267 struct swap_info_struct *sis;
2268 struct swap_extent *start_se;
2269 struct swap_extent *se;
2270 pgoff_t offset;
2271
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002272 sis = swap_info[swp_type(entry)];
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08002273 *bdev = sis->bdev;
2274
2275 offset = swp_offset(entry);
2276 start_se = sis->curr_swap_extent;
2277 se = start_se;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002278
2279 for ( ; ; ) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002280 if (se->start_page <= offset &&
2281 offset < (se->start_page + se->nr_pages)) {
2282 return se->start_block + (offset - se->start_page);
2283 }
Geliang Tanga8ae4992016-01-14 15:20:45 -08002284 se = list_next_entry(se, list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002285 sis->curr_swap_extent = se;
2286 BUG_ON(se == start_se); /* It *must* be present */
2287 }
2288}
2289
2290/*
Lee Schermerhornd4906e12009-12-14 17:58:49 -08002291 * Returns the page offset into bdev for the specified page's swap entry.
2292 */
2293sector_t map_swap_page(struct page *page, struct block_device **bdev)
2294{
2295 swp_entry_t entry;
2296 entry.val = page_private(page);
2297 return map_swap_entry(entry, bdev);
2298}
2299
2300/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07002301 * Free all of a swapdev's extent information
2302 */
2303static void destroy_swap_extents(struct swap_info_struct *sis)
2304{
Hugh Dickins9625a5f2009-12-14 17:58:42 -08002305 while (!list_empty(&sis->first_swap_extent.list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 struct swap_extent *se;
2307
Geliang Tanga8ae4992016-01-14 15:20:45 -08002308 se = list_first_entry(&sis->first_swap_extent.list,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002309 struct swap_extent, list);
2310 list_del(&se->list);
2311 kfree(se);
2312 }
Mel Gorman62c230b2012-07-31 16:44:55 -07002313
2314 if (sis->flags & SWP_FILE) {
2315 struct file *swap_file = sis->swap_file;
2316 struct address_space *mapping = swap_file->f_mapping;
2317
2318 sis->flags &= ~SWP_FILE;
2319 mapping->a_ops->swap_deactivate(swap_file);
2320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321}
2322
2323/*
2324 * Add a block range (and the corresponding page range) into this swapdev's
Hugh Dickins11d31882005-09-03 15:54:34 -07002325 * extent list. The extent list is kept sorted in page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002326 *
Hugh Dickins11d31882005-09-03 15:54:34 -07002327 * This function rather assumes that it is called in ascending page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07002328 */
Mel Gormana509bc12012-07-31 16:44:57 -07002329int
Linus Torvalds1da177e2005-04-16 15:20:36 -07002330add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
2331 unsigned long nr_pages, sector_t start_block)
2332{
2333 struct swap_extent *se;
2334 struct swap_extent *new_se;
2335 struct list_head *lh;
2336
Hugh Dickins9625a5f2009-12-14 17:58:42 -08002337 if (start_page == 0) {
2338 se = &sis->first_swap_extent;
2339 sis->curr_swap_extent = se;
2340 se->start_page = 0;
2341 se->nr_pages = nr_pages;
2342 se->start_block = start_block;
2343 return 1;
2344 } else {
2345 lh = sis->first_swap_extent.list.prev; /* Highest extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002346 se = list_entry(lh, struct swap_extent, list);
Hugh Dickins11d31882005-09-03 15:54:34 -07002347 BUG_ON(se->start_page + se->nr_pages != start_page);
2348 if (se->start_block + se->nr_pages == start_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002349 /* Merge it */
2350 se->nr_pages += nr_pages;
2351 return 0;
2352 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002353 }
2354
2355 /*
2356 * No merge. Insert a new extent, preserving ordering.
2357 */
2358 new_se = kmalloc(sizeof(*se), GFP_KERNEL);
2359 if (new_se == NULL)
2360 return -ENOMEM;
2361 new_se->start_page = start_page;
2362 new_se->nr_pages = nr_pages;
2363 new_se->start_block = start_block;
2364
Hugh Dickins9625a5f2009-12-14 17:58:42 -08002365 list_add_tail(&new_se->list, &sis->first_swap_extent.list);
Hugh Dickins53092a72005-09-03 15:54:34 -07002366 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002367}
2368
2369/*
2370 * A `swap extent' is a simple thing which maps a contiguous range of pages
2371 * onto a contiguous range of disk blocks. An ordered list of swap extents
2372 * is built at swapon time and is then used at swap_writepage/swap_readpage
2373 * time for locating where on disk a page belongs.
2374 *
2375 * If the swapfile is an S_ISBLK block device, a single extent is installed.
2376 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
2377 * swap files identically.
2378 *
2379 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
2380 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
2381 * swapfiles are handled *identically* after swapon time.
2382 *
2383 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
2384 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
2385 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
2386 * requirements, they are simply tossed out - we will never use those blocks
2387 * for swapping.
2388 *
Hugh Dickinsb0d9bcd2005-09-03 15:54:31 -07002389 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07002390 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
2391 * which will scribble on the fs.
2392 *
2393 * The amount of disk space which a single swap extent represents varies.
2394 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
2395 * extents in the list. To avoid much list walking, we cache the previous
2396 * search location in `curr_swap_extent', and start new searches from there.
2397 * This is extremely effective. The average number of iterations in
2398 * map_swap_page() has been measured at about 0.3 per page. - akpm.
2399 */
Hugh Dickins53092a72005-09-03 15:54:34 -07002400static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002401{
Mel Gorman62c230b2012-07-31 16:44:55 -07002402 struct file *swap_file = sis->swap_file;
2403 struct address_space *mapping = swap_file->f_mapping;
2404 struct inode *inode = mapping->host;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002405 int ret;
2406
Linus Torvalds1da177e2005-04-16 15:20:36 -07002407 if (S_ISBLK(inode->i_mode)) {
2408 ret = add_swap_extent(sis, 0, sis->max, 0);
Hugh Dickins53092a72005-09-03 15:54:34 -07002409 *span = sis->pages;
Mel Gormana509bc12012-07-31 16:44:57 -07002410 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002411 }
2412
Mel Gorman62c230b2012-07-31 16:44:55 -07002413 if (mapping->a_ops->swap_activate) {
Mel Gormana509bc12012-07-31 16:44:57 -07002414 ret = mapping->a_ops->swap_activate(sis, swap_file, span);
Mel Gorman62c230b2012-07-31 16:44:55 -07002415 if (!ret) {
2416 sis->flags |= SWP_FILE;
2417 ret = add_swap_extent(sis, 0, sis->max, 0);
2418 *span = sis->pages;
2419 }
Mel Gormana509bc12012-07-31 16:44:57 -07002420 return ret;
Mel Gorman62c230b2012-07-31 16:44:55 -07002421 }
2422
Mel Gormana509bc12012-07-31 16:44:57 -07002423 return generic_swapfile_activate(sis, swap_file, span);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002424}
2425
Aaron Lua2468cc2017-09-06 16:24:57 -07002426static int swap_node(struct swap_info_struct *p)
2427{
2428 struct block_device *bdev;
2429
2430 if (p->bdev)
2431 bdev = p->bdev;
2432 else
2433 bdev = p->swap_file->f_inode->i_sb->s_bdev;
2434
2435 return bdev ? bdev->bd_disk->node_id : NUMA_NO_NODE;
2436}
2437
Cesar Eduardo Barroscf0cac02012-12-11 16:01:13 -08002438static void _enable_swap_info(struct swap_info_struct *p, int prio,
Shaohua Li2a8f9442013-09-11 14:20:28 -07002439 unsigned char *swap_map,
2440 struct swap_cluster_info *cluster_info)
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07002441{
Aaron Lua2468cc2017-09-06 16:24:57 -07002442 int i;
2443
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07002444 if (prio >= 0)
2445 p->prio = prio;
2446 else
2447 p->prio = --least_priority;
Dan Streetman18ab4d42014-06-04 16:09:59 -07002448 /*
2449 * the plist prio is negated because plist ordering is
2450 * low-to-high, while swap ordering is high-to-low
2451 */
2452 p->list.prio = -p->prio;
Aaron Lua2468cc2017-09-06 16:24:57 -07002453 for_each_node(i) {
2454 if (p->prio >= 0)
2455 p->avail_lists[i].prio = -p->prio;
2456 else {
2457 if (swap_node(p) == i)
2458 p->avail_lists[i].prio = 1;
2459 else
2460 p->avail_lists[i].prio = -p->prio;
2461 }
2462 }
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07002463 p->swap_map = swap_map;
Shaohua Li2a8f9442013-09-11 14:20:28 -07002464 p->cluster_info = cluster_info;
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07002465 p->flags |= SWP_WRITEOK;
Shaohua Liec8acf22013-02-22 16:34:38 -08002466 atomic_long_add(p->pages, &nr_swap_pages);
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07002467 total_swap_pages += p->pages;
2468
Dan Streetmanadfab832014-06-04 16:09:53 -07002469 assert_spin_locked(&swap_lock);
Dan Streetmanadfab832014-06-04 16:09:53 -07002470 /*
Dan Streetman18ab4d42014-06-04 16:09:59 -07002471 * both lists are plists, and thus priority ordered.
2472 * swap_active_head needs to be priority ordered for swapoff(),
2473 * which on removal of any swap_info_struct with an auto-assigned
2474 * (i.e. negative) priority increments the auto-assigned priority
2475 * of any lower-priority swap_info_structs.
2476 * swap_avail_head needs to be priority ordered for get_swap_page(),
2477 * which allocates swap pages from the highest available priority
2478 * swap_info_struct.
Dan Streetmanadfab832014-06-04 16:09:53 -07002479 */
Dan Streetman18ab4d42014-06-04 16:09:59 -07002480 plist_add(&p->list, &swap_active_head);
Aaron Lua2468cc2017-09-06 16:24:57 -07002481 add_to_avail_list(p);
Cesar Eduardo Barroscf0cac02012-12-11 16:01:13 -08002482}
2483
2484static void enable_swap_info(struct swap_info_struct *p, int prio,
2485 unsigned char *swap_map,
Shaohua Li2a8f9442013-09-11 14:20:28 -07002486 struct swap_cluster_info *cluster_info,
Cesar Eduardo Barroscf0cac02012-12-11 16:01:13 -08002487 unsigned long *frontswap_map)
2488{
Minchan Kim4f898492013-04-30 15:26:54 -07002489 frontswap_init(p->type, frontswap_map);
Cesar Eduardo Barroscf0cac02012-12-11 16:01:13 -08002490 spin_lock(&swap_lock);
Shaohua Liec8acf22013-02-22 16:34:38 -08002491 spin_lock(&p->lock);
Shaohua Li2a8f9442013-09-11 14:20:28 -07002492 _enable_swap_info(p, prio, swap_map, cluster_info);
Shaohua Liec8acf22013-02-22 16:34:38 -08002493 spin_unlock(&p->lock);
Cesar Eduardo Barroscf0cac02012-12-11 16:01:13 -08002494 spin_unlock(&swap_lock);
2495}
2496
2497static void reinsert_swap_info(struct swap_info_struct *p)
2498{
2499 spin_lock(&swap_lock);
Shaohua Liec8acf22013-02-22 16:34:38 -08002500 spin_lock(&p->lock);
Shaohua Li2a8f9442013-09-11 14:20:28 -07002501 _enable_swap_info(p, p->prio, p->swap_map, p->cluster_info);
Shaohua Liec8acf22013-02-22 16:34:38 -08002502 spin_unlock(&p->lock);
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07002503 spin_unlock(&swap_lock);
2504}
2505
Tim Chen67afa382017-02-22 15:45:39 -08002506bool has_usable_swap(void)
2507{
2508 bool ret = true;
2509
2510 spin_lock(&swap_lock);
2511 if (plist_head_empty(&swap_active_head))
2512 ret = false;
2513 spin_unlock(&swap_lock);
2514 return ret;
2515}
2516
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01002517SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002518{
Hugh Dickins73c34b62009-12-14 17:58:43 -08002519 struct swap_info_struct *p = NULL;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002520 unsigned char *swap_map;
Shaohua Li2a8f9442013-09-11 14:20:28 -07002521 struct swap_cluster_info *cluster_info;
Minchan Kim4f898492013-04-30 15:26:54 -07002522 unsigned long *frontswap_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002523 struct file *swap_file, *victim;
2524 struct address_space *mapping;
2525 struct inode *inode;
Jeff Layton91a27b22012-10-10 15:25:28 -04002526 struct filename *pathname;
Dan Streetmanadfab832014-06-04 16:09:53 -07002527 int err, found = 0;
Krzysztof Kozlowski5b808a22013-10-16 13:47:06 -07002528 unsigned int old_block_size;
Hugh Dickins886bb7e2009-01-06 14:39:48 -08002529
Linus Torvalds1da177e2005-04-16 15:20:36 -07002530 if (!capable(CAP_SYS_ADMIN))
2531 return -EPERM;
2532
Al Viro191c5422012-02-13 03:58:52 +00002533 BUG_ON(!current->mm);
2534
Linus Torvalds1da177e2005-04-16 15:20:36 -07002535 pathname = getname(specialfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002536 if (IS_ERR(pathname))
Xiaotian Fengf58b59c2012-11-16 14:14:55 -08002537 return PTR_ERR(pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002538
Jeff Layton669abf42012-10-10 16:43:10 -04002539 victim = file_open_name(pathname, O_RDWR|O_LARGEFILE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002540 err = PTR_ERR(victim);
2541 if (IS_ERR(victim))
2542 goto out;
2543
2544 mapping = victim->f_mapping;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002545 spin_lock(&swap_lock);
Dan Streetman18ab4d42014-06-04 16:09:59 -07002546 plist_for_each_entry(p, &swap_active_head, list) {
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08002547 if (p->flags & SWP_WRITEOK) {
Dan Streetmanadfab832014-06-04 16:09:53 -07002548 if (p->swap_file->f_mapping == mapping) {
2549 found = 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002550 break;
Dan Streetmanadfab832014-06-04 16:09:53 -07002551 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002552 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002553 }
Dan Streetmanadfab832014-06-04 16:09:53 -07002554 if (!found) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002555 err = -EINVAL;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002556 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002557 goto out_dput;
2558 }
Al Viro191c5422012-02-13 03:58:52 +00002559 if (!security_vm_enough_memory_mm(current->mm, p->pages))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002560 vm_unacct_memory(p->pages);
2561 else {
2562 err = -ENOMEM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002563 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002564 goto out_dput;
2565 }
Aaron Lua2468cc2017-09-06 16:24:57 -07002566 del_from_avail_list(p);
Shaohua Liec8acf22013-02-22 16:34:38 -08002567 spin_lock(&p->lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07002568 if (p->prio < 0) {
Dan Streetmanadfab832014-06-04 16:09:53 -07002569 struct swap_info_struct *si = p;
Aaron Lua2468cc2017-09-06 16:24:57 -07002570 int nid;
Dan Streetmanadfab832014-06-04 16:09:53 -07002571
Dan Streetman18ab4d42014-06-04 16:09:59 -07002572 plist_for_each_entry_continue(si, &swap_active_head, list) {
Dan Streetmanadfab832014-06-04 16:09:53 -07002573 si->prio++;
Dan Streetman18ab4d42014-06-04 16:09:59 -07002574 si->list.prio--;
Aaron Lua2468cc2017-09-06 16:24:57 -07002575 for_each_node(nid) {
2576 if (si->avail_lists[nid].prio != 1)
2577 si->avail_lists[nid].prio--;
2578 }
Dan Streetmanadfab832014-06-04 16:09:53 -07002579 }
Hugh Dickins78ecba02008-07-23 21:28:23 -07002580 least_priority++;
2581 }
Dan Streetman18ab4d42014-06-04 16:09:59 -07002582 plist_del(&p->list, &swap_active_head);
Shaohua Liec8acf22013-02-22 16:34:38 -08002583 atomic_long_sub(p->pages, &nr_swap_pages);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002584 total_swap_pages -= p->pages;
2585 p->flags &= ~SWP_WRITEOK;
Shaohua Liec8acf22013-02-22 16:34:38 -08002586 spin_unlock(&p->lock);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002587 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07002588
Tim Chen039939a2017-02-22 15:45:43 -08002589 disable_swap_slots_cache_lock();
2590
David Rientjese1e12d22012-12-11 16:02:56 -08002591 set_current_oom_origin();
Dan Streetmanadfab832014-06-04 16:09:53 -07002592 err = try_to_unuse(p->type, false, 0); /* force unuse all pages */
David Rientjese1e12d22012-12-11 16:02:56 -08002593 clear_current_oom_origin();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002594
Linus Torvalds1da177e2005-04-16 15:20:36 -07002595 if (err) {
2596 /* re-insert swap space back into swap_list */
Cesar Eduardo Barroscf0cac02012-12-11 16:01:13 -08002597 reinsert_swap_info(p);
Tim Chen039939a2017-02-22 15:45:43 -08002598 reenable_swap_slots_cache_unlock();
Linus Torvalds1da177e2005-04-16 15:20:36 -07002599 goto out_dput;
2600 }
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07002601
Tim Chen039939a2017-02-22 15:45:43 -08002602 reenable_swap_slots_cache_unlock();
2603
Shaohua Li815c2c52013-09-11 14:20:30 -07002604 flush_work(&p->discard_work);
2605
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07002606 destroy_swap_extents(p);
Hugh Dickins570a335b2009-12-14 17:58:46 -08002607 if (p->flags & SWP_CONTINUED)
2608 free_swap_count_continuations(p);
2609
Huang Ying81a02982017-09-06 16:24:43 -07002610 if (!p->bdev || !blk_queue_nonrot(bdev_get_queue(p->bdev)))
2611 atomic_dec(&nr_rotate_swap);
2612
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002613 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002614 spin_lock(&swap_lock);
Shaohua Liec8acf22013-02-22 16:34:38 -08002615 spin_lock(&p->lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002616 drain_mmlist();
Hugh Dickins5d337b92005-09-03 15:54:41 -07002617
2618 /* wait for anyone still in scan_swap_map */
2619 p->highest_bit = 0; /* cuts scans short */
2620 while (p->flags >= SWP_SCANNING) {
Shaohua Liec8acf22013-02-22 16:34:38 -08002621 spin_unlock(&p->lock);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002622 spin_unlock(&swap_lock);
Nishanth Aravamudan13e4b572005-09-10 00:27:25 -07002623 schedule_timeout_uninterruptible(1);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002624 spin_lock(&swap_lock);
Shaohua Liec8acf22013-02-22 16:34:38 -08002625 spin_lock(&p->lock);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002626 }
2627
Linus Torvalds1da177e2005-04-16 15:20:36 -07002628 swap_file = p->swap_file;
Krzysztof Kozlowski5b808a22013-10-16 13:47:06 -07002629 old_block_size = p->old_block_size;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002630 p->swap_file = NULL;
2631 p->max = 0;
2632 swap_map = p->swap_map;
2633 p->swap_map = NULL;
Shaohua Li2a8f9442013-09-11 14:20:28 -07002634 cluster_info = p->cluster_info;
2635 p->cluster_info = NULL;
Minchan Kim4f898492013-04-30 15:26:54 -07002636 frontswap_map = frontswap_map_get(p);
Shaohua Liec8acf22013-02-22 16:34:38 -08002637 spin_unlock(&p->lock);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002638 spin_unlock(&swap_lock);
Dan Streetmanadfab832014-06-04 16:09:53 -07002639 frontswap_invalidate_area(p->type);
Krzysztof Kozlowski58e97ba2013-11-12 15:07:47 -08002640 frontswap_map_set(p, NULL);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002641 mutex_unlock(&swapon_mutex);
Shaohua Liebc2a1a2013-09-11 14:20:32 -07002642 free_percpu(p->percpu_cluster);
2643 p->percpu_cluster = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002644 vfree(swap_map);
Huang Ying54f180d2017-05-08 15:57:40 -07002645 kvfree(cluster_info);
2646 kvfree(frontswap_map);
Seth Jennings2de1a7e2013-11-12 15:07:46 -08002647 /* Destroy swap account information */
Dan Streetmanadfab832014-06-04 16:09:53 -07002648 swap_cgroup_swapoff(p->type);
Huang, Ying4b3ef9d2017-02-22 15:45:26 -08002649 exit_swap_address_space(p->type);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08002650
Linus Torvalds1da177e2005-04-16 15:20:36 -07002651 inode = mapping->host;
2652 if (S_ISBLK(inode->i_mode)) {
2653 struct block_device *bdev = I_BDEV(inode);
Krzysztof Kozlowski5b808a22013-10-16 13:47:06 -07002654 set_blocksize(bdev, old_block_size);
Tejun Heoe525fd82010-11-13 11:55:17 +01002655 blkdev_put(bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002656 } else {
Al Viro59551022016-01-22 15:40:57 -05002657 inode_lock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002658 inode->i_flags &= ~S_SWAPFILE;
Al Viro59551022016-01-22 15:40:57 -05002659 inode_unlock(inode);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002660 }
2661 filp_close(swap_file, NULL);
Weijie Yangf893ab42014-02-06 12:04:23 -08002662
2663 /*
2664 * Clear the SWP_USED flag after all resources are freed so that swapon
2665 * can reuse this swap_info in alloc_swap_info() safely. It is ok to
2666 * not hold p->lock after we cleared its SWP_WRITEOK.
2667 */
2668 spin_lock(&swap_lock);
2669 p->flags = 0;
2670 spin_unlock(&swap_lock);
2671
Linus Torvalds1da177e2005-04-16 15:20:36 -07002672 err = 0;
Kay Sievers66d7dd52010-10-26 14:22:06 -07002673 atomic_inc(&proc_poll_event);
2674 wake_up_interruptible(&proc_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002675
2676out_dput:
2677 filp_close(victim, NULL);
2678out:
Xiaotian Fengf58b59c2012-11-16 14:14:55 -08002679 putname(pathname);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002680 return err;
2681}
2682
2683#ifdef CONFIG_PROC_FS
Al Viro9dd95742017-07-03 00:42:43 -04002684static __poll_t swaps_poll(struct file *file, poll_table *wait)
Kay Sievers66d7dd52010-10-26 14:22:06 -07002685{
Kay Sieversf1514632011-07-12 20:48:39 +02002686 struct seq_file *seq = file->private_data;
Kay Sievers66d7dd52010-10-26 14:22:06 -07002687
2688 poll_wait(file, &proc_poll_wait, wait);
2689
Kay Sieversf1514632011-07-12 20:48:39 +02002690 if (seq->poll_event != atomic_read(&proc_poll_event)) {
2691 seq->poll_event = atomic_read(&proc_poll_event);
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002692 return EPOLLIN | EPOLLRDNORM | EPOLLERR | EPOLLPRI;
Kay Sievers66d7dd52010-10-26 14:22:06 -07002693 }
2694
Linus Torvaldsa9a08842018-02-11 14:34:03 -08002695 return EPOLLIN | EPOLLRDNORM;
Kay Sievers66d7dd52010-10-26 14:22:06 -07002696}
2697
Linus Torvalds1da177e2005-04-16 15:20:36 -07002698/* iterator */
2699static void *swap_start(struct seq_file *swap, loff_t *pos)
2700{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002701 struct swap_info_struct *si;
2702 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002703 loff_t l = *pos;
2704
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002705 mutex_lock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002706
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08002707 if (!l)
2708 return SEQ_START_TOKEN;
2709
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002710 for (type = 0; type < nr_swapfiles; type++) {
2711 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
2712 si = swap_info[type];
2713 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002714 continue;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08002715 if (!--l)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002716 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002717 }
2718
2719 return NULL;
2720}
2721
2722static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
2723{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002724 struct swap_info_struct *si = v;
2725 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002726
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08002727 if (v == SEQ_START_TOKEN)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002728 type = 0;
2729 else
2730 type = si->type + 1;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08002731
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002732 for (; type < nr_swapfiles; type++) {
2733 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
2734 si = swap_info[type];
2735 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002736 continue;
2737 ++*pos;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002738 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002739 }
2740
2741 return NULL;
2742}
2743
2744static void swap_stop(struct seq_file *swap, void *v)
2745{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002746 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002747}
2748
2749static int swap_show(struct seq_file *swap, void *v)
2750{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002751 struct swap_info_struct *si = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002752 struct file *file;
2753 int len;
2754
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002755 if (si == SEQ_START_TOKEN) {
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08002756 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
2757 return 0;
2758 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002759
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002760 file = si->swap_file;
Miklos Szeredi2726d562015-06-19 10:30:28 +02002761 len = seq_file_path(swap, file, " \t\n\\");
Hugh Dickins6eb396d2005-09-03 15:54:35 -07002762 seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
Hugh Dickins886bb7e2009-01-06 14:39:48 -08002763 len < 40 ? 40 - len : 1, " ",
Al Viro496ad9a2013-01-23 17:07:38 -05002764 S_ISBLK(file_inode(file)->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07002765 "partition" : "file\t",
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002766 si->pages << (PAGE_SHIFT - 10),
2767 si->inuse_pages << (PAGE_SHIFT - 10),
2768 si->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002769 return 0;
2770}
2771
Helge Deller15ad7cd2006-12-06 20:40:36 -08002772static const struct seq_operations swaps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002773 .start = swap_start,
2774 .next = swap_next,
2775 .stop = swap_stop,
2776 .show = swap_show
2777};
2778
2779static int swaps_open(struct inode *inode, struct file *file)
2780{
Kay Sieversf1514632011-07-12 20:48:39 +02002781 struct seq_file *seq;
Kay Sievers66d7dd52010-10-26 14:22:06 -07002782 int ret;
2783
Kay Sievers66d7dd52010-10-26 14:22:06 -07002784 ret = seq_open(file, &swaps_op);
Kay Sieversf1514632011-07-12 20:48:39 +02002785 if (ret)
Kay Sievers66d7dd52010-10-26 14:22:06 -07002786 return ret;
Kay Sievers66d7dd52010-10-26 14:22:06 -07002787
Kay Sieversf1514632011-07-12 20:48:39 +02002788 seq = file->private_data;
2789 seq->poll_event = atomic_read(&proc_poll_event);
2790 return 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002791}
2792
Helge Deller15ad7cd2006-12-06 20:40:36 -08002793static const struct file_operations proc_swaps_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002794 .open = swaps_open,
2795 .read = seq_read,
2796 .llseek = seq_lseek,
2797 .release = seq_release,
Kay Sievers66d7dd52010-10-26 14:22:06 -07002798 .poll = swaps_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07002799};
2800
2801static int __init procswaps_init(void)
2802{
Denis V. Lunev3d71f862008-04-29 01:02:13 -07002803 proc_create("swaps", 0, NULL, &proc_swaps_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002804 return 0;
2805}
2806__initcall(procswaps_init);
2807#endif /* CONFIG_PROC_FS */
2808
Jan Beulich17963162008-12-16 11:35:24 +00002809#ifdef MAX_SWAPFILES_CHECK
2810static int __init max_swapfiles_check(void)
2811{
2812 MAX_SWAPFILES_CHECK();
2813 return 0;
2814}
2815late_initcall(max_swapfiles_check);
2816#endif
2817
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07002818static struct swap_info_struct *alloc_swap_info(void)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002819{
Hugh Dickins73c34b62009-12-14 17:58:43 -08002820 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002821 unsigned int type;
Aaron Lua2468cc2017-09-06 16:24:57 -07002822 int i;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002823
2824 p = kzalloc(sizeof(*p), GFP_KERNEL);
2825 if (!p)
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07002826 return ERR_PTR(-ENOMEM);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002827
Hugh Dickins5d337b92005-09-03 15:54:41 -07002828 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002829 for (type = 0; type < nr_swapfiles; type++) {
2830 if (!(swap_info[type]->flags & SWP_USED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07002831 break;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002832 }
Christoph Lameter06972122006-06-23 02:03:35 -07002833 if (type >= MAX_SWAPFILES) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07002834 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002835 kfree(p);
Cesar Eduardo Barros730c0582011-03-22 16:33:19 -07002836 return ERR_PTR(-EPERM);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002837 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002838 if (type >= nr_swapfiles) {
2839 p->type = type;
2840 swap_info[type] = p;
2841 /*
2842 * Write swap_info[type] before nr_swapfiles, in case a
2843 * racing procfs swap_start() or swap_next() is reading them.
2844 * (We never shrink nr_swapfiles, we never free this entry.)
2845 */
2846 smp_wmb();
2847 nr_swapfiles++;
2848 } else {
2849 kfree(p);
2850 p = swap_info[type];
2851 /*
2852 * Do not memset this entry: a racing procfs swap_next()
2853 * would be relying on p->type to remain valid.
2854 */
2855 }
Hugh Dickins9625a5f2009-12-14 17:58:42 -08002856 INIT_LIST_HEAD(&p->first_swap_extent.list);
Dan Streetman18ab4d42014-06-04 16:09:59 -07002857 plist_node_init(&p->list, 0);
Aaron Lua2468cc2017-09-06 16:24:57 -07002858 for_each_node(i)
2859 plist_node_init(&p->avail_lists[i], 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002860 p->flags = SWP_USED;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002861 spin_unlock(&swap_lock);
Shaohua Liec8acf22013-02-22 16:34:38 -08002862 spin_lock_init(&p->lock);
Huang Ying2628bd62017-11-02 15:59:50 -07002863 spin_lock_init(&p->cont_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002864
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07002865 return p;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07002866}
2867
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07002868static int claim_swapfile(struct swap_info_struct *p, struct inode *inode)
2869{
2870 int error;
2871
2872 if (S_ISBLK(inode->i_mode)) {
2873 p->bdev = bdgrab(I_BDEV(inode));
2874 error = blkdev_get(p->bdev,
Hugh Dickins6f179af2015-08-17 17:34:27 -07002875 FMODE_READ | FMODE_WRITE | FMODE_EXCL, p);
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07002876 if (error < 0) {
2877 p->bdev = NULL;
Hugh Dickins6f179af2015-08-17 17:34:27 -07002878 return error;
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07002879 }
2880 p->old_block_size = block_size(p->bdev);
2881 error = set_blocksize(p->bdev, PAGE_SIZE);
2882 if (error < 0)
Cesar Eduardo Barros87ade722011-03-22 16:33:27 -07002883 return error;
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07002884 p->flags |= SWP_BLKDEV;
2885 } else if (S_ISREG(inode->i_mode)) {
2886 p->bdev = inode->i_sb->s_bdev;
Al Viro59551022016-01-22 15:40:57 -05002887 inode_lock(inode);
Cesar Eduardo Barros87ade722011-03-22 16:33:27 -07002888 if (IS_SWAPFILE(inode))
2889 return -EBUSY;
2890 } else
2891 return -EINVAL;
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07002892
2893 return 0;
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07002894}
2895
Andi Kleen377eeaa2018-06-13 15:48:28 -07002896
2897/*
2898 * Find out how many pages are allowed for a single swap device. There
2899 * are two limiting factors:
2900 * 1) the number of bits for the swap offset in the swp_entry_t type, and
2901 * 2) the number of bits in the swap pte, as defined by the different
2902 * architectures.
2903 *
2904 * In order to find the largest possible bit mask, a swap entry with
2905 * swap type 0 and swap offset ~0UL is created, encoded to a swap pte,
2906 * decoded to a swp_entry_t again, and finally the swap offset is
2907 * extracted.
2908 *
2909 * This will mask all the bits from the initial ~0UL mask that can't
2910 * be encoded in either the swp_entry_t or the architecture definition
2911 * of a swap pte.
2912 */
2913unsigned long generic_max_swapfile_size(void)
2914{
2915 return swp_offset(pte_to_swp_entry(
2916 swp_entry_to_pte(swp_entry(0, ~0UL)))) + 1;
2917}
2918
2919/* Can be overridden by an architecture for additional checks. */
2920__weak unsigned long max_swapfile_size(void)
2921{
2922 return generic_max_swapfile_size();
2923}
2924
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002925static unsigned long read_swap_header(struct swap_info_struct *p,
2926 union swap_header *swap_header,
2927 struct inode *inode)
2928{
2929 int i;
2930 unsigned long maxpages;
2931 unsigned long swapfilepages;
Raymond Jenningsd6bbbd22013-09-11 14:20:16 -07002932 unsigned long last_page;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002933
2934 if (memcmp("SWAPSPACE2", swap_header->magic.magic, 10)) {
Andrew Morton465c47f2013-09-11 14:20:17 -07002935 pr_err("Unable to find swap-space signature\n");
Cesar Eduardo Barros38719022011-03-22 16:33:30 -07002936 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002937 }
2938
2939 /* swap partition endianess hack... */
2940 if (swab32(swap_header->info.version) == 1) {
2941 swab32s(&swap_header->info.version);
2942 swab32s(&swap_header->info.last_page);
2943 swab32s(&swap_header->info.nr_badpages);
Jann Horndd111be2016-11-10 10:46:19 -08002944 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
2945 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002946 for (i = 0; i < swap_header->info.nr_badpages; i++)
2947 swab32s(&swap_header->info.badpages[i]);
2948 }
2949 /* Check the swap header's sub-version */
2950 if (swap_header->info.version != 1) {
Andrew Morton465c47f2013-09-11 14:20:17 -07002951 pr_warn("Unable to handle swap header version %d\n",
2952 swap_header->info.version);
Cesar Eduardo Barros38719022011-03-22 16:33:30 -07002953 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002954 }
2955
2956 p->lowest_bit = 1;
2957 p->cluster_next = 1;
2958 p->cluster_nr = 0;
2959
Andi Kleen377eeaa2018-06-13 15:48:28 -07002960 maxpages = max_swapfile_size();
Raymond Jenningsd6bbbd22013-09-11 14:20:16 -07002961 last_page = swap_header->info.last_page;
Tom Abrahama06ad632018-04-10 16:29:48 -07002962 if (!last_page) {
2963 pr_warn("Empty swap-file\n");
2964 return 0;
2965 }
Raymond Jenningsd6bbbd22013-09-11 14:20:16 -07002966 if (last_page > maxpages) {
Andrew Morton465c47f2013-09-11 14:20:17 -07002967 pr_warn("Truncating oversized swap area, only using %luk out of %luk\n",
Raymond Jenningsd6bbbd22013-09-11 14:20:16 -07002968 maxpages << (PAGE_SHIFT - 10),
2969 last_page << (PAGE_SHIFT - 10));
2970 }
2971 if (maxpages > last_page) {
2972 maxpages = last_page + 1;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002973 /* p->max is an unsigned int: don't overflow it */
2974 if ((unsigned int)maxpages == 0)
2975 maxpages = UINT_MAX;
2976 }
2977 p->highest_bit = maxpages - 1;
2978
2979 if (!maxpages)
Cesar Eduardo Barros38719022011-03-22 16:33:30 -07002980 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002981 swapfilepages = i_size_read(inode) >> PAGE_SHIFT;
2982 if (swapfilepages && maxpages > swapfilepages) {
Andrew Morton465c47f2013-09-11 14:20:17 -07002983 pr_warn("Swap area shorter than signature indicates\n");
Cesar Eduardo Barros38719022011-03-22 16:33:30 -07002984 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002985 }
2986 if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
Cesar Eduardo Barros38719022011-03-22 16:33:30 -07002987 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002988 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
Cesar Eduardo Barros38719022011-03-22 16:33:30 -07002989 return 0;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002990
2991 return maxpages;
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07002992}
2993
Huang, Ying4b3ef9d2017-02-22 15:45:26 -08002994#define SWAP_CLUSTER_INFO_COLS \
Huang, Ying235b6212017-02-22 15:45:22 -08002995 DIV_ROUND_UP(L1_CACHE_BYTES, sizeof(struct swap_cluster_info))
Huang, Ying4b3ef9d2017-02-22 15:45:26 -08002996#define SWAP_CLUSTER_SPACE_COLS \
2997 DIV_ROUND_UP(SWAP_ADDRESS_SPACE_PAGES, SWAPFILE_CLUSTER)
2998#define SWAP_CLUSTER_COLS \
2999 max_t(unsigned int, SWAP_CLUSTER_INFO_COLS, SWAP_CLUSTER_SPACE_COLS)
Huang, Ying235b6212017-02-22 15:45:22 -08003000
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003001static int setup_swap_map_and_extents(struct swap_info_struct *p,
3002 union swap_header *swap_header,
3003 unsigned char *swap_map,
Shaohua Li2a8f9442013-09-11 14:20:28 -07003004 struct swap_cluster_info *cluster_info,
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003005 unsigned long maxpages,
3006 sector_t *span)
3007{
Huang, Ying235b6212017-02-22 15:45:22 -08003008 unsigned int j, k;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003009 unsigned int nr_good_pages;
3010 int nr_extents;
Shaohua Li2a8f9442013-09-11 14:20:28 -07003011 unsigned long nr_clusters = DIV_ROUND_UP(maxpages, SWAPFILE_CLUSTER);
Huang, Ying235b6212017-02-22 15:45:22 -08003012 unsigned long col = p->cluster_next / SWAPFILE_CLUSTER % SWAP_CLUSTER_COLS;
3013 unsigned long i, idx;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003014
3015 nr_good_pages = maxpages - 1; /* omit header page */
3016
Huang Ying6b534912016-10-07 16:58:42 -07003017 cluster_list_init(&p->free_clusters);
3018 cluster_list_init(&p->discard_clusters);
Shaohua Li2a8f9442013-09-11 14:20:28 -07003019
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003020 for (i = 0; i < swap_header->info.nr_badpages; i++) {
3021 unsigned int page_nr = swap_header->info.badpages[i];
Cesar Eduardo Barrosbdb8e3f2011-03-22 16:33:33 -07003022 if (page_nr == 0 || page_nr > swap_header->info.last_page)
3023 return -EINVAL;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003024 if (page_nr < maxpages) {
3025 swap_map[page_nr] = SWAP_MAP_BAD;
3026 nr_good_pages--;
Shaohua Li2a8f9442013-09-11 14:20:28 -07003027 /*
3028 * Haven't marked the cluster free yet, no list
3029 * operation involved
3030 */
3031 inc_cluster_info_page(p, cluster_info, page_nr);
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003032 }
3033 }
3034
Shaohua Li2a8f9442013-09-11 14:20:28 -07003035 /* Haven't marked the cluster free yet, no list operation involved */
3036 for (i = maxpages; i < round_up(maxpages, SWAPFILE_CLUSTER); i++)
3037 inc_cluster_info_page(p, cluster_info, i);
3038
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003039 if (nr_good_pages) {
3040 swap_map[0] = SWAP_MAP_BAD;
Shaohua Li2a8f9442013-09-11 14:20:28 -07003041 /*
3042 * Not mark the cluster free yet, no list
3043 * operation involved
3044 */
3045 inc_cluster_info_page(p, cluster_info, 0);
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003046 p->max = maxpages;
3047 p->pages = nr_good_pages;
3048 nr_extents = setup_swap_extents(p, span);
Cesar Eduardo Barrosbdb8e3f2011-03-22 16:33:33 -07003049 if (nr_extents < 0)
3050 return nr_extents;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003051 nr_good_pages = p->pages;
3052 }
3053 if (!nr_good_pages) {
Andrew Morton465c47f2013-09-11 14:20:17 -07003054 pr_warn("Empty swap-file\n");
Cesar Eduardo Barrosbdb8e3f2011-03-22 16:33:33 -07003055 return -EINVAL;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003056 }
3057
Shaohua Li2a8f9442013-09-11 14:20:28 -07003058 if (!cluster_info)
3059 return nr_extents;
3060
Huang, Ying235b6212017-02-22 15:45:22 -08003061
Huang, Ying4b3ef9d2017-02-22 15:45:26 -08003062 /*
3063 * Reduce false cache line sharing between cluster_info and
3064 * sharing same address space.
3065 */
Huang, Ying235b6212017-02-22 15:45:22 -08003066 for (k = 0; k < SWAP_CLUSTER_COLS; k++) {
3067 j = (k + col) % SWAP_CLUSTER_COLS;
3068 for (i = 0; i < DIV_ROUND_UP(nr_clusters, SWAP_CLUSTER_COLS); i++) {
3069 idx = i * SWAP_CLUSTER_COLS + j;
3070 if (idx >= nr_clusters)
3071 continue;
3072 if (cluster_count(&cluster_info[idx]))
3073 continue;
Shaohua Li2a8f9442013-09-11 14:20:28 -07003074 cluster_set_flag(&cluster_info[idx], CLUSTER_FLAG_FREE);
Huang Ying6b534912016-10-07 16:58:42 -07003075 cluster_list_add_tail(&p->free_clusters, cluster_info,
3076 idx);
Shaohua Li2a8f9442013-09-11 14:20:28 -07003077 }
Shaohua Li2a8f9442013-09-11 14:20:28 -07003078 }
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003079 return nr_extents;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003080}
3081
Rafael Aquinidcf6b7d2013-07-03 15:02:46 -07003082/*
3083 * Helper to sys_swapon determining if a given swap
3084 * backing device queue supports DISCARD operations.
3085 */
3086static bool swap_discardable(struct swap_info_struct *si)
3087{
3088 struct request_queue *q = bdev_get_queue(si->bdev);
3089
3090 if (!q || !blk_queue_discard(q))
3091 return false;
3092
3093 return true;
3094}
3095
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003096SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
3097{
3098 struct swap_info_struct *p;
Jeff Layton91a27b22012-10-10 15:25:28 -04003099 struct filename *name;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003100 struct file *swap_file = NULL;
3101 struct address_space *mapping;
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07003102 int prio;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003103 int error;
3104 union swap_header *swap_header;
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003105 int nr_extents;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003106 sector_t span;
3107 unsigned long maxpages;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003108 unsigned char *swap_map = NULL;
Shaohua Li2a8f9442013-09-11 14:20:28 -07003109 struct swap_cluster_info *cluster_info = NULL;
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06003110 unsigned long *frontswap_map = NULL;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003111 struct page *page = NULL;
3112 struct inode *inode = NULL;
Omar Sandoval7cbf3192018-05-25 14:47:17 -07003113 bool inced_nr_rotate_swap = false;
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003114
Hugh Dickinsd15cab92012-03-28 14:42:42 -07003115 if (swap_flags & ~SWAP_FLAGS_VALID)
3116 return -EINVAL;
3117
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003118 if (!capable(CAP_SYS_ADMIN))
3119 return -EPERM;
3120
Aaron Lua2468cc2017-09-06 16:24:57 -07003121 if (!swap_avail_heads)
3122 return -ENOMEM;
3123
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003124 p = alloc_swap_info();
Cesar Eduardo Barros2542e5132011-03-22 16:33:18 -07003125 if (IS_ERR(p))
3126 return PTR_ERR(p);
Cesar Eduardo Barros53cbb242011-03-22 16:33:17 -07003127
Shaohua Li815c2c52013-09-11 14:20:30 -07003128 INIT_WORK(&p->discard_work, swap_discard_work);
3129
Linus Torvalds1da177e2005-04-16 15:20:36 -07003130 name = getname(specialfile);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003131 if (IS_ERR(name)) {
Cesar Eduardo Barros7de7fb62011-03-22 16:33:22 -07003132 error = PTR_ERR(name);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003133 name = NULL;
Cesar Eduardo Barrosbd690102011-03-22 16:33:25 -07003134 goto bad_swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003135 }
Jeff Layton669abf42012-10-10 16:43:10 -04003136 swap_file = file_open_name(name, O_RDWR|O_LARGEFILE, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003137 if (IS_ERR(swap_file)) {
Cesar Eduardo Barros7de7fb62011-03-22 16:33:22 -07003138 error = PTR_ERR(swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003139 swap_file = NULL;
Cesar Eduardo Barrosbd690102011-03-22 16:33:25 -07003140 goto bad_swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003141 }
3142
3143 p->swap_file = swap_file;
3144 mapping = swap_file->f_mapping;
Cesar Eduardo Barros21307812011-03-22 23:03:13 -03003145 inode = mapping->host;
Hugh Dickins6f179af2015-08-17 17:34:27 -07003146
Al Viro59551022016-01-22 15:40:57 -05003147 /* If S_ISREG(inode->i_mode) will do inode_lock(inode); */
Cesar Eduardo Barros4d0e1e12011-03-22 16:33:26 -07003148 error = claim_swapfile(p, inode);
3149 if (unlikely(error))
Linus Torvalds1da177e2005-04-16 15:20:36 -07003150 goto bad_swap;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003151
Linus Torvalds1da177e2005-04-16 15:20:36 -07003152 /*
3153 * Read the swap header.
3154 */
3155 if (!mapping->a_ops->readpage) {
3156 error = -EINVAL;
3157 goto bad_swap;
3158 }
Pekka Enberg090d2b12006-06-23 02:05:08 -07003159 page = read_mapping_page(mapping, 0, swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003160 if (IS_ERR(page)) {
3161 error = PTR_ERR(page);
3162 goto bad_swap;
3163 }
Hugh Dickins81e33972009-01-06 14:39:49 -08003164 swap_header = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003165
Cesar Eduardo Barrosca8bd382011-03-22 16:33:29 -07003166 maxpages = read_swap_header(p, swap_header, inode);
3167 if (unlikely(!maxpages)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07003168 error = -EINVAL;
3169 goto bad_swap;
3170 }
Hugh Dickins886bb7e2009-01-06 14:39:48 -08003171
Hugh Dickins81e33972009-01-06 14:39:49 -08003172 /* OK, set up the swap map and apply the bad block list */
Cesar Eduardo Barros803d0c832011-03-22 16:33:14 -07003173 swap_map = vzalloc(maxpages);
Hugh Dickins81e33972009-01-06 14:39:49 -08003174 if (!swap_map) {
3175 error = -ENOMEM;
3176 goto bad_swap;
3177 }
Minchan Kimf0571422017-01-10 16:58:15 -08003178
3179 if (bdi_cap_stable_pages_required(inode_to_bdi(inode)))
3180 p->flags |= SWP_STABLE_WRITES;
3181
Minchan Kim539a6fe2017-11-15 17:33:04 -08003182 if (bdi_cap_synchronous_io(inode_to_bdi(inode)))
3183 p->flags |= SWP_SYNCHRONOUS_IO;
3184
Shaohua Li2a8f9442013-09-11 14:20:28 -07003185 if (p->bdev && blk_queue_nonrot(bdev_get_queue(p->bdev))) {
Hugh Dickins6f179af2015-08-17 17:34:27 -07003186 int cpu;
Huang, Ying235b6212017-02-22 15:45:22 -08003187 unsigned long ci, nr_cluster;
Hugh Dickins6f179af2015-08-17 17:34:27 -07003188
Shaohua Li2a8f9442013-09-11 14:20:28 -07003189 p->flags |= SWP_SOLIDSTATE;
3190 /*
3191 * select a random position to start with to help wear leveling
3192 * SSD
3193 */
3194 p->cluster_next = 1 + (prandom_u32() % p->highest_bit);
Huang, Ying235b6212017-02-22 15:45:22 -08003195 nr_cluster = DIV_ROUND_UP(maxpages, SWAPFILE_CLUSTER);
Shaohua Li2a8f9442013-09-11 14:20:28 -07003196
Kees Cook778e1cd2018-06-12 14:04:48 -07003197 cluster_info = kvcalloc(nr_cluster, sizeof(*cluster_info),
Huang Ying54f180d2017-05-08 15:57:40 -07003198 GFP_KERNEL);
Shaohua Li2a8f9442013-09-11 14:20:28 -07003199 if (!cluster_info) {
3200 error = -ENOMEM;
3201 goto bad_swap;
3202 }
Huang, Ying235b6212017-02-22 15:45:22 -08003203
3204 for (ci = 0; ci < nr_cluster; ci++)
3205 spin_lock_init(&((cluster_info + ci)->lock));
3206
Shaohua Liebc2a1a2013-09-11 14:20:32 -07003207 p->percpu_cluster = alloc_percpu(struct percpu_cluster);
3208 if (!p->percpu_cluster) {
3209 error = -ENOMEM;
3210 goto bad_swap;
3211 }
Hugh Dickins6f179af2015-08-17 17:34:27 -07003212 for_each_possible_cpu(cpu) {
Shaohua Liebc2a1a2013-09-11 14:20:32 -07003213 struct percpu_cluster *cluster;
Hugh Dickins6f179af2015-08-17 17:34:27 -07003214 cluster = per_cpu_ptr(p->percpu_cluster, cpu);
Shaohua Liebc2a1a2013-09-11 14:20:32 -07003215 cluster_set_null(&cluster->index);
3216 }
Omar Sandoval7cbf3192018-05-25 14:47:17 -07003217 } else {
Huang Ying81a02982017-09-06 16:24:43 -07003218 atomic_inc(&nr_rotate_swap);
Omar Sandoval7cbf3192018-05-25 14:47:17 -07003219 inced_nr_rotate_swap = true;
3220 }
Hugh Dickins81e33972009-01-06 14:39:49 -08003221
Cesar Eduardo Barros1421ef32011-03-22 16:33:31 -07003222 error = swap_cgroup_swapon(p->type, maxpages);
3223 if (error)
3224 goto bad_swap;
3225
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003226 nr_extents = setup_swap_map_and_extents(p, swap_header, swap_map,
Shaohua Li2a8f9442013-09-11 14:20:28 -07003227 cluster_info, maxpages, &span);
Cesar Eduardo Barros915d4d72011-03-22 16:33:32 -07003228 if (unlikely(nr_extents < 0)) {
3229 error = nr_extents;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003230 goto bad_swap;
3231 }
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06003232 /* frontswap enabled? set up bit-per-page map for frontswap */
Vlastimil Babka8ea1d2a2016-07-26 15:24:42 -07003233 if (IS_ENABLED(CONFIG_FRONTSWAP))
Kees Cook778e1cd2018-06-12 14:04:48 -07003234 frontswap_map = kvcalloc(BITS_TO_LONGS(maxpages),
3235 sizeof(long),
Huang Ying54f180d2017-05-08 15:57:40 -07003236 GFP_KERNEL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003237
Shaohua Li2a8f9442013-09-11 14:20:28 -07003238 if (p->bdev &&(swap_flags & SWAP_FLAG_DISCARD) && swap_discardable(p)) {
3239 /*
3240 * When discard is enabled for swap with no particular
3241 * policy flagged, we set all swap discard flags here in
3242 * order to sustain backward compatibility with older
3243 * swapon(8) releases.
3244 */
3245 p->flags |= (SWP_DISCARDABLE | SWP_AREA_DISCARD |
3246 SWP_PAGE_DISCARD);
Rafael Aquinidcf6b7d2013-07-03 15:02:46 -07003247
Shaohua Li2a8f9442013-09-11 14:20:28 -07003248 /*
3249 * By flagging sys_swapon, a sysadmin can tell us to
3250 * either do single-time area discards only, or to just
3251 * perform discards for released swap page-clusters.
3252 * Now it's time to adjust the p->flags accordingly.
3253 */
3254 if (swap_flags & SWAP_FLAG_DISCARD_ONCE)
3255 p->flags &= ~SWP_PAGE_DISCARD;
3256 else if (swap_flags & SWAP_FLAG_DISCARD_PAGES)
3257 p->flags &= ~SWP_AREA_DISCARD;
Rafael Aquinidcf6b7d2013-07-03 15:02:46 -07003258
Shaohua Li2a8f9442013-09-11 14:20:28 -07003259 /* issue a swapon-time discard if it's still required */
3260 if (p->flags & SWP_AREA_DISCARD) {
3261 int err = discard_swap(p);
3262 if (unlikely(err))
3263 pr_err("swapon: discard_swap(%p): %d\n",
3264 p, err);
Rafael Aquinidcf6b7d2013-07-03 15:02:46 -07003265 }
Hugh Dickins20137a42009-01-06 14:39:54 -08003266 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -08003267
Huang, Ying4b3ef9d2017-02-22 15:45:26 -08003268 error = init_swap_address_space(p->type, maxpages);
3269 if (error)
3270 goto bad_swap;
3271
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003272 mutex_lock(&swapon_mutex);
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07003273 prio = -1;
Hugh Dickins78ecba02008-07-23 21:28:23 -07003274 if (swap_flags & SWAP_FLAG_PREFER)
Cesar Eduardo Barros40531542011-03-22 16:33:37 -07003275 prio =
Hugh Dickins78ecba02008-07-23 21:28:23 -07003276 (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
Shaohua Li2a8f9442013-09-11 14:20:28 -07003277 enable_swap_info(p, prio, swap_map, cluster_info, frontswap_map);
Cesar Eduardo Barrosc69dbfb2011-03-22 16:33:35 -07003278
Joe Perches756a0252016-03-17 14:19:47 -07003279 pr_info("Adding %uk swap on %s. Priority:%d extents:%d across:%lluk %s%s%s%s%s\n",
Jeff Layton91a27b22012-10-10 15:25:28 -04003280 p->pages<<(PAGE_SHIFT-10), name->name, p->prio,
Cesar Eduardo Barrosc69dbfb2011-03-22 16:33:35 -07003281 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10),
3282 (p->flags & SWP_SOLIDSTATE) ? "SS" : "",
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06003283 (p->flags & SWP_DISCARDABLE) ? "D" : "",
Rafael Aquinidcf6b7d2013-07-03 15:02:46 -07003284 (p->flags & SWP_AREA_DISCARD) ? "s" : "",
3285 (p->flags & SWP_PAGE_DISCARD) ? "c" : "",
Dan Magenheimer38b5faf2012-04-09 17:08:06 -06003286 (frontswap_map) ? "FS" : "");
Cesar Eduardo Barrosc69dbfb2011-03-22 16:33:35 -07003287
Ingo Molnarfc0abb12006-01-18 17:42:33 -08003288 mutex_unlock(&swapon_mutex);
Kay Sievers66d7dd52010-10-26 14:22:06 -07003289 atomic_inc(&proc_poll_event);
3290 wake_up_interruptible(&proc_poll_wait);
3291
Cesar Eduardo Barros9b01c352011-03-22 16:33:24 -07003292 if (S_ISREG(inode->i_mode))
3293 inode->i_flags |= S_SWAPFILE;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003294 error = 0;
3295 goto out;
3296bad_swap:
Shaohua Liebc2a1a2013-09-11 14:20:32 -07003297 free_percpu(p->percpu_cluster);
3298 p->percpu_cluster = NULL;
Cesar Eduardo Barrosbd690102011-03-22 16:33:25 -07003299 if (inode && S_ISBLK(inode->i_mode) && p->bdev) {
Cesar Eduardo Barrosf2090d22011-03-22 16:33:23 -07003300 set_blocksize(p->bdev, p->old_block_size);
3301 blkdev_put(p->bdev, FMODE_READ | FMODE_WRITE | FMODE_EXCL);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003302 }
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07003303 destroy_swap_extents(p);
Cesar Eduardo Barrose8e6c2e2011-03-22 16:33:16 -07003304 swap_cgroup_swapoff(p->type);
Hugh Dickins5d337b92005-09-03 15:54:41 -07003305 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003306 p->swap_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003307 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07003308 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003309 vfree(swap_map);
Darrick J. Wong8606a1a2017-09-08 16:13:25 -07003310 kvfree(cluster_info);
David Rientjesb6b1fd22017-09-08 16:13:29 -07003311 kvfree(frontswap_map);
Omar Sandoval7cbf3192018-05-25 14:47:17 -07003312 if (inced_nr_rotate_swap)
3313 atomic_dec(&nr_rotate_swap);
Mel Gorman52c50562011-03-22 16:30:08 -07003314 if (swap_file) {
Cesar Eduardo Barros21307812011-03-22 23:03:13 -03003315 if (inode && S_ISREG(inode->i_mode)) {
Al Viro59551022016-01-22 15:40:57 -05003316 inode_unlock(inode);
Cesar Eduardo Barros21307812011-03-22 23:03:13 -03003317 inode = NULL;
3318 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003319 filp_close(swap_file, NULL);
Mel Gorman52c50562011-03-22 16:30:08 -07003320 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07003321out:
3322 if (page && !IS_ERR(page)) {
3323 kunmap(page);
Kirill A. Shutemov09cbfea2016-04-01 15:29:47 +03003324 put_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003325 }
3326 if (name)
3327 putname(name);
Cesar Eduardo Barros9b01c352011-03-22 16:33:24 -07003328 if (inode && S_ISREG(inode->i_mode))
Al Viro59551022016-01-22 15:40:57 -05003329 inode_unlock(inode);
Tim Chen039939a2017-02-22 15:45:43 -08003330 if (!error)
3331 enable_swap_slots_cache();
Linus Torvalds1da177e2005-04-16 15:20:36 -07003332 return error;
3333}
3334
3335void si_swapinfo(struct sysinfo *val)
3336{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08003337 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003338 unsigned long nr_to_be_unused = 0;
3339
Hugh Dickins5d337b92005-09-03 15:54:41 -07003340 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08003341 for (type = 0; type < nr_swapfiles; type++) {
3342 struct swap_info_struct *si = swap_info[type];
3343
3344 if ((si->flags & SWP_USED) && !(si->flags & SWP_WRITEOK))
3345 nr_to_be_unused += si->inuse_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003346 }
Shaohua Liec8acf22013-02-22 16:34:38 -08003347 val->freeswap = atomic_long_read(&nr_swap_pages) + nr_to_be_unused;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003348 val->totalswap = total_swap_pages + nr_to_be_unused;
Hugh Dickins5d337b92005-09-03 15:54:41 -07003349 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003350}
3351
3352/*
3353 * Verify that a swap entry is valid and increment its swap map count.
3354 *
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003355 * Returns error code in following case.
3356 * - success -> 0
3357 * - swp_entry is invalid -> EINVAL
3358 * - swp_entry is migration entry -> EINVAL
3359 * - swap-cache reference is requested but there is already one. -> EEXIST
3360 * - swap-cache reference is requested but the entry is not used. -> ENOENT
Hugh Dickins570a335b2009-12-14 17:58:46 -08003361 * - swap-mapped reference requested but needs continued swap count. -> ENOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07003362 */
Hugh Dickins8d69aae2009-12-14 17:58:45 -08003363static int __swap_duplicate(swp_entry_t entry, unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07003364{
Hugh Dickins73c34b62009-12-14 17:58:43 -08003365 struct swap_info_struct *p;
Huang, Ying235b6212017-02-22 15:45:22 -08003366 struct swap_cluster_info *ci;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003367 unsigned long offset, type;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08003368 unsigned char count;
3369 unsigned char has_cache;
Hugh Dickins253d5532009-12-14 17:58:44 -08003370 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003371
Andi Kleena7420aa2009-09-16 11:50:05 +02003372 if (non_swap_entry(entry))
Hugh Dickins253d5532009-12-14 17:58:44 -08003373 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -07003374
Linus Torvalds1da177e2005-04-16 15:20:36 -07003375 type = swp_type(entry);
3376 if (type >= nr_swapfiles)
3377 goto bad_file;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08003378 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07003379 offset = swp_offset(entry);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003380 if (unlikely(offset >= p->max))
Huang, Ying235b6212017-02-22 15:45:22 -08003381 goto out;
3382
3383 ci = lock_cluster_or_swap_info(p, offset);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003384
Hugh Dickins253d5532009-12-14 17:58:44 -08003385 count = p->swap_map[offset];
Shaohua Liedfe23d2013-09-11 14:20:31 -07003386
3387 /*
3388 * swapin_readahead() doesn't check if a swap entry is valid, so the
3389 * swap entry could be SWAP_MAP_BAD. Check here with lock held.
3390 */
3391 if (unlikely(swap_count(count) == SWAP_MAP_BAD)) {
3392 err = -ENOENT;
3393 goto unlock_out;
3394 }
3395
Hugh Dickins253d5532009-12-14 17:58:44 -08003396 has_cache = count & SWAP_HAS_CACHE;
3397 count &= ~SWAP_HAS_CACHE;
3398 err = 0;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003399
Hugh Dickins253d5532009-12-14 17:58:44 -08003400 if (usage == SWAP_HAS_CACHE) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003401
3402 /* set SWAP_HAS_CACHE if there is no cache and entry is used */
Hugh Dickins253d5532009-12-14 17:58:44 -08003403 if (!has_cache && count)
3404 has_cache = SWAP_HAS_CACHE;
3405 else if (has_cache) /* someone else added cache */
3406 err = -EEXIST;
3407 else /* no users remaining */
3408 err = -ENOENT;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003409
3410 } else if (count || has_cache) {
Hugh Dickins253d5532009-12-14 17:58:44 -08003411
Hugh Dickins570a335b2009-12-14 17:58:46 -08003412 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX)
3413 count += usage;
3414 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX)
Hugh Dickins253d5532009-12-14 17:58:44 -08003415 err = -EINVAL;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003416 else if (swap_count_continued(p, offset, count))
3417 count = COUNT_CONTINUED;
3418 else
3419 err = -ENOMEM;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003420 } else
Hugh Dickins253d5532009-12-14 17:58:44 -08003421 err = -ENOENT; /* unused swap entry */
3422
3423 p->swap_map[offset] = count | has_cache;
3424
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003425unlock_out:
Huang, Ying235b6212017-02-22 15:45:22 -08003426 unlock_cluster_or_swap_info(p, ci);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003427out:
Hugh Dickins253d5532009-12-14 17:58:44 -08003428 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07003429
3430bad_file:
Andrew Morton465c47f2013-09-11 14:20:17 -07003431 pr_err("swap_dup: %s%08lx\n", Bad_file, entry.val);
Linus Torvalds1da177e2005-04-16 15:20:36 -07003432 goto out;
3433}
Hugh Dickins253d5532009-12-14 17:58:44 -08003434
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003435/*
Hugh Dickinsaaa46862009-12-14 17:58:47 -08003436 * Help swapoff by noting that swap entry belongs to shmem/tmpfs
3437 * (in which case its reference count is never incremented).
3438 */
3439void swap_shmem_alloc(swp_entry_t entry)
3440{
3441 __swap_duplicate(entry, SWAP_MAP_SHMEM);
3442}
3443
3444/*
Hugh Dickins08259d52010-03-05 13:42:25 -08003445 * Increase reference count of swap entry by 1.
3446 * Returns 0 for success, or -ENOMEM if a swap_count_continuation is required
3447 * but could not be atomically allocated. Returns 0, just as if it succeeded,
3448 * if __swap_duplicate() fails for another reason (-EINVAL or -ENOENT), which
3449 * might occur if a page table entry has got corrupted.
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003450 */
Hugh Dickins570a335b2009-12-14 17:58:46 -08003451int swap_duplicate(swp_entry_t entry)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003452{
Hugh Dickins570a335b2009-12-14 17:58:46 -08003453 int err = 0;
3454
3455 while (!err && __swap_duplicate(entry, 1) == -ENOMEM)
3456 err = add_swap_count_continuation(entry, GFP_ATOMIC);
3457 return err;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003458}
Linus Torvalds1da177e2005-04-16 15:20:36 -07003459
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07003460/*
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003461 * @entry: swap entry for which we allocate swap cache.
3462 *
Hugh Dickins73c34b62009-12-14 17:58:43 -08003463 * Called when allocating swap cache for existing swap entry,
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07003464 * This can return error codes. Returns 0 at success.
3465 * -EBUSY means there is a swap cache.
3466 * Note: return code is different from swap_duplicate().
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07003467 */
3468int swapcache_prepare(swp_entry_t entry)
3469{
Hugh Dickins253d5532009-12-14 17:58:44 -08003470 return __swap_duplicate(entry, SWAP_HAS_CACHE);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07003471}
3472
Minchan Kim0bcac062017-11-15 17:33:07 -08003473struct swap_info_struct *swp_swap_info(swp_entry_t entry)
3474{
3475 return swap_info[swp_type(entry)];
3476}
3477
Mel Gormanf981c592012-07-31 16:44:47 -07003478struct swap_info_struct *page_swap_info(struct page *page)
3479{
Minchan Kim0bcac062017-11-15 17:33:07 -08003480 swp_entry_t entry = { .val = page_private(page) };
3481 return swp_swap_info(entry);
Mel Gormanf981c592012-07-31 16:44:47 -07003482}
3483
3484/*
3485 * out-of-line __page_file_ methods to avoid include hell.
3486 */
3487struct address_space *__page_file_mapping(struct page *page)
3488{
Mel Gormanf981c592012-07-31 16:44:47 -07003489 return page_swap_info(page)->swap_file->f_mapping;
3490}
3491EXPORT_SYMBOL_GPL(__page_file_mapping);
3492
3493pgoff_t __page_file_index(struct page *page)
3494{
3495 swp_entry_t swap = { .val = page_private(page) };
Mel Gormanf981c592012-07-31 16:44:47 -07003496 return swp_offset(swap);
3497}
3498EXPORT_SYMBOL_GPL(__page_file_index);
3499
Linus Torvalds1da177e2005-04-16 15:20:36 -07003500/*
Hugh Dickins570a335b2009-12-14 17:58:46 -08003501 * add_swap_count_continuation - called when a swap count is duplicated
3502 * beyond SWAP_MAP_MAX, it allocates a new page and links that to the entry's
3503 * page of the original vmalloc'ed swap_map, to hold the continuation count
3504 * (for that entry and for its neighbouring PAGE_SIZE swap entries). Called
3505 * again when count is duplicated beyond SWAP_MAP_MAX * SWAP_CONT_MAX, etc.
3506 *
3507 * These continuation pages are seldom referenced: the common paths all work
3508 * on the original swap_map, only referring to a continuation page when the
3509 * low "digit" of a count is incremented or decremented through SWAP_MAP_MAX.
3510 *
3511 * add_swap_count_continuation(, GFP_ATOMIC) can be called while holding
3512 * page table locks; if it fails, add_swap_count_continuation(, GFP_KERNEL)
3513 * can be called after dropping locks.
3514 */
3515int add_swap_count_continuation(swp_entry_t entry, gfp_t gfp_mask)
3516{
3517 struct swap_info_struct *si;
Huang, Ying235b6212017-02-22 15:45:22 -08003518 struct swap_cluster_info *ci;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003519 struct page *head;
3520 struct page *page;
3521 struct page *list_page;
3522 pgoff_t offset;
3523 unsigned char count;
3524
3525 /*
3526 * When debugging, it's easier to use __GFP_ZERO here; but it's better
3527 * for latency not to zero a page while GFP_ATOMIC and holding locks.
3528 */
3529 page = alloc_page(gfp_mask | __GFP_HIGHMEM);
3530
3531 si = swap_info_get(entry);
3532 if (!si) {
3533 /*
3534 * An acceptable race has occurred since the failing
3535 * __swap_duplicate(): the swap entry has been freed,
3536 * perhaps even the whole swap_map cleared for swapoff.
3537 */
3538 goto outer;
3539 }
3540
3541 offset = swp_offset(entry);
Huang, Ying235b6212017-02-22 15:45:22 -08003542
3543 ci = lock_cluster(si, offset);
3544
Hugh Dickins570a335b2009-12-14 17:58:46 -08003545 count = si->swap_map[offset] & ~SWAP_HAS_CACHE;
3546
3547 if ((count & ~COUNT_CONTINUED) != SWAP_MAP_MAX) {
3548 /*
3549 * The higher the swap count, the more likely it is that tasks
3550 * will race to add swap count continuation: we need to avoid
3551 * over-provisioning.
3552 */
3553 goto out;
3554 }
3555
3556 if (!page) {
Huang, Ying235b6212017-02-22 15:45:22 -08003557 unlock_cluster(ci);
Shaohua Liec8acf22013-02-22 16:34:38 -08003558 spin_unlock(&si->lock);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003559 return -ENOMEM;
3560 }
3561
3562 /*
3563 * We are fortunate that although vmalloc_to_page uses pte_offset_map,
Seth Jennings2de1a7e2013-11-12 15:07:46 -08003564 * no architecture is using highmem pages for kernel page tables: so it
3565 * will not corrupt the GFP_ATOMIC caller's atomic page table kmaps.
Hugh Dickins570a335b2009-12-14 17:58:46 -08003566 */
3567 head = vmalloc_to_page(si->swap_map + offset);
3568 offset &= ~PAGE_MASK;
3569
Huang Ying2628bd62017-11-02 15:59:50 -07003570 spin_lock(&si->cont_lock);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003571 /*
3572 * Page allocation does not initialize the page's lru field,
3573 * but it does always reset its private field.
3574 */
3575 if (!page_private(head)) {
3576 BUG_ON(count & COUNT_CONTINUED);
3577 INIT_LIST_HEAD(&head->lru);
3578 set_page_private(head, SWP_CONTINUED);
3579 si->flags |= SWP_CONTINUED;
3580 }
3581
3582 list_for_each_entry(list_page, &head->lru, lru) {
3583 unsigned char *map;
3584
3585 /*
3586 * If the previous map said no continuation, but we've found
3587 * a continuation page, free our allocation and use this one.
3588 */
3589 if (!(count & COUNT_CONTINUED))
Huang Ying2628bd62017-11-02 15:59:50 -07003590 goto out_unlock_cont;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003591
Cong Wang9b04c5f2011-11-25 23:14:39 +08003592 map = kmap_atomic(list_page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003593 count = *map;
Cong Wang9b04c5f2011-11-25 23:14:39 +08003594 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003595
3596 /*
3597 * If this continuation count now has some space in it,
3598 * free our allocation and use this one.
3599 */
3600 if ((count & ~COUNT_CONTINUED) != SWAP_CONT_MAX)
Huang Ying2628bd62017-11-02 15:59:50 -07003601 goto out_unlock_cont;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003602 }
3603
3604 list_add_tail(&page->lru, &head->lru);
3605 page = NULL; /* now it's attached, don't free it */
Huang Ying2628bd62017-11-02 15:59:50 -07003606out_unlock_cont:
3607 spin_unlock(&si->cont_lock);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003608out:
Huang, Ying235b6212017-02-22 15:45:22 -08003609 unlock_cluster(ci);
Shaohua Liec8acf22013-02-22 16:34:38 -08003610 spin_unlock(&si->lock);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003611outer:
3612 if (page)
3613 __free_page(page);
3614 return 0;
3615}
3616
3617/*
3618 * swap_count_continued - when the original swap_map count is incremented
3619 * from SWAP_MAP_MAX, check if there is already a continuation page to carry
3620 * into, carry if so, or else fail until a new continuation page is allocated;
3621 * when the original swap_map count is decremented from 0 with continuation,
3622 * borrow from the continuation and report whether it still holds more.
Huang, Ying235b6212017-02-22 15:45:22 -08003623 * Called while __swap_duplicate() or swap_entry_free() holds swap or cluster
3624 * lock.
Hugh Dickins570a335b2009-12-14 17:58:46 -08003625 */
3626static bool swap_count_continued(struct swap_info_struct *si,
3627 pgoff_t offset, unsigned char count)
3628{
3629 struct page *head;
3630 struct page *page;
3631 unsigned char *map;
Huang Ying2628bd62017-11-02 15:59:50 -07003632 bool ret;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003633
3634 head = vmalloc_to_page(si->swap_map + offset);
3635 if (page_private(head) != SWP_CONTINUED) {
3636 BUG_ON(count & COUNT_CONTINUED);
3637 return false; /* need to add count continuation */
3638 }
3639
Huang Ying2628bd62017-11-02 15:59:50 -07003640 spin_lock(&si->cont_lock);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003641 offset &= ~PAGE_MASK;
3642 page = list_entry(head->lru.next, struct page, lru);
Cong Wang9b04c5f2011-11-25 23:14:39 +08003643 map = kmap_atomic(page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003644
3645 if (count == SWAP_MAP_MAX) /* initial increment from swap_map */
3646 goto init_map; /* jump over SWAP_CONT_MAX checks */
3647
3648 if (count == (SWAP_MAP_MAX | COUNT_CONTINUED)) { /* incrementing */
3649 /*
3650 * Think of how you add 1 to 999
3651 */
3652 while (*map == (SWAP_CONT_MAX | COUNT_CONTINUED)) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08003653 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003654 page = list_entry(page->lru.next, struct page, lru);
3655 BUG_ON(page == head);
Cong Wang9b04c5f2011-11-25 23:14:39 +08003656 map = kmap_atomic(page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003657 }
3658 if (*map == SWAP_CONT_MAX) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08003659 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003660 page = list_entry(page->lru.next, struct page, lru);
Huang Ying2628bd62017-11-02 15:59:50 -07003661 if (page == head) {
3662 ret = false; /* add count continuation */
3663 goto out;
3664 }
Cong Wang9b04c5f2011-11-25 23:14:39 +08003665 map = kmap_atomic(page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003666init_map: *map = 0; /* we didn't zero the page */
3667 }
3668 *map += 1;
Cong Wang9b04c5f2011-11-25 23:14:39 +08003669 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003670 page = list_entry(page->lru.prev, struct page, lru);
3671 while (page != head) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08003672 map = kmap_atomic(page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003673 *map = COUNT_CONTINUED;
Cong Wang9b04c5f2011-11-25 23:14:39 +08003674 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003675 page = list_entry(page->lru.prev, struct page, lru);
3676 }
Huang Ying2628bd62017-11-02 15:59:50 -07003677 ret = true; /* incremented */
Hugh Dickins570a335b2009-12-14 17:58:46 -08003678
3679 } else { /* decrementing */
3680 /*
3681 * Think of how you subtract 1 from 1000
3682 */
3683 BUG_ON(count != COUNT_CONTINUED);
3684 while (*map == COUNT_CONTINUED) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08003685 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003686 page = list_entry(page->lru.next, struct page, lru);
3687 BUG_ON(page == head);
Cong Wang9b04c5f2011-11-25 23:14:39 +08003688 map = kmap_atomic(page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003689 }
3690 BUG_ON(*map == 0);
3691 *map -= 1;
3692 if (*map == 0)
3693 count = 0;
Cong Wang9b04c5f2011-11-25 23:14:39 +08003694 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003695 page = list_entry(page->lru.prev, struct page, lru);
3696 while (page != head) {
Cong Wang9b04c5f2011-11-25 23:14:39 +08003697 map = kmap_atomic(page) + offset;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003698 *map = SWAP_CONT_MAX | count;
3699 count = COUNT_CONTINUED;
Cong Wang9b04c5f2011-11-25 23:14:39 +08003700 kunmap_atomic(map);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003701 page = list_entry(page->lru.prev, struct page, lru);
3702 }
Huang Ying2628bd62017-11-02 15:59:50 -07003703 ret = count == COUNT_CONTINUED;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003704 }
Huang Ying2628bd62017-11-02 15:59:50 -07003705out:
3706 spin_unlock(&si->cont_lock);
3707 return ret;
Hugh Dickins570a335b2009-12-14 17:58:46 -08003708}
3709
3710/*
3711 * free_swap_count_continuations - swapoff free all the continuation pages
3712 * appended to the swap_map, after swap_map is quiesced, before vfree'ing it.
3713 */
3714static void free_swap_count_continuations(struct swap_info_struct *si)
3715{
3716 pgoff_t offset;
3717
3718 for (offset = 0; offset < si->max; offset += PAGE_SIZE) {
3719 struct page *head;
3720 head = vmalloc_to_page(si->swap_map + offset);
3721 if (page_private(head)) {
Geliang Tang0d576d22016-01-14 15:21:49 -08003722 struct page *page, *next;
3723
3724 list_for_each_entry_safe(page, next, &head->lru, lru) {
3725 list_del(&page->lru);
Hugh Dickins570a335b2009-12-14 17:58:46 -08003726 __free_page(page);
3727 }
3728 }
3729 }
3730}
Aaron Lua2468cc2017-09-06 16:24:57 -07003731
Tejun Heo2cf85582018-07-03 11:14:56 -04003732#if defined(CONFIG_MEMCG) && defined(CONFIG_BLK_CGROUP)
3733void mem_cgroup_throttle_swaprate(struct mem_cgroup *memcg, int node,
3734 gfp_t gfp_mask)
3735{
3736 struct swap_info_struct *si, *next;
3737 if (!(gfp_mask & __GFP_IO) || !memcg)
3738 return;
3739
3740 if (!blk_cgroup_congested())
3741 return;
3742
3743 /*
3744 * We've already scheduled a throttle, avoid taking the global swap
3745 * lock.
3746 */
3747 if (current->throttle_queue)
3748 return;
3749
3750 spin_lock(&swap_avail_lock);
3751 plist_for_each_entry_safe(si, next, &swap_avail_heads[node],
3752 avail_lists[node]) {
3753 if (si->bdev) {
3754 blkcg_schedule_throttle(bdev_get_queue(si->bdev),
3755 true);
3756 break;
3757 }
3758 }
3759 spin_unlock(&swap_avail_lock);
3760}
3761#endif
3762
Aaron Lua2468cc2017-09-06 16:24:57 -07003763static int __init swapfile_init(void)
3764{
3765 int nid;
3766
3767 swap_avail_heads = kmalloc_array(nr_node_ids, sizeof(struct plist_head),
3768 GFP_KERNEL);
3769 if (!swap_avail_heads) {
3770 pr_emerg("Not enough memory for swap heads, swap is disabled\n");
3771 return -ENOMEM;
3772 }
3773
3774 for_each_node(nid)
3775 plist_head_init(&swap_avail_heads[nid]);
3776
3777 return 0;
3778}
3779subsys_initcall(swapfile_init);