blob: 67ddaaf98c744d9e7febe38b0cbdd9cabb55c5b1 [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>
9#include <linux/hugetlb.h>
10#include <linux/mman.h>
11#include <linux/slab.h>
12#include <linux/kernel_stat.h>
13#include <linux/swap.h>
14#include <linux/vmalloc.h>
15#include <linux/pagemap.h>
16#include <linux/namei.h>
17#include <linux/shm.h>
18#include <linux/blkdev.h>
Hugh Dickins20137a42009-01-06 14:39:54 -080019#include <linux/random.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070020#include <linux/writeback.h>
21#include <linux/proc_fs.h>
22#include <linux/seq_file.h>
23#include <linux/init.h>
24#include <linux/module.h>
Hugh Dickins5ad64682009-12-14 17:59:24 -080025#include <linux/ksm.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070026#include <linux/rmap.h>
27#include <linux/security.h>
28#include <linux/backing-dev.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -080029#include <linux/mutex.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080030#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070031#include <linux/syscalls.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080032#include <linux/memcontrol.h>
Kay Sievers66d7dd52010-10-26 14:22:06 -070033#include <linux/poll.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070034
35#include <asm/pgtable.h>
36#include <asm/tlbflush.h>
37#include <linux/swapops.h>
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -080038#include <linux/page_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070039
Hugh Dickins570a335b2009-12-14 17:58:46 -080040static bool swap_count_continued(struct swap_info_struct *, pgoff_t,
41 unsigned char);
42static void free_swap_count_continuations(struct swap_info_struct *);
Lee Schermerhornd4906e12009-12-14 17:58:49 -080043static sector_t map_swap_entry(swp_entry_t, struct block_device**);
Hugh Dickins570a335b2009-12-14 17:58:46 -080044
Adrian Bunk7c363b82008-07-25 19:46:24 -070045static DEFINE_SPINLOCK(swap_lock);
46static unsigned int nr_swapfiles;
Hugh Dickinsb9627162009-01-06 14:39:41 -080047long nr_swap_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070048long total_swap_pages;
Hugh Dickins78ecba02008-07-23 21:28:23 -070049static int least_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070050
Linus Torvalds1da177e2005-04-16 15:20:36 -070051static const char Bad_file[] = "Bad swap file entry ";
52static const char Unused_file[] = "Unused swap file entry ";
53static const char Bad_offset[] = "Bad swap offset entry ";
54static const char Unused_offset[] = "Unused swap offset entry ";
55
Adrian Bunk7c363b82008-07-25 19:46:24 -070056static struct swap_list_t swap_list = {-1, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070057
Hugh Dickinsefa90a92009-12-14 17:58:41 -080058static struct swap_info_struct *swap_info[MAX_SWAPFILES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070059
Ingo Molnarfc0abb12006-01-18 17:42:33 -080060static DEFINE_MUTEX(swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070061
Kay Sievers66d7dd52010-10-26 14:22:06 -070062static DECLARE_WAIT_QUEUE_HEAD(proc_poll_wait);
63/* Activity counter to indicate that a swapon or swapoff has occurred */
64static atomic_t proc_poll_event = ATOMIC_INIT(0);
65
Hugh Dickins8d69aae2009-12-14 17:58:45 -080066static inline unsigned char swap_count(unsigned char ent)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070067{
Hugh Dickins570a335b2009-12-14 17:58:46 -080068 return ent & ~SWAP_HAS_CACHE; /* may include SWAP_HAS_CONT flag */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070069}
70
Hugh Dickinsefa90a92009-12-14 17:58:41 -080071/* returns 1 if swap entry is freed */
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -070072static int
73__try_to_reclaim_swap(struct swap_info_struct *si, unsigned long offset)
74{
Hugh Dickinsefa90a92009-12-14 17:58:41 -080075 swp_entry_t entry = swp_entry(si->type, offset);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -070076 struct page *page;
77 int ret = 0;
78
79 page = find_get_page(&swapper_space, entry.val);
80 if (!page)
81 return 0;
82 /*
83 * This function is called from scan_swap_map() and it's called
84 * by vmscan.c at reclaiming pages. So, we hold a lock on a page, here.
85 * We have to use trylock for avoiding deadlock. This is a special
86 * case and you should use try_to_free_swap() with explicit lock_page()
87 * in usual operations.
88 */
89 if (trylock_page(page)) {
90 ret = try_to_free_swap(page);
91 unlock_page(page);
92 }
93 page_cache_release(page);
94 return ret;
95}
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070096
Linus Torvalds1da177e2005-04-16 15:20:36 -070097/*
98 * We need this because the bdev->unplug_fn can sleep and we cannot
Hugh Dickins5d337b92005-09-03 15:54:41 -070099 * hold swap_lock while calling the unplug_fn. And swap_lock
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800100 * cannot be turned into a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700101 */
102static DECLARE_RWSEM(swap_unplug_sem);
103
Linus Torvalds1da177e2005-04-16 15:20:36 -0700104void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page)
105{
106 swp_entry_t entry;
107
108 down_read(&swap_unplug_sem);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700109 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700110 if (PageSwapCache(page)) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800111 struct block_device *bdev = swap_info[swp_type(entry)]->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 struct backing_dev_info *bdi;
113
114 /*
115 * If the page is removed from swapcache from under us (with a
116 * racy try_to_unuse/swapoff) we need an additional reference
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700117 * count to avoid reading garbage from page_private(page) above.
118 * If the WARN_ON triggers during a swapoff it maybe the race
Linus Torvalds1da177e2005-04-16 15:20:36 -0700119 * condition and it's harmless. However if it triggers without
120 * swapoff it signals a problem.
121 */
122 WARN_ON(page_count(page) <= 1);
123
124 bdi = bdev->bd_inode->i_mapping->backing_dev_info;
McMullan, Jasonba323112005-05-16 21:53:40 -0700125 blk_run_backing_dev(bdi, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700126 }
127 up_read(&swap_unplug_sem);
128}
129
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800130/*
131 * swapon tell device that all the old swap contents can be discarded,
132 * to allow the swap device to optimize its wear-levelling.
133 */
134static int discard_swap(struct swap_info_struct *si)
135{
136 struct swap_extent *se;
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800137 sector_t start_block;
138 sector_t nr_blocks;
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800139 int err = 0;
140
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800141 /* Do not discard the swap header page! */
142 se = &si->first_swap_extent;
143 start_block = (se->start_block + 1) << (PAGE_SHIFT - 9);
144 nr_blocks = ((sector_t)se->nr_pages - 1) << (PAGE_SHIFT - 9);
145 if (nr_blocks) {
146 err = blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200147 nr_blocks, GFP_KERNEL, 0);
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800148 if (err)
149 return err;
150 cond_resched();
151 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800152
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800153 list_for_each_entry(se, &si->first_swap_extent.list, list) {
154 start_block = se->start_block << (PAGE_SHIFT - 9);
155 nr_blocks = (sector_t)se->nr_pages << (PAGE_SHIFT - 9);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800156
157 err = blkdev_issue_discard(si->bdev, start_block,
Christoph Hellwigdd3932e2010-09-16 20:51:46 +0200158 nr_blocks, GFP_KERNEL, 0);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800159 if (err)
160 break;
161
162 cond_resched();
163 }
164 return err; /* That will often be -EOPNOTSUPP */
165}
166
Hugh Dickins7992fde2009-01-06 14:39:53 -0800167/*
168 * swap allocation tell device that a cluster of swap can now be discarded,
169 * to allow the swap device to optimize its wear-levelling.
170 */
171static void discard_swap_cluster(struct swap_info_struct *si,
172 pgoff_t start_page, pgoff_t nr_pages)
173{
174 struct swap_extent *se = si->curr_swap_extent;
175 int found_extent = 0;
176
177 while (nr_pages) {
178 struct list_head *lh;
179
180 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
201 lh = se->list.next;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800202 se = list_entry(lh, struct swap_extent, list);
203 }
204}
205
206static int wait_for_discard(void *word)
207{
208 schedule();
209 return 0;
210}
211
Hugh Dickins048c27f2005-09-03 15:54:40 -0700212#define SWAPFILE_CLUSTER 256
213#define LATENCY_LIMIT 256
214
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700215static inline unsigned long scan_swap_map(struct swap_info_struct *si,
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800216 unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700217{
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800218 unsigned long offset;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800219 unsigned long scan_base;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800220 unsigned long last_in_cluster = 0;
Hugh Dickins048c27f2005-09-03 15:54:40 -0700221 int latency_ration = LATENCY_LIMIT;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800222 int found_free_cluster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700223
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800224 /*
Hugh Dickins7dfad412005-09-03 15:54:38 -0700225 * We try to cluster swap pages by allocating them sequentially
226 * in swap. Once we've allocated SWAPFILE_CLUSTER pages this
227 * way, however, we resort to first-free allocation, starting
228 * a new cluster. This prevents us from scattering swap pages
229 * all over the entire swap partition, so that we reduce
230 * overall disk seek times between swap pages. -- sct
231 * But we do now try to find an empty cluster. -Andrea
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800232 * And we let swap pages go all over an SSD partition. Hugh
Hugh Dickins7dfad412005-09-03 15:54:38 -0700233 */
234
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700235 si->flags += SWP_SCANNING;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800236 scan_base = offset = si->cluster_next;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800237
238 if (unlikely(!si->cluster_nr--)) {
239 if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER) {
240 si->cluster_nr = SWAPFILE_CLUSTER - 1;
241 goto checks;
242 }
Hugh Dickins7992fde2009-01-06 14:39:53 -0800243 if (si->flags & SWP_DISCARDABLE) {
244 /*
245 * Start range check on racing allocations, in case
246 * they overlap the cluster we eventually decide on
247 * (we scan without swap_lock to allow preemption).
248 * It's hardly conceivable that cluster_nr could be
249 * wrapped during our scan, but don't depend on it.
250 */
251 if (si->lowest_alloc)
252 goto checks;
253 si->lowest_alloc = si->max;
254 si->highest_alloc = 0;
255 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700256 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700257
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800258 /*
259 * If seek is expensive, start searching for new cluster from
260 * start of partition, to minimize the span of allocated swap.
261 * But if seek is cheap, search from our current position, so
262 * that swap is allocated from all over the partition: if the
263 * Flash Translation Layer only remaps within limited zones,
264 * we don't want to wear out the first zone too quickly.
265 */
266 if (!(si->flags & SWP_SOLIDSTATE))
267 scan_base = offset = si->lowest_bit;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700268 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
269
270 /* Locate the first empty (unaligned) cluster */
271 for (; last_in_cluster <= si->highest_bit; offset++) {
272 if (si->swap_map[offset])
273 last_in_cluster = offset + SWAPFILE_CLUSTER;
274 else if (offset == last_in_cluster) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700275 spin_lock(&swap_lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800276 offset -= SWAPFILE_CLUSTER - 1;
277 si->cluster_next = offset;
278 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800279 found_free_cluster = 1;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800280 goto checks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700281 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700282 if (unlikely(--latency_ration < 0)) {
283 cond_resched();
284 latency_ration = LATENCY_LIMIT;
285 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700286 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800287
288 offset = si->lowest_bit;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800289 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
290
291 /* Locate the first empty (unaligned) cluster */
292 for (; last_in_cluster < scan_base; offset++) {
293 if (si->swap_map[offset])
294 last_in_cluster = offset + SWAPFILE_CLUSTER;
295 else if (offset == last_in_cluster) {
296 spin_lock(&swap_lock);
297 offset -= SWAPFILE_CLUSTER - 1;
298 si->cluster_next = offset;
299 si->cluster_nr = SWAPFILE_CLUSTER - 1;
300 found_free_cluster = 1;
301 goto checks;
302 }
303 if (unlikely(--latency_ration < 0)) {
304 cond_resched();
305 latency_ration = LATENCY_LIMIT;
306 }
307 }
308
309 offset = scan_base;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700310 spin_lock(&swap_lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800311 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800312 si->lowest_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700313 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700314
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800315checks:
316 if (!(si->flags & SWP_WRITEOK))
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700317 goto no_page;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700318 if (!si->highest_bit)
319 goto no_page;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800320 if (offset > si->highest_bit)
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800321 scan_base = offset = si->lowest_bit;
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700322
Hugh Dickinsb73d7fc2010-09-09 16:38:09 -0700323 /* reuse swap entry of cache-only swap if not busy. */
324 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700325 int swap_was_freed;
326 spin_unlock(&swap_lock);
327 swap_was_freed = __try_to_reclaim_swap(si, offset);
328 spin_lock(&swap_lock);
329 /* entry was freed successfully, try to use this again */
330 if (swap_was_freed)
331 goto checks;
332 goto scan; /* check next one */
333 }
334
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800335 if (si->swap_map[offset])
336 goto scan;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700337
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800338 if (offset == si->lowest_bit)
339 si->lowest_bit++;
340 if (offset == si->highest_bit)
341 si->highest_bit--;
342 si->inuse_pages++;
343 if (si->inuse_pages == si->pages) {
344 si->lowest_bit = si->max;
345 si->highest_bit = 0;
346 }
Hugh Dickins253d5532009-12-14 17:58:44 -0800347 si->swap_map[offset] = usage;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800348 si->cluster_next = offset + 1;
349 si->flags -= SWP_SCANNING;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800350
351 if (si->lowest_alloc) {
352 /*
353 * Only set when SWP_DISCARDABLE, and there's a scan
354 * for a free cluster in progress or just completed.
355 */
356 if (found_free_cluster) {
357 /*
358 * To optimize wear-levelling, discard the
359 * old data of the cluster, taking care not to
360 * discard any of its pages that have already
361 * been allocated by racing tasks (offset has
362 * already stepped over any at the beginning).
363 */
364 if (offset < si->highest_alloc &&
365 si->lowest_alloc <= last_in_cluster)
366 last_in_cluster = si->lowest_alloc - 1;
367 si->flags |= SWP_DISCARDING;
368 spin_unlock(&swap_lock);
369
370 if (offset < last_in_cluster)
371 discard_swap_cluster(si, offset,
372 last_in_cluster - offset + 1);
373
374 spin_lock(&swap_lock);
375 si->lowest_alloc = 0;
376 si->flags &= ~SWP_DISCARDING;
377
378 smp_mb(); /* wake_up_bit advises this */
379 wake_up_bit(&si->flags, ilog2(SWP_DISCARDING));
380
381 } else if (si->flags & SWP_DISCARDING) {
382 /*
383 * Delay using pages allocated by racing tasks
384 * until the whole discard has been issued. We
385 * could defer that delay until swap_writepage,
386 * but it's easier to keep this self-contained.
387 */
388 spin_unlock(&swap_lock);
389 wait_on_bit(&si->flags, ilog2(SWP_DISCARDING),
390 wait_for_discard, TASK_UNINTERRUPTIBLE);
391 spin_lock(&swap_lock);
392 } else {
393 /*
394 * Note pages allocated by racing tasks while
395 * scan for a free cluster is in progress, so
396 * that its final discard can exclude them.
397 */
398 if (offset < si->lowest_alloc)
399 si->lowest_alloc = offset;
400 if (offset > si->highest_alloc)
401 si->highest_alloc = offset;
402 }
403 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800404 return offset;
405
406scan:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700407 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700408 while (++offset <= si->highest_bit) {
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700409 if (!si->swap_map[offset]) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700410 spin_lock(&swap_lock);
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700411 goto checks;
412 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700413 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
414 spin_lock(&swap_lock);
415 goto checks;
416 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700417 if (unlikely(--latency_ration < 0)) {
418 cond_resched();
419 latency_ration = LATENCY_LIMIT;
420 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700421 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800422 offset = si->lowest_bit;
423 while (++offset < scan_base) {
424 if (!si->swap_map[offset]) {
425 spin_lock(&swap_lock);
426 goto checks;
427 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700428 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
429 spin_lock(&swap_lock);
430 goto checks;
431 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800432 if (unlikely(--latency_ration < 0)) {
433 cond_resched();
434 latency_ration = LATENCY_LIMIT;
435 }
436 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700437 spin_lock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700438
439no_page:
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700440 si->flags -= SWP_SCANNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700441 return 0;
442}
443
444swp_entry_t get_swap_page(void)
445{
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700446 struct swap_info_struct *si;
447 pgoff_t offset;
448 int type, next;
449 int wrapped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700450
Hugh Dickins5d337b92005-09-03 15:54:41 -0700451 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700452 if (nr_swap_pages <= 0)
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700453 goto noswap;
454 nr_swap_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700456 for (type = swap_list.next; type >= 0 && wrapped < 2; type = next) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800457 si = swap_info[type];
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700458 next = si->next;
459 if (next < 0 ||
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800460 (!wrapped && si->prio != swap_info[next]->prio)) {
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700461 next = swap_list.head;
462 wrapped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700463 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700464
465 if (!si->highest_bit)
466 continue;
467 if (!(si->flags & SWP_WRITEOK))
468 continue;
469
470 swap_list.next = next;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700471 /* This is called for allocating swap entry for cache */
Hugh Dickins253d5532009-12-14 17:58:44 -0800472 offset = scan_swap_map(si, SWAP_HAS_CACHE);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700473 if (offset) {
474 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700475 return swp_entry(type, offset);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700476 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700477 next = swap_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700478 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700479
480 nr_swap_pages++;
481noswap:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700482 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700483 return (swp_entry_t) {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700484}
485
Hugh Dickins910321e2010-09-09 16:38:07 -0700486/* The only caller of this function is now susupend routine */
487swp_entry_t get_swap_page_of_type(int type)
488{
489 struct swap_info_struct *si;
490 pgoff_t offset;
491
492 spin_lock(&swap_lock);
493 si = swap_info[type];
494 if (si && (si->flags & SWP_WRITEOK)) {
495 nr_swap_pages--;
496 /* This is called for allocating swap entry, not cache */
497 offset = scan_swap_map(si, 1);
498 if (offset) {
499 spin_unlock(&swap_lock);
500 return swp_entry(type, offset);
501 }
502 nr_swap_pages++;
503 }
504 spin_unlock(&swap_lock);
505 return (swp_entry_t) {0};
506}
507
Hugh Dickins73c34b62009-12-14 17:58:43 -0800508static struct swap_info_struct *swap_info_get(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700509{
Hugh Dickins73c34b62009-12-14 17:58:43 -0800510 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700511 unsigned long offset, type;
512
513 if (!entry.val)
514 goto out;
515 type = swp_type(entry);
516 if (type >= nr_swapfiles)
517 goto bad_nofile;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800518 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700519 if (!(p->flags & SWP_USED))
520 goto bad_device;
521 offset = swp_offset(entry);
522 if (offset >= p->max)
523 goto bad_offset;
524 if (!p->swap_map[offset])
525 goto bad_free;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700526 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700527 return p;
528
529bad_free:
530 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val);
531 goto out;
532bad_offset:
533 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_offset, entry.val);
534 goto out;
535bad_device:
536 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_file, entry.val);
537 goto out;
538bad_nofile:
539 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_file, entry.val);
540out:
541 return NULL;
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800542}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700543
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800544static unsigned char swap_entry_free(struct swap_info_struct *p,
545 swp_entry_t entry, unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700546{
Hugh Dickins253d5532009-12-14 17:58:44 -0800547 unsigned long offset = swp_offset(entry);
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800548 unsigned char count;
549 unsigned char has_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700550
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700551 count = p->swap_map[offset];
Hugh Dickins253d5532009-12-14 17:58:44 -0800552 has_cache = count & SWAP_HAS_CACHE;
553 count &= ~SWAP_HAS_CACHE;
554
555 if (usage == SWAP_HAS_CACHE) {
556 VM_BUG_ON(!has_cache);
557 has_cache = 0;
Hugh Dickinsaaa46862009-12-14 17:58:47 -0800558 } else if (count == SWAP_MAP_SHMEM) {
559 /*
560 * Or we could insist on shmem.c using a special
561 * swap_shmem_free() and free_shmem_swap_and_cache()...
562 */
563 count = 0;
Hugh Dickins570a335b2009-12-14 17:58:46 -0800564 } else if ((count & ~COUNT_CONTINUED) <= SWAP_MAP_MAX) {
565 if (count == COUNT_CONTINUED) {
566 if (swap_count_continued(p, offset, count))
567 count = SWAP_MAP_MAX | COUNT_CONTINUED;
568 else
569 count = SWAP_MAP_MAX;
570 } else
571 count--;
572 }
Hugh Dickins253d5532009-12-14 17:58:44 -0800573
574 if (!count)
575 mem_cgroup_uncharge_swap(entry);
576
577 usage = count | has_cache;
578 p->swap_map[offset] = usage;
579
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700580 /* free if no reference */
Hugh Dickins253d5532009-12-14 17:58:44 -0800581 if (!usage) {
Nitin Guptab3a27d02010-05-17 11:02:43 +0530582 struct gendisk *disk = p->bdev->bd_disk;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700583 if (offset < p->lowest_bit)
584 p->lowest_bit = offset;
585 if (offset > p->highest_bit)
586 p->highest_bit = offset;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800587 if (swap_list.next >= 0 &&
588 p->prio > swap_info[swap_list.next]->prio)
589 swap_list.next = p->type;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700590 nr_swap_pages++;
591 p->inuse_pages--;
Nitin Guptab3a27d02010-05-17 11:02:43 +0530592 if ((p->flags & SWP_BLKDEV) &&
593 disk->fops->swap_slot_free_notify)
594 disk->fops->swap_slot_free_notify(p->bdev, offset);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700595 }
Hugh Dickins253d5532009-12-14 17:58:44 -0800596
597 return usage;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700598}
599
600/*
601 * Caller has made sure that the swapdevice corresponding to entry
602 * is still around or has not been recycled.
603 */
604void swap_free(swp_entry_t entry)
605{
Hugh Dickins73c34b62009-12-14 17:58:43 -0800606 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700607
608 p = swap_info_get(entry);
609 if (p) {
Hugh Dickins253d5532009-12-14 17:58:44 -0800610 swap_entry_free(p, entry, 1);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700611 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700612 }
613}
614
615/*
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700616 * Called after dropping swapcache to decrease refcnt to swap entries.
617 */
618void swapcache_free(swp_entry_t entry, struct page *page)
619{
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700620 struct swap_info_struct *p;
Hugh Dickins8d69aae2009-12-14 17:58:45 -0800621 unsigned char count;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700622
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700623 p = swap_info_get(entry);
624 if (p) {
Hugh Dickins253d5532009-12-14 17:58:44 -0800625 count = swap_entry_free(p, entry, SWAP_HAS_CACHE);
626 if (page)
627 mem_cgroup_uncharge_swapcache(page, entry, count != 0);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700628 spin_unlock(&swap_lock);
629 }
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700630}
631
632/*
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700633 * How many references to page are currently swapped out?
Hugh Dickins570a335b2009-12-14 17:58:46 -0800634 * This does not give an exact answer when swap count is continued,
635 * but does include the high COUNT_CONTINUED flag to allow for that.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700636 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700637static inline int page_swapcount(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700638{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700639 int count = 0;
640 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700641 swp_entry_t entry;
642
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700643 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700644 p = swap_info_get(entry);
645 if (p) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700646 count = swap_count(p->swap_map[swp_offset(entry)]);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700647 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700648 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700649 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700650}
651
652/*
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800653 * We can write to an anon page without COW if there are no other references
654 * to it. And as a side-effect, free up its swap: because the old content
655 * on disk will never be read, and seeking back there to write new content
656 * later would only waste time away from clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700657 */
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800658int reuse_swap_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700659{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700660 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700661
Hugh Dickins51726b12009-01-06 14:39:25 -0800662 VM_BUG_ON(!PageLocked(page));
Hugh Dickins5ad64682009-12-14 17:59:24 -0800663 if (unlikely(PageKsm(page)))
664 return 0;
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700665 count = page_mapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800666 if (count <= 1 && PageSwapCache(page)) {
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700667 count += page_swapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800668 if (count == 1 && !PageWriteback(page)) {
669 delete_from_swap_cache(page);
670 SetPageDirty(page);
671 }
672 }
Hugh Dickins5ad64682009-12-14 17:59:24 -0800673 return count <= 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700674}
675
676/*
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800677 * If swap is getting full, or if there are no more mappings of this page,
678 * then try_to_free_swap is called to free its swap space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700679 */
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800680int try_to_free_swap(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700681{
Hugh Dickins51726b12009-01-06 14:39:25 -0800682 VM_BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700683
684 if (!PageSwapCache(page))
685 return 0;
686 if (PageWriteback(page))
687 return 0;
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800688 if (page_swapcount(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700689 return 0;
690
Hugh Dickinsb73d7fc2010-09-09 16:38:09 -0700691 /*
692 * Once hibernation has begun to create its image of memory,
693 * there's a danger that one of the calls to try_to_free_swap()
694 * - most probably a call from __try_to_reclaim_swap() while
695 * hibernation is allocating its own swap pages for the image,
696 * but conceivably even a call from memory reclaim - will free
697 * the swap from a page which has already been recorded in the
698 * image as a clean swapcache page, and then reuse its swap for
699 * another page of the image. On waking from hibernation, the
700 * original page might be freed under memory pressure, then
701 * later read back in from swap, now with the wrong data.
702 *
703 * Hibernation clears bits from gfp_allowed_mask to prevent
704 * memory reclaim from writing to disk, so check that here.
705 */
706 if (!(gfp_allowed_mask & __GFP_IO))
707 return 0;
708
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800709 delete_from_swap_cache(page);
710 SetPageDirty(page);
711 return 1;
Rik van Riel68a223942008-10-18 20:26:23 -0700712}
713
714/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700715 * Free the swap entry like above, but also try to
716 * free the page cache entry if it is the last user.
717 */
Hugh Dickins2509ef22009-01-06 14:40:10 -0800718int free_swap_and_cache(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700719{
Hugh Dickins2509ef22009-01-06 14:40:10 -0800720 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700721 struct page *page = NULL;
722
Andi Kleena7420aa2009-09-16 11:50:05 +0200723 if (non_swap_entry(entry))
Hugh Dickins2509ef22009-01-06 14:40:10 -0800724 return 1;
Christoph Lameter06972122006-06-23 02:03:35 -0700725
Linus Torvalds1da177e2005-04-16 15:20:36 -0700726 p = swap_info_get(entry);
727 if (p) {
Hugh Dickins253d5532009-12-14 17:58:44 -0800728 if (swap_entry_free(p, entry, 1) == SWAP_HAS_CACHE) {
Nick Piggin93fac702006-03-31 02:29:56 -0800729 page = find_get_page(&swapper_space, entry.val);
Nick Piggin8413ac92008-10-18 20:26:59 -0700730 if (page && !trylock_page(page)) {
Nick Piggin93fac702006-03-31 02:29:56 -0800731 page_cache_release(page);
732 page = NULL;
733 }
734 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700735 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700736 }
737 if (page) {
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800738 /*
739 * Not mapped elsewhere, or swap space full? Free it!
740 * Also recheck PageSwapCache now page is locked (above).
741 */
Nick Piggin93fac702006-03-31 02:29:56 -0800742 if (PageSwapCache(page) && !PageWriteback(page) &&
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800743 (!page_mapped(page) || vm_swap_full())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700744 delete_from_swap_cache(page);
745 SetPageDirty(page);
746 }
747 unlock_page(page);
748 page_cache_release(page);
749 }
Hugh Dickins2509ef22009-01-06 14:40:10 -0800750 return p != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700751}
752
Daisuke Nishimura02491442010-03-10 15:22:17 -0800753#ifdef CONFIG_CGROUP_MEM_RES_CTLR
754/**
755 * mem_cgroup_count_swap_user - count the user of a swap entry
756 * @ent: the swap entry to be checked
757 * @pagep: the pointer for the swap cache page of the entry to be stored
758 *
759 * Returns the number of the user of the swap entry. The number is valid only
760 * for swaps of anonymous pages.
761 * If the entry is found on swap cache, the page is stored to pagep with
762 * refcount of it being incremented.
763 */
764int mem_cgroup_count_swap_user(swp_entry_t ent, struct page **pagep)
765{
766 struct page *page;
767 struct swap_info_struct *p;
768 int count = 0;
769
770 page = find_get_page(&swapper_space, ent.val);
771 if (page)
772 count += page_mapcount(page);
773 p = swap_info_get(ent);
774 if (p) {
775 count += swap_count(p->swap_map[swp_offset(ent)]);
776 spin_unlock(&swap_lock);
777 }
778
779 *pagep = page;
780 return count;
781}
782#endif
783
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200784#ifdef CONFIG_HIBERNATION
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800785/*
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800786 * Find the swap type that corresponds to given device (if any).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800787 *
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800788 * @offset - number of the PAGE_SIZE-sized block of the device, starting
789 * from 0, in which the swap header is expected to be located.
790 *
791 * This is needed for the suspend to disk (aka swsusp).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800792 */
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800793int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800794{
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800795 struct block_device *bdev = NULL;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800796 int type;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800797
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800798 if (device)
799 bdev = bdget(device);
800
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800801 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800802 for (type = 0; type < nr_swapfiles; type++) {
803 struct swap_info_struct *sis = swap_info[type];
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800804
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800805 if (!(sis->flags & SWP_WRITEOK))
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800806 continue;
Rafael J. Wysockib6b5bce2006-08-27 01:23:25 -0700807
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800808 if (!bdev) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800809 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200810 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800811
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800812 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800813 return type;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800814 }
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800815 if (bdev == sis->bdev) {
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800816 struct swap_extent *se = &sis->first_swap_extent;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800817
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800818 if (se->start_block == offset) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800819 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200820 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800821
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800822 spin_unlock(&swap_lock);
823 bdput(bdev);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800824 return type;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800825 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800826 }
827 }
828 spin_unlock(&swap_lock);
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800829 if (bdev)
830 bdput(bdev);
831
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800832 return -ENODEV;
833}
834
835/*
Hugh Dickins73c34b62009-12-14 17:58:43 -0800836 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
837 * corresponding to given index in swap_info (swap type).
838 */
839sector_t swapdev_block(int type, pgoff_t offset)
840{
841 struct block_device *bdev;
842
843 if ((unsigned int)type >= nr_swapfiles)
844 return 0;
845 if (!(swap_info[type]->flags & SWP_WRITEOK))
846 return 0;
Lee Schermerhornd4906e12009-12-14 17:58:49 -0800847 return map_swap_entry(swp_entry(type, offset), &bdev);
Hugh Dickins73c34b62009-12-14 17:58:43 -0800848}
849
850/*
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800851 * Return either the total number of swap pages of given type, or the number
852 * of free pages of that type (depending on @free)
853 *
854 * This is needed for software suspend
855 */
856unsigned int count_swap_pages(int type, int free)
857{
858 unsigned int n = 0;
859
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800860 spin_lock(&swap_lock);
861 if ((unsigned int)type < nr_swapfiles) {
862 struct swap_info_struct *sis = swap_info[type];
863
864 if (sis->flags & SWP_WRITEOK) {
865 n = sis->pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800866 if (free)
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800867 n -= sis->inuse_pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800868 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800869 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800870 spin_unlock(&swap_lock);
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800871 return n;
872}
Hugh Dickins73c34b62009-12-14 17:58:43 -0800873#endif /* CONFIG_HIBERNATION */
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800874
Linus Torvalds1da177e2005-04-16 15:20:36 -0700875/*
Hugh Dickins72866f62005-10-29 18:15:55 -0700876 * No need to decide whether this PTE shares the swap entry with others,
877 * just let do_wp_page work it out if a write is requested later - to
878 * force COW, vm_page_prot omits write permission from any private vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700879 */
Hugh Dickins044d66c2008-02-07 00:14:04 -0800880static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700881 unsigned long addr, swp_entry_t entry, struct page *page)
882{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800883 struct mem_cgroup *ptr = NULL;
Hugh Dickins044d66c2008-02-07 00:14:04 -0800884 spinlock_t *ptl;
885 pte_t *pte;
886 int ret = 1;
887
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800888 if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr)) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800889 ret = -ENOMEM;
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800890 goto out_nolock;
891 }
Hugh Dickins044d66c2008-02-07 00:14:04 -0800892
893 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
894 if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
895 if (ret > 0)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800896 mem_cgroup_cancel_charge_swapin(ptr);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800897 ret = 0;
898 goto out;
899 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800900
KAMEZAWA Hiroyukib084d432010-03-05 13:41:42 -0800901 dec_mm_counter(vma->vm_mm, MM_SWAPENTS);
KAMEZAWA Hiroyukid559db02010-03-05 13:41:39 -0800902 inc_mm_counter(vma->vm_mm, MM_ANONPAGES);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700903 get_page(page);
904 set_pte_at(vma->vm_mm, addr, pte,
905 pte_mkold(mk_pte(page, vma->vm_page_prot)));
906 page_add_anon_rmap(page, vma, addr);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800907 mem_cgroup_commit_charge_swapin(page, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700908 swap_free(entry);
909 /*
910 * Move the page to the active list so it is not
911 * immediately swapped out again after swapon.
912 */
913 activate_page(page);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800914out:
915 pte_unmap_unlock(pte, ptl);
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800916out_nolock:
Hugh Dickins044d66c2008-02-07 00:14:04 -0800917 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700918}
919
920static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
921 unsigned long addr, unsigned long end,
922 swp_entry_t entry, struct page *page)
923{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700924 pte_t swp_pte = swp_entry_to_pte(entry);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700925 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800926 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700927
Hugh Dickins044d66c2008-02-07 00:14:04 -0800928 /*
929 * We don't actually need pte lock while scanning for swp_pte: since
930 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
931 * page table while we're scanning; though it could get zapped, and on
932 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
933 * of unmatched parts which look like swp_pte, so unuse_pte must
934 * recheck under pte lock. Scanning without pte lock lets it be
935 * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
936 */
937 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700938 do {
939 /*
940 * swapoff spends a _lot_ of time in this loop!
941 * Test inline before going to call unuse_pte.
942 */
943 if (unlikely(pte_same(*pte, swp_pte))) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800944 pte_unmap(pte);
945 ret = unuse_pte(vma, pmd, addr, entry, page);
946 if (ret)
947 goto out;
948 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700949 }
950 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800951 pte_unmap(pte - 1);
952out:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800953 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700954}
955
956static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
957 unsigned long addr, unsigned long end,
958 swp_entry_t entry, struct page *page)
959{
960 pmd_t *pmd;
961 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800962 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700963
964 pmd = pmd_offset(pud, addr);
965 do {
966 next = pmd_addr_end(addr, end);
967 if (pmd_none_or_clear_bad(pmd))
968 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800969 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
970 if (ret)
971 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 } while (pmd++, addr = next, addr != end);
973 return 0;
974}
975
976static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
977 unsigned long addr, unsigned long end,
978 swp_entry_t entry, struct page *page)
979{
980 pud_t *pud;
981 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800982 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700983
984 pud = pud_offset(pgd, addr);
985 do {
986 next = pud_addr_end(addr, end);
987 if (pud_none_or_clear_bad(pud))
988 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800989 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
990 if (ret)
991 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700992 } while (pud++, addr = next, addr != end);
993 return 0;
994}
995
996static int unuse_vma(struct vm_area_struct *vma,
997 swp_entry_t entry, struct page *page)
998{
999 pgd_t *pgd;
1000 unsigned long addr, end, next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001001 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001002
Hugh Dickins3ca7b3c2009-12-14 17:58:57 -08001003 if (page_anon_vma(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001004 addr = page_address_in_vma(page, vma);
1005 if (addr == -EFAULT)
1006 return 0;
1007 else
1008 end = addr + PAGE_SIZE;
1009 } else {
1010 addr = vma->vm_start;
1011 end = vma->vm_end;
1012 }
1013
1014 pgd = pgd_offset(vma->vm_mm, addr);
1015 do {
1016 next = pgd_addr_end(addr, end);
1017 if (pgd_none_or_clear_bad(pgd))
1018 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001019 ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
1020 if (ret)
1021 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001022 } while (pgd++, addr = next, addr != end);
1023 return 0;
1024}
1025
1026static int unuse_mm(struct mm_struct *mm,
1027 swp_entry_t entry, struct page *page)
1028{
1029 struct vm_area_struct *vma;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001030 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001031
1032 if (!down_read_trylock(&mm->mmap_sem)) {
1033 /*
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -07001034 * Activate page so shrink_inactive_list is unlikely to unmap
1035 * its ptes while lock is dropped, so swapoff can make progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -07001037 activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001038 unlock_page(page);
1039 down_read(&mm->mmap_sem);
1040 lock_page(page);
1041 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001042 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001043 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001044 break;
1045 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001046 up_read(&mm->mmap_sem);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -08001047 return (ret < 0)? ret: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001048}
1049
1050/*
1051 * Scan swap_map from current position to next entry still in use.
1052 * Recycle to start on reaching the end, returning 0 when empty.
1053 */
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001054static unsigned int find_next_to_unuse(struct swap_info_struct *si,
1055 unsigned int prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001056{
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001057 unsigned int max = si->max;
1058 unsigned int i = prev;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001059 unsigned char count;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001060
1061 /*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001062 * No need for swap_lock here: we're just looking
Linus Torvalds1da177e2005-04-16 15:20:36 -07001063 * for whether an entry is in use, not modifying it; false
1064 * hits are okay, and sys_swapoff() has already prevented new
Hugh Dickins5d337b92005-09-03 15:54:41 -07001065 * allocations from this area (while holding swap_lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001066 */
1067 for (;;) {
1068 if (++i >= max) {
1069 if (!prev) {
1070 i = 0;
1071 break;
1072 }
1073 /*
1074 * No entries in use at top of swap_map,
1075 * loop back to start and recheck there.
1076 */
1077 max = prev + 1;
1078 prev = 0;
1079 i = 1;
1080 }
1081 count = si->swap_map[i];
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001082 if (count && swap_count(count) != SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001083 break;
1084 }
1085 return i;
1086}
1087
1088/*
1089 * We completely avoid races by reading each swap page in advance,
1090 * and then search for the process using it. All the necessary
1091 * page table adjustments can then be made atomically.
1092 */
1093static int try_to_unuse(unsigned int type)
1094{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001095 struct swap_info_struct *si = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001096 struct mm_struct *start_mm;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001097 unsigned char *swap_map;
1098 unsigned char swcount;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001099 struct page *page;
1100 swp_entry_t entry;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001101 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001102 int retval = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001103
1104 /*
1105 * When searching mms for an entry, a good strategy is to
1106 * start at the first mm we freed the previous entry from
1107 * (though actually we don't notice whether we or coincidence
1108 * freed the entry). Initialize this start_mm with a hold.
1109 *
1110 * A simpler strategy would be to start at the last mm we
1111 * freed the previous entry from; but that would take less
1112 * advantage of mmlist ordering, which clusters forked mms
1113 * together, child after parent. If we race with dup_mmap(), we
1114 * prefer to resolve parent before child, lest we miss entries
1115 * duplicated after we scanned child: using last mm would invert
Hugh Dickins570a335b2009-12-14 17:58:46 -08001116 * that.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001117 */
1118 start_mm = &init_mm;
1119 atomic_inc(&init_mm.mm_users);
1120
1121 /*
1122 * Keep on scanning until all entries have gone. Usually,
1123 * one pass through swap_map is enough, but not necessarily:
1124 * there are races when an instance of an entry might be missed.
1125 */
1126 while ((i = find_next_to_unuse(si, i)) != 0) {
1127 if (signal_pending(current)) {
1128 retval = -EINTR;
1129 break;
1130 }
1131
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001132 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001133 * Get a page for the entry, using the existing swap
1134 * cache page if there is one. Otherwise, get a clean
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001135 * page and read the swap into it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001136 */
1137 swap_map = &si->swap_map[i];
1138 entry = swp_entry(type, i);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001139 page = read_swap_cache_async(entry,
1140 GFP_HIGHUSER_MOVABLE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 if (!page) {
1142 /*
1143 * Either swap_duplicate() failed because entry
1144 * has been freed independently, and will not be
1145 * reused since sys_swapoff() already disabled
1146 * allocation from here, or alloc_page() failed.
1147 */
1148 if (!*swap_map)
1149 continue;
1150 retval = -ENOMEM;
1151 break;
1152 }
1153
1154 /*
1155 * Don't hold on to start_mm if it looks like exiting.
1156 */
1157 if (atomic_read(&start_mm->mm_users) == 1) {
1158 mmput(start_mm);
1159 start_mm = &init_mm;
1160 atomic_inc(&init_mm.mm_users);
1161 }
1162
1163 /*
1164 * Wait for and lock page. When do_swap_page races with
1165 * try_to_unuse, do_swap_page can handle the fault much
1166 * faster than try_to_unuse can locate the entry. This
1167 * apparently redundant "wait_on_page_locked" lets try_to_unuse
1168 * defer to do_swap_page in such a case - in some tests,
1169 * do_swap_page and try_to_unuse repeatedly compete.
1170 */
1171 wait_on_page_locked(page);
1172 wait_on_page_writeback(page);
1173 lock_page(page);
1174 wait_on_page_writeback(page);
1175
1176 /*
1177 * Remove all references to entry.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001178 */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001179 swcount = *swap_map;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001180 if (swap_count(swcount) == SWAP_MAP_SHMEM) {
1181 retval = shmem_unuse(entry, page);
1182 /* page has already been unlocked and released */
1183 if (retval < 0)
1184 break;
1185 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001186 }
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001187 if (swap_count(swcount) && start_mm != &init_mm)
1188 retval = unuse_mm(start_mm, entry, page);
1189
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001190 if (swap_count(*swap_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001191 int set_start_mm = (*swap_map >= swcount);
1192 struct list_head *p = &start_mm->mmlist;
1193 struct mm_struct *new_start_mm = start_mm;
1194 struct mm_struct *prev_mm = start_mm;
1195 struct mm_struct *mm;
1196
1197 atomic_inc(&new_start_mm->mm_users);
1198 atomic_inc(&prev_mm->mm_users);
1199 spin_lock(&mmlist_lock);
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001200 while (swap_count(*swap_map) && !retval &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001201 (p = p->next) != &start_mm->mmlist) {
1202 mm = list_entry(p, struct mm_struct, mmlist);
Hugh Dickins70af7c52006-06-23 02:03:44 -07001203 if (!atomic_inc_not_zero(&mm->mm_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001204 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001205 spin_unlock(&mmlist_lock);
1206 mmput(prev_mm);
1207 prev_mm = mm;
1208
1209 cond_resched();
1210
1211 swcount = *swap_map;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001212 if (!swap_count(swcount)) /* any usage ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001213 ;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001214 else if (mm == &init_mm)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001215 set_start_mm = 1;
Hugh Dickinsaaa46862009-12-14 17:58:47 -08001216 else
Linus Torvalds1da177e2005-04-16 15:20:36 -07001217 retval = unuse_mm(mm, entry, page);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001218
Bo Liu32c5fc12009-11-02 16:50:33 +00001219 if (set_start_mm && *swap_map < swcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001220 mmput(new_start_mm);
1221 atomic_inc(&mm->mm_users);
1222 new_start_mm = mm;
1223 set_start_mm = 0;
1224 }
1225 spin_lock(&mmlist_lock);
1226 }
1227 spin_unlock(&mmlist_lock);
1228 mmput(prev_mm);
1229 mmput(start_mm);
1230 start_mm = new_start_mm;
1231 }
1232 if (retval) {
1233 unlock_page(page);
1234 page_cache_release(page);
1235 break;
1236 }
1237
1238 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001239 * If a reference remains (rare), we would like to leave
1240 * the page in the swap cache; but try_to_unmap could
1241 * then re-duplicate the entry once we drop page lock,
1242 * so we might loop indefinitely; also, that page could
1243 * not be swapped out to other storage meanwhile. So:
1244 * delete from cache even if there's another reference,
1245 * after ensuring that the data has been saved to disk -
1246 * since if the reference remains (rarer), it will be
1247 * read from disk into another page. Splitting into two
1248 * pages would be incorrect if swap supported "shared
1249 * private" pages, but they are handled by tmpfs files.
Hugh Dickins5ad64682009-12-14 17:59:24 -08001250 *
1251 * Given how unuse_vma() targets one particular offset
1252 * in an anon_vma, once the anon_vma has been determined,
1253 * this splitting happens to be just what is needed to
1254 * handle where KSM pages have been swapped out: re-reading
1255 * is unnecessarily slow, but we can fix that later on.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001256 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001257 if (swap_count(*swap_map) &&
1258 PageDirty(page) && PageSwapCache(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001259 struct writeback_control wbc = {
1260 .sync_mode = WB_SYNC_NONE,
1261 };
1262
1263 swap_writepage(page, &wbc);
1264 lock_page(page);
1265 wait_on_page_writeback(page);
1266 }
Hugh Dickins68bdc8d2009-01-06 14:39:37 -08001267
1268 /*
1269 * It is conceivable that a racing task removed this page from
1270 * swap cache just before we acquired the page lock at the top,
1271 * or while we dropped it in unuse_mm(). The page might even
1272 * be back in swap cache on another swap area: that we must not
1273 * delete, since it may not have been written out to swap yet.
1274 */
1275 if (PageSwapCache(page) &&
1276 likely(page_private(page) == entry.val))
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001277 delete_from_swap_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001278
1279 /*
1280 * So we could skip searching mms once swap count went
1281 * to 1, we did not mark any present ptes as dirty: must
Anderson Briglia2706a1b2007-07-15 23:38:09 -07001282 * mark page dirty so shrink_page_list will preserve it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001283 */
1284 SetPageDirty(page);
1285 unlock_page(page);
1286 page_cache_release(page);
1287
1288 /*
1289 * Make sure that we aren't completely killing
1290 * interactive performance.
1291 */
1292 cond_resched();
1293 }
1294
1295 mmput(start_mm);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001296 return retval;
1297}
1298
1299/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001300 * After a successful try_to_unuse, if no swap is now in use, we know
1301 * we can empty the mmlist. swap_lock must be held on entry and exit.
1302 * Note that mmlist_lock nests inside swap_lock, and an mm must be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001303 * added to the mmlist just after page_duplicate - before would be racy.
1304 */
1305static void drain_mmlist(void)
1306{
1307 struct list_head *p, *next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001308 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001309
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001310 for (type = 0; type < nr_swapfiles; type++)
1311 if (swap_info[type]->inuse_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001312 return;
1313 spin_lock(&mmlist_lock);
1314 list_for_each_safe(p, next, &init_mm.mmlist)
1315 list_del_init(p);
1316 spin_unlock(&mmlist_lock);
1317}
1318
1319/*
1320 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001321 * corresponds to page offset for the specified swap entry.
1322 * Note that the type of this function is sector_t, but it returns page offset
1323 * into the bdev, not sector offset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001324 */
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001325static sector_t map_swap_entry(swp_entry_t entry, struct block_device **bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001326{
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001327 struct swap_info_struct *sis;
1328 struct swap_extent *start_se;
1329 struct swap_extent *se;
1330 pgoff_t offset;
1331
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001332 sis = swap_info[swp_type(entry)];
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001333 *bdev = sis->bdev;
1334
1335 offset = swp_offset(entry);
1336 start_se = sis->curr_swap_extent;
1337 se = start_se;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001338
1339 for ( ; ; ) {
1340 struct list_head *lh;
1341
1342 if (se->start_page <= offset &&
1343 offset < (se->start_page + se->nr_pages)) {
1344 return se->start_block + (offset - se->start_page);
1345 }
Hugh Dickins11d31882005-09-03 15:54:34 -07001346 lh = se->list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001347 se = list_entry(lh, struct swap_extent, list);
1348 sis->curr_swap_extent = se;
1349 BUG_ON(se == start_se); /* It *must* be present */
1350 }
1351}
1352
1353/*
Lee Schermerhornd4906e12009-12-14 17:58:49 -08001354 * Returns the page offset into bdev for the specified page's swap entry.
1355 */
1356sector_t map_swap_page(struct page *page, struct block_device **bdev)
1357{
1358 swp_entry_t entry;
1359 entry.val = page_private(page);
1360 return map_swap_entry(entry, bdev);
1361}
1362
1363/*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001364 * Free all of a swapdev's extent information
1365 */
1366static void destroy_swap_extents(struct swap_info_struct *sis)
1367{
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001368 while (!list_empty(&sis->first_swap_extent.list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001369 struct swap_extent *se;
1370
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001371 se = list_entry(sis->first_swap_extent.list.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001372 struct swap_extent, list);
1373 list_del(&se->list);
1374 kfree(se);
1375 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001376}
1377
1378/*
1379 * Add a block range (and the corresponding page range) into this swapdev's
Hugh Dickins11d31882005-09-03 15:54:34 -07001380 * extent list. The extent list is kept sorted in page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 *
Hugh Dickins11d31882005-09-03 15:54:34 -07001382 * This function rather assumes that it is called in ascending page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001383 */
1384static int
1385add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
1386 unsigned long nr_pages, sector_t start_block)
1387{
1388 struct swap_extent *se;
1389 struct swap_extent *new_se;
1390 struct list_head *lh;
1391
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001392 if (start_page == 0) {
1393 se = &sis->first_swap_extent;
1394 sis->curr_swap_extent = se;
1395 se->start_page = 0;
1396 se->nr_pages = nr_pages;
1397 se->start_block = start_block;
1398 return 1;
1399 } else {
1400 lh = sis->first_swap_extent.list.prev; /* Highest extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001401 se = list_entry(lh, struct swap_extent, list);
Hugh Dickins11d31882005-09-03 15:54:34 -07001402 BUG_ON(se->start_page + se->nr_pages != start_page);
1403 if (se->start_block + se->nr_pages == start_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001404 /* Merge it */
1405 se->nr_pages += nr_pages;
1406 return 0;
1407 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001408 }
1409
1410 /*
1411 * No merge. Insert a new extent, preserving ordering.
1412 */
1413 new_se = kmalloc(sizeof(*se), GFP_KERNEL);
1414 if (new_se == NULL)
1415 return -ENOMEM;
1416 new_se->start_page = start_page;
1417 new_se->nr_pages = nr_pages;
1418 new_se->start_block = start_block;
1419
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001420 list_add_tail(&new_se->list, &sis->first_swap_extent.list);
Hugh Dickins53092a72005-09-03 15:54:34 -07001421 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001422}
1423
1424/*
1425 * A `swap extent' is a simple thing which maps a contiguous range of pages
1426 * onto a contiguous range of disk blocks. An ordered list of swap extents
1427 * is built at swapon time and is then used at swap_writepage/swap_readpage
1428 * time for locating where on disk a page belongs.
1429 *
1430 * If the swapfile is an S_ISBLK block device, a single extent is installed.
1431 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
1432 * swap files identically.
1433 *
1434 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
1435 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
1436 * swapfiles are handled *identically* after swapon time.
1437 *
1438 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
1439 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
1440 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
1441 * requirements, they are simply tossed out - we will never use those blocks
1442 * for swapping.
1443 *
Hugh Dickinsb0d9bcd2005-09-03 15:54:31 -07001444 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001445 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
1446 * which will scribble on the fs.
1447 *
1448 * The amount of disk space which a single swap extent represents varies.
1449 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
1450 * extents in the list. To avoid much list walking, we cache the previous
1451 * search location in `curr_swap_extent', and start new searches from there.
1452 * This is extremely effective. The average number of iterations in
1453 * map_swap_page() has been measured at about 0.3 per page. - akpm.
1454 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001455static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001456{
1457 struct inode *inode;
1458 unsigned blocks_per_page;
1459 unsigned long page_no;
1460 unsigned blkbits;
1461 sector_t probe_block;
1462 sector_t last_block;
Hugh Dickins53092a72005-09-03 15:54:34 -07001463 sector_t lowest_block = -1;
1464 sector_t highest_block = 0;
1465 int nr_extents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001466 int ret;
1467
1468 inode = sis->swap_file->f_mapping->host;
1469 if (S_ISBLK(inode->i_mode)) {
1470 ret = add_swap_extent(sis, 0, sis->max, 0);
Hugh Dickins53092a72005-09-03 15:54:34 -07001471 *span = sis->pages;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001472 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001473 }
1474
1475 blkbits = inode->i_blkbits;
1476 blocks_per_page = PAGE_SIZE >> blkbits;
1477
1478 /*
1479 * Map all the blocks into the extent list. This code doesn't try
1480 * to be very smart.
1481 */
1482 probe_block = 0;
1483 page_no = 0;
1484 last_block = i_size_read(inode) >> blkbits;
1485 while ((probe_block + blocks_per_page) <= last_block &&
1486 page_no < sis->max) {
1487 unsigned block_in_page;
1488 sector_t first_block;
1489
1490 first_block = bmap(inode, probe_block);
1491 if (first_block == 0)
1492 goto bad_bmap;
1493
1494 /*
1495 * It must be PAGE_SIZE aligned on-disk
1496 */
1497 if (first_block & (blocks_per_page - 1)) {
1498 probe_block++;
1499 goto reprobe;
1500 }
1501
1502 for (block_in_page = 1; block_in_page < blocks_per_page;
1503 block_in_page++) {
1504 sector_t block;
1505
1506 block = bmap(inode, probe_block + block_in_page);
1507 if (block == 0)
1508 goto bad_bmap;
1509 if (block != first_block + block_in_page) {
1510 /* Discontiguity */
1511 probe_block++;
1512 goto reprobe;
1513 }
1514 }
1515
Hugh Dickins53092a72005-09-03 15:54:34 -07001516 first_block >>= (PAGE_SHIFT - blkbits);
1517 if (page_no) { /* exclude the header page */
1518 if (first_block < lowest_block)
1519 lowest_block = first_block;
1520 if (first_block > highest_block)
1521 highest_block = first_block;
1522 }
1523
Linus Torvalds1da177e2005-04-16 15:20:36 -07001524 /*
1525 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1526 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001527 ret = add_swap_extent(sis, page_no, 1, first_block);
1528 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001529 goto out;
Hugh Dickins53092a72005-09-03 15:54:34 -07001530 nr_extents += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001531 page_no++;
1532 probe_block += blocks_per_page;
1533reprobe:
1534 continue;
1535 }
Hugh Dickins53092a72005-09-03 15:54:34 -07001536 ret = nr_extents;
1537 *span = 1 + highest_block - lowest_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001538 if (page_no == 0)
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001539 page_no = 1; /* force Empty message */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001540 sis->max = page_no;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001541 sis->pages = page_no - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001542 sis->highest_bit = page_no - 1;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001543out:
1544 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001545bad_bmap:
1546 printk(KERN_ERR "swapon: swapfile has holes\n");
1547 ret = -EINVAL;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001548 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001549}
1550
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001551SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001552{
Hugh Dickins73c34b62009-12-14 17:58:43 -08001553 struct swap_info_struct *p = NULL;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001554 unsigned char *swap_map;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 struct file *swap_file, *victim;
1556 struct address_space *mapping;
1557 struct inode *inode;
Hugh Dickins73c34b62009-12-14 17:58:43 -08001558 char *pathname;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001559 int i, type, prev;
1560 int err;
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001561
Linus Torvalds1da177e2005-04-16 15:20:36 -07001562 if (!capable(CAP_SYS_ADMIN))
1563 return -EPERM;
1564
1565 pathname = getname(specialfile);
1566 err = PTR_ERR(pathname);
1567 if (IS_ERR(pathname))
1568 goto out;
1569
1570 victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
1571 putname(pathname);
1572 err = PTR_ERR(victim);
1573 if (IS_ERR(victim))
1574 goto out;
1575
1576 mapping = victim->f_mapping;
1577 prev = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001578 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001579 for (type = swap_list.head; type >= 0; type = swap_info[type]->next) {
1580 p = swap_info[type];
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08001581 if (p->flags & SWP_WRITEOK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001582 if (p->swap_file->f_mapping == mapping)
1583 break;
1584 }
1585 prev = type;
1586 }
1587 if (type < 0) {
1588 err = -EINVAL;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001589 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001590 goto out_dput;
1591 }
1592 if (!security_vm_enough_memory(p->pages))
1593 vm_unacct_memory(p->pages);
1594 else {
1595 err = -ENOMEM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001596 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001597 goto out_dput;
1598 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001599 if (prev < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001600 swap_list.head = p->next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001601 else
1602 swap_info[prev]->next = p->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001603 if (type == swap_list.next) {
1604 /* just pick something that's safe... */
1605 swap_list.next = swap_list.head;
1606 }
Hugh Dickins78ecba02008-07-23 21:28:23 -07001607 if (p->prio < 0) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001608 for (i = p->next; i >= 0; i = swap_info[i]->next)
1609 swap_info[i]->prio = p->prio--;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001610 least_priority++;
1611 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001612 nr_swap_pages -= p->pages;
1613 total_swap_pages -= p->pages;
1614 p->flags &= ~SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001615 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001616
Hugh Dickins35451be2009-09-21 17:02:27 -07001617 current->flags |= PF_OOM_ORIGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001618 err = try_to_unuse(type);
Hugh Dickins35451be2009-09-21 17:02:27 -07001619 current->flags &= ~PF_OOM_ORIGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001620
Linus Torvalds1da177e2005-04-16 15:20:36 -07001621 if (err) {
1622 /* re-insert swap space back into swap_list */
Hugh Dickins5d337b92005-09-03 15:54:41 -07001623 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001624 if (p->prio < 0)
1625 p->prio = --least_priority;
1626 prev = -1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001627 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
1628 if (p->prio >= swap_info[i]->prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001629 break;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001630 prev = i;
1631 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001632 p->next = i;
1633 if (prev < 0)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001634 swap_list.head = swap_list.next = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001635 else
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001636 swap_info[prev]->next = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001637 nr_swap_pages += p->pages;
1638 total_swap_pages += p->pages;
1639 p->flags |= SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001640 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001641 goto out_dput;
1642 }
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001643
1644 /* wait for any unplug function to finish */
1645 down_write(&swap_unplug_sem);
1646 up_write(&swap_unplug_sem);
1647
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001648 destroy_swap_extents(p);
Hugh Dickins570a335b2009-12-14 17:58:46 -08001649 if (p->flags & SWP_CONTINUED)
1650 free_swap_count_continuations(p);
1651
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001652 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001653 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001654 drain_mmlist();
Hugh Dickins5d337b92005-09-03 15:54:41 -07001655
1656 /* wait for anyone still in scan_swap_map */
1657 p->highest_bit = 0; /* cuts scans short */
1658 while (p->flags >= SWP_SCANNING) {
1659 spin_unlock(&swap_lock);
Nishanth Aravamudan13e4b572005-09-10 00:27:25 -07001660 schedule_timeout_uninterruptible(1);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001661 spin_lock(&swap_lock);
1662 }
1663
Linus Torvalds1da177e2005-04-16 15:20:36 -07001664 swap_file = p->swap_file;
1665 p->swap_file = NULL;
1666 p->max = 0;
1667 swap_map = p->swap_map;
1668 p->swap_map = NULL;
1669 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001670 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001671 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001672 vfree(swap_map);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08001673 /* Destroy swap account informatin */
1674 swap_cgroup_swapoff(type);
1675
Linus Torvalds1da177e2005-04-16 15:20:36 -07001676 inode = mapping->host;
1677 if (S_ISBLK(inode->i_mode)) {
1678 struct block_device *bdev = I_BDEV(inode);
1679 set_blocksize(bdev, p->old_block_size);
1680 bd_release(bdev);
1681 } else {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001682 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001683 inode->i_flags &= ~S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001684 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686 filp_close(swap_file, NULL);
1687 err = 0;
Kay Sievers66d7dd52010-10-26 14:22:06 -07001688 atomic_inc(&proc_poll_event);
1689 wake_up_interruptible(&proc_poll_wait);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001690
1691out_dput:
1692 filp_close(victim, NULL);
1693out:
1694 return err;
1695}
1696
1697#ifdef CONFIG_PROC_FS
Kay Sievers66d7dd52010-10-26 14:22:06 -07001698struct proc_swaps {
1699 struct seq_file seq;
1700 int event;
1701};
1702
1703static unsigned swaps_poll(struct file *file, poll_table *wait)
1704{
1705 struct proc_swaps *s = file->private_data;
1706
1707 poll_wait(file, &proc_poll_wait, wait);
1708
1709 if (s->event != atomic_read(&proc_poll_event)) {
1710 s->event = atomic_read(&proc_poll_event);
1711 return POLLIN | POLLRDNORM | POLLERR | POLLPRI;
1712 }
1713
1714 return POLLIN | POLLRDNORM;
1715}
1716
Linus Torvalds1da177e2005-04-16 15:20:36 -07001717/* iterator */
1718static void *swap_start(struct seq_file *swap, loff_t *pos)
1719{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001720 struct swap_info_struct *si;
1721 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001722 loff_t l = *pos;
1723
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001724 mutex_lock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001725
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001726 if (!l)
1727 return SEQ_START_TOKEN;
1728
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001729 for (type = 0; type < nr_swapfiles; type++) {
1730 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
1731 si = swap_info[type];
1732 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 continue;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001734 if (!--l)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001735 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001736 }
1737
1738 return NULL;
1739}
1740
1741static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
1742{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001743 struct swap_info_struct *si = v;
1744 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001745
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001746 if (v == SEQ_START_TOKEN)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001747 type = 0;
1748 else
1749 type = si->type + 1;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001750
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001751 for (; type < nr_swapfiles; type++) {
1752 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
1753 si = swap_info[type];
1754 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001755 continue;
1756 ++*pos;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001757 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001758 }
1759
1760 return NULL;
1761}
1762
1763static void swap_stop(struct seq_file *swap, void *v)
1764{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001765 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001766}
1767
1768static int swap_show(struct seq_file *swap, void *v)
1769{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001770 struct swap_info_struct *si = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001771 struct file *file;
1772 int len;
1773
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001774 if (si == SEQ_START_TOKEN) {
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001775 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1776 return 0;
1777 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001778
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001779 file = si->swap_file;
Jan Blunckc32c2f62008-02-14 19:38:43 -08001780 len = seq_path(swap, &file->f_path, " \t\n\\");
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001781 seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001782 len < 40 ? 40 - len : 1, " ",
1783 S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001784 "partition" : "file\t",
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001785 si->pages << (PAGE_SHIFT - 10),
1786 si->inuse_pages << (PAGE_SHIFT - 10),
1787 si->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001788 return 0;
1789}
1790
Helge Deller15ad7cd2006-12-06 20:40:36 -08001791static const struct seq_operations swaps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001792 .start = swap_start,
1793 .next = swap_next,
1794 .stop = swap_stop,
1795 .show = swap_show
1796};
1797
1798static int swaps_open(struct inode *inode, struct file *file)
1799{
Kay Sievers66d7dd52010-10-26 14:22:06 -07001800 struct proc_swaps *s;
1801 int ret;
1802
1803 s = kmalloc(sizeof(struct proc_swaps), GFP_KERNEL);
1804 if (!s)
1805 return -ENOMEM;
1806
1807 file->private_data = s;
1808
1809 ret = seq_open(file, &swaps_op);
1810 if (ret) {
1811 kfree(s);
1812 return ret;
1813 }
1814
1815 s->seq.private = s;
1816 s->event = atomic_read(&proc_poll_event);
1817 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818}
1819
Helge Deller15ad7cd2006-12-06 20:40:36 -08001820static const struct file_operations proc_swaps_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001821 .open = swaps_open,
1822 .read = seq_read,
1823 .llseek = seq_lseek,
1824 .release = seq_release,
Kay Sievers66d7dd52010-10-26 14:22:06 -07001825 .poll = swaps_poll,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001826};
1827
1828static int __init procswaps_init(void)
1829{
Denis V. Lunev3d71f862008-04-29 01:02:13 -07001830 proc_create("swaps", 0, NULL, &proc_swaps_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001831 return 0;
1832}
1833__initcall(procswaps_init);
1834#endif /* CONFIG_PROC_FS */
1835
Jan Beulich17963162008-12-16 11:35:24 +00001836#ifdef MAX_SWAPFILES_CHECK
1837static int __init max_swapfiles_check(void)
1838{
1839 MAX_SWAPFILES_CHECK();
1840 return 0;
1841}
1842late_initcall(max_swapfiles_check);
1843#endif
1844
Linus Torvalds1da177e2005-04-16 15:20:36 -07001845/*
1846 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1847 *
1848 * The swapon system call
1849 */
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001850SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001851{
Hugh Dickins73c34b62009-12-14 17:58:43 -08001852 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001853 char *name = NULL;
1854 struct block_device *bdev = NULL;
1855 struct file *swap_file = NULL;
1856 struct address_space *mapping;
1857 unsigned int type;
1858 int i, prev;
1859 int error;
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08001860 union swap_header *swap_header;
1861 unsigned int nr_good_pages;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001862 int nr_extents = 0;
Hugh Dickins53092a72005-09-03 15:54:34 -07001863 sector_t span;
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08001864 unsigned long maxpages;
Hugh Dickins73fd8742009-01-06 14:39:47 -08001865 unsigned long swapfilepages;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08001866 unsigned char *swap_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001867 struct page *page = NULL;
1868 struct inode *inode = NULL;
1869 int did_down = 0;
1870
1871 if (!capable(CAP_SYS_ADMIN))
1872 return -EPERM;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001873
1874 p = kzalloc(sizeof(*p), GFP_KERNEL);
1875 if (!p)
1876 return -ENOMEM;
1877
Hugh Dickins5d337b92005-09-03 15:54:41 -07001878 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001879 for (type = 0; type < nr_swapfiles; type++) {
1880 if (!(swap_info[type]->flags & SWP_USED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001881 break;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001882 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001883 error = -EPERM;
Christoph Lameter06972122006-06-23 02:03:35 -07001884 if (type >= MAX_SWAPFILES) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07001885 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001886 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 goto out;
1888 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001889 if (type >= nr_swapfiles) {
1890 p->type = type;
1891 swap_info[type] = p;
1892 /*
1893 * Write swap_info[type] before nr_swapfiles, in case a
1894 * racing procfs swap_start() or swap_next() is reading them.
1895 * (We never shrink nr_swapfiles, we never free this entry.)
1896 */
1897 smp_wmb();
1898 nr_swapfiles++;
1899 } else {
1900 kfree(p);
1901 p = swap_info[type];
1902 /*
1903 * Do not memset this entry: a racing procfs swap_next()
1904 * would be relying on p->type to remain valid.
1905 */
1906 }
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001907 INIT_LIST_HEAD(&p->first_swap_extent.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001908 p->flags = SWP_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001909 p->next = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001910 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001911
Linus Torvalds1da177e2005-04-16 15:20:36 -07001912 name = getname(specialfile);
1913 error = PTR_ERR(name);
1914 if (IS_ERR(name)) {
1915 name = NULL;
1916 goto bad_swap_2;
1917 }
1918 swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
1919 error = PTR_ERR(swap_file);
1920 if (IS_ERR(swap_file)) {
1921 swap_file = NULL;
1922 goto bad_swap_2;
1923 }
1924
1925 p->swap_file = swap_file;
1926 mapping = swap_file->f_mapping;
1927 inode = mapping->host;
1928
1929 error = -EBUSY;
1930 for (i = 0; i < nr_swapfiles; i++) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001931 struct swap_info_struct *q = swap_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001932
1933 if (i == type || !q->swap_file)
1934 continue;
1935 if (mapping == q->swap_file->f_mapping)
1936 goto bad_swap;
1937 }
1938
1939 error = -EINVAL;
1940 if (S_ISBLK(inode->i_mode)) {
1941 bdev = I_BDEV(inode);
1942 error = bd_claim(bdev, sys_swapon);
1943 if (error < 0) {
1944 bdev = NULL;
Rob Landleyf7b3a432005-09-22 21:44:27 -07001945 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001946 goto bad_swap;
1947 }
1948 p->old_block_size = block_size(bdev);
1949 error = set_blocksize(bdev, PAGE_SIZE);
1950 if (error < 0)
1951 goto bad_swap;
1952 p->bdev = bdev;
Nitin Guptab2725642010-05-17 11:02:42 +05301953 p->flags |= SWP_BLKDEV;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001954 } else if (S_ISREG(inode->i_mode)) {
1955 p->bdev = inode->i_sb->s_bdev;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001956 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001957 did_down = 1;
1958 if (IS_SWAPFILE(inode)) {
1959 error = -EBUSY;
1960 goto bad_swap;
1961 }
1962 } else {
1963 goto bad_swap;
1964 }
1965
Hugh Dickins73fd8742009-01-06 14:39:47 -08001966 swapfilepages = i_size_read(inode) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001967
1968 /*
1969 * Read the swap header.
1970 */
1971 if (!mapping->a_ops->readpage) {
1972 error = -EINVAL;
1973 goto bad_swap;
1974 }
Pekka Enberg090d2b12006-06-23 02:05:08 -07001975 page = read_mapping_page(mapping, 0, swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001976 if (IS_ERR(page)) {
1977 error = PTR_ERR(page);
1978 goto bad_swap;
1979 }
Hugh Dickins81e33972009-01-06 14:39:49 -08001980 swap_header = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001981
Hugh Dickins81e33972009-01-06 14:39:49 -08001982 if (memcmp("SWAPSPACE2", swap_header->magic.magic, 10)) {
Jesper Juhle97a3112006-01-11 01:50:28 +01001983 printk(KERN_ERR "Unable to find swap-space signature\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001984 error = -EINVAL;
1985 goto bad_swap;
1986 }
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001987
Hugh Dickins81e33972009-01-06 14:39:49 -08001988 /* swap partition endianess hack... */
1989 if (swab32(swap_header->info.version) == 1) {
1990 swab32s(&swap_header->info.version);
1991 swab32s(&swap_header->info.last_page);
1992 swab32s(&swap_header->info.nr_badpages);
1993 for (i = 0; i < swap_header->info.nr_badpages; i++)
1994 swab32s(&swap_header->info.badpages[i]);
1995 }
1996 /* Check the swap header's sub-version */
1997 if (swap_header->info.version != 1) {
1998 printk(KERN_WARNING
1999 "Unable to handle swap header version %d\n",
2000 swap_header->info.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002001 error = -EINVAL;
2002 goto bad_swap;
Hugh Dickins81e33972009-01-06 14:39:49 -08002003 }
2004
2005 p->lowest_bit = 1;
2006 p->cluster_next = 1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002007 p->cluster_nr = 0;
Hugh Dickins81e33972009-01-06 14:39:49 -08002008
2009 /*
2010 * Find out how many pages are allowed for a single swap
2011 * device. There are two limiting factors: 1) the number of
2012 * bits for the swap offset in the swp_entry_t type and
2013 * 2) the number of bits in the a swap pte as defined by
2014 * the different architectures. In order to find the
2015 * largest possible bit mask a swap entry with swap type 0
2016 * and swap offset ~0UL is created, encoded to a swap pte,
2017 * decoded to a swp_entry_t again and finally the swap
2018 * offset is extracted. This will mask all the bits from
2019 * the initial ~0UL mask that can't be encoded in either
2020 * the swp_entry_t or the architecture definition of a
2021 * swap pte.
2022 */
2023 maxpages = swp_offset(pte_to_swp_entry(
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002024 swp_entry_to_pte(swp_entry(0, ~0UL)))) + 1;
2025 if (maxpages > swap_header->info.last_page) {
2026 maxpages = swap_header->info.last_page + 1;
2027 /* p->max is an unsigned int: don't overflow it */
2028 if ((unsigned int)maxpages == 0)
2029 maxpages = UINT_MAX;
2030 }
Hugh Dickins81e33972009-01-06 14:39:49 -08002031 p->highest_bit = maxpages - 1;
2032
2033 error = -EINVAL;
2034 if (!maxpages)
2035 goto bad_swap;
2036 if (swapfilepages && maxpages > swapfilepages) {
2037 printk(KERN_WARNING
2038 "Swap area shorter than signature indicates\n");
2039 goto bad_swap;
2040 }
2041 if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
2042 goto bad_swap;
2043 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
2044 goto bad_swap;
2045
2046 /* OK, set up the swap map and apply the bad block list */
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002047 swap_map = vmalloc(maxpages);
Hugh Dickins81e33972009-01-06 14:39:49 -08002048 if (!swap_map) {
2049 error = -ENOMEM;
2050 goto bad_swap;
2051 }
2052
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002053 memset(swap_map, 0, maxpages);
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002054 nr_good_pages = maxpages - 1; /* omit header page */
2055
Hugh Dickins81e33972009-01-06 14:39:49 -08002056 for (i = 0; i < swap_header->info.nr_badpages; i++) {
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002057 unsigned int page_nr = swap_header->info.badpages[i];
2058 if (page_nr == 0 || page_nr > swap_header->info.last_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002059 error = -EINVAL;
2060 goto bad_swap;
2061 }
Hugh Dickinsad2bd7e2010-03-05 13:42:12 -08002062 if (page_nr < maxpages) {
2063 swap_map[page_nr] = SWAP_MAP_BAD;
2064 nr_good_pages--;
2065 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002066 }
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08002067
2068 error = swap_cgroup_swapon(type, maxpages);
2069 if (error)
2070 goto bad_swap;
2071
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002072 if (nr_good_pages) {
Hugh Dickins78ecba02008-07-23 21:28:23 -07002073 swap_map[0] = SWAP_MAP_BAD;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002074 p->max = maxpages;
2075 p->pages = nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07002076 nr_extents = setup_swap_extents(p, &span);
2077 if (nr_extents < 0) {
2078 error = nr_extents;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002079 goto bad_swap;
Hugh Dickins53092a72005-09-03 15:54:34 -07002080 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002081 nr_good_pages = p->pages;
2082 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002083 if (!nr_good_pages) {
2084 printk(KERN_WARNING "Empty swap-file\n");
2085 error = -EINVAL;
2086 goto bad_swap;
2087 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002088
Suresh Jayaraman3bd0f0c2009-09-30 10:53:48 +02002089 if (p->bdev) {
2090 if (blk_queue_nonrot(bdev_get_queue(p->bdev))) {
2091 p->flags |= SWP_SOLIDSTATE;
2092 p->cluster_next = 1 + (random32() % p->highest_bit);
2093 }
Hugh Dickins33994462010-09-09 16:38:11 -07002094 if (discard_swap(p) == 0 && (swap_flags & SWAP_FLAG_DISCARD))
Suresh Jayaraman3bd0f0c2009-09-30 10:53:48 +02002095 p->flags |= SWP_DISCARDABLE;
Hugh Dickins20137a42009-01-06 14:39:54 -08002096 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -08002097
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002098 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002099 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07002100 if (swap_flags & SWAP_FLAG_PREFER)
2101 p->prio =
2102 (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
2103 else
2104 p->prio = --least_priority;
2105 p->swap_map = swap_map;
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08002106 p->flags |= SWP_WRITEOK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002107 nr_swap_pages += nr_good_pages;
2108 total_swap_pages += nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07002109
Hugh Dickins6eb396d2005-09-03 15:54:35 -07002110 printk(KERN_INFO "Adding %uk swap on %s. "
Hugh Dickins20137a42009-01-06 14:39:54 -08002111 "Priority:%d extents:%d across:%lluk %s%s\n",
Hugh Dickins53092a72005-09-03 15:54:34 -07002112 nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
Hugh Dickins6a6ba832009-01-06 14:39:51 -08002113 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10),
Hugh Dickins20137a42009-01-06 14:39:54 -08002114 (p->flags & SWP_SOLIDSTATE) ? "SS" : "",
2115 (p->flags & SWP_DISCARDABLE) ? "D" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116
2117 /* insert swap space into swap_list: */
2118 prev = -1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002119 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
2120 if (p->prio >= swap_info[i]->prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002121 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002122 prev = i;
2123 }
2124 p->next = i;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002125 if (prev < 0)
2126 swap_list.head = swap_list.next = type;
2127 else
2128 swap_info[prev]->next = type;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002129 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002130 mutex_unlock(&swapon_mutex);
Kay Sievers66d7dd52010-10-26 14:22:06 -07002131 atomic_inc(&proc_poll_event);
2132 wake_up_interruptible(&proc_poll_wait);
2133
Linus Torvalds1da177e2005-04-16 15:20:36 -07002134 error = 0;
2135 goto out;
2136bad_swap:
2137 if (bdev) {
2138 set_blocksize(bdev, p->old_block_size);
2139 bd_release(bdev);
2140 }
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07002141 destroy_swap_extents(p);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08002142 swap_cgroup_swapoff(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002143bad_swap_2:
Hugh Dickins5d337b92005-09-03 15:54:41 -07002144 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002145 p->swap_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002146 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002147 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002148 vfree(swap_map);
2149 if (swap_file)
2150 filp_close(swap_file, NULL);
2151out:
2152 if (page && !IS_ERR(page)) {
2153 kunmap(page);
2154 page_cache_release(page);
2155 }
2156 if (name)
2157 putname(name);
2158 if (did_down) {
2159 if (!error)
2160 inode->i_flags |= S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002161 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002162 }
2163 return error;
2164}
2165
2166void si_swapinfo(struct sysinfo *val)
2167{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002168 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002169 unsigned long nr_to_be_unused = 0;
2170
Hugh Dickins5d337b92005-09-03 15:54:41 -07002171 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002172 for (type = 0; type < nr_swapfiles; type++) {
2173 struct swap_info_struct *si = swap_info[type];
2174
2175 if ((si->flags & SWP_USED) && !(si->flags & SWP_WRITEOK))
2176 nr_to_be_unused += si->inuse_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002177 }
2178 val->freeswap = nr_swap_pages + nr_to_be_unused;
2179 val->totalswap = total_swap_pages + nr_to_be_unused;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002180 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002181}
2182
2183/*
2184 * Verify that a swap entry is valid and increment its swap map count.
2185 *
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002186 * Returns error code in following case.
2187 * - success -> 0
2188 * - swp_entry is invalid -> EINVAL
2189 * - swp_entry is migration entry -> EINVAL
2190 * - swap-cache reference is requested but there is already one. -> EEXIST
2191 * - swap-cache reference is requested but the entry is not used. -> ENOENT
Hugh Dickins570a335b2009-12-14 17:58:46 -08002192 * - swap-mapped reference requested but needs continued swap count. -> ENOMEM
Linus Torvalds1da177e2005-04-16 15:20:36 -07002193 */
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002194static int __swap_duplicate(swp_entry_t entry, unsigned char usage)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002195{
Hugh Dickins73c34b62009-12-14 17:58:43 -08002196 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002197 unsigned long offset, type;
Hugh Dickins8d69aae2009-12-14 17:58:45 -08002198 unsigned char count;
2199 unsigned char has_cache;
Hugh Dickins253d5532009-12-14 17:58:44 -08002200 int err = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002201
Andi Kleena7420aa2009-09-16 11:50:05 +02002202 if (non_swap_entry(entry))
Hugh Dickins253d5532009-12-14 17:58:44 -08002203 goto out;
Christoph Lameter06972122006-06-23 02:03:35 -07002204
Linus Torvalds1da177e2005-04-16 15:20:36 -07002205 type = swp_type(entry);
2206 if (type >= nr_swapfiles)
2207 goto bad_file;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002208 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209 offset = swp_offset(entry);
2210
Hugh Dickins5d337b92005-09-03 15:54:41 -07002211 spin_lock(&swap_lock);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002212 if (unlikely(offset >= p->max))
2213 goto unlock_out;
2214
Hugh Dickins253d5532009-12-14 17:58:44 -08002215 count = p->swap_map[offset];
2216 has_cache = count & SWAP_HAS_CACHE;
2217 count &= ~SWAP_HAS_CACHE;
2218 err = 0;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002219
Hugh Dickins253d5532009-12-14 17:58:44 -08002220 if (usage == SWAP_HAS_CACHE) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002221
2222 /* set SWAP_HAS_CACHE if there is no cache and entry is used */
Hugh Dickins253d5532009-12-14 17:58:44 -08002223 if (!has_cache && count)
2224 has_cache = SWAP_HAS_CACHE;
2225 else if (has_cache) /* someone else added cache */
2226 err = -EEXIST;
2227 else /* no users remaining */
2228 err = -ENOENT;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002229
2230 } else if (count || has_cache) {
Hugh Dickins253d5532009-12-14 17:58:44 -08002231
Hugh Dickins570a335b2009-12-14 17:58:46 -08002232 if ((count & ~COUNT_CONTINUED) < SWAP_MAP_MAX)
2233 count += usage;
2234 else if ((count & ~COUNT_CONTINUED) > SWAP_MAP_MAX)
Hugh Dickins253d5532009-12-14 17:58:44 -08002235 err = -EINVAL;
Hugh Dickins570a335b2009-12-14 17:58:46 -08002236 else if (swap_count_continued(p, offset, count))
2237 count = COUNT_CONTINUED;
2238 else
2239 err = -ENOMEM;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002240 } else
Hugh Dickins253d5532009-12-14 17:58:44 -08002241 err = -ENOENT; /* unused swap entry */
2242
2243 p->swap_map[offset] = count | has_cache;
2244
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002245unlock_out:
Hugh Dickins5d337b92005-09-03 15:54:41 -07002246 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002247out:
Hugh Dickins253d5532009-12-14 17:58:44 -08002248 return err;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002249
2250bad_file:
2251 printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
2252 goto out;
2253}
Hugh Dickins253d5532009-12-14 17:58:44 -08002254
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002255/*
Hugh Dickinsaaa46862009-12-14 17:58:47 -08002256 * Help swapoff by noting that swap entry belongs to shmem/tmpfs
2257 * (in which case its reference count is never incremented).
2258 */
2259void swap_shmem_alloc(swp_entry_t entry)
2260{
2261 __swap_duplicate(entry, SWAP_MAP_SHMEM);
2262}
2263
2264/*
Hugh Dickins08259d52010-03-05 13:42:25 -08002265 * Increase reference count of swap entry by 1.
2266 * Returns 0 for success, or -ENOMEM if a swap_count_continuation is required
2267 * but could not be atomically allocated. Returns 0, just as if it succeeded,
2268 * if __swap_duplicate() fails for another reason (-EINVAL or -ENOENT), which
2269 * might occur if a page table entry has got corrupted.
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002270 */
Hugh Dickins570a335b2009-12-14 17:58:46 -08002271int swap_duplicate(swp_entry_t entry)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002272{
Hugh Dickins570a335b2009-12-14 17:58:46 -08002273 int err = 0;
2274
2275 while (!err && __swap_duplicate(entry, 1) == -ENOMEM)
2276 err = add_swap_count_continuation(entry, GFP_ATOMIC);
2277 return err;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002278}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002279
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002280/*
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002281 * @entry: swap entry for which we allocate swap cache.
2282 *
Hugh Dickins73c34b62009-12-14 17:58:43 -08002283 * Called when allocating swap cache for existing swap entry,
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002284 * This can return error codes. Returns 0 at success.
2285 * -EBUSY means there is a swap cache.
2286 * Note: return code is different from swap_duplicate().
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002287 */
2288int swapcache_prepare(swp_entry_t entry)
2289{
Hugh Dickins253d5532009-12-14 17:58:44 -08002290 return __swap_duplicate(entry, SWAP_HAS_CACHE);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002291}
2292
Linus Torvalds1da177e2005-04-16 15:20:36 -07002293/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07002294 * swap_lock prevents swap_map being freed. Don't grab an extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07002295 * reference on the swaphandle, it doesn't matter if it becomes unused.
2296 */
2297int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
2298{
Hugh Dickins89528982008-02-04 22:28:45 -08002299 struct swap_info_struct *si;
Hugh Dickins3f9e7942006-09-29 02:01:26 -07002300 int our_page_cluster = page_cluster;
Hugh Dickins89528982008-02-04 22:28:45 -08002301 pgoff_t target, toff;
2302 pgoff_t base, end;
2303 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002304
Hugh Dickins3f9e7942006-09-29 02:01:26 -07002305 if (!our_page_cluster) /* no readahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002306 return 0;
Hugh Dickins89528982008-02-04 22:28:45 -08002307
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002308 si = swap_info[swp_type(entry)];
Hugh Dickins89528982008-02-04 22:28:45 -08002309 target = swp_offset(entry);
2310 base = (target >> our_page_cluster) << our_page_cluster;
2311 end = base + (1 << our_page_cluster);
2312 if (!base) /* first page is swap header */
2313 base++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002314
Hugh Dickins5d337b92005-09-03 15:54:41 -07002315 spin_lock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08002316 if (end > si->max) /* don't go beyond end of map */
2317 end = si->max;
2318
2319 /* Count contiguous allocated slots above our target */
2320 for (toff = target; ++toff < end; nr_pages++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002321 /* Don't read in free or bad pages */
Hugh Dickins89528982008-02-04 22:28:45 -08002322 if (!si->swap_map[toff])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002323 break;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002324 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002325 break;
Hugh Dickins89528982008-02-04 22:28:45 -08002326 }
2327 /* Count contiguous allocated slots below our target */
2328 for (toff = target; --toff >= base; nr_pages++) {
2329 /* Don't read in free or bad pages */
2330 if (!si->swap_map[toff])
2331 break;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002332 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
Hugh Dickins89528982008-02-04 22:28:45 -08002333 break;
2334 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07002335 spin_unlock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08002336
2337 /*
2338 * Indicate starting offset, and return number of pages to get:
2339 * if only 1, say 0, since there's then no readahead to be done.
2340 */
2341 *offset = ++toff;
2342 return nr_pages? ++nr_pages: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002343}
Hugh Dickins570a335b2009-12-14 17:58:46 -08002344
2345/*
2346 * add_swap_count_continuation - called when a swap count is duplicated
2347 * beyond SWAP_MAP_MAX, it allocates a new page and links that to the entry's
2348 * page of the original vmalloc'ed swap_map, to hold the continuation count
2349 * (for that entry and for its neighbouring PAGE_SIZE swap entries). Called
2350 * again when count is duplicated beyond SWAP_MAP_MAX * SWAP_CONT_MAX, etc.
2351 *
2352 * These continuation pages are seldom referenced: the common paths all work
2353 * on the original swap_map, only referring to a continuation page when the
2354 * low "digit" of a count is incremented or decremented through SWAP_MAP_MAX.
2355 *
2356 * add_swap_count_continuation(, GFP_ATOMIC) can be called while holding
2357 * page table locks; if it fails, add_swap_count_continuation(, GFP_KERNEL)
2358 * can be called after dropping locks.
2359 */
2360int add_swap_count_continuation(swp_entry_t entry, gfp_t gfp_mask)
2361{
2362 struct swap_info_struct *si;
2363 struct page *head;
2364 struct page *page;
2365 struct page *list_page;
2366 pgoff_t offset;
2367 unsigned char count;
2368
2369 /*
2370 * When debugging, it's easier to use __GFP_ZERO here; but it's better
2371 * for latency not to zero a page while GFP_ATOMIC and holding locks.
2372 */
2373 page = alloc_page(gfp_mask | __GFP_HIGHMEM);
2374
2375 si = swap_info_get(entry);
2376 if (!si) {
2377 /*
2378 * An acceptable race has occurred since the failing
2379 * __swap_duplicate(): the swap entry has been freed,
2380 * perhaps even the whole swap_map cleared for swapoff.
2381 */
2382 goto outer;
2383 }
2384
2385 offset = swp_offset(entry);
2386 count = si->swap_map[offset] & ~SWAP_HAS_CACHE;
2387
2388 if ((count & ~COUNT_CONTINUED) != SWAP_MAP_MAX) {
2389 /*
2390 * The higher the swap count, the more likely it is that tasks
2391 * will race to add swap count continuation: we need to avoid
2392 * over-provisioning.
2393 */
2394 goto out;
2395 }
2396
2397 if (!page) {
2398 spin_unlock(&swap_lock);
2399 return -ENOMEM;
2400 }
2401
2402 /*
2403 * We are fortunate that although vmalloc_to_page uses pte_offset_map,
2404 * no architecture is using highmem pages for kernel pagetables: so it
2405 * will not corrupt the GFP_ATOMIC caller's atomic pagetable kmaps.
2406 */
2407 head = vmalloc_to_page(si->swap_map + offset);
2408 offset &= ~PAGE_MASK;
2409
2410 /*
2411 * Page allocation does not initialize the page's lru field,
2412 * but it does always reset its private field.
2413 */
2414 if (!page_private(head)) {
2415 BUG_ON(count & COUNT_CONTINUED);
2416 INIT_LIST_HEAD(&head->lru);
2417 set_page_private(head, SWP_CONTINUED);
2418 si->flags |= SWP_CONTINUED;
2419 }
2420
2421 list_for_each_entry(list_page, &head->lru, lru) {
2422 unsigned char *map;
2423
2424 /*
2425 * If the previous map said no continuation, but we've found
2426 * a continuation page, free our allocation and use this one.
2427 */
2428 if (!(count & COUNT_CONTINUED))
2429 goto out;
2430
2431 map = kmap_atomic(list_page, KM_USER0) + offset;
2432 count = *map;
2433 kunmap_atomic(map, KM_USER0);
2434
2435 /*
2436 * If this continuation count now has some space in it,
2437 * free our allocation and use this one.
2438 */
2439 if ((count & ~COUNT_CONTINUED) != SWAP_CONT_MAX)
2440 goto out;
2441 }
2442
2443 list_add_tail(&page->lru, &head->lru);
2444 page = NULL; /* now it's attached, don't free it */
2445out:
2446 spin_unlock(&swap_lock);
2447outer:
2448 if (page)
2449 __free_page(page);
2450 return 0;
2451}
2452
2453/*
2454 * swap_count_continued - when the original swap_map count is incremented
2455 * from SWAP_MAP_MAX, check if there is already a continuation page to carry
2456 * into, carry if so, or else fail until a new continuation page is allocated;
2457 * when the original swap_map count is decremented from 0 with continuation,
2458 * borrow from the continuation and report whether it still holds more.
2459 * Called while __swap_duplicate() or swap_entry_free() holds swap_lock.
2460 */
2461static bool swap_count_continued(struct swap_info_struct *si,
2462 pgoff_t offset, unsigned char count)
2463{
2464 struct page *head;
2465 struct page *page;
2466 unsigned char *map;
2467
2468 head = vmalloc_to_page(si->swap_map + offset);
2469 if (page_private(head) != SWP_CONTINUED) {
2470 BUG_ON(count & COUNT_CONTINUED);
2471 return false; /* need to add count continuation */
2472 }
2473
2474 offset &= ~PAGE_MASK;
2475 page = list_entry(head->lru.next, struct page, lru);
2476 map = kmap_atomic(page, KM_USER0) + offset;
2477
2478 if (count == SWAP_MAP_MAX) /* initial increment from swap_map */
2479 goto init_map; /* jump over SWAP_CONT_MAX checks */
2480
2481 if (count == (SWAP_MAP_MAX | COUNT_CONTINUED)) { /* incrementing */
2482 /*
2483 * Think of how you add 1 to 999
2484 */
2485 while (*map == (SWAP_CONT_MAX | COUNT_CONTINUED)) {
2486 kunmap_atomic(map, KM_USER0);
2487 page = list_entry(page->lru.next, struct page, lru);
2488 BUG_ON(page == head);
2489 map = kmap_atomic(page, KM_USER0) + offset;
2490 }
2491 if (*map == SWAP_CONT_MAX) {
2492 kunmap_atomic(map, KM_USER0);
2493 page = list_entry(page->lru.next, struct page, lru);
2494 if (page == head)
2495 return false; /* add count continuation */
2496 map = kmap_atomic(page, KM_USER0) + offset;
2497init_map: *map = 0; /* we didn't zero the page */
2498 }
2499 *map += 1;
2500 kunmap_atomic(map, KM_USER0);
2501 page = list_entry(page->lru.prev, struct page, lru);
2502 while (page != head) {
2503 map = kmap_atomic(page, KM_USER0) + offset;
2504 *map = COUNT_CONTINUED;
2505 kunmap_atomic(map, KM_USER0);
2506 page = list_entry(page->lru.prev, struct page, lru);
2507 }
2508 return true; /* incremented */
2509
2510 } else { /* decrementing */
2511 /*
2512 * Think of how you subtract 1 from 1000
2513 */
2514 BUG_ON(count != COUNT_CONTINUED);
2515 while (*map == COUNT_CONTINUED) {
2516 kunmap_atomic(map, KM_USER0);
2517 page = list_entry(page->lru.next, struct page, lru);
2518 BUG_ON(page == head);
2519 map = kmap_atomic(page, KM_USER0) + offset;
2520 }
2521 BUG_ON(*map == 0);
2522 *map -= 1;
2523 if (*map == 0)
2524 count = 0;
2525 kunmap_atomic(map, KM_USER0);
2526 page = list_entry(page->lru.prev, struct page, lru);
2527 while (page != head) {
2528 map = kmap_atomic(page, KM_USER0) + offset;
2529 *map = SWAP_CONT_MAX | count;
2530 count = COUNT_CONTINUED;
2531 kunmap_atomic(map, KM_USER0);
2532 page = list_entry(page->lru.prev, struct page, lru);
2533 }
2534 return count == COUNT_CONTINUED;
2535 }
2536}
2537
2538/*
2539 * free_swap_count_continuations - swapoff free all the continuation pages
2540 * appended to the swap_map, after swap_map is quiesced, before vfree'ing it.
2541 */
2542static void free_swap_count_continuations(struct swap_info_struct *si)
2543{
2544 pgoff_t offset;
2545
2546 for (offset = 0; offset < si->max; offset += PAGE_SIZE) {
2547 struct page *head;
2548 head = vmalloc_to_page(si->swap_map + offset);
2549 if (page_private(head)) {
2550 struct list_head *this, *next;
2551 list_for_each_safe(this, next, &head->lru) {
2552 struct page *page;
2553 page = list_entry(this, struct page, lru);
2554 list_del(this);
2555 __free_page(page);
2556 }
2557 }
2558 }
2559}