blob: f9ba9bb1c1b89e2524629afd31a8c0f2bf3217f7 [file] [log] [blame]
Seth Jennings2b281112013-07-10 16:05:03 -07001/*
2 * zswap.c - zswap driver file
3 *
4 * zswap is a backend for frontswap that takes pages that are in the process
5 * of being swapped out and attempts to compress and store them in a
6 * RAM-based memory pool. This can result in a significant I/O reduction on
7 * the swap device and, in the case where decompressing from RAM is faster
8 * than reading from the swap device, can also improve workload performance.
9 *
10 * Copyright (C) 2012 Seth Jennings <sjenning@linux.vnet.ibm.com>
11 *
12 * This program is free software; you can redistribute it and/or
13 * modify it under the terms of the GNU General Public License
14 * as published by the Free Software Foundation; either version 2
15 * of the License, or (at your option) any later version.
16 *
17 * This program is distributed in the hope that it will be useful,
18 * but WITHOUT ANY WARRANTY; without even the implied warranty of
19 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
20 * GNU General Public License for more details.
21*/
22
23#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
24
25#include <linux/module.h>
26#include <linux/cpu.h>
27#include <linux/highmem.h>
28#include <linux/slab.h>
29#include <linux/spinlock.h>
30#include <linux/types.h>
31#include <linux/atomic.h>
32#include <linux/frontswap.h>
33#include <linux/rbtree.h>
34#include <linux/swap.h>
35#include <linux/crypto.h>
36#include <linux/mempool.h>
Dan Streetman12d79d62014-08-06 16:08:40 -070037#include <linux/zpool.h>
Seth Jennings2b281112013-07-10 16:05:03 -070038
39#include <linux/mm_types.h>
40#include <linux/page-flags.h>
41#include <linux/swapops.h>
42#include <linux/writeback.h>
43#include <linux/pagemap.h>
44
45/*********************************
46* statistics
47**********************************/
Dan Streetman12d79d62014-08-06 16:08:40 -070048/* Total bytes used by the compressed storage */
49static u64 zswap_pool_total_size;
Seth Jennings2b281112013-07-10 16:05:03 -070050/* The number of compressed pages currently stored in zswap */
51static atomic_t zswap_stored_pages = ATOMIC_INIT(0);
52
53/*
54 * The statistics below are not protected from concurrent access for
55 * performance reasons so they may not be a 100% accurate. However,
56 * they do provide useful information on roughly how many times a
57 * certain event is occurring.
58*/
59
60/* Pool limit was hit (see zswap_max_pool_percent) */
61static u64 zswap_pool_limit_hit;
62/* Pages written back when pool limit was reached */
63static u64 zswap_written_back_pages;
64/* Store failed due to a reclaim failure after pool limit was reached */
65static u64 zswap_reject_reclaim_fail;
66/* Compressed page was too big for the allocator to (optimally) store */
67static u64 zswap_reject_compress_poor;
68/* Store failed because underlying allocator could not get memory */
69static u64 zswap_reject_alloc_fail;
70/* Store failed because the entry metadata could not be allocated (rare) */
71static u64 zswap_reject_kmemcache_fail;
72/* Duplicate store was encountered (rare) */
73static u64 zswap_duplicate_entry;
74
75/*********************************
76* tunables
77**********************************/
Dan Streetmanc00ed162015-06-25 15:00:35 -070078
79/* Enable/disable zswap (disabled by default) */
80static bool zswap_enabled;
81module_param_named(enabled, zswap_enabled, bool, 0644);
Seth Jennings2b281112013-07-10 16:05:03 -070082
83/* Compressor to be used by zswap (fixed at boot for now) */
84#define ZSWAP_COMPRESSOR_DEFAULT "lzo"
85static char *zswap_compressor = ZSWAP_COMPRESSOR_DEFAULT;
Dan Streetman12ab0282014-01-23 15:52:48 -080086module_param_named(compressor, zswap_compressor, charp, 0444);
Seth Jennings2b281112013-07-10 16:05:03 -070087
88/* The maximum percentage of memory that the compressed pool can occupy */
89static unsigned int zswap_max_pool_percent = 20;
90module_param_named(max_pool_percent,
91 zswap_max_pool_percent, uint, 0644);
92
Dan Streetman12d79d62014-08-06 16:08:40 -070093/* Compressed storage to use */
94#define ZSWAP_ZPOOL_DEFAULT "zbud"
95static char *zswap_zpool_type = ZSWAP_ZPOOL_DEFAULT;
96module_param_named(zpool, zswap_zpool_type, charp, 0444);
97
98/* zpool is shared by all of zswap backend */
99static struct zpool *zswap_pool;
Minchan Kim60105e12014-04-07 15:38:27 -0700100
Seth Jennings2b281112013-07-10 16:05:03 -0700101/*********************************
Seth Jennings2b281112013-07-10 16:05:03 -0700102* data structures
103**********************************/
Dan Streetmanf1c54842015-09-09 15:35:19 -0700104
105struct zswap_pool {
106 struct zpool *zpool;
107 struct crypto_comp * __percpu *tfm;
108 struct kref kref;
109 struct list_head list;
110 struct rcu_head rcu_head;
111 struct notifier_block notifier;
112 char tfm_name[CRYPTO_MAX_ALG_NAME];
113};
114
Seth Jennings2b281112013-07-10 16:05:03 -0700115/*
116 * struct zswap_entry
117 *
118 * This structure contains the metadata for tracking a single compressed
119 * page within zswap.
120 *
121 * rbnode - links the entry into red-black tree for the appropriate swap type
Dan Streetmanf1c54842015-09-09 15:35:19 -0700122 * offset - the swap offset for the entry. Index into the red-black tree.
Seth Jennings2b281112013-07-10 16:05:03 -0700123 * refcount - the number of outstanding reference to the entry. This is needed
124 * to protect against premature freeing of the entry by code
SeongJae Park6b452512014-04-07 15:38:25 -0700125 * concurrent calls to load, invalidate, and writeback. The lock
Seth Jennings2b281112013-07-10 16:05:03 -0700126 * for the zswap_tree structure that contains the entry must
127 * be held while changing the refcount. Since the lock must
128 * be held, there is no reason to also make refcount atomic.
Seth Jennings2b281112013-07-10 16:05:03 -0700129 * length - the length in bytes of the compressed page data. Needed during
SeongJae Park6b452512014-04-07 15:38:25 -0700130 * decompression
Dan Streetmanf1c54842015-09-09 15:35:19 -0700131 * pool - the zswap_pool the entry's data is in
132 * handle - zpool allocation handle that stores the compressed page data
Seth Jennings2b281112013-07-10 16:05:03 -0700133 */
134struct zswap_entry {
135 struct rb_node rbnode;
136 pgoff_t offset;
137 int refcount;
138 unsigned int length;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700139 struct zswap_pool *pool;
Seth Jennings2b281112013-07-10 16:05:03 -0700140 unsigned long handle;
141};
142
143struct zswap_header {
144 swp_entry_t swpentry;
145};
146
147/*
148 * The tree lock in the zswap_tree struct protects a few things:
149 * - the rbtree
150 * - the refcount field of each entry in the tree
151 */
152struct zswap_tree {
153 struct rb_root rbroot;
154 spinlock_t lock;
Seth Jennings2b281112013-07-10 16:05:03 -0700155};
156
157static struct zswap_tree *zswap_trees[MAX_SWAPFILES];
158
Dan Streetmanf1c54842015-09-09 15:35:19 -0700159/* RCU-protected iteration */
160static LIST_HEAD(zswap_pools);
161/* protects zswap_pools list modification */
162static DEFINE_SPINLOCK(zswap_pools_lock);
163
164/*********************************
165* helpers and fwd declarations
166**********************************/
167
168#define zswap_pool_debug(msg, p) \
169 pr_debug("%s pool %s/%s\n", msg, (p)->tfm_name, \
170 zpool_get_type((p)->zpool))
171
172static int zswap_writeback_entry(struct zpool *pool, unsigned long handle);
173static int zswap_pool_get(struct zswap_pool *pool);
174static void zswap_pool_put(struct zswap_pool *pool);
175
176static const struct zpool_ops zswap_zpool_ops = {
177 .evict = zswap_writeback_entry
178};
179
180static bool zswap_is_full(void)
181{
182 return totalram_pages * zswap_max_pool_percent / 100 <
183 DIV_ROUND_UP(zswap_pool_total_size, PAGE_SIZE);
184}
185
186static void zswap_update_total_size(void)
187{
188 struct zswap_pool *pool;
189 u64 total = 0;
190
191 rcu_read_lock();
192
193 list_for_each_entry_rcu(pool, &zswap_pools, list)
194 total += zpool_get_total_size(pool->zpool);
195
196 rcu_read_unlock();
197
198 zswap_pool_total_size = total;
199}
200
Seth Jennings2b281112013-07-10 16:05:03 -0700201/*********************************
202* zswap entry functions
203**********************************/
204static struct kmem_cache *zswap_entry_cache;
205
Mahendran Ganeshdd01d7d2014-12-12 16:57:15 -0800206static int __init zswap_entry_cache_create(void)
Seth Jennings2b281112013-07-10 16:05:03 -0700207{
208 zswap_entry_cache = KMEM_CACHE(zswap_entry, 0);
SeongJae Park5d2d42d2014-04-07 15:38:28 -0700209 return zswap_entry_cache == NULL;
Seth Jennings2b281112013-07-10 16:05:03 -0700210}
211
Fabian Frederickc1192392014-08-08 14:19:35 -0700212static void __init zswap_entry_cache_destroy(void)
Seth Jennings2b281112013-07-10 16:05:03 -0700213{
214 kmem_cache_destroy(zswap_entry_cache);
215}
216
217static struct zswap_entry *zswap_entry_cache_alloc(gfp_t gfp)
218{
219 struct zswap_entry *entry;
220 entry = kmem_cache_alloc(zswap_entry_cache, gfp);
221 if (!entry)
222 return NULL;
223 entry->refcount = 1;
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800224 RB_CLEAR_NODE(&entry->rbnode);
Seth Jennings2b281112013-07-10 16:05:03 -0700225 return entry;
226}
227
228static void zswap_entry_cache_free(struct zswap_entry *entry)
229{
230 kmem_cache_free(zswap_entry_cache, entry);
231}
232
Seth Jennings2b281112013-07-10 16:05:03 -0700233/*********************************
234* rbtree functions
235**********************************/
236static struct zswap_entry *zswap_rb_search(struct rb_root *root, pgoff_t offset)
237{
238 struct rb_node *node = root->rb_node;
239 struct zswap_entry *entry;
240
241 while (node) {
242 entry = rb_entry(node, struct zswap_entry, rbnode);
243 if (entry->offset > offset)
244 node = node->rb_left;
245 else if (entry->offset < offset)
246 node = node->rb_right;
247 else
248 return entry;
249 }
250 return NULL;
251}
252
253/*
254 * In the case that a entry with the same offset is found, a pointer to
255 * the existing entry is stored in dupentry and the function returns -EEXIST
256 */
257static int zswap_rb_insert(struct rb_root *root, struct zswap_entry *entry,
258 struct zswap_entry **dupentry)
259{
260 struct rb_node **link = &root->rb_node, *parent = NULL;
261 struct zswap_entry *myentry;
262
263 while (*link) {
264 parent = *link;
265 myentry = rb_entry(parent, struct zswap_entry, rbnode);
266 if (myentry->offset > entry->offset)
267 link = &(*link)->rb_left;
268 else if (myentry->offset < entry->offset)
269 link = &(*link)->rb_right;
270 else {
271 *dupentry = myentry;
272 return -EEXIST;
273 }
274 }
275 rb_link_node(&entry->rbnode, parent, link);
276 rb_insert_color(&entry->rbnode, root);
277 return 0;
278}
279
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800280static void zswap_rb_erase(struct rb_root *root, struct zswap_entry *entry)
281{
282 if (!RB_EMPTY_NODE(&entry->rbnode)) {
283 rb_erase(&entry->rbnode, root);
284 RB_CLEAR_NODE(&entry->rbnode);
285 }
286}
287
288/*
Dan Streetman12d79d62014-08-06 16:08:40 -0700289 * Carries out the common pattern of freeing and entry's zpool allocation,
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800290 * freeing the entry itself, and decrementing the number of stored pages.
291 */
Minchan Kim60105e12014-04-07 15:38:27 -0700292static void zswap_free_entry(struct zswap_entry *entry)
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800293{
Dan Streetmanf1c54842015-09-09 15:35:19 -0700294 zpool_free(entry->pool->zpool, entry->handle);
295 zswap_pool_put(entry->pool);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800296 zswap_entry_cache_free(entry);
297 atomic_dec(&zswap_stored_pages);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700298 zswap_update_total_size();
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800299}
300
301/* caller must hold the tree lock */
302static void zswap_entry_get(struct zswap_entry *entry)
303{
304 entry->refcount++;
305}
306
307/* caller must hold the tree lock
308* remove from the tree and free it, if nobody reference the entry
309*/
310static void zswap_entry_put(struct zswap_tree *tree,
311 struct zswap_entry *entry)
312{
313 int refcount = --entry->refcount;
314
315 BUG_ON(refcount < 0);
316 if (refcount == 0) {
317 zswap_rb_erase(&tree->rbroot, entry);
Minchan Kim60105e12014-04-07 15:38:27 -0700318 zswap_free_entry(entry);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800319 }
320}
321
322/* caller must hold the tree lock */
323static struct zswap_entry *zswap_entry_find_get(struct rb_root *root,
324 pgoff_t offset)
325{
326 struct zswap_entry *entry = NULL;
327
328 entry = zswap_rb_search(root, offset);
329 if (entry)
330 zswap_entry_get(entry);
331
332 return entry;
333}
334
Seth Jennings2b281112013-07-10 16:05:03 -0700335/*********************************
336* per-cpu code
337**********************************/
338static DEFINE_PER_CPU(u8 *, zswap_dstmem);
339
Dan Streetmanf1c54842015-09-09 15:35:19 -0700340static int __zswap_cpu_dstmem_notifier(unsigned long action, unsigned long cpu)
Seth Jennings2b281112013-07-10 16:05:03 -0700341{
Seth Jennings2b281112013-07-10 16:05:03 -0700342 u8 *dst;
343
344 switch (action) {
345 case CPU_UP_PREPARE:
Eric Dumazet72d09632014-06-04 16:11:11 -0700346 dst = kmalloc_node(PAGE_SIZE * 2, GFP_KERNEL, cpu_to_node(cpu));
Seth Jennings2b281112013-07-10 16:05:03 -0700347 if (!dst) {
348 pr_err("can't allocate compressor buffer\n");
Seth Jennings2b281112013-07-10 16:05:03 -0700349 return NOTIFY_BAD;
350 }
351 per_cpu(zswap_dstmem, cpu) = dst;
352 break;
353 case CPU_DEAD:
354 case CPU_UP_CANCELED:
Seth Jennings2b281112013-07-10 16:05:03 -0700355 dst = per_cpu(zswap_dstmem, cpu);
356 kfree(dst);
357 per_cpu(zswap_dstmem, cpu) = NULL;
358 break;
359 default:
360 break;
361 }
362 return NOTIFY_OK;
363}
364
Dan Streetmanf1c54842015-09-09 15:35:19 -0700365static int zswap_cpu_dstmem_notifier(struct notifier_block *nb,
366 unsigned long action, void *pcpu)
Seth Jennings2b281112013-07-10 16:05:03 -0700367{
Dan Streetmanf1c54842015-09-09 15:35:19 -0700368 return __zswap_cpu_dstmem_notifier(action, (unsigned long)pcpu);
Seth Jennings2b281112013-07-10 16:05:03 -0700369}
370
Dan Streetmanf1c54842015-09-09 15:35:19 -0700371static struct notifier_block zswap_dstmem_notifier = {
372 .notifier_call = zswap_cpu_dstmem_notifier,
Seth Jennings2b281112013-07-10 16:05:03 -0700373};
374
Dan Streetmanf1c54842015-09-09 15:35:19 -0700375static int __init zswap_cpu_dstmem_init(void)
Seth Jennings2b281112013-07-10 16:05:03 -0700376{
377 unsigned long cpu;
378
Srivatsa S. Bhat57637822014-03-11 02:12:40 +0530379 cpu_notifier_register_begin();
Seth Jennings2b281112013-07-10 16:05:03 -0700380 for_each_online_cpu(cpu)
Dan Streetmanf1c54842015-09-09 15:35:19 -0700381 if (__zswap_cpu_dstmem_notifier(CPU_UP_PREPARE, cpu) ==
382 NOTIFY_BAD)
Seth Jennings2b281112013-07-10 16:05:03 -0700383 goto cleanup;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700384 __register_cpu_notifier(&zswap_dstmem_notifier);
Srivatsa S. Bhat57637822014-03-11 02:12:40 +0530385 cpu_notifier_register_done();
Seth Jennings2b281112013-07-10 16:05:03 -0700386 return 0;
387
388cleanup:
389 for_each_online_cpu(cpu)
Dan Streetmanf1c54842015-09-09 15:35:19 -0700390 __zswap_cpu_dstmem_notifier(CPU_UP_CANCELED, cpu);
Srivatsa S. Bhat57637822014-03-11 02:12:40 +0530391 cpu_notifier_register_done();
Seth Jennings2b281112013-07-10 16:05:03 -0700392 return -ENOMEM;
393}
394
Dan Streetmanf1c54842015-09-09 15:35:19 -0700395static void zswap_cpu_dstmem_destroy(void)
Seth Jennings2b281112013-07-10 16:05:03 -0700396{
Dan Streetmanf1c54842015-09-09 15:35:19 -0700397 unsigned long cpu;
398
399 cpu_notifier_register_begin();
400 for_each_online_cpu(cpu)
401 __zswap_cpu_dstmem_notifier(CPU_UP_CANCELED, cpu);
402 __unregister_cpu_notifier(&zswap_dstmem_notifier);
403 cpu_notifier_register_done();
404}
405
406static int __zswap_cpu_comp_notifier(struct zswap_pool *pool,
407 unsigned long action, unsigned long cpu)
408{
409 struct crypto_comp *tfm;
410
411 switch (action) {
412 case CPU_UP_PREPARE:
413 if (WARN_ON(*per_cpu_ptr(pool->tfm, cpu)))
414 break;
415 tfm = crypto_alloc_comp(pool->tfm_name, 0, 0);
416 if (IS_ERR_OR_NULL(tfm)) {
417 pr_err("could not alloc crypto comp %s : %ld\n",
418 pool->tfm_name, PTR_ERR(tfm));
419 return NOTIFY_BAD;
420 }
421 *per_cpu_ptr(pool->tfm, cpu) = tfm;
422 break;
423 case CPU_DEAD:
424 case CPU_UP_CANCELED:
425 tfm = *per_cpu_ptr(pool->tfm, cpu);
426 if (!IS_ERR_OR_NULL(tfm))
427 crypto_free_comp(tfm);
428 *per_cpu_ptr(pool->tfm, cpu) = NULL;
429 break;
430 default:
431 break;
432 }
433 return NOTIFY_OK;
434}
435
436static int zswap_cpu_comp_notifier(struct notifier_block *nb,
437 unsigned long action, void *pcpu)
438{
439 unsigned long cpu = (unsigned long)pcpu;
440 struct zswap_pool *pool = container_of(nb, typeof(*pool), notifier);
441
442 return __zswap_cpu_comp_notifier(pool, action, cpu);
443}
444
445static int zswap_cpu_comp_init(struct zswap_pool *pool)
446{
447 unsigned long cpu;
448
449 memset(&pool->notifier, 0, sizeof(pool->notifier));
450 pool->notifier.notifier_call = zswap_cpu_comp_notifier;
451
452 cpu_notifier_register_begin();
453 for_each_online_cpu(cpu)
454 if (__zswap_cpu_comp_notifier(pool, CPU_UP_PREPARE, cpu) ==
455 NOTIFY_BAD)
456 goto cleanup;
457 __register_cpu_notifier(&pool->notifier);
458 cpu_notifier_register_done();
459 return 0;
460
461cleanup:
462 for_each_online_cpu(cpu)
463 __zswap_cpu_comp_notifier(pool, CPU_UP_CANCELED, cpu);
464 cpu_notifier_register_done();
465 return -ENOMEM;
466}
467
468static void zswap_cpu_comp_destroy(struct zswap_pool *pool)
469{
470 unsigned long cpu;
471
472 cpu_notifier_register_begin();
473 for_each_online_cpu(cpu)
474 __zswap_cpu_comp_notifier(pool, CPU_UP_CANCELED, cpu);
475 __unregister_cpu_notifier(&pool->notifier);
476 cpu_notifier_register_done();
477}
478
479/*********************************
480* pool functions
481**********************************/
482
483static struct zswap_pool *__zswap_pool_current(void)
484{
485 struct zswap_pool *pool;
486
487 pool = list_first_or_null_rcu(&zswap_pools, typeof(*pool), list);
488 WARN_ON(!pool);
489
490 return pool;
491}
492
493static struct zswap_pool *zswap_pool_current(void)
494{
495 assert_spin_locked(&zswap_pools_lock);
496
497 return __zswap_pool_current();
498}
499
500static struct zswap_pool *zswap_pool_current_get(void)
501{
502 struct zswap_pool *pool;
503
504 rcu_read_lock();
505
506 pool = __zswap_pool_current();
507 if (!pool || !zswap_pool_get(pool))
508 pool = NULL;
509
510 rcu_read_unlock();
511
512 return pool;
513}
514
515static struct zswap_pool *zswap_pool_last_get(void)
516{
517 struct zswap_pool *pool, *last = NULL;
518
519 rcu_read_lock();
520
521 list_for_each_entry_rcu(pool, &zswap_pools, list)
522 last = pool;
523 if (!WARN_ON(!last) && !zswap_pool_get(last))
524 last = NULL;
525
526 rcu_read_unlock();
527
528 return last;
529}
530
531static struct zswap_pool *zswap_pool_find_get(char *type, char *compressor)
532{
533 struct zswap_pool *pool;
534
535 assert_spin_locked(&zswap_pools_lock);
536
537 list_for_each_entry_rcu(pool, &zswap_pools, list) {
538 if (strncmp(pool->tfm_name, compressor, sizeof(pool->tfm_name)))
539 continue;
540 if (strncmp(zpool_get_type(pool->zpool), type,
541 sizeof(zswap_zpool_type)))
542 continue;
543 /* if we can't get it, it's about to be destroyed */
544 if (!zswap_pool_get(pool))
545 continue;
546 return pool;
547 }
548
549 return NULL;
550}
551
552static struct zswap_pool *zswap_pool_create(char *type, char *compressor)
553{
554 struct zswap_pool *pool;
555 gfp_t gfp = __GFP_NORETRY | __GFP_NOWARN;
556
557 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
558 if (!pool) {
559 pr_err("pool alloc failed\n");
560 return NULL;
561 }
562
563 pool->zpool = zpool_create_pool(type, "zswap", gfp, &zswap_zpool_ops);
564 if (!pool->zpool) {
565 pr_err("%s zpool not available\n", type);
566 goto error;
567 }
568 pr_debug("using %s zpool\n", zpool_get_type(pool->zpool));
569
570 strlcpy(pool->tfm_name, compressor, sizeof(pool->tfm_name));
571 pool->tfm = alloc_percpu(struct crypto_comp *);
572 if (!pool->tfm) {
573 pr_err("percpu alloc failed\n");
574 goto error;
575 }
576
577 if (zswap_cpu_comp_init(pool))
578 goto error;
579 pr_debug("using %s compressor\n", pool->tfm_name);
580
581 /* being the current pool takes 1 ref; this func expects the
582 * caller to always add the new pool as the current pool
583 */
584 kref_init(&pool->kref);
585 INIT_LIST_HEAD(&pool->list);
586
587 zswap_pool_debug("created", pool);
588
589 return pool;
590
591error:
592 free_percpu(pool->tfm);
593 if (pool->zpool)
594 zpool_destroy_pool(pool->zpool);
595 kfree(pool);
596 return NULL;
597}
598
599static struct zswap_pool *__zswap_pool_create_fallback(void)
600{
601 if (!crypto_has_comp(zswap_compressor, 0, 0)) {
602 pr_err("compressor %s not available, using default %s\n",
603 zswap_compressor, ZSWAP_COMPRESSOR_DEFAULT);
604 strncpy(zswap_compressor, ZSWAP_COMPRESSOR_DEFAULT,
605 sizeof(zswap_compressor));
606 }
607 if (!zpool_has_pool(zswap_zpool_type)) {
608 pr_err("zpool %s not available, using default %s\n",
609 zswap_zpool_type, ZSWAP_ZPOOL_DEFAULT);
610 strncpy(zswap_zpool_type, ZSWAP_ZPOOL_DEFAULT,
611 sizeof(zswap_zpool_type));
612 }
613
614 return zswap_pool_create(zswap_zpool_type, zswap_compressor);
615}
616
617static void zswap_pool_destroy(struct zswap_pool *pool)
618{
619 zswap_pool_debug("destroying", pool);
620
621 zswap_cpu_comp_destroy(pool);
622 free_percpu(pool->tfm);
623 zpool_destroy_pool(pool->zpool);
624 kfree(pool);
625}
626
627static int __must_check zswap_pool_get(struct zswap_pool *pool)
628{
629 return kref_get_unless_zero(&pool->kref);
630}
631
632static void __zswap_pool_release(struct rcu_head *head)
633{
634 struct zswap_pool *pool = container_of(head, typeof(*pool), rcu_head);
635
636 /* nobody should have been able to get a kref... */
637 WARN_ON(kref_get_unless_zero(&pool->kref));
638
639 /* pool is now off zswap_pools list and has no references. */
640 zswap_pool_destroy(pool);
641}
642
643static void __zswap_pool_empty(struct kref *kref)
644{
645 struct zswap_pool *pool;
646
647 pool = container_of(kref, typeof(*pool), kref);
648
649 spin_lock(&zswap_pools_lock);
650
651 WARN_ON(pool == zswap_pool_current());
652
653 list_del_rcu(&pool->list);
654 call_rcu(&pool->rcu_head, __zswap_pool_release);
655
656 spin_unlock(&zswap_pools_lock);
657}
658
659static void zswap_pool_put(struct zswap_pool *pool)
660{
661 kref_put(&pool->kref, __zswap_pool_empty);
Seth Jennings2b281112013-07-10 16:05:03 -0700662}
663
Seth Jennings2b281112013-07-10 16:05:03 -0700664/*********************************
665* writeback code
666**********************************/
667/* return enum for zswap_get_swap_cache_page */
668enum zswap_get_swap_ret {
669 ZSWAP_SWAPCACHE_NEW,
670 ZSWAP_SWAPCACHE_EXIST,
Weijie Yang67d13fe2013-11-12 15:08:26 -0800671 ZSWAP_SWAPCACHE_FAIL,
Seth Jennings2b281112013-07-10 16:05:03 -0700672};
673
674/*
675 * zswap_get_swap_cache_page
676 *
677 * This is an adaption of read_swap_cache_async()
678 *
679 * This function tries to find a page with the given swap entry
680 * in the swapper_space address space (the swap cache). If the page
681 * is found, it is returned in retpage. Otherwise, a page is allocated,
682 * added to the swap cache, and returned in retpage.
683 *
684 * If success, the swap cache page is returned in retpage
Weijie Yang67d13fe2013-11-12 15:08:26 -0800685 * Returns ZSWAP_SWAPCACHE_EXIST if page was already in the swap cache
686 * Returns ZSWAP_SWAPCACHE_NEW if the new page needs to be populated,
687 * the new page is added to swapcache and locked
688 * Returns ZSWAP_SWAPCACHE_FAIL on error
Seth Jennings2b281112013-07-10 16:05:03 -0700689 */
690static int zswap_get_swap_cache_page(swp_entry_t entry,
691 struct page **retpage)
692{
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700693 bool page_was_allocated;
Seth Jennings2b281112013-07-10 16:05:03 -0700694
Dmitry Safonov5b999aa2015-09-08 15:05:00 -0700695 *retpage = __read_swap_cache_async(entry, GFP_KERNEL,
696 NULL, 0, &page_was_allocated);
697 if (page_was_allocated)
698 return ZSWAP_SWAPCACHE_NEW;
699 if (!*retpage)
Weijie Yang67d13fe2013-11-12 15:08:26 -0800700 return ZSWAP_SWAPCACHE_FAIL;
Seth Jennings2b281112013-07-10 16:05:03 -0700701 return ZSWAP_SWAPCACHE_EXIST;
702}
703
704/*
705 * Attempts to free an entry by adding a page to the swap cache,
706 * decompressing the entry data into the page, and issuing a
707 * bio write to write the page back to the swap device.
708 *
709 * This can be thought of as a "resumed writeback" of the page
710 * to the swap device. We are basically resuming the same swap
711 * writeback path that was intercepted with the frontswap_store()
712 * in the first place. After the page has been decompressed into
713 * the swap cache, the compressed version stored by zswap can be
714 * freed.
715 */
Dan Streetman12d79d62014-08-06 16:08:40 -0700716static int zswap_writeback_entry(struct zpool *pool, unsigned long handle)
Seth Jennings2b281112013-07-10 16:05:03 -0700717{
718 struct zswap_header *zhdr;
719 swp_entry_t swpentry;
720 struct zswap_tree *tree;
721 pgoff_t offset;
722 struct zswap_entry *entry;
723 struct page *page;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700724 struct crypto_comp *tfm;
Seth Jennings2b281112013-07-10 16:05:03 -0700725 u8 *src, *dst;
726 unsigned int dlen;
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800727 int ret;
Seth Jennings2b281112013-07-10 16:05:03 -0700728 struct writeback_control wbc = {
729 .sync_mode = WB_SYNC_NONE,
730 };
731
732 /* extract swpentry from data */
Dan Streetman12d79d62014-08-06 16:08:40 -0700733 zhdr = zpool_map_handle(pool, handle, ZPOOL_MM_RO);
Seth Jennings2b281112013-07-10 16:05:03 -0700734 swpentry = zhdr->swpentry; /* here */
Dan Streetman12d79d62014-08-06 16:08:40 -0700735 zpool_unmap_handle(pool, handle);
Seth Jennings2b281112013-07-10 16:05:03 -0700736 tree = zswap_trees[swp_type(swpentry)];
737 offset = swp_offset(swpentry);
Seth Jennings2b281112013-07-10 16:05:03 -0700738
739 /* find and ref zswap entry */
740 spin_lock(&tree->lock);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800741 entry = zswap_entry_find_get(&tree->rbroot, offset);
Seth Jennings2b281112013-07-10 16:05:03 -0700742 if (!entry) {
743 /* entry was invalidated */
744 spin_unlock(&tree->lock);
745 return 0;
746 }
Seth Jennings2b281112013-07-10 16:05:03 -0700747 spin_unlock(&tree->lock);
748 BUG_ON(offset != entry->offset);
749
750 /* try to allocate swap cache page */
751 switch (zswap_get_swap_cache_page(swpentry, &page)) {
Weijie Yang67d13fe2013-11-12 15:08:26 -0800752 case ZSWAP_SWAPCACHE_FAIL: /* no memory or invalidate happened */
Seth Jennings2b281112013-07-10 16:05:03 -0700753 ret = -ENOMEM;
754 goto fail;
755
Weijie Yang67d13fe2013-11-12 15:08:26 -0800756 case ZSWAP_SWAPCACHE_EXIST:
Seth Jennings2b281112013-07-10 16:05:03 -0700757 /* page is already in the swap cache, ignore for now */
758 page_cache_release(page);
759 ret = -EEXIST;
760 goto fail;
761
762 case ZSWAP_SWAPCACHE_NEW: /* page is locked */
763 /* decompress */
764 dlen = PAGE_SIZE;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700765 src = (u8 *)zpool_map_handle(entry->pool->zpool, entry->handle,
Dan Streetman12d79d62014-08-06 16:08:40 -0700766 ZPOOL_MM_RO) + sizeof(struct zswap_header);
Seth Jennings2b281112013-07-10 16:05:03 -0700767 dst = kmap_atomic(page);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700768 tfm = *get_cpu_ptr(entry->pool->tfm);
769 ret = crypto_comp_decompress(tfm, src, entry->length,
770 dst, &dlen);
771 put_cpu_ptr(entry->pool->tfm);
Seth Jennings2b281112013-07-10 16:05:03 -0700772 kunmap_atomic(dst);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700773 zpool_unmap_handle(entry->pool->zpool, entry->handle);
Seth Jennings2b281112013-07-10 16:05:03 -0700774 BUG_ON(ret);
775 BUG_ON(dlen != PAGE_SIZE);
776
777 /* page is up to date */
778 SetPageUptodate(page);
779 }
780
Weijie Yangb349acc2013-11-12 15:07:52 -0800781 /* move it to the tail of the inactive list after end_writeback */
782 SetPageReclaim(page);
783
Seth Jennings2b281112013-07-10 16:05:03 -0700784 /* start writeback */
785 __swap_writepage(page, &wbc, end_swap_bio_write);
786 page_cache_release(page);
787 zswap_written_back_pages++;
788
789 spin_lock(&tree->lock);
Seth Jennings2b281112013-07-10 16:05:03 -0700790 /* drop local reference */
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800791 zswap_entry_put(tree, entry);
Seth Jennings2b281112013-07-10 16:05:03 -0700792
793 /*
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800794 * There are two possible situations for entry here:
795 * (1) refcount is 1(normal case), entry is valid and on the tree
796 * (2) refcount is 0, entry is freed and not on the tree
797 * because invalidate happened during writeback
798 * search the tree and free the entry if find entry
799 */
800 if (entry == zswap_rb_search(&tree->rbroot, offset))
801 zswap_entry_put(tree, entry);
Seth Jennings2b281112013-07-10 16:05:03 -0700802 spin_unlock(&tree->lock);
Seth Jennings2b281112013-07-10 16:05:03 -0700803
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800804 goto end;
805
806 /*
807 * if we get here due to ZSWAP_SWAPCACHE_EXIST
808 * a load may happening concurrently
809 * it is safe and okay to not free the entry
810 * if we free the entry in the following put
811 * it it either okay to return !0
812 */
Seth Jennings2b281112013-07-10 16:05:03 -0700813fail:
814 spin_lock(&tree->lock);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800815 zswap_entry_put(tree, entry);
Seth Jennings2b281112013-07-10 16:05:03 -0700816 spin_unlock(&tree->lock);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800817
818end:
Seth Jennings2b281112013-07-10 16:05:03 -0700819 return ret;
820}
821
Dan Streetmanf1c54842015-09-09 15:35:19 -0700822static int zswap_shrink(void)
823{
824 struct zswap_pool *pool;
825 int ret;
826
827 pool = zswap_pool_last_get();
828 if (!pool)
829 return -ENOENT;
830
831 ret = zpool_shrink(pool->zpool, 1, NULL);
832
833 zswap_pool_put(pool);
834
835 return ret;
836}
837
Seth Jennings2b281112013-07-10 16:05:03 -0700838/*********************************
839* frontswap hooks
840**********************************/
841/* attempts to compress and store an single page */
842static int zswap_frontswap_store(unsigned type, pgoff_t offset,
843 struct page *page)
844{
845 struct zswap_tree *tree = zswap_trees[type];
846 struct zswap_entry *entry, *dupentry;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700847 struct crypto_comp *tfm;
Seth Jennings2b281112013-07-10 16:05:03 -0700848 int ret;
849 unsigned int dlen = PAGE_SIZE, len;
850 unsigned long handle;
851 char *buf;
852 u8 *src, *dst;
853 struct zswap_header *zhdr;
854
Dan Streetmanc00ed162015-06-25 15:00:35 -0700855 if (!zswap_enabled || !tree) {
Seth Jennings2b281112013-07-10 16:05:03 -0700856 ret = -ENODEV;
857 goto reject;
858 }
859
860 /* reclaim space if needed */
861 if (zswap_is_full()) {
862 zswap_pool_limit_hit++;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700863 if (zswap_shrink()) {
Seth Jennings2b281112013-07-10 16:05:03 -0700864 zswap_reject_reclaim_fail++;
865 ret = -ENOMEM;
866 goto reject;
867 }
868 }
869
870 /* allocate entry */
871 entry = zswap_entry_cache_alloc(GFP_KERNEL);
872 if (!entry) {
873 zswap_reject_kmemcache_fail++;
874 ret = -ENOMEM;
875 goto reject;
876 }
877
Dan Streetmanf1c54842015-09-09 15:35:19 -0700878 /* if entry is successfully added, it keeps the reference */
879 entry->pool = zswap_pool_current_get();
880 if (!entry->pool) {
Seth Jennings2b281112013-07-10 16:05:03 -0700881 ret = -EINVAL;
882 goto freepage;
883 }
884
Dan Streetmanf1c54842015-09-09 15:35:19 -0700885 /* compress */
886 dst = get_cpu_var(zswap_dstmem);
887 tfm = *get_cpu_ptr(entry->pool->tfm);
888 src = kmap_atomic(page);
889 ret = crypto_comp_compress(tfm, src, PAGE_SIZE, dst, &dlen);
890 kunmap_atomic(src);
891 put_cpu_ptr(entry->pool->tfm);
892 if (ret) {
893 ret = -EINVAL;
894 goto put_dstmem;
895 }
896
Seth Jennings2b281112013-07-10 16:05:03 -0700897 /* store */
898 len = dlen + sizeof(struct zswap_header);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700899 ret = zpool_malloc(entry->pool->zpool, len,
900 __GFP_NORETRY | __GFP_NOWARN, &handle);
Seth Jennings2b281112013-07-10 16:05:03 -0700901 if (ret == -ENOSPC) {
902 zswap_reject_compress_poor++;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700903 goto put_dstmem;
Seth Jennings2b281112013-07-10 16:05:03 -0700904 }
905 if (ret) {
906 zswap_reject_alloc_fail++;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700907 goto put_dstmem;
Seth Jennings2b281112013-07-10 16:05:03 -0700908 }
Dan Streetmanf1c54842015-09-09 15:35:19 -0700909 zhdr = zpool_map_handle(entry->pool->zpool, handle, ZPOOL_MM_RW);
Seth Jennings2b281112013-07-10 16:05:03 -0700910 zhdr->swpentry = swp_entry(type, offset);
911 buf = (u8 *)(zhdr + 1);
912 memcpy(buf, dst, dlen);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700913 zpool_unmap_handle(entry->pool->zpool, handle);
Seth Jennings2b281112013-07-10 16:05:03 -0700914 put_cpu_var(zswap_dstmem);
915
916 /* populate entry */
917 entry->offset = offset;
918 entry->handle = handle;
919 entry->length = dlen;
920
921 /* map */
922 spin_lock(&tree->lock);
923 do {
924 ret = zswap_rb_insert(&tree->rbroot, entry, &dupentry);
925 if (ret == -EEXIST) {
926 zswap_duplicate_entry++;
927 /* remove from rbtree */
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800928 zswap_rb_erase(&tree->rbroot, dupentry);
929 zswap_entry_put(tree, dupentry);
Seth Jennings2b281112013-07-10 16:05:03 -0700930 }
931 } while (ret == -EEXIST);
932 spin_unlock(&tree->lock);
933
934 /* update stats */
935 atomic_inc(&zswap_stored_pages);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700936 zswap_update_total_size();
Seth Jennings2b281112013-07-10 16:05:03 -0700937
938 return 0;
939
Dan Streetmanf1c54842015-09-09 15:35:19 -0700940put_dstmem:
Seth Jennings2b281112013-07-10 16:05:03 -0700941 put_cpu_var(zswap_dstmem);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700942 zswap_pool_put(entry->pool);
943freepage:
Seth Jennings2b281112013-07-10 16:05:03 -0700944 zswap_entry_cache_free(entry);
945reject:
946 return ret;
947}
948
949/*
950 * returns 0 if the page was successfully decompressed
951 * return -1 on entry not found or error
952*/
953static int zswap_frontswap_load(unsigned type, pgoff_t offset,
954 struct page *page)
955{
956 struct zswap_tree *tree = zswap_trees[type];
957 struct zswap_entry *entry;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700958 struct crypto_comp *tfm;
Seth Jennings2b281112013-07-10 16:05:03 -0700959 u8 *src, *dst;
960 unsigned int dlen;
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800961 int ret;
Seth Jennings2b281112013-07-10 16:05:03 -0700962
963 /* find */
964 spin_lock(&tree->lock);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800965 entry = zswap_entry_find_get(&tree->rbroot, offset);
Seth Jennings2b281112013-07-10 16:05:03 -0700966 if (!entry) {
967 /* entry was written back */
968 spin_unlock(&tree->lock);
969 return -1;
970 }
Seth Jennings2b281112013-07-10 16:05:03 -0700971 spin_unlock(&tree->lock);
972
973 /* decompress */
974 dlen = PAGE_SIZE;
Dan Streetmanf1c54842015-09-09 15:35:19 -0700975 src = (u8 *)zpool_map_handle(entry->pool->zpool, entry->handle,
Dan Streetman12d79d62014-08-06 16:08:40 -0700976 ZPOOL_MM_RO) + sizeof(struct zswap_header);
Seth Jennings2b281112013-07-10 16:05:03 -0700977 dst = kmap_atomic(page);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700978 tfm = *get_cpu_ptr(entry->pool->tfm);
979 ret = crypto_comp_decompress(tfm, src, entry->length, dst, &dlen);
980 put_cpu_ptr(entry->pool->tfm);
Seth Jennings2b281112013-07-10 16:05:03 -0700981 kunmap_atomic(dst);
Dan Streetmanf1c54842015-09-09 15:35:19 -0700982 zpool_unmap_handle(entry->pool->zpool, entry->handle);
Seth Jennings2b281112013-07-10 16:05:03 -0700983 BUG_ON(ret);
984
985 spin_lock(&tree->lock);
Weijie Yang0ab0abc2013-11-12 15:08:27 -0800986 zswap_entry_put(tree, entry);
Seth Jennings2b281112013-07-10 16:05:03 -0700987 spin_unlock(&tree->lock);
988
Seth Jennings2b281112013-07-10 16:05:03 -0700989 return 0;
990}
991
992/* frees an entry in zswap */
993static void zswap_frontswap_invalidate_page(unsigned type, pgoff_t offset)
994{
995 struct zswap_tree *tree = zswap_trees[type];
996 struct zswap_entry *entry;
Seth Jennings2b281112013-07-10 16:05:03 -0700997
998 /* find */
999 spin_lock(&tree->lock);
1000 entry = zswap_rb_search(&tree->rbroot, offset);
1001 if (!entry) {
1002 /* entry was written back */
1003 spin_unlock(&tree->lock);
1004 return;
1005 }
1006
1007 /* remove from rbtree */
Weijie Yang0ab0abc2013-11-12 15:08:27 -08001008 zswap_rb_erase(&tree->rbroot, entry);
Seth Jennings2b281112013-07-10 16:05:03 -07001009
1010 /* drop the initial reference from entry creation */
Weijie Yang0ab0abc2013-11-12 15:08:27 -08001011 zswap_entry_put(tree, entry);
Seth Jennings2b281112013-07-10 16:05:03 -07001012
1013 spin_unlock(&tree->lock);
Seth Jennings2b281112013-07-10 16:05:03 -07001014}
1015
1016/* frees all zswap entries for the given swap type */
1017static void zswap_frontswap_invalidate_area(unsigned type)
1018{
1019 struct zswap_tree *tree = zswap_trees[type];
Cody P Schafer0bd42132013-09-11 14:25:33 -07001020 struct zswap_entry *entry, *n;
Seth Jennings2b281112013-07-10 16:05:03 -07001021
1022 if (!tree)
1023 return;
1024
1025 /* walk the tree and free everything */
1026 spin_lock(&tree->lock);
Weijie Yang0ab0abc2013-11-12 15:08:27 -08001027 rbtree_postorder_for_each_entry_safe(entry, n, &tree->rbroot, rbnode)
Minchan Kim60105e12014-04-07 15:38:27 -07001028 zswap_free_entry(entry);
Seth Jennings2b281112013-07-10 16:05:03 -07001029 tree->rbroot = RB_ROOT;
1030 spin_unlock(&tree->lock);
Weijie Yangaa9bca02013-10-16 13:46:54 -07001031 kfree(tree);
1032 zswap_trees[type] = NULL;
Seth Jennings2b281112013-07-10 16:05:03 -07001033}
1034
Seth Jennings2b281112013-07-10 16:05:03 -07001035static void zswap_frontswap_init(unsigned type)
1036{
1037 struct zswap_tree *tree;
1038
1039 tree = kzalloc(sizeof(struct zswap_tree), GFP_KERNEL);
Minchan Kim60105e12014-04-07 15:38:27 -07001040 if (!tree) {
1041 pr_err("alloc failed, zswap disabled for swap type %d\n", type);
1042 return;
1043 }
1044
Seth Jennings2b281112013-07-10 16:05:03 -07001045 tree->rbroot = RB_ROOT;
1046 spin_lock_init(&tree->lock);
1047 zswap_trees[type] = tree;
Seth Jennings2b281112013-07-10 16:05:03 -07001048}
1049
1050static struct frontswap_ops zswap_frontswap_ops = {
1051 .store = zswap_frontswap_store,
1052 .load = zswap_frontswap_load,
1053 .invalidate_page = zswap_frontswap_invalidate_page,
1054 .invalidate_area = zswap_frontswap_invalidate_area,
1055 .init = zswap_frontswap_init
1056};
1057
1058/*********************************
1059* debugfs functions
1060**********************************/
1061#ifdef CONFIG_DEBUG_FS
1062#include <linux/debugfs.h>
1063
1064static struct dentry *zswap_debugfs_root;
1065
1066static int __init zswap_debugfs_init(void)
1067{
1068 if (!debugfs_initialized())
1069 return -ENODEV;
1070
1071 zswap_debugfs_root = debugfs_create_dir("zswap", NULL);
1072 if (!zswap_debugfs_root)
1073 return -ENOMEM;
1074
1075 debugfs_create_u64("pool_limit_hit", S_IRUGO,
1076 zswap_debugfs_root, &zswap_pool_limit_hit);
1077 debugfs_create_u64("reject_reclaim_fail", S_IRUGO,
1078 zswap_debugfs_root, &zswap_reject_reclaim_fail);
1079 debugfs_create_u64("reject_alloc_fail", S_IRUGO,
1080 zswap_debugfs_root, &zswap_reject_alloc_fail);
1081 debugfs_create_u64("reject_kmemcache_fail", S_IRUGO,
1082 zswap_debugfs_root, &zswap_reject_kmemcache_fail);
1083 debugfs_create_u64("reject_compress_poor", S_IRUGO,
1084 zswap_debugfs_root, &zswap_reject_compress_poor);
1085 debugfs_create_u64("written_back_pages", S_IRUGO,
1086 zswap_debugfs_root, &zswap_written_back_pages);
1087 debugfs_create_u64("duplicate_entry", S_IRUGO,
1088 zswap_debugfs_root, &zswap_duplicate_entry);
Dan Streetman12d79d62014-08-06 16:08:40 -07001089 debugfs_create_u64("pool_total_size", S_IRUGO,
1090 zswap_debugfs_root, &zswap_pool_total_size);
Seth Jennings2b281112013-07-10 16:05:03 -07001091 debugfs_create_atomic_t("stored_pages", S_IRUGO,
1092 zswap_debugfs_root, &zswap_stored_pages);
1093
1094 return 0;
1095}
1096
1097static void __exit zswap_debugfs_exit(void)
1098{
1099 debugfs_remove_recursive(zswap_debugfs_root);
1100}
1101#else
1102static int __init zswap_debugfs_init(void)
1103{
1104 return 0;
1105}
1106
1107static void __exit zswap_debugfs_exit(void) { }
1108#endif
1109
1110/*********************************
1111* module init and exit
1112**********************************/
1113static int __init init_zswap(void)
1114{
Dan Streetmanf1c54842015-09-09 15:35:19 -07001115 struct zswap_pool *pool;
Minchan Kim60105e12014-04-07 15:38:27 -07001116
Seth Jennings2b281112013-07-10 16:05:03 -07001117 if (zswap_entry_cache_create()) {
1118 pr_err("entry cache creation failed\n");
Dan Streetmanf1c54842015-09-09 15:35:19 -07001119 goto cache_fail;
Seth Jennings2b281112013-07-10 16:05:03 -07001120 }
Dan Streetmanf1c54842015-09-09 15:35:19 -07001121
1122 if (zswap_cpu_dstmem_init()) {
1123 pr_err("dstmem alloc failed\n");
1124 goto dstmem_fail;
Seth Jennings2b281112013-07-10 16:05:03 -07001125 }
Dan Streetmanf1c54842015-09-09 15:35:19 -07001126
1127 pool = __zswap_pool_create_fallback();
1128 if (!pool) {
1129 pr_err("pool creation failed\n");
1130 goto pool_fail;
Seth Jennings2b281112013-07-10 16:05:03 -07001131 }
Dan Streetmanf1c54842015-09-09 15:35:19 -07001132 pr_info("loaded using pool %s/%s\n", pool->tfm_name,
1133 zpool_get_type(pool->zpool));
1134
1135 list_add(&pool->list, &zswap_pools);
Minchan Kim60105e12014-04-07 15:38:27 -07001136
Seth Jennings2b281112013-07-10 16:05:03 -07001137 frontswap_register_ops(&zswap_frontswap_ops);
1138 if (zswap_debugfs_init())
1139 pr_warn("debugfs initialization failed\n");
1140 return 0;
Dan Streetmanf1c54842015-09-09 15:35:19 -07001141
1142pool_fail:
1143 zswap_cpu_dstmem_destroy();
1144dstmem_fail:
Fabian Frederickc1192392014-08-08 14:19:35 -07001145 zswap_entry_cache_destroy();
Dan Streetmanf1c54842015-09-09 15:35:19 -07001146cache_fail:
Seth Jennings2b281112013-07-10 16:05:03 -07001147 return -ENOMEM;
1148}
1149/* must be late so crypto has time to come up */
1150late_initcall(init_zswap);
1151
1152MODULE_LICENSE("GPL");
Seth Jennings68386da2014-11-12 21:08:46 -06001153MODULE_AUTHOR("Seth Jennings <sjennings@variantweb.net>");
Seth Jennings2b281112013-07-10 16:05:03 -07001154MODULE_DESCRIPTION("Compressed cache for swap pages");