blob: 16de84b56644bc46364dfb628bf67ed0186c2add [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>
25#include <linux/rmap.h>
26#include <linux/security.h>
27#include <linux/backing-dev.h>
Ingo Molnarfc0abb12006-01-18 17:42:33 -080028#include <linux/mutex.h>
Randy.Dunlapc59ede72006-01-11 12:17:46 -080029#include <linux/capability.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070030#include <linux/syscalls.h>
Balbir Singh8a9f3cc2008-02-07 00:13:53 -080031#include <linux/memcontrol.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070032
33#include <asm/pgtable.h>
34#include <asm/tlbflush.h>
35#include <linux/swapops.h>
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -080036#include <linux/page_cgroup.h>
Linus Torvalds1da177e2005-04-16 15:20:36 -070037
Adrian Bunk7c363b82008-07-25 19:46:24 -070038static DEFINE_SPINLOCK(swap_lock);
39static unsigned int nr_swapfiles;
Hugh Dickinsb9627162009-01-06 14:39:41 -080040long nr_swap_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -070041long total_swap_pages;
42static int swap_overflow;
Hugh Dickins78ecba02008-07-23 21:28:23 -070043static int least_priority;
Linus Torvalds1da177e2005-04-16 15:20:36 -070044
Linus Torvalds1da177e2005-04-16 15:20:36 -070045static const char Bad_file[] = "Bad swap file entry ";
46static const char Unused_file[] = "Unused swap file entry ";
47static const char Bad_offset[] = "Bad swap offset entry ";
48static const char Unused_offset[] = "Unused swap offset entry ";
49
Adrian Bunk7c363b82008-07-25 19:46:24 -070050static struct swap_list_t swap_list = {-1, -1};
Linus Torvalds1da177e2005-04-16 15:20:36 -070051
Hugh Dickinsefa90a92009-12-14 17:58:41 -080052static struct swap_info_struct *swap_info[MAX_SWAPFILES];
Linus Torvalds1da177e2005-04-16 15:20:36 -070053
Ingo Molnarfc0abb12006-01-18 17:42:33 -080054static DEFINE_MUTEX(swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -070055
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -070056/* For reference count accounting in swap_map */
57/* enum for swap_map[] handling. internal use only */
58enum {
59 SWAP_MAP = 0, /* ops for reference from swap users */
60 SWAP_CACHE, /* ops for reference from swap cache */
61};
62
63static inline int swap_count(unsigned short ent)
64{
65 return ent & SWAP_COUNT_MASK;
66}
67
68static inline bool swap_has_cache(unsigned short ent)
69{
70 return !!(ent & SWAP_HAS_CACHE);
71}
72
73static inline unsigned short encode_swapmap(int count, bool has_cache)
74{
75 unsigned short ret = count;
76
77 if (has_cache)
78 return SWAP_HAS_CACHE | ret;
79 return ret;
80}
81
Hugh Dickinsefa90a92009-12-14 17:58:41 -080082/* returns 1 if swap entry is freed */
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -070083static int
84__try_to_reclaim_swap(struct swap_info_struct *si, unsigned long offset)
85{
Hugh Dickinsefa90a92009-12-14 17:58:41 -080086 swp_entry_t entry = swp_entry(si->type, offset);
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -070087 struct page *page;
88 int ret = 0;
89
90 page = find_get_page(&swapper_space, entry.val);
91 if (!page)
92 return 0;
93 /*
94 * This function is called from scan_swap_map() and it's called
95 * by vmscan.c at reclaiming pages. So, we hold a lock on a page, here.
96 * We have to use trylock for avoiding deadlock. This is a special
97 * case and you should use try_to_free_swap() with explicit lock_page()
98 * in usual operations.
99 */
100 if (trylock_page(page)) {
101 ret = try_to_free_swap(page);
102 unlock_page(page);
103 }
104 page_cache_release(page);
105 return ret;
106}
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700107
Linus Torvalds1da177e2005-04-16 15:20:36 -0700108/*
109 * We need this because the bdev->unplug_fn can sleep and we cannot
Hugh Dickins5d337b92005-09-03 15:54:41 -0700110 * hold swap_lock while calling the unplug_fn. And swap_lock
Ingo Molnarfc0abb12006-01-18 17:42:33 -0800111 * cannot be turned into a mutex.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700112 */
113static DECLARE_RWSEM(swap_unplug_sem);
114
Linus Torvalds1da177e2005-04-16 15:20:36 -0700115void swap_unplug_io_fn(struct backing_dev_info *unused_bdi, struct page *page)
116{
117 swp_entry_t entry;
118
119 down_read(&swap_unplug_sem);
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700120 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700121 if (PageSwapCache(page)) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800122 struct block_device *bdev = swap_info[swp_type(entry)]->bdev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700123 struct backing_dev_info *bdi;
124
125 /*
126 * If the page is removed from swapcache from under us (with a
127 * racy try_to_unuse/swapoff) we need an additional reference
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700128 * count to avoid reading garbage from page_private(page) above.
129 * If the WARN_ON triggers during a swapoff it maybe the race
Linus Torvalds1da177e2005-04-16 15:20:36 -0700130 * condition and it's harmless. However if it triggers without
131 * swapoff it signals a problem.
132 */
133 WARN_ON(page_count(page) <= 1);
134
135 bdi = bdev->bd_inode->i_mapping->backing_dev_info;
McMullan, Jasonba323112005-05-16 21:53:40 -0700136 blk_run_backing_dev(bdi, page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700137 }
138 up_read(&swap_unplug_sem);
139}
140
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800141/*
142 * swapon tell device that all the old swap contents can be discarded,
143 * to allow the swap device to optimize its wear-levelling.
144 */
145static int discard_swap(struct swap_info_struct *si)
146{
147 struct swap_extent *se;
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800148 sector_t start_block;
149 sector_t nr_blocks;
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800150 int err = 0;
151
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800152 /* Do not discard the swap header page! */
153 se = &si->first_swap_extent;
154 start_block = (se->start_block + 1) << (PAGE_SHIFT - 9);
155 nr_blocks = ((sector_t)se->nr_pages - 1) << (PAGE_SHIFT - 9);
156 if (nr_blocks) {
157 err = blkdev_issue_discard(si->bdev, start_block,
158 nr_blocks, GFP_KERNEL, DISCARD_FL_BARRIER);
159 if (err)
160 return err;
161 cond_resched();
162 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800163
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800164 list_for_each_entry(se, &si->first_swap_extent.list, list) {
165 start_block = se->start_block << (PAGE_SHIFT - 9);
166 nr_blocks = (sector_t)se->nr_pages << (PAGE_SHIFT - 9);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800167
168 err = blkdev_issue_discard(si->bdev, start_block,
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800169 nr_blocks, GFP_KERNEL, DISCARD_FL_BARRIER);
Hugh Dickins6a6ba832009-01-06 14:39:51 -0800170 if (err)
171 break;
172
173 cond_resched();
174 }
175 return err; /* That will often be -EOPNOTSUPP */
176}
177
Hugh Dickins7992fde2009-01-06 14:39:53 -0800178/*
179 * swap allocation tell device that a cluster of swap can now be discarded,
180 * to allow the swap device to optimize its wear-levelling.
181 */
182static void discard_swap_cluster(struct swap_info_struct *si,
183 pgoff_t start_page, pgoff_t nr_pages)
184{
185 struct swap_extent *se = si->curr_swap_extent;
186 int found_extent = 0;
187
188 while (nr_pages) {
189 struct list_head *lh;
190
191 if (se->start_page <= start_page &&
192 start_page < se->start_page + se->nr_pages) {
193 pgoff_t offset = start_page - se->start_page;
194 sector_t start_block = se->start_block + offset;
Hugh Dickins858a29902009-01-06 14:39:56 -0800195 sector_t nr_blocks = se->nr_pages - offset;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800196
197 if (nr_blocks > nr_pages)
198 nr_blocks = nr_pages;
199 start_page += nr_blocks;
200 nr_pages -= nr_blocks;
201
202 if (!found_extent++)
203 si->curr_swap_extent = se;
204
205 start_block <<= PAGE_SHIFT - 9;
206 nr_blocks <<= PAGE_SHIFT - 9;
207 if (blkdev_issue_discard(si->bdev, start_block,
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800208 nr_blocks, GFP_NOIO, DISCARD_FL_BARRIER))
Hugh Dickins7992fde2009-01-06 14:39:53 -0800209 break;
210 }
211
212 lh = se->list.next;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800213 se = list_entry(lh, struct swap_extent, list);
214 }
215}
216
217static int wait_for_discard(void *word)
218{
219 schedule();
220 return 0;
221}
222
Hugh Dickins048c27f2005-09-03 15:54:40 -0700223#define SWAPFILE_CLUSTER 256
224#define LATENCY_LIMIT 256
225
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700226static inline unsigned long scan_swap_map(struct swap_info_struct *si,
227 int cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700228{
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800229 unsigned long offset;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800230 unsigned long scan_base;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800231 unsigned long last_in_cluster = 0;
Hugh Dickins048c27f2005-09-03 15:54:40 -0700232 int latency_ration = LATENCY_LIMIT;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800233 int found_free_cluster = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700234
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800235 /*
Hugh Dickins7dfad412005-09-03 15:54:38 -0700236 * We try to cluster swap pages by allocating them sequentially
237 * in swap. Once we've allocated SWAPFILE_CLUSTER pages this
238 * way, however, we resort to first-free allocation, starting
239 * a new cluster. This prevents us from scattering swap pages
240 * all over the entire swap partition, so that we reduce
241 * overall disk seek times between swap pages. -- sct
242 * But we do now try to find an empty cluster. -Andrea
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800243 * And we let swap pages go all over an SSD partition. Hugh
Hugh Dickins7dfad412005-09-03 15:54:38 -0700244 */
245
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700246 si->flags += SWP_SCANNING;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800247 scan_base = offset = si->cluster_next;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800248
249 if (unlikely(!si->cluster_nr--)) {
250 if (si->pages - si->inuse_pages < SWAPFILE_CLUSTER) {
251 si->cluster_nr = SWAPFILE_CLUSTER - 1;
252 goto checks;
253 }
Hugh Dickins7992fde2009-01-06 14:39:53 -0800254 if (si->flags & SWP_DISCARDABLE) {
255 /*
256 * Start range check on racing allocations, in case
257 * they overlap the cluster we eventually decide on
258 * (we scan without swap_lock to allow preemption).
259 * It's hardly conceivable that cluster_nr could be
260 * wrapped during our scan, but don't depend on it.
261 */
262 if (si->lowest_alloc)
263 goto checks;
264 si->lowest_alloc = si->max;
265 si->highest_alloc = 0;
266 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700267 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700268
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800269 /*
270 * If seek is expensive, start searching for new cluster from
271 * start of partition, to minimize the span of allocated swap.
272 * But if seek is cheap, search from our current position, so
273 * that swap is allocated from all over the partition: if the
274 * Flash Translation Layer only remaps within limited zones,
275 * we don't want to wear out the first zone too quickly.
276 */
277 if (!(si->flags & SWP_SOLIDSTATE))
278 scan_base = offset = si->lowest_bit;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700279 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
280
281 /* Locate the first empty (unaligned) cluster */
282 for (; last_in_cluster <= si->highest_bit; offset++) {
283 if (si->swap_map[offset])
284 last_in_cluster = offset + SWAPFILE_CLUSTER;
285 else if (offset == last_in_cluster) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700286 spin_lock(&swap_lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800287 offset -= SWAPFILE_CLUSTER - 1;
288 si->cluster_next = offset;
289 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800290 found_free_cluster = 1;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800291 goto checks;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700292 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700293 if (unlikely(--latency_ration < 0)) {
294 cond_resched();
295 latency_ration = LATENCY_LIMIT;
296 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700297 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800298
299 offset = si->lowest_bit;
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800300 last_in_cluster = offset + SWAPFILE_CLUSTER - 1;
301
302 /* Locate the first empty (unaligned) cluster */
303 for (; last_in_cluster < scan_base; offset++) {
304 if (si->swap_map[offset])
305 last_in_cluster = offset + SWAPFILE_CLUSTER;
306 else if (offset == last_in_cluster) {
307 spin_lock(&swap_lock);
308 offset -= SWAPFILE_CLUSTER - 1;
309 si->cluster_next = offset;
310 si->cluster_nr = SWAPFILE_CLUSTER - 1;
311 found_free_cluster = 1;
312 goto checks;
313 }
314 if (unlikely(--latency_ration < 0)) {
315 cond_resched();
316 latency_ration = LATENCY_LIMIT;
317 }
318 }
319
320 offset = scan_base;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700321 spin_lock(&swap_lock);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800322 si->cluster_nr = SWAPFILE_CLUSTER - 1;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800323 si->lowest_alloc = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700324 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700325
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800326checks:
327 if (!(si->flags & SWP_WRITEOK))
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700328 goto no_page;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700329 if (!si->highest_bit)
330 goto no_page;
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800331 if (offset > si->highest_bit)
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800332 scan_base = offset = si->lowest_bit;
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700333
334 /* reuse swap entry of cache-only swap if not busy. */
335 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
336 int swap_was_freed;
337 spin_unlock(&swap_lock);
338 swap_was_freed = __try_to_reclaim_swap(si, offset);
339 spin_lock(&swap_lock);
340 /* entry was freed successfully, try to use this again */
341 if (swap_was_freed)
342 goto checks;
343 goto scan; /* check next one */
344 }
345
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800346 if (si->swap_map[offset])
347 goto scan;
Hugh Dickins7dfad412005-09-03 15:54:38 -0700348
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800349 if (offset == si->lowest_bit)
350 si->lowest_bit++;
351 if (offset == si->highest_bit)
352 si->highest_bit--;
353 si->inuse_pages++;
354 if (si->inuse_pages == si->pages) {
355 si->lowest_bit = si->max;
356 si->highest_bit = 0;
357 }
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700358 if (cache == SWAP_CACHE) /* at usual swap-out via vmscan.c */
359 si->swap_map[offset] = encode_swapmap(0, true);
360 else /* at suspend */
361 si->swap_map[offset] = encode_swapmap(1, false);
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800362 si->cluster_next = offset + 1;
363 si->flags -= SWP_SCANNING;
Hugh Dickins7992fde2009-01-06 14:39:53 -0800364
365 if (si->lowest_alloc) {
366 /*
367 * Only set when SWP_DISCARDABLE, and there's a scan
368 * for a free cluster in progress or just completed.
369 */
370 if (found_free_cluster) {
371 /*
372 * To optimize wear-levelling, discard the
373 * old data of the cluster, taking care not to
374 * discard any of its pages that have already
375 * been allocated by racing tasks (offset has
376 * already stepped over any at the beginning).
377 */
378 if (offset < si->highest_alloc &&
379 si->lowest_alloc <= last_in_cluster)
380 last_in_cluster = si->lowest_alloc - 1;
381 si->flags |= SWP_DISCARDING;
382 spin_unlock(&swap_lock);
383
384 if (offset < last_in_cluster)
385 discard_swap_cluster(si, offset,
386 last_in_cluster - offset + 1);
387
388 spin_lock(&swap_lock);
389 si->lowest_alloc = 0;
390 si->flags &= ~SWP_DISCARDING;
391
392 smp_mb(); /* wake_up_bit advises this */
393 wake_up_bit(&si->flags, ilog2(SWP_DISCARDING));
394
395 } else if (si->flags & SWP_DISCARDING) {
396 /*
397 * Delay using pages allocated by racing tasks
398 * until the whole discard has been issued. We
399 * could defer that delay until swap_writepage,
400 * but it's easier to keep this self-contained.
401 */
402 spin_unlock(&swap_lock);
403 wait_on_bit(&si->flags, ilog2(SWP_DISCARDING),
404 wait_for_discard, TASK_UNINTERRUPTIBLE);
405 spin_lock(&swap_lock);
406 } else {
407 /*
408 * Note pages allocated by racing tasks while
409 * scan for a free cluster is in progress, so
410 * that its final discard can exclude them.
411 */
412 if (offset < si->lowest_alloc)
413 si->lowest_alloc = offset;
414 if (offset > si->highest_alloc)
415 si->highest_alloc = offset;
416 }
417 }
Hugh Dickinsebebbbe2009-01-06 14:39:50 -0800418 return offset;
419
420scan:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700421 spin_unlock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700422 while (++offset <= si->highest_bit) {
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700423 if (!si->swap_map[offset]) {
Hugh Dickins5d337b92005-09-03 15:54:41 -0700424 spin_lock(&swap_lock);
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700425 goto checks;
426 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700427 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
428 spin_lock(&swap_lock);
429 goto checks;
430 }
Hugh Dickins048c27f2005-09-03 15:54:40 -0700431 if (unlikely(--latency_ration < 0)) {
432 cond_resched();
433 latency_ration = LATENCY_LIMIT;
434 }
Hugh Dickins7dfad412005-09-03 15:54:38 -0700435 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800436 offset = si->lowest_bit;
437 while (++offset < scan_base) {
438 if (!si->swap_map[offset]) {
439 spin_lock(&swap_lock);
440 goto checks;
441 }
KAMEZAWA Hiroyukic9e44412009-06-16 15:32:54 -0700442 if (vm_swap_full() && si->swap_map[offset] == SWAP_HAS_CACHE) {
443 spin_lock(&swap_lock);
444 goto checks;
445 }
Hugh Dickinsc60aa172009-01-06 14:39:55 -0800446 if (unlikely(--latency_ration < 0)) {
447 cond_resched();
448 latency_ration = LATENCY_LIMIT;
449 }
450 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700451 spin_lock(&swap_lock);
Hugh Dickins7dfad412005-09-03 15:54:38 -0700452
453no_page:
Hugh Dickins52b7efdb2005-09-03 15:54:39 -0700454 si->flags -= SWP_SCANNING;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700455 return 0;
456}
457
458swp_entry_t get_swap_page(void)
459{
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700460 struct swap_info_struct *si;
461 pgoff_t offset;
462 int type, next;
463 int wrapped = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700464
Hugh Dickins5d337b92005-09-03 15:54:41 -0700465 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700466 if (nr_swap_pages <= 0)
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700467 goto noswap;
468 nr_swap_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700469
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700470 for (type = swap_list.next; type >= 0 && wrapped < 2; type = next) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800471 si = swap_info[type];
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700472 next = si->next;
473 if (next < 0 ||
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800474 (!wrapped && si->prio != swap_info[next]->prio)) {
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700475 next = swap_list.head;
476 wrapped++;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700477 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700478
479 if (!si->highest_bit)
480 continue;
481 if (!(si->flags & SWP_WRITEOK))
482 continue;
483
484 swap_list.next = next;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700485 /* This is called for allocating swap entry for cache */
486 offset = scan_swap_map(si, SWAP_CACHE);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700487 if (offset) {
488 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700489 return swp_entry(type, offset);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700490 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700491 next = swap_list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700492 }
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700493
494 nr_swap_pages++;
495noswap:
Hugh Dickins5d337b92005-09-03 15:54:41 -0700496 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -0700497 return (swp_entry_t) {0};
Linus Torvalds1da177e2005-04-16 15:20:36 -0700498}
499
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700500/* The only caller of this function is now susupend routine */
Rafael J. Wysocki3a291a22006-01-06 00:16:37 -0800501swp_entry_t get_swap_page_of_type(int type)
502{
503 struct swap_info_struct *si;
504 pgoff_t offset;
505
506 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800507 si = swap_info[type];
508 if (si && (si->flags & SWP_WRITEOK)) {
Rafael J. Wysocki3a291a22006-01-06 00:16:37 -0800509 nr_swap_pages--;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700510 /* This is called for allocating swap entry, not cache */
511 offset = scan_swap_map(si, SWAP_MAP);
Rafael J. Wysocki3a291a22006-01-06 00:16:37 -0800512 if (offset) {
513 spin_unlock(&swap_lock);
514 return swp_entry(type, offset);
515 }
516 nr_swap_pages++;
517 }
518 spin_unlock(&swap_lock);
519 return (swp_entry_t) {0};
520}
521
Linus Torvalds1da177e2005-04-16 15:20:36 -0700522static struct swap_info_struct * swap_info_get(swp_entry_t entry)
523{
524 struct swap_info_struct * p;
525 unsigned long offset, type;
526
527 if (!entry.val)
528 goto out;
529 type = swp_type(entry);
530 if (type >= nr_swapfiles)
531 goto bad_nofile;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800532 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -0700533 if (!(p->flags & SWP_USED))
534 goto bad_device;
535 offset = swp_offset(entry);
536 if (offset >= p->max)
537 goto bad_offset;
538 if (!p->swap_map[offset])
539 goto bad_free;
Hugh Dickins5d337b92005-09-03 15:54:41 -0700540 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700541 return p;
542
543bad_free:
544 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_offset, entry.val);
545 goto out;
546bad_offset:
547 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_offset, entry.val);
548 goto out;
549bad_device:
550 printk(KERN_ERR "swap_free: %s%08lx\n", Unused_file, entry.val);
551 goto out;
552bad_nofile:
553 printk(KERN_ERR "swap_free: %s%08lx\n", Bad_file, entry.val);
554out:
555 return NULL;
Hugh Dickins886bb7e2009-01-06 14:39:48 -0800556}
Linus Torvalds1da177e2005-04-16 15:20:36 -0700557
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700558static int swap_entry_free(struct swap_info_struct *p,
559 swp_entry_t ent, int cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700560{
KAMEZAWA Hiroyuki8c7c6e32009-01-07 18:08:00 -0800561 unsigned long offset = swp_offset(ent);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700562 int count = swap_count(p->swap_map[offset]);
563 bool has_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700564
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700565 has_cache = swap_has_cache(p->swap_map[offset]);
566
567 if (cache == SWAP_MAP) { /* dropping usage count of swap */
568 if (count < SWAP_MAP_MAX) {
569 count--;
570 p->swap_map[offset] = encode_swapmap(count, has_cache);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700571 }
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700572 } else { /* dropping swap cache flag */
573 VM_BUG_ON(!has_cache);
574 p->swap_map[offset] = encode_swapmap(count, false);
575
576 }
577 /* return code. */
578 count = p->swap_map[offset];
579 /* free if no reference */
580 if (!count) {
581 if (offset < p->lowest_bit)
582 p->lowest_bit = offset;
583 if (offset > p->highest_bit)
584 p->highest_bit = offset;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800585 if (swap_list.next >= 0 &&
586 p->prio > swap_info[swap_list.next]->prio)
587 swap_list.next = p->type;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700588 nr_swap_pages++;
589 p->inuse_pages--;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700590 }
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700591 if (!swap_count(count))
592 mem_cgroup_uncharge_swap(ent);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700593 return count;
594}
595
596/*
597 * Caller has made sure that the swapdevice corresponding to entry
598 * is still around or has not been recycled.
599 */
600void swap_free(swp_entry_t entry)
601{
602 struct swap_info_struct * p;
603
604 p = swap_info_get(entry);
605 if (p) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700606 swap_entry_free(p, entry, SWAP_MAP);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700607 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700608 }
609}
610
611/*
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700612 * Called after dropping swapcache to decrease refcnt to swap entries.
613 */
614void swapcache_free(swp_entry_t entry, struct page *page)
615{
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700616 struct swap_info_struct *p;
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700617 int ret;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700618
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700619 p = swap_info_get(entry);
620 if (p) {
KAMEZAWA Hiroyuki8a9478c2009-06-17 16:27:17 -0700621 ret = swap_entry_free(p, entry, SWAP_CACHE);
622 if (page) {
623 bool swapout;
624 if (ret)
625 swapout = true; /* the end of swap out */
626 else
627 swapout = false; /* no more swap users! */
628 mem_cgroup_uncharge_swapcache(page, entry, swapout);
629 }
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700630 spin_unlock(&swap_lock);
631 }
632 return;
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -0700633}
634
635/*
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700636 * How many references to page are currently swapped out?
Linus Torvalds1da177e2005-04-16 15:20:36 -0700637 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700638static inline int page_swapcount(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700639{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700640 int count = 0;
641 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700642 swp_entry_t entry;
643
Hugh Dickins4c21e2f2005-10-29 18:16:40 -0700644 entry.val = page_private(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700645 p = swap_info_get(entry);
646 if (p) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700647 count = swap_count(p->swap_map[swp_offset(entry)]);
Hugh Dickins5d337b92005-09-03 15:54:41 -0700648 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700649 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700650 return count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700651}
652
653/*
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800654 * We can write to an anon page without COW if there are no other references
655 * to it. And as a side-effect, free up its swap: because the old content
656 * on disk will never be read, and seeking back there to write new content
657 * later would only waste time away from clustering.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700658 */
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800659int reuse_swap_page(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700660{
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700661 int count;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700662
Hugh Dickins51726b12009-01-06 14:39:25 -0800663 VM_BUG_ON(!PageLocked(page));
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700664 count = page_mapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800665 if (count <= 1 && PageSwapCache(page)) {
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700666 count += page_swapcount(page);
Hugh Dickins7b1fe592009-01-06 14:39:34 -0800667 if (count == 1 && !PageWriteback(page)) {
668 delete_from_swap_cache(page);
669 SetPageDirty(page);
670 }
671 }
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700672 return count == 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700673}
674
675/*
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800676 * If swap is getting full, or if there are no more mappings of this page,
677 * then try_to_free_swap is called to free its swap space.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700678 */
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800679int try_to_free_swap(struct page *page)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700680{
Hugh Dickins51726b12009-01-06 14:39:25 -0800681 VM_BUG_ON(!PageLocked(page));
Linus Torvalds1da177e2005-04-16 15:20:36 -0700682
683 if (!PageSwapCache(page))
684 return 0;
685 if (PageWriteback(page))
686 return 0;
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800687 if (page_swapcount(page))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700688 return 0;
689
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800690 delete_from_swap_cache(page);
691 SetPageDirty(page);
692 return 1;
Rik van Riel68a223942008-10-18 20:26:23 -0700693}
694
695/*
Linus Torvalds1da177e2005-04-16 15:20:36 -0700696 * Free the swap entry like above, but also try to
697 * free the page cache entry if it is the last user.
698 */
Hugh Dickins2509ef22009-01-06 14:40:10 -0800699int free_swap_and_cache(swp_entry_t entry)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700700{
Hugh Dickins2509ef22009-01-06 14:40:10 -0800701 struct swap_info_struct *p;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700702 struct page *page = NULL;
703
Andi Kleena7420aa2009-09-16 11:50:05 +0200704 if (non_swap_entry(entry))
Hugh Dickins2509ef22009-01-06 14:40:10 -0800705 return 1;
Christoph Lameter06972122006-06-23 02:03:35 -0700706
Linus Torvalds1da177e2005-04-16 15:20:36 -0700707 p = swap_info_get(entry);
708 if (p) {
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -0700709 if (swap_entry_free(p, entry, SWAP_MAP) == SWAP_HAS_CACHE) {
Nick Piggin93fac702006-03-31 02:29:56 -0800710 page = find_get_page(&swapper_space, entry.val);
Nick Piggin8413ac92008-10-18 20:26:59 -0700711 if (page && !trylock_page(page)) {
Nick Piggin93fac702006-03-31 02:29:56 -0800712 page_cache_release(page);
713 page = NULL;
714 }
715 }
Hugh Dickins5d337b92005-09-03 15:54:41 -0700716 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700717 }
718 if (page) {
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800719 /*
720 * Not mapped elsewhere, or swap space full? Free it!
721 * Also recheck PageSwapCache now page is locked (above).
722 */
Nick Piggin93fac702006-03-31 02:29:56 -0800723 if (PageSwapCache(page) && !PageWriteback(page) &&
Hugh Dickinsa2c43ee2009-01-06 14:39:36 -0800724 (!page_mapped(page) || vm_swap_full())) {
Linus Torvalds1da177e2005-04-16 15:20:36 -0700725 delete_from_swap_cache(page);
726 SetPageDirty(page);
727 }
728 unlock_page(page);
729 page_cache_release(page);
730 }
Hugh Dickins2509ef22009-01-06 14:40:10 -0800731 return p != NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700732}
733
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +0200734#ifdef CONFIG_HIBERNATION
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800735/*
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800736 * Find the swap type that corresponds to given device (if any).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800737 *
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800738 * @offset - number of the PAGE_SIZE-sized block of the device, starting
739 * from 0, in which the swap header is expected to be located.
740 *
741 * This is needed for the suspend to disk (aka swsusp).
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800742 */
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800743int swap_type_of(dev_t device, sector_t offset, struct block_device **bdev_p)
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800744{
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800745 struct block_device *bdev = NULL;
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800746 int type;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800747
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800748 if (device)
749 bdev = bdget(device);
750
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800751 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800752 for (type = 0; type < nr_swapfiles; type++) {
753 struct swap_info_struct *sis = swap_info[type];
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800754
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800755 if (!(sis->flags & SWP_WRITEOK))
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800756 continue;
Rafael J. Wysockib6b5bce2006-08-27 01:23:25 -0700757
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800758 if (!bdev) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800759 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200760 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800761
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800762 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800763 return type;
Rafael J. Wysocki6e1819d2006-03-23 03:00:03 -0800764 }
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800765 if (bdev == sis->bdev) {
Hugh Dickins9625a5f2009-12-14 17:58:42 -0800766 struct swap_extent *se = &sis->first_swap_extent;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800767
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800768 if (se->start_block == offset) {
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800769 if (bdev_p)
Alan Jenkinsdddac6a2009-07-29 21:07:55 +0200770 *bdev_p = bdgrab(sis->bdev);
Rafael J. Wysocki7bf23682007-01-05 16:36:28 -0800771
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800772 spin_unlock(&swap_lock);
773 bdput(bdev);
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800774 return type;
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800775 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800776 }
777 }
778 spin_unlock(&swap_lock);
Rafael J. Wysocki915bae92006-12-06 20:34:07 -0800779 if (bdev)
780 bdput(bdev);
781
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800782 return -ENODEV;
783}
784
785/*
786 * Return either the total number of swap pages of given type, or the number
787 * of free pages of that type (depending on @free)
788 *
789 * This is needed for software suspend
790 */
791unsigned int count_swap_pages(int type, int free)
792{
793 unsigned int n = 0;
794
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800795 spin_lock(&swap_lock);
796 if ((unsigned int)type < nr_swapfiles) {
797 struct swap_info_struct *sis = swap_info[type];
798
799 if (sis->flags & SWP_WRITEOK) {
800 n = sis->pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800801 if (free)
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800802 n -= sis->inuse_pages;
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800803 }
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800804 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -0800805 spin_unlock(&swap_lock);
Rafael J. Wysockif577eb32006-03-23 02:59:59 -0800806 return n;
807}
808#endif
809
Linus Torvalds1da177e2005-04-16 15:20:36 -0700810/*
Hugh Dickins72866f62005-10-29 18:15:55 -0700811 * No need to decide whether this PTE shares the swap entry with others,
812 * just let do_wp_page work it out if a write is requested later - to
813 * force COW, vm_page_prot omits write permission from any private vma.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700814 */
Hugh Dickins044d66c2008-02-07 00:14:04 -0800815static int unuse_pte(struct vm_area_struct *vma, pmd_t *pmd,
Linus Torvalds1da177e2005-04-16 15:20:36 -0700816 unsigned long addr, swp_entry_t entry, struct page *page)
817{
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800818 struct mem_cgroup *ptr = NULL;
Hugh Dickins044d66c2008-02-07 00:14:04 -0800819 spinlock_t *ptl;
820 pte_t *pte;
821 int ret = 1;
822
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800823 if (mem_cgroup_try_charge_swapin(vma->vm_mm, page, GFP_KERNEL, &ptr)) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800824 ret = -ENOMEM;
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800825 goto out_nolock;
826 }
Hugh Dickins044d66c2008-02-07 00:14:04 -0800827
828 pte = pte_offset_map_lock(vma->vm_mm, pmd, addr, &ptl);
829 if (unlikely(!pte_same(*pte, swp_entry_to_pte(entry)))) {
830 if (ret > 0)
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800831 mem_cgroup_cancel_charge_swapin(ptr);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800832 ret = 0;
833 goto out;
834 }
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800835
Hugh Dickins42946212005-10-29 18:16:05 -0700836 inc_mm_counter(vma->vm_mm, anon_rss);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700837 get_page(page);
838 set_pte_at(vma->vm_mm, addr, pte,
839 pte_mkold(mk_pte(page, vma->vm_page_prot)));
840 page_add_anon_rmap(page, vma, addr);
KAMEZAWA Hiroyuki7a81b882009-01-07 18:07:48 -0800841 mem_cgroup_commit_charge_swapin(page, ptr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700842 swap_free(entry);
843 /*
844 * Move the page to the active list so it is not
845 * immediately swapped out again after swapon.
846 */
847 activate_page(page);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800848out:
849 pte_unmap_unlock(pte, ptl);
KAMEZAWA Hiroyuki85d9fc82009-01-29 14:25:13 -0800850out_nolock:
Hugh Dickins044d66c2008-02-07 00:14:04 -0800851 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700852}
853
854static int unuse_pte_range(struct vm_area_struct *vma, pmd_t *pmd,
855 unsigned long addr, unsigned long end,
856 swp_entry_t entry, struct page *page)
857{
Linus Torvalds1da177e2005-04-16 15:20:36 -0700858 pte_t swp_pte = swp_entry_to_pte(entry);
Hugh Dickins705e87c2005-10-29 18:16:27 -0700859 pte_t *pte;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800860 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700861
Hugh Dickins044d66c2008-02-07 00:14:04 -0800862 /*
863 * We don't actually need pte lock while scanning for swp_pte: since
864 * we hold page lock and mmap_sem, swp_pte cannot be inserted into the
865 * page table while we're scanning; though it could get zapped, and on
866 * some architectures (e.g. x86_32 with PAE) we might catch a glimpse
867 * of unmatched parts which look like swp_pte, so unuse_pte must
868 * recheck under pte lock. Scanning without pte lock lets it be
869 * preemptible whenever CONFIG_PREEMPT but not CONFIG_HIGHPTE.
870 */
871 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700872 do {
873 /*
874 * swapoff spends a _lot_ of time in this loop!
875 * Test inline before going to call unuse_pte.
876 */
877 if (unlikely(pte_same(*pte, swp_pte))) {
Hugh Dickins044d66c2008-02-07 00:14:04 -0800878 pte_unmap(pte);
879 ret = unuse_pte(vma, pmd, addr, entry, page);
880 if (ret)
881 goto out;
882 pte = pte_offset_map(pmd, addr);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700883 }
884 } while (pte++, addr += PAGE_SIZE, addr != end);
Hugh Dickins044d66c2008-02-07 00:14:04 -0800885 pte_unmap(pte - 1);
886out:
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800887 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700888}
889
890static inline int unuse_pmd_range(struct vm_area_struct *vma, pud_t *pud,
891 unsigned long addr, unsigned long end,
892 swp_entry_t entry, struct page *page)
893{
894 pmd_t *pmd;
895 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800896 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700897
898 pmd = pmd_offset(pud, addr);
899 do {
900 next = pmd_addr_end(addr, end);
901 if (pmd_none_or_clear_bad(pmd))
902 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800903 ret = unuse_pte_range(vma, pmd, addr, next, entry, page);
904 if (ret)
905 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700906 } while (pmd++, addr = next, addr != end);
907 return 0;
908}
909
910static inline int unuse_pud_range(struct vm_area_struct *vma, pgd_t *pgd,
911 unsigned long addr, unsigned long end,
912 swp_entry_t entry, struct page *page)
913{
914 pud_t *pud;
915 unsigned long next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800916 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700917
918 pud = pud_offset(pgd, addr);
919 do {
920 next = pud_addr_end(addr, end);
921 if (pud_none_or_clear_bad(pud))
922 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800923 ret = unuse_pmd_range(vma, pud, addr, next, entry, page);
924 if (ret)
925 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700926 } while (pud++, addr = next, addr != end);
927 return 0;
928}
929
930static int unuse_vma(struct vm_area_struct *vma,
931 swp_entry_t entry, struct page *page)
932{
933 pgd_t *pgd;
934 unsigned long addr, end, next;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800935 int ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700936
937 if (page->mapping) {
938 addr = page_address_in_vma(page, vma);
939 if (addr == -EFAULT)
940 return 0;
941 else
942 end = addr + PAGE_SIZE;
943 } else {
944 addr = vma->vm_start;
945 end = vma->vm_end;
946 }
947
948 pgd = pgd_offset(vma->vm_mm, addr);
949 do {
950 next = pgd_addr_end(addr, end);
951 if (pgd_none_or_clear_bad(pgd))
952 continue;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800953 ret = unuse_pud_range(vma, pgd, addr, next, entry, page);
954 if (ret)
955 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700956 } while (pgd++, addr = next, addr != end);
957 return 0;
958}
959
960static int unuse_mm(struct mm_struct *mm,
961 swp_entry_t entry, struct page *page)
962{
963 struct vm_area_struct *vma;
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800964 int ret = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700965
966 if (!down_read_trylock(&mm->mmap_sem)) {
967 /*
Fernando Luis Vazquez Cao7d034312008-07-29 22:33:41 -0700968 * Activate page so shrink_inactive_list is unlikely to unmap
969 * its ptes while lock is dropped, so swapoff can make progress.
Linus Torvalds1da177e2005-04-16 15:20:36 -0700970 */
Hugh Dickinsc475a8a2005-06-21 17:15:12 -0700971 activate_page(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -0700972 unlock_page(page);
973 down_read(&mm->mmap_sem);
974 lock_page(page);
975 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700976 for (vma = mm->mmap; vma; vma = vma->vm_next) {
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800977 if (vma->anon_vma && (ret = unuse_vma(vma, entry, page)))
Linus Torvalds1da177e2005-04-16 15:20:36 -0700978 break;
979 }
Linus Torvalds1da177e2005-04-16 15:20:36 -0700980 up_read(&mm->mmap_sem);
Balbir Singh8a9f3cc2008-02-07 00:13:53 -0800981 return (ret < 0)? ret: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700982}
983
984/*
985 * Scan swap_map from current position to next entry still in use.
986 * Recycle to start on reaching the end, returning 0 when empty.
987 */
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700988static unsigned int find_next_to_unuse(struct swap_info_struct *si,
989 unsigned int prev)
Linus Torvalds1da177e2005-04-16 15:20:36 -0700990{
Hugh Dickins6eb396d2005-09-03 15:54:35 -0700991 unsigned int max = si->max;
992 unsigned int i = prev;
Linus Torvalds1da177e2005-04-16 15:20:36 -0700993 int count;
994
995 /*
Hugh Dickins5d337b92005-09-03 15:54:41 -0700996 * No need for swap_lock here: we're just looking
Linus Torvalds1da177e2005-04-16 15:20:36 -0700997 * for whether an entry is in use, not modifying it; false
998 * hits are okay, and sys_swapoff() has already prevented new
Hugh Dickins5d337b92005-09-03 15:54:41 -0700999 * allocations from this area (while holding swap_lock).
Linus Torvalds1da177e2005-04-16 15:20:36 -07001000 */
1001 for (;;) {
1002 if (++i >= max) {
1003 if (!prev) {
1004 i = 0;
1005 break;
1006 }
1007 /*
1008 * No entries in use at top of swap_map,
1009 * loop back to start and recheck there.
1010 */
1011 max = prev + 1;
1012 prev = 0;
1013 i = 1;
1014 }
1015 count = si->swap_map[i];
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001016 if (count && swap_count(count) != SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001017 break;
1018 }
1019 return i;
1020}
1021
1022/*
1023 * We completely avoid races by reading each swap page in advance,
1024 * and then search for the process using it. All the necessary
1025 * page table adjustments can then be made atomically.
1026 */
1027static int try_to_unuse(unsigned int type)
1028{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001029 struct swap_info_struct *si = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001030 struct mm_struct *start_mm;
1031 unsigned short *swap_map;
1032 unsigned short swcount;
1033 struct page *page;
1034 swp_entry_t entry;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001035 unsigned int i = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001036 int retval = 0;
1037 int reset_overflow = 0;
1038 int shmem;
1039
1040 /*
1041 * When searching mms for an entry, a good strategy is to
1042 * start at the first mm we freed the previous entry from
1043 * (though actually we don't notice whether we or coincidence
1044 * freed the entry). Initialize this start_mm with a hold.
1045 *
1046 * A simpler strategy would be to start at the last mm we
1047 * freed the previous entry from; but that would take less
1048 * advantage of mmlist ordering, which clusters forked mms
1049 * together, child after parent. If we race with dup_mmap(), we
1050 * prefer to resolve parent before child, lest we miss entries
1051 * duplicated after we scanned child: using last mm would invert
1052 * that. Though it's only a serious concern when an overflowed
1053 * swap count is reset from SWAP_MAP_MAX, preventing a rescan.
1054 */
1055 start_mm = &init_mm;
1056 atomic_inc(&init_mm.mm_users);
1057
1058 /*
1059 * Keep on scanning until all entries have gone. Usually,
1060 * one pass through swap_map is enough, but not necessarily:
1061 * there are races when an instance of an entry might be missed.
1062 */
1063 while ((i = find_next_to_unuse(si, i)) != 0) {
1064 if (signal_pending(current)) {
1065 retval = -EINTR;
1066 break;
1067 }
1068
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001069 /*
Linus Torvalds1da177e2005-04-16 15:20:36 -07001070 * Get a page for the entry, using the existing swap
1071 * cache page if there is one. Otherwise, get a clean
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001072 * page and read the swap into it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001073 */
1074 swap_map = &si->swap_map[i];
1075 entry = swp_entry(type, i);
Hugh Dickins02098fe2008-02-04 22:28:42 -08001076 page = read_swap_cache_async(entry,
1077 GFP_HIGHUSER_MOVABLE, NULL, 0);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001078 if (!page) {
1079 /*
1080 * Either swap_duplicate() failed because entry
1081 * has been freed independently, and will not be
1082 * reused since sys_swapoff() already disabled
1083 * allocation from here, or alloc_page() failed.
1084 */
1085 if (!*swap_map)
1086 continue;
1087 retval = -ENOMEM;
1088 break;
1089 }
1090
1091 /*
1092 * Don't hold on to start_mm if it looks like exiting.
1093 */
1094 if (atomic_read(&start_mm->mm_users) == 1) {
1095 mmput(start_mm);
1096 start_mm = &init_mm;
1097 atomic_inc(&init_mm.mm_users);
1098 }
1099
1100 /*
1101 * Wait for and lock page. When do_swap_page races with
1102 * try_to_unuse, do_swap_page can handle the fault much
1103 * faster than try_to_unuse can locate the entry. This
1104 * apparently redundant "wait_on_page_locked" lets try_to_unuse
1105 * defer to do_swap_page in such a case - in some tests,
1106 * do_swap_page and try_to_unuse repeatedly compete.
1107 */
1108 wait_on_page_locked(page);
1109 wait_on_page_writeback(page);
1110 lock_page(page);
1111 wait_on_page_writeback(page);
1112
1113 /*
1114 * Remove all references to entry.
1115 * Whenever we reach init_mm, there's no address space
1116 * to search, but use it as a reminder to search shmem.
1117 */
1118 shmem = 0;
1119 swcount = *swap_map;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001120 if (swap_count(swcount)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001121 if (start_mm == &init_mm)
1122 shmem = shmem_unuse(entry, page);
1123 else
1124 retval = unuse_mm(start_mm, entry, page);
1125 }
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001126 if (swap_count(*swap_map)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001127 int set_start_mm = (*swap_map >= swcount);
1128 struct list_head *p = &start_mm->mmlist;
1129 struct mm_struct *new_start_mm = start_mm;
1130 struct mm_struct *prev_mm = start_mm;
1131 struct mm_struct *mm;
1132
1133 atomic_inc(&new_start_mm->mm_users);
1134 atomic_inc(&prev_mm->mm_users);
1135 spin_lock(&mmlist_lock);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001136 while (swap_count(*swap_map) && !retval && !shmem &&
Linus Torvalds1da177e2005-04-16 15:20:36 -07001137 (p = p->next) != &start_mm->mmlist) {
1138 mm = list_entry(p, struct mm_struct, mmlist);
Hugh Dickins70af7c52006-06-23 02:03:44 -07001139 if (!atomic_inc_not_zero(&mm->mm_users))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001140 continue;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001141 spin_unlock(&mmlist_lock);
1142 mmput(prev_mm);
1143 prev_mm = mm;
1144
1145 cond_resched();
1146
1147 swcount = *swap_map;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001148 if (!swap_count(swcount)) /* any usage ? */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001149 ;
1150 else if (mm == &init_mm) {
1151 set_start_mm = 1;
1152 shmem = shmem_unuse(entry, page);
1153 } else
1154 retval = unuse_mm(mm, entry, page);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001155
Bo Liu32c5fc12009-11-02 16:50:33 +00001156 if (set_start_mm && *swap_map < swcount) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001157 mmput(new_start_mm);
1158 atomic_inc(&mm->mm_users);
1159 new_start_mm = mm;
1160 set_start_mm = 0;
1161 }
1162 spin_lock(&mmlist_lock);
1163 }
1164 spin_unlock(&mmlist_lock);
1165 mmput(prev_mm);
1166 mmput(start_mm);
1167 start_mm = new_start_mm;
1168 }
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001169 if (shmem) {
1170 /* page has already been unlocked and released */
1171 if (shmem > 0)
1172 continue;
1173 retval = shmem;
1174 break;
1175 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001176 if (retval) {
1177 unlock_page(page);
1178 page_cache_release(page);
1179 break;
1180 }
1181
1182 /*
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001183 * How could swap count reach 0x7ffe ?
1184 * There's no way to repeat a swap page within an mm
1185 * (except in shmem, where it's the shared object which takes
1186 * the reference count)?
1187 * We believe SWAP_MAP_MAX cannot occur.(if occur, unsigned
1188 * short is too small....)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001189 * If that's wrong, then we should worry more about
1190 * exit_mmap() and do_munmap() cases described above:
1191 * we might be resetting SWAP_MAP_MAX too early here.
1192 * We know "Undead"s can happen, they're okay, so don't
1193 * report them; but do report if we reset SWAP_MAP_MAX.
1194 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001195 /* We might release the lock_page() in unuse_mm(). */
1196 if (!PageSwapCache(page) || page_private(page) != entry.val)
1197 goto retry;
1198
1199 if (swap_count(*swap_map) == SWAP_MAP_MAX) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07001200 spin_lock(&swap_lock);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001201 *swap_map = encode_swapmap(0, true);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001202 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001203 reset_overflow = 1;
1204 }
1205
1206 /*
1207 * If a reference remains (rare), we would like to leave
1208 * the page in the swap cache; but try_to_unmap could
1209 * then re-duplicate the entry once we drop page lock,
1210 * so we might loop indefinitely; also, that page could
1211 * not be swapped out to other storage meanwhile. So:
1212 * delete from cache even if there's another reference,
1213 * after ensuring that the data has been saved to disk -
1214 * since if the reference remains (rarer), it will be
1215 * read from disk into another page. Splitting into two
1216 * pages would be incorrect if swap supported "shared
1217 * private" pages, but they are handled by tmpfs files.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001218 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001219 if (swap_count(*swap_map) &&
1220 PageDirty(page) && PageSwapCache(page)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001221 struct writeback_control wbc = {
1222 .sync_mode = WB_SYNC_NONE,
1223 };
1224
1225 swap_writepage(page, &wbc);
1226 lock_page(page);
1227 wait_on_page_writeback(page);
1228 }
Hugh Dickins68bdc8d2009-01-06 14:39:37 -08001229
1230 /*
1231 * It is conceivable that a racing task removed this page from
1232 * swap cache just before we acquired the page lock at the top,
1233 * or while we dropped it in unuse_mm(). The page might even
1234 * be back in swap cache on another swap area: that we must not
1235 * delete, since it may not have been written out to swap yet.
1236 */
1237 if (PageSwapCache(page) &&
1238 likely(page_private(page) == entry.val))
Hugh Dickins2e0e26c2008-02-04 22:28:53 -08001239 delete_from_swap_cache(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001240
1241 /*
1242 * So we could skip searching mms once swap count went
1243 * to 1, we did not mark any present ptes as dirty: must
Anderson Briglia2706a1b2007-07-15 23:38:09 -07001244 * mark page dirty so shrink_page_list will preserve it.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001245 */
1246 SetPageDirty(page);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07001247retry:
Linus Torvalds1da177e2005-04-16 15:20:36 -07001248 unlock_page(page);
1249 page_cache_release(page);
1250
1251 /*
1252 * Make sure that we aren't completely killing
1253 * interactive performance.
1254 */
1255 cond_resched();
1256 }
1257
1258 mmput(start_mm);
1259 if (reset_overflow) {
1260 printk(KERN_WARNING "swapoff: cleared swap entry overflow\n");
1261 swap_overflow = 0;
1262 }
1263 return retval;
1264}
1265
1266/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07001267 * After a successful try_to_unuse, if no swap is now in use, we know
1268 * we can empty the mmlist. swap_lock must be held on entry and exit.
1269 * Note that mmlist_lock nests inside swap_lock, and an mm must be
Linus Torvalds1da177e2005-04-16 15:20:36 -07001270 * added to the mmlist just after page_duplicate - before would be racy.
1271 */
1272static void drain_mmlist(void)
1273{
1274 struct list_head *p, *next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001275 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001276
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001277 for (type = 0; type < nr_swapfiles; type++)
1278 if (swap_info[type]->inuse_pages)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001279 return;
1280 spin_lock(&mmlist_lock);
1281 list_for_each_safe(p, next, &init_mm.mmlist)
1282 list_del_init(p);
1283 spin_unlock(&mmlist_lock);
1284}
1285
1286/*
1287 * Use this swapdev's extent info to locate the (PAGE_SIZE) block which
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001288 * corresponds to page offset `offset'. Note that the type of this function
1289 * is sector_t, but it returns page offset into the bdev, not sector offset.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001290 */
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001291sector_t map_swap_page(swp_entry_t entry, struct block_device **bdev)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001292{
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001293 struct swap_info_struct *sis;
1294 struct swap_extent *start_se;
1295 struct swap_extent *se;
1296 pgoff_t offset;
1297
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001298 sis = swap_info[swp_type(entry)];
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001299 *bdev = sis->bdev;
1300
1301 offset = swp_offset(entry);
1302 start_se = sis->curr_swap_extent;
1303 se = start_se;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001304
1305 for ( ; ; ) {
1306 struct list_head *lh;
1307
1308 if (se->start_page <= offset &&
1309 offset < (se->start_page + se->nr_pages)) {
1310 return se->start_block + (offset - se->start_page);
1311 }
Hugh Dickins11d31882005-09-03 15:54:34 -07001312 lh = se->list.next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001313 se = list_entry(lh, struct swap_extent, list);
1314 sis->curr_swap_extent = se;
1315 BUG_ON(se == start_se); /* It *must* be present */
1316 }
1317}
1318
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001319#ifdef CONFIG_HIBERNATION
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001320/*
1321 * Get the (PAGE_SIZE) block corresponding to given offset on the swapdev
1322 * corresponding to given index in swap_info (swap type).
1323 */
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001324sector_t swapdev_block(int type, pgoff_t offset)
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001325{
Hugh Dickinsf29ad6a2009-12-14 17:58:40 -08001326 struct block_device *bdev;
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001327
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001328 if ((unsigned int)type >= nr_swapfiles)
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001329 return 0;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001330 if (!(swap_info[type]->flags & SWP_WRITEOK))
1331 return 0;
1332 return map_swap_page(swp_entry(type, offset), &bdev);
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001333}
Rafael J. Wysockib0cb1a12007-07-29 23:24:36 +02001334#endif /* CONFIG_HIBERNATION */
Rafael J. Wysocki3aef83e2006-12-06 20:34:10 -08001335
Linus Torvalds1da177e2005-04-16 15:20:36 -07001336/*
1337 * Free all of a swapdev's extent information
1338 */
1339static void destroy_swap_extents(struct swap_info_struct *sis)
1340{
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001341 while (!list_empty(&sis->first_swap_extent.list)) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001342 struct swap_extent *se;
1343
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001344 se = list_entry(sis->first_swap_extent.list.next,
Linus Torvalds1da177e2005-04-16 15:20:36 -07001345 struct swap_extent, list);
1346 list_del(&se->list);
1347 kfree(se);
1348 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001349}
1350
1351/*
1352 * Add a block range (and the corresponding page range) into this swapdev's
Hugh Dickins11d31882005-09-03 15:54:34 -07001353 * extent list. The extent list is kept sorted in page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001354 *
Hugh Dickins11d31882005-09-03 15:54:34 -07001355 * This function rather assumes that it is called in ascending page order.
Linus Torvalds1da177e2005-04-16 15:20:36 -07001356 */
1357static int
1358add_swap_extent(struct swap_info_struct *sis, unsigned long start_page,
1359 unsigned long nr_pages, sector_t start_block)
1360{
1361 struct swap_extent *se;
1362 struct swap_extent *new_se;
1363 struct list_head *lh;
1364
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001365 if (start_page == 0) {
1366 se = &sis->first_swap_extent;
1367 sis->curr_swap_extent = se;
1368 se->start_page = 0;
1369 se->nr_pages = nr_pages;
1370 se->start_block = start_block;
1371 return 1;
1372 } else {
1373 lh = sis->first_swap_extent.list.prev; /* Highest extent */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001374 se = list_entry(lh, struct swap_extent, list);
Hugh Dickins11d31882005-09-03 15:54:34 -07001375 BUG_ON(se->start_page + se->nr_pages != start_page);
1376 if (se->start_block + se->nr_pages == start_block) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001377 /* Merge it */
1378 se->nr_pages += nr_pages;
1379 return 0;
1380 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001381 }
1382
1383 /*
1384 * No merge. Insert a new extent, preserving ordering.
1385 */
1386 new_se = kmalloc(sizeof(*se), GFP_KERNEL);
1387 if (new_se == NULL)
1388 return -ENOMEM;
1389 new_se->start_page = start_page;
1390 new_se->nr_pages = nr_pages;
1391 new_se->start_block = start_block;
1392
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001393 list_add_tail(&new_se->list, &sis->first_swap_extent.list);
Hugh Dickins53092a72005-09-03 15:54:34 -07001394 return 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001395}
1396
1397/*
1398 * A `swap extent' is a simple thing which maps a contiguous range of pages
1399 * onto a contiguous range of disk blocks. An ordered list of swap extents
1400 * is built at swapon time and is then used at swap_writepage/swap_readpage
1401 * time for locating where on disk a page belongs.
1402 *
1403 * If the swapfile is an S_ISBLK block device, a single extent is installed.
1404 * This is done so that the main operating code can treat S_ISBLK and S_ISREG
1405 * swap files identically.
1406 *
1407 * Whether the swapdev is an S_ISREG file or an S_ISBLK blockdev, the swap
1408 * extent list operates in PAGE_SIZE disk blocks. Both S_ISREG and S_ISBLK
1409 * swapfiles are handled *identically* after swapon time.
1410 *
1411 * For S_ISREG swapfiles, setup_swap_extents() will walk all the file's blocks
1412 * and will parse them into an ordered extent list, in PAGE_SIZE chunks. If
1413 * some stray blocks are found which do not fall within the PAGE_SIZE alignment
1414 * requirements, they are simply tossed out - we will never use those blocks
1415 * for swapping.
1416 *
Hugh Dickinsb0d9bcd2005-09-03 15:54:31 -07001417 * For S_ISREG swapfiles we set S_SWAPFILE across the life of the swapon. This
Linus Torvalds1da177e2005-04-16 15:20:36 -07001418 * prevents root from shooting her foot off by ftruncating an in-use swapfile,
1419 * which will scribble on the fs.
1420 *
1421 * The amount of disk space which a single swap extent represents varies.
1422 * Typically it is in the 1-4 megabyte range. So we can have hundreds of
1423 * extents in the list. To avoid much list walking, we cache the previous
1424 * search location in `curr_swap_extent', and start new searches from there.
1425 * This is extremely effective. The average number of iterations in
1426 * map_swap_page() has been measured at about 0.3 per page. - akpm.
1427 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001428static int setup_swap_extents(struct swap_info_struct *sis, sector_t *span)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001429{
1430 struct inode *inode;
1431 unsigned blocks_per_page;
1432 unsigned long page_no;
1433 unsigned blkbits;
1434 sector_t probe_block;
1435 sector_t last_block;
Hugh Dickins53092a72005-09-03 15:54:34 -07001436 sector_t lowest_block = -1;
1437 sector_t highest_block = 0;
1438 int nr_extents = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001439 int ret;
1440
1441 inode = sis->swap_file->f_mapping->host;
1442 if (S_ISBLK(inode->i_mode)) {
1443 ret = add_swap_extent(sis, 0, sis->max, 0);
Hugh Dickins53092a72005-09-03 15:54:34 -07001444 *span = sis->pages;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001445 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001446 }
1447
1448 blkbits = inode->i_blkbits;
1449 blocks_per_page = PAGE_SIZE >> blkbits;
1450
1451 /*
1452 * Map all the blocks into the extent list. This code doesn't try
1453 * to be very smart.
1454 */
1455 probe_block = 0;
1456 page_no = 0;
1457 last_block = i_size_read(inode) >> blkbits;
1458 while ((probe_block + blocks_per_page) <= last_block &&
1459 page_no < sis->max) {
1460 unsigned block_in_page;
1461 sector_t first_block;
1462
1463 first_block = bmap(inode, probe_block);
1464 if (first_block == 0)
1465 goto bad_bmap;
1466
1467 /*
1468 * It must be PAGE_SIZE aligned on-disk
1469 */
1470 if (first_block & (blocks_per_page - 1)) {
1471 probe_block++;
1472 goto reprobe;
1473 }
1474
1475 for (block_in_page = 1; block_in_page < blocks_per_page;
1476 block_in_page++) {
1477 sector_t block;
1478
1479 block = bmap(inode, probe_block + block_in_page);
1480 if (block == 0)
1481 goto bad_bmap;
1482 if (block != first_block + block_in_page) {
1483 /* Discontiguity */
1484 probe_block++;
1485 goto reprobe;
1486 }
1487 }
1488
Hugh Dickins53092a72005-09-03 15:54:34 -07001489 first_block >>= (PAGE_SHIFT - blkbits);
1490 if (page_no) { /* exclude the header page */
1491 if (first_block < lowest_block)
1492 lowest_block = first_block;
1493 if (first_block > highest_block)
1494 highest_block = first_block;
1495 }
1496
Linus Torvalds1da177e2005-04-16 15:20:36 -07001497 /*
1498 * We found a PAGE_SIZE-length, PAGE_SIZE-aligned run of blocks
1499 */
Hugh Dickins53092a72005-09-03 15:54:34 -07001500 ret = add_swap_extent(sis, page_no, 1, first_block);
1501 if (ret < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001502 goto out;
Hugh Dickins53092a72005-09-03 15:54:34 -07001503 nr_extents += ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001504 page_no++;
1505 probe_block += blocks_per_page;
1506reprobe:
1507 continue;
1508 }
Hugh Dickins53092a72005-09-03 15:54:34 -07001509 ret = nr_extents;
1510 *span = 1 + highest_block - lowest_block;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001511 if (page_no == 0)
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001512 page_no = 1; /* force Empty message */
Linus Torvalds1da177e2005-04-16 15:20:36 -07001513 sis->max = page_no;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001514 sis->pages = page_no - 1;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001515 sis->highest_bit = page_no - 1;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001516out:
1517 return ret;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001518bad_bmap:
1519 printk(KERN_ERR "swapon: swapfile has holes\n");
1520 ret = -EINVAL;
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001521 goto out;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001522}
1523
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001524SYSCALL_DEFINE1(swapoff, const char __user *, specialfile)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001525{
1526 struct swap_info_struct * p = NULL;
1527 unsigned short *swap_map;
1528 struct file *swap_file, *victim;
1529 struct address_space *mapping;
1530 struct inode *inode;
1531 char * pathname;
1532 int i, type, prev;
1533 int err;
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001534
Linus Torvalds1da177e2005-04-16 15:20:36 -07001535 if (!capable(CAP_SYS_ADMIN))
1536 return -EPERM;
1537
1538 pathname = getname(specialfile);
1539 err = PTR_ERR(pathname);
1540 if (IS_ERR(pathname))
1541 goto out;
1542
1543 victim = filp_open(pathname, O_RDWR|O_LARGEFILE, 0);
1544 putname(pathname);
1545 err = PTR_ERR(victim);
1546 if (IS_ERR(victim))
1547 goto out;
1548
1549 mapping = victim->f_mapping;
1550 prev = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001551 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001552 for (type = swap_list.head; type >= 0; type = swap_info[type]->next) {
1553 p = swap_info[type];
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08001554 if (p->flags & SWP_WRITEOK) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001555 if (p->swap_file->f_mapping == mapping)
1556 break;
1557 }
1558 prev = type;
1559 }
1560 if (type < 0) {
1561 err = -EINVAL;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001562 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001563 goto out_dput;
1564 }
1565 if (!security_vm_enough_memory(p->pages))
1566 vm_unacct_memory(p->pages);
1567 else {
1568 err = -ENOMEM;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001569 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001570 goto out_dput;
1571 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001572 if (prev < 0)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001573 swap_list.head = p->next;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001574 else
1575 swap_info[prev]->next = p->next;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001576 if (type == swap_list.next) {
1577 /* just pick something that's safe... */
1578 swap_list.next = swap_list.head;
1579 }
Hugh Dickins78ecba02008-07-23 21:28:23 -07001580 if (p->prio < 0) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001581 for (i = p->next; i >= 0; i = swap_info[i]->next)
1582 swap_info[i]->prio = p->prio--;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001583 least_priority++;
1584 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001585 nr_swap_pages -= p->pages;
1586 total_swap_pages -= p->pages;
1587 p->flags &= ~SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001588 spin_unlock(&swap_lock);
Hugh Dickinsfb4f88d2005-09-03 15:54:37 -07001589
Hugh Dickins35451be2009-09-21 17:02:27 -07001590 current->flags |= PF_OOM_ORIGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001591 err = try_to_unuse(type);
Hugh Dickins35451be2009-09-21 17:02:27 -07001592 current->flags &= ~PF_OOM_ORIGIN;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001593
Linus Torvalds1da177e2005-04-16 15:20:36 -07001594 if (err) {
1595 /* re-insert swap space back into swap_list */
Hugh Dickins5d337b92005-09-03 15:54:41 -07001596 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07001597 if (p->prio < 0)
1598 p->prio = --least_priority;
1599 prev = -1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001600 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
1601 if (p->prio >= swap_info[i]->prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001602 break;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001603 prev = i;
1604 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001605 p->next = i;
1606 if (prev < 0)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001607 swap_list.head = swap_list.next = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001608 else
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001609 swap_info[prev]->next = type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001610 nr_swap_pages += p->pages;
1611 total_swap_pages += p->pages;
1612 p->flags |= SWP_WRITEOK;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001613 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001614 goto out_dput;
1615 }
Hugh Dickins52b7efdb2005-09-03 15:54:39 -07001616
1617 /* wait for any unplug function to finish */
1618 down_write(&swap_unplug_sem);
1619 up_write(&swap_unplug_sem);
1620
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07001621 destroy_swap_extents(p);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001622 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001623 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001624 drain_mmlist();
Hugh Dickins5d337b92005-09-03 15:54:41 -07001625
1626 /* wait for anyone still in scan_swap_map */
1627 p->highest_bit = 0; /* cuts scans short */
1628 while (p->flags >= SWP_SCANNING) {
1629 spin_unlock(&swap_lock);
Nishanth Aravamudan13e4b572005-09-10 00:27:25 -07001630 schedule_timeout_uninterruptible(1);
Hugh Dickins5d337b92005-09-03 15:54:41 -07001631 spin_lock(&swap_lock);
1632 }
1633
Linus Torvalds1da177e2005-04-16 15:20:36 -07001634 swap_file = p->swap_file;
1635 p->swap_file = NULL;
1636 p->max = 0;
1637 swap_map = p->swap_map;
1638 p->swap_map = NULL;
1639 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001640 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001641 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001642 vfree(swap_map);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08001643 /* Destroy swap account informatin */
1644 swap_cgroup_swapoff(type);
1645
Linus Torvalds1da177e2005-04-16 15:20:36 -07001646 inode = mapping->host;
1647 if (S_ISBLK(inode->i_mode)) {
1648 struct block_device *bdev = I_BDEV(inode);
1649 set_blocksize(bdev, p->old_block_size);
1650 bd_release(bdev);
1651 } else {
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001652 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001653 inode->i_flags &= ~S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001654 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001655 }
1656 filp_close(swap_file, NULL);
1657 err = 0;
1658
1659out_dput:
1660 filp_close(victim, NULL);
1661out:
1662 return err;
1663}
1664
1665#ifdef CONFIG_PROC_FS
1666/* iterator */
1667static void *swap_start(struct seq_file *swap, loff_t *pos)
1668{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001669 struct swap_info_struct *si;
1670 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001671 loff_t l = *pos;
1672
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001673 mutex_lock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001674
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001675 if (!l)
1676 return SEQ_START_TOKEN;
1677
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001678 for (type = 0; type < nr_swapfiles; type++) {
1679 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
1680 si = swap_info[type];
1681 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001682 continue;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001683 if (!--l)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001684 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001685 }
1686
1687 return NULL;
1688}
1689
1690static void *swap_next(struct seq_file *swap, void *v, loff_t *pos)
1691{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001692 struct swap_info_struct *si = v;
1693 int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001694
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001695 if (v == SEQ_START_TOKEN)
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001696 type = 0;
1697 else
1698 type = si->type + 1;
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001699
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001700 for (; type < nr_swapfiles; type++) {
1701 smp_rmb(); /* read nr_swapfiles before swap_info[type] */
1702 si = swap_info[type];
1703 if (!(si->flags & SWP_USED) || !si->swap_map)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001704 continue;
1705 ++*pos;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001706 return si;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001707 }
1708
1709 return NULL;
1710}
1711
1712static void swap_stop(struct seq_file *swap, void *v)
1713{
Ingo Molnarfc0abb12006-01-18 17:42:33 -08001714 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001715}
1716
1717static int swap_show(struct seq_file *swap, void *v)
1718{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001719 struct swap_info_struct *si = v;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001720 struct file *file;
1721 int len;
1722
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001723 if (si == SEQ_START_TOKEN) {
Suleiman Souhlal881e4aa2006-12-06 20:32:28 -08001724 seq_puts(swap,"Filename\t\t\t\tType\t\tSize\tUsed\tPriority\n");
1725 return 0;
1726 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001727
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001728 file = si->swap_file;
Jan Blunckc32c2f62008-02-14 19:38:43 -08001729 len = seq_path(swap, &file->f_path, " \t\n\\");
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001730 seq_printf(swap, "%*s%s\t%u\t%u\t%d\n",
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001731 len < 40 ? 40 - len : 1, " ",
1732 S_ISBLK(file->f_path.dentry->d_inode->i_mode) ?
Linus Torvalds1da177e2005-04-16 15:20:36 -07001733 "partition" : "file\t",
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001734 si->pages << (PAGE_SHIFT - 10),
1735 si->inuse_pages << (PAGE_SHIFT - 10),
1736 si->prio);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001737 return 0;
1738}
1739
Helge Deller15ad7cd2006-12-06 20:40:36 -08001740static const struct seq_operations swaps_op = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001741 .start = swap_start,
1742 .next = swap_next,
1743 .stop = swap_stop,
1744 .show = swap_show
1745};
1746
1747static int swaps_open(struct inode *inode, struct file *file)
1748{
1749 return seq_open(file, &swaps_op);
1750}
1751
Helge Deller15ad7cd2006-12-06 20:40:36 -08001752static const struct file_operations proc_swaps_operations = {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001753 .open = swaps_open,
1754 .read = seq_read,
1755 .llseek = seq_lseek,
1756 .release = seq_release,
1757};
1758
1759static int __init procswaps_init(void)
1760{
Denis V. Lunev3d71f862008-04-29 01:02:13 -07001761 proc_create("swaps", 0, NULL, &proc_swaps_operations);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001762 return 0;
1763}
1764__initcall(procswaps_init);
1765#endif /* CONFIG_PROC_FS */
1766
Jan Beulich17963162008-12-16 11:35:24 +00001767#ifdef MAX_SWAPFILES_CHECK
1768static int __init max_swapfiles_check(void)
1769{
1770 MAX_SWAPFILES_CHECK();
1771 return 0;
1772}
1773late_initcall(max_swapfiles_check);
1774#endif
1775
Linus Torvalds1da177e2005-04-16 15:20:36 -07001776/*
1777 * Written 01/25/92 by Simmule Turner, heavily changed by Linus.
1778 *
1779 * The swapon system call
1780 */
Heiko Carstensc4ea37c2009-01-14 14:14:28 +01001781SYSCALL_DEFINE2(swapon, const char __user *, specialfile, int, swap_flags)
Linus Torvalds1da177e2005-04-16 15:20:36 -07001782{
1783 struct swap_info_struct * p;
1784 char *name = NULL;
1785 struct block_device *bdev = NULL;
1786 struct file *swap_file = NULL;
1787 struct address_space *mapping;
1788 unsigned int type;
1789 int i, prev;
1790 int error;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001791 union swap_header *swap_header = NULL;
Hugh Dickins6eb396d2005-09-03 15:54:35 -07001792 unsigned int nr_good_pages = 0;
1793 int nr_extents = 0;
Hugh Dickins53092a72005-09-03 15:54:34 -07001794 sector_t span;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001795 unsigned long maxpages = 1;
Hugh Dickins73fd8742009-01-06 14:39:47 -08001796 unsigned long swapfilepages;
Hugh Dickins78ecba02008-07-23 21:28:23 -07001797 unsigned short *swap_map = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001798 struct page *page = NULL;
1799 struct inode *inode = NULL;
1800 int did_down = 0;
1801
1802 if (!capable(CAP_SYS_ADMIN))
1803 return -EPERM;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001804
1805 p = kzalloc(sizeof(*p), GFP_KERNEL);
1806 if (!p)
1807 return -ENOMEM;
1808
Hugh Dickins5d337b92005-09-03 15:54:41 -07001809 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001810 for (type = 0; type < nr_swapfiles; type++) {
1811 if (!(swap_info[type]->flags & SWP_USED))
Linus Torvalds1da177e2005-04-16 15:20:36 -07001812 break;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001813 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07001814 error = -EPERM;
Christoph Lameter06972122006-06-23 02:03:35 -07001815 if (type >= MAX_SWAPFILES) {
Hugh Dickins5d337b92005-09-03 15:54:41 -07001816 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001817 kfree(p);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001818 goto out;
1819 }
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001820 if (type >= nr_swapfiles) {
1821 p->type = type;
1822 swap_info[type] = p;
1823 /*
1824 * Write swap_info[type] before nr_swapfiles, in case a
1825 * racing procfs swap_start() or swap_next() is reading them.
1826 * (We never shrink nr_swapfiles, we never free this entry.)
1827 */
1828 smp_wmb();
1829 nr_swapfiles++;
1830 } else {
1831 kfree(p);
1832 p = swap_info[type];
1833 /*
1834 * Do not memset this entry: a racing procfs swap_next()
1835 * would be relying on p->type to remain valid.
1836 */
1837 }
Hugh Dickins9625a5f2009-12-14 17:58:42 -08001838 INIT_LIST_HEAD(&p->first_swap_extent.list);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001839 p->flags = SWP_USED;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001840 p->next = -1;
Hugh Dickins5d337b92005-09-03 15:54:41 -07001841 spin_unlock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001842
Linus Torvalds1da177e2005-04-16 15:20:36 -07001843 name = getname(specialfile);
1844 error = PTR_ERR(name);
1845 if (IS_ERR(name)) {
1846 name = NULL;
1847 goto bad_swap_2;
1848 }
1849 swap_file = filp_open(name, O_RDWR|O_LARGEFILE, 0);
1850 error = PTR_ERR(swap_file);
1851 if (IS_ERR(swap_file)) {
1852 swap_file = NULL;
1853 goto bad_swap_2;
1854 }
1855
1856 p->swap_file = swap_file;
1857 mapping = swap_file->f_mapping;
1858 inode = mapping->host;
1859
1860 error = -EBUSY;
1861 for (i = 0; i < nr_swapfiles; i++) {
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001862 struct swap_info_struct *q = swap_info[i];
Linus Torvalds1da177e2005-04-16 15:20:36 -07001863
1864 if (i == type || !q->swap_file)
1865 continue;
1866 if (mapping == q->swap_file->f_mapping)
1867 goto bad_swap;
1868 }
1869
1870 error = -EINVAL;
1871 if (S_ISBLK(inode->i_mode)) {
1872 bdev = I_BDEV(inode);
1873 error = bd_claim(bdev, sys_swapon);
1874 if (error < 0) {
1875 bdev = NULL;
Rob Landleyf7b3a432005-09-22 21:44:27 -07001876 error = -EINVAL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001877 goto bad_swap;
1878 }
1879 p->old_block_size = block_size(bdev);
1880 error = set_blocksize(bdev, PAGE_SIZE);
1881 if (error < 0)
1882 goto bad_swap;
1883 p->bdev = bdev;
1884 } else if (S_ISREG(inode->i_mode)) {
1885 p->bdev = inode->i_sb->s_bdev;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08001886 mutex_lock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001887 did_down = 1;
1888 if (IS_SWAPFILE(inode)) {
1889 error = -EBUSY;
1890 goto bad_swap;
1891 }
1892 } else {
1893 goto bad_swap;
1894 }
1895
Hugh Dickins73fd8742009-01-06 14:39:47 -08001896 swapfilepages = i_size_read(inode) >> PAGE_SHIFT;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001897
1898 /*
1899 * Read the swap header.
1900 */
1901 if (!mapping->a_ops->readpage) {
1902 error = -EINVAL;
1903 goto bad_swap;
1904 }
Pekka Enberg090d2b12006-06-23 02:05:08 -07001905 page = read_mapping_page(mapping, 0, swap_file);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001906 if (IS_ERR(page)) {
1907 error = PTR_ERR(page);
1908 goto bad_swap;
1909 }
Hugh Dickins81e33972009-01-06 14:39:49 -08001910 swap_header = kmap(page);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001911
Hugh Dickins81e33972009-01-06 14:39:49 -08001912 if (memcmp("SWAPSPACE2", swap_header->magic.magic, 10)) {
Jesper Juhle97a3112006-01-11 01:50:28 +01001913 printk(KERN_ERR "Unable to find swap-space signature\n");
Linus Torvalds1da177e2005-04-16 15:20:36 -07001914 error = -EINVAL;
1915 goto bad_swap;
1916 }
Hugh Dickins886bb7e2009-01-06 14:39:48 -08001917
Hugh Dickins81e33972009-01-06 14:39:49 -08001918 /* swap partition endianess hack... */
1919 if (swab32(swap_header->info.version) == 1) {
1920 swab32s(&swap_header->info.version);
1921 swab32s(&swap_header->info.last_page);
1922 swab32s(&swap_header->info.nr_badpages);
1923 for (i = 0; i < swap_header->info.nr_badpages; i++)
1924 swab32s(&swap_header->info.badpages[i]);
1925 }
1926 /* Check the swap header's sub-version */
1927 if (swap_header->info.version != 1) {
1928 printk(KERN_WARNING
1929 "Unable to handle swap header version %d\n",
1930 swap_header->info.version);
Linus Torvalds1da177e2005-04-16 15:20:36 -07001931 error = -EINVAL;
1932 goto bad_swap;
Hugh Dickins81e33972009-01-06 14:39:49 -08001933 }
1934
1935 p->lowest_bit = 1;
1936 p->cluster_next = 1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08001937 p->cluster_nr = 0;
Hugh Dickins81e33972009-01-06 14:39:49 -08001938
1939 /*
1940 * Find out how many pages are allowed for a single swap
1941 * device. There are two limiting factors: 1) the number of
1942 * bits for the swap offset in the swp_entry_t type and
1943 * 2) the number of bits in the a swap pte as defined by
1944 * the different architectures. In order to find the
1945 * largest possible bit mask a swap entry with swap type 0
1946 * and swap offset ~0UL is created, encoded to a swap pte,
1947 * decoded to a swp_entry_t again and finally the swap
1948 * offset is extracted. This will mask all the bits from
1949 * the initial ~0UL mask that can't be encoded in either
1950 * the swp_entry_t or the architecture definition of a
1951 * swap pte.
1952 */
1953 maxpages = swp_offset(pte_to_swp_entry(
1954 swp_entry_to_pte(swp_entry(0, ~0UL)))) - 1;
1955 if (maxpages > swap_header->info.last_page)
1956 maxpages = swap_header->info.last_page;
1957 p->highest_bit = maxpages - 1;
1958
1959 error = -EINVAL;
1960 if (!maxpages)
1961 goto bad_swap;
1962 if (swapfilepages && maxpages > swapfilepages) {
1963 printk(KERN_WARNING
1964 "Swap area shorter than signature indicates\n");
1965 goto bad_swap;
1966 }
1967 if (swap_header->info.nr_badpages && S_ISREG(inode->i_mode))
1968 goto bad_swap;
1969 if (swap_header->info.nr_badpages > MAX_SWAP_BADPAGES)
1970 goto bad_swap;
1971
1972 /* OK, set up the swap map and apply the bad block list */
1973 swap_map = vmalloc(maxpages * sizeof(short));
1974 if (!swap_map) {
1975 error = -ENOMEM;
1976 goto bad_swap;
1977 }
1978
1979 memset(swap_map, 0, maxpages * sizeof(short));
1980 for (i = 0; i < swap_header->info.nr_badpages; i++) {
1981 int page_nr = swap_header->info.badpages[i];
1982 if (page_nr <= 0 || page_nr >= swap_header->info.last_page) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07001983 error = -EINVAL;
1984 goto bad_swap;
1985 }
Hugh Dickins81e33972009-01-06 14:39:49 -08001986 swap_map[page_nr] = SWAP_MAP_BAD;
Linus Torvalds1da177e2005-04-16 15:20:36 -07001987 }
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08001988
1989 error = swap_cgroup_swapon(type, maxpages);
1990 if (error)
1991 goto bad_swap;
1992
Hugh Dickins81e33972009-01-06 14:39:49 -08001993 nr_good_pages = swap_header->info.last_page -
1994 swap_header->info.nr_badpages -
1995 1 /* header page */;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001996
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001997 if (nr_good_pages) {
Hugh Dickins78ecba02008-07-23 21:28:23 -07001998 swap_map[0] = SWAP_MAP_BAD;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07001999 p->max = maxpages;
2000 p->pages = nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07002001 nr_extents = setup_swap_extents(p, &span);
2002 if (nr_extents < 0) {
2003 error = nr_extents;
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002004 goto bad_swap;
Hugh Dickins53092a72005-09-03 15:54:34 -07002005 }
Hugh Dickinse2244ec2005-09-03 15:54:32 -07002006 nr_good_pages = p->pages;
2007 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002008 if (!nr_good_pages) {
2009 printk(KERN_WARNING "Empty swap-file\n");
2010 error = -EINVAL;
2011 goto bad_swap;
2012 }
Linus Torvalds1da177e2005-04-16 15:20:36 -07002013
Suresh Jayaraman3bd0f0c2009-09-30 10:53:48 +02002014 if (p->bdev) {
2015 if (blk_queue_nonrot(bdev_get_queue(p->bdev))) {
2016 p->flags |= SWP_SOLIDSTATE;
2017 p->cluster_next = 1 + (random32() % p->highest_bit);
2018 }
2019 if (discard_swap(p) == 0)
2020 p->flags |= SWP_DISCARDABLE;
Hugh Dickins20137a42009-01-06 14:39:54 -08002021 }
Hugh Dickins6a6ba832009-01-06 14:39:51 -08002022
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002023 mutex_lock(&swapon_mutex);
Hugh Dickins5d337b92005-09-03 15:54:41 -07002024 spin_lock(&swap_lock);
Hugh Dickins78ecba02008-07-23 21:28:23 -07002025 if (swap_flags & SWAP_FLAG_PREFER)
2026 p->prio =
2027 (swap_flags & SWAP_FLAG_PRIO_MASK) >> SWAP_FLAG_PRIO_SHIFT;
2028 else
2029 p->prio = --least_priority;
2030 p->swap_map = swap_map;
Hugh Dickins22c6f8f2009-01-06 14:39:48 -08002031 p->flags |= SWP_WRITEOK;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002032 nr_swap_pages += nr_good_pages;
2033 total_swap_pages += nr_good_pages;
Hugh Dickins53092a72005-09-03 15:54:34 -07002034
Hugh Dickins6eb396d2005-09-03 15:54:35 -07002035 printk(KERN_INFO "Adding %uk swap on %s. "
Hugh Dickins20137a42009-01-06 14:39:54 -08002036 "Priority:%d extents:%d across:%lluk %s%s\n",
Hugh Dickins53092a72005-09-03 15:54:34 -07002037 nr_good_pages<<(PAGE_SHIFT-10), name, p->prio,
Hugh Dickins6a6ba832009-01-06 14:39:51 -08002038 nr_extents, (unsigned long long)span<<(PAGE_SHIFT-10),
Hugh Dickins20137a42009-01-06 14:39:54 -08002039 (p->flags & SWP_SOLIDSTATE) ? "SS" : "",
2040 (p->flags & SWP_DISCARDABLE) ? "D" : "");
Linus Torvalds1da177e2005-04-16 15:20:36 -07002041
2042 /* insert swap space into swap_list: */
2043 prev = -1;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002044 for (i = swap_list.head; i >= 0; i = swap_info[i]->next) {
2045 if (p->prio >= swap_info[i]->prio)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002046 break;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002047 prev = i;
2048 }
2049 p->next = i;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002050 if (prev < 0)
2051 swap_list.head = swap_list.next = type;
2052 else
2053 swap_info[prev]->next = type;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002054 spin_unlock(&swap_lock);
Ingo Molnarfc0abb12006-01-18 17:42:33 -08002055 mutex_unlock(&swapon_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002056 error = 0;
2057 goto out;
2058bad_swap:
2059 if (bdev) {
2060 set_blocksize(bdev, p->old_block_size);
2061 bd_release(bdev);
2062 }
Hugh Dickins4cd3bb12005-09-03 15:54:33 -07002063 destroy_swap_extents(p);
KAMEZAWA Hiroyuki27a7faa2009-01-07 18:07:58 -08002064 swap_cgroup_swapoff(type);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002065bad_swap_2:
Hugh Dickins5d337b92005-09-03 15:54:41 -07002066 spin_lock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002067 p->swap_file = NULL;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002068 p->flags = 0;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002069 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002070 vfree(swap_map);
2071 if (swap_file)
2072 filp_close(swap_file, NULL);
2073out:
2074 if (page && !IS_ERR(page)) {
2075 kunmap(page);
2076 page_cache_release(page);
2077 }
2078 if (name)
2079 putname(name);
2080 if (did_down) {
2081 if (!error)
2082 inode->i_flags |= S_SWAPFILE;
Jes Sorensen1b1dcc12006-01-09 15:59:24 -08002083 mutex_unlock(&inode->i_mutex);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002084 }
2085 return error;
2086}
2087
2088void si_swapinfo(struct sysinfo *val)
2089{
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002090 unsigned int type;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002091 unsigned long nr_to_be_unused = 0;
2092
Hugh Dickins5d337b92005-09-03 15:54:41 -07002093 spin_lock(&swap_lock);
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002094 for (type = 0; type < nr_swapfiles; type++) {
2095 struct swap_info_struct *si = swap_info[type];
2096
2097 if ((si->flags & SWP_USED) && !(si->flags & SWP_WRITEOK))
2098 nr_to_be_unused += si->inuse_pages;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002099 }
2100 val->freeswap = nr_swap_pages + nr_to_be_unused;
2101 val->totalswap = total_swap_pages + nr_to_be_unused;
Hugh Dickins5d337b92005-09-03 15:54:41 -07002102 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002103}
2104
2105/*
2106 * Verify that a swap entry is valid and increment its swap map count.
2107 *
2108 * Note: if swap_map[] reaches SWAP_MAP_MAX the entries are treated as
2109 * "permanent", but will be reclaimed by the next swapoff.
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002110 * Returns error code in following case.
2111 * - success -> 0
2112 * - swp_entry is invalid -> EINVAL
2113 * - swp_entry is migration entry -> EINVAL
2114 * - swap-cache reference is requested but there is already one. -> EEXIST
2115 * - swap-cache reference is requested but the entry is not used. -> ENOENT
Linus Torvalds1da177e2005-04-16 15:20:36 -07002116 */
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002117static int __swap_duplicate(swp_entry_t entry, bool cache)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002118{
2119 struct swap_info_struct * p;
2120 unsigned long offset, type;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002121 int result = -EINVAL;
2122 int count;
2123 bool has_cache;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002124
Andi Kleena7420aa2009-09-16 11:50:05 +02002125 if (non_swap_entry(entry))
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002126 return -EINVAL;
Christoph Lameter06972122006-06-23 02:03:35 -07002127
Linus Torvalds1da177e2005-04-16 15:20:36 -07002128 type = swp_type(entry);
2129 if (type >= nr_swapfiles)
2130 goto bad_file;
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002131 p = swap_info[type];
Linus Torvalds1da177e2005-04-16 15:20:36 -07002132 offset = swp_offset(entry);
2133
Hugh Dickins5d337b92005-09-03 15:54:41 -07002134 spin_lock(&swap_lock);
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002135
2136 if (unlikely(offset >= p->max))
2137 goto unlock_out;
2138
2139 count = swap_count(p->swap_map[offset]);
2140 has_cache = swap_has_cache(p->swap_map[offset]);
2141
2142 if (cache == SWAP_CACHE) { /* called for swapcache/swapin-readahead */
2143
2144 /* set SWAP_HAS_CACHE if there is no cache and entry is used */
2145 if (!has_cache && count) {
2146 p->swap_map[offset] = encode_swapmap(count, true);
2147 result = 0;
2148 } else if (has_cache) /* someone added cache */
2149 result = -EEXIST;
2150 else if (!count) /* no users */
2151 result = -ENOENT;
2152
2153 } else if (count || has_cache) {
2154 if (count < SWAP_MAP_MAX - 1) {
2155 p->swap_map[offset] = encode_swapmap(count + 1,
2156 has_cache);
2157 result = 0;
2158 } else if (count <= SWAP_MAP_MAX) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002159 if (swap_overflow++ < 5)
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002160 printk(KERN_WARNING
2161 "swap_dup: swap entry overflow\n");
2162 p->swap_map[offset] = encode_swapmap(SWAP_MAP_MAX,
2163 has_cache);
2164 result = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002165 }
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002166 } else
2167 result = -ENOENT; /* unused swap entry */
2168unlock_out:
Hugh Dickins5d337b92005-09-03 15:54:41 -07002169 spin_unlock(&swap_lock);
Linus Torvalds1da177e2005-04-16 15:20:36 -07002170out:
2171 return result;
2172
2173bad_file:
2174 printk(KERN_ERR "swap_dup: %s%08lx\n", Bad_file, entry.val);
2175 goto out;
2176}
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002177/*
2178 * increase reference count of swap entry by 1.
2179 */
2180void swap_duplicate(swp_entry_t entry)
2181{
2182 __swap_duplicate(entry, SWAP_MAP);
2183}
Linus Torvalds1da177e2005-04-16 15:20:36 -07002184
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002185/*
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002186 * @entry: swap entry for which we allocate swap cache.
2187 *
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002188 * Called when allocating swap cache for exising swap entry,
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002189 * This can return error codes. Returns 0 at success.
2190 * -EBUSY means there is a swap cache.
2191 * Note: return code is different from swap_duplicate().
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002192 */
2193int swapcache_prepare(swp_entry_t entry)
2194{
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002195 return __swap_duplicate(entry, SWAP_CACHE);
KAMEZAWA Hiroyukicb4b86b2009-06-16 15:32:52 -07002196}
2197
Linus Torvalds1da177e2005-04-16 15:20:36 -07002198/*
Hugh Dickins5d337b92005-09-03 15:54:41 -07002199 * swap_lock prevents swap_map being freed. Don't grab an extra
Linus Torvalds1da177e2005-04-16 15:20:36 -07002200 * reference on the swaphandle, it doesn't matter if it becomes unused.
2201 */
2202int valid_swaphandles(swp_entry_t entry, unsigned long *offset)
2203{
Hugh Dickins89528982008-02-04 22:28:45 -08002204 struct swap_info_struct *si;
Hugh Dickins3f9e7942006-09-29 02:01:26 -07002205 int our_page_cluster = page_cluster;
Hugh Dickins89528982008-02-04 22:28:45 -08002206 pgoff_t target, toff;
2207 pgoff_t base, end;
2208 int nr_pages = 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002209
Hugh Dickins3f9e7942006-09-29 02:01:26 -07002210 if (!our_page_cluster) /* no readahead */
Linus Torvalds1da177e2005-04-16 15:20:36 -07002211 return 0;
Hugh Dickins89528982008-02-04 22:28:45 -08002212
Hugh Dickinsefa90a92009-12-14 17:58:41 -08002213 si = swap_info[swp_type(entry)];
Hugh Dickins89528982008-02-04 22:28:45 -08002214 target = swp_offset(entry);
2215 base = (target >> our_page_cluster) << our_page_cluster;
2216 end = base + (1 << our_page_cluster);
2217 if (!base) /* first page is swap header */
2218 base++;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002219
Hugh Dickins5d337b92005-09-03 15:54:41 -07002220 spin_lock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08002221 if (end > si->max) /* don't go beyond end of map */
2222 end = si->max;
2223
2224 /* Count contiguous allocated slots above our target */
2225 for (toff = target; ++toff < end; nr_pages++) {
Linus Torvalds1da177e2005-04-16 15:20:36 -07002226 /* Don't read in free or bad pages */
Hugh Dickins89528982008-02-04 22:28:45 -08002227 if (!si->swap_map[toff])
Linus Torvalds1da177e2005-04-16 15:20:36 -07002228 break;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002229 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
Linus Torvalds1da177e2005-04-16 15:20:36 -07002230 break;
Hugh Dickins89528982008-02-04 22:28:45 -08002231 }
2232 /* Count contiguous allocated slots below our target */
2233 for (toff = target; --toff >= base; nr_pages++) {
2234 /* Don't read in free or bad pages */
2235 if (!si->swap_map[toff])
2236 break;
KAMEZAWA Hiroyuki355cfa72009-06-16 15:32:53 -07002237 if (swap_count(si->swap_map[toff]) == SWAP_MAP_BAD)
Hugh Dickins89528982008-02-04 22:28:45 -08002238 break;
2239 }
Hugh Dickins5d337b92005-09-03 15:54:41 -07002240 spin_unlock(&swap_lock);
Hugh Dickins89528982008-02-04 22:28:45 -08002241
2242 /*
2243 * Indicate starting offset, and return number of pages to get:
2244 * if only 1, say 0, since there's then no readahead to be done.
2245 */
2246 *offset = ++toff;
2247 return nr_pages? ++nr_pages: 0;
Linus Torvalds1da177e2005-04-16 15:20:36 -07002248}