2 * zswap.c - zswap driver file
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.
10 * Copyright (C) 2012 Seth Jennings <sjenning@linux.vnet.ibm.com>
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.
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.
23 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
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>
37 #include <linux/zpool.h>
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>
45 /*********************************
47 **********************************/
48 /* Total bytes used by the compressed storage */
49 static u64 zswap_pool_total_size
;
50 /* The number of compressed pages currently stored in zswap */
51 static atomic_t zswap_stored_pages
= ATOMIC_INIT(0);
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.
60 /* Pool limit was hit (see zswap_max_pool_percent) */
61 static u64 zswap_pool_limit_hit
;
62 /* Pages written back when pool limit was reached */
63 static u64 zswap_written_back_pages
;
64 /* Store failed due to a reclaim failure after pool limit was reached */
65 static u64 zswap_reject_reclaim_fail
;
66 /* Compressed page was too big for the allocator to (optimally) store */
67 static u64 zswap_reject_compress_poor
;
68 /* Store failed because underlying allocator could not get memory */
69 static u64 zswap_reject_alloc_fail
;
70 /* Store failed because the entry metadata could not be allocated (rare) */
71 static u64 zswap_reject_kmemcache_fail
;
72 /* Duplicate store was encountered (rare) */
73 static u64 zswap_duplicate_entry
;
75 /*********************************
77 **********************************/
79 /* Enable/disable zswap (disabled by default) */
80 static bool zswap_enabled
;
81 module_param_named(enabled
, zswap_enabled
, bool, 0644);
83 /* Crypto compressor to use */
84 #define ZSWAP_COMPRESSOR_DEFAULT "lzo"
85 static char *zswap_compressor
= ZSWAP_COMPRESSOR_DEFAULT
;
86 static int zswap_compressor_param_set(const char *,
87 const struct kernel_param
*);
88 static struct kernel_param_ops zswap_compressor_param_ops
= {
89 .set
= zswap_compressor_param_set
,
90 .get
= param_get_charp
,
91 .free
= param_free_charp
,
93 module_param_cb(compressor
, &zswap_compressor_param_ops
,
94 &zswap_compressor
, 0644);
96 /* Compressed storage zpool to use */
97 #define ZSWAP_ZPOOL_DEFAULT "zbud"
98 static char *zswap_zpool_type
= ZSWAP_ZPOOL_DEFAULT
;
99 static int zswap_zpool_param_set(const char *, const struct kernel_param
*);
100 static struct kernel_param_ops zswap_zpool_param_ops
= {
101 .set
= zswap_zpool_param_set
,
102 .get
= param_get_charp
,
103 .free
= param_free_charp
,
105 module_param_cb(zpool
, &zswap_zpool_param_ops
, &zswap_zpool_type
, 0644);
107 /* The maximum percentage of memory that the compressed pool can occupy */
108 static unsigned int zswap_max_pool_percent
= 20;
109 module_param_named(max_pool_percent
, zswap_max_pool_percent
, uint
, 0644);
111 /*********************************
113 **********************************/
117 struct crypto_comp
* __percpu
*tfm
;
119 struct list_head list
;
120 struct rcu_head rcu_head
;
121 struct notifier_block notifier
;
122 char tfm_name
[CRYPTO_MAX_ALG_NAME
];
128 * This structure contains the metadata for tracking a single compressed
131 * rbnode - links the entry into red-black tree for the appropriate swap type
132 * offset - the swap offset for the entry. Index into the red-black tree.
133 * refcount - the number of outstanding reference to the entry. This is needed
134 * to protect against premature freeing of the entry by code
135 * concurrent calls to load, invalidate, and writeback. The lock
136 * for the zswap_tree structure that contains the entry must
137 * be held while changing the refcount. Since the lock must
138 * be held, there is no reason to also make refcount atomic.
139 * length - the length in bytes of the compressed page data. Needed during
141 * pool - the zswap_pool the entry's data is in
142 * handle - zpool allocation handle that stores the compressed page data
145 struct rb_node rbnode
;
149 struct zswap_pool
*pool
;
150 unsigned long handle
;
153 struct zswap_header
{
154 swp_entry_t swpentry
;
158 * The tree lock in the zswap_tree struct protects a few things:
160 * - the refcount field of each entry in the tree
163 struct rb_root rbroot
;
167 static struct zswap_tree
*zswap_trees
[MAX_SWAPFILES
];
169 /* RCU-protected iteration */
170 static LIST_HEAD(zswap_pools
);
171 /* protects zswap_pools list modification */
172 static DEFINE_SPINLOCK(zswap_pools_lock
);
174 /* used by param callback function */
175 static bool zswap_init_started
;
177 /*********************************
178 * helpers and fwd declarations
179 **********************************/
181 #define zswap_pool_debug(msg, p) \
182 pr_debug("%s pool %s/%s\n", msg, (p)->tfm_name, \
183 zpool_get_type((p)->zpool))
185 static int zswap_writeback_entry(struct zpool
*pool
, unsigned long handle
);
186 static int zswap_pool_get(struct zswap_pool
*pool
);
187 static void zswap_pool_put(struct zswap_pool
*pool
);
189 static const struct zpool_ops zswap_zpool_ops
= {
190 .evict
= zswap_writeback_entry
193 static bool zswap_is_full(void)
195 return totalram_pages
* zswap_max_pool_percent
/ 100 <
196 DIV_ROUND_UP(zswap_pool_total_size
, PAGE_SIZE
);
199 static void zswap_update_total_size(void)
201 struct zswap_pool
*pool
;
206 list_for_each_entry_rcu(pool
, &zswap_pools
, list
)
207 total
+= zpool_get_total_size(pool
->zpool
);
211 zswap_pool_total_size
= total
;
214 /*********************************
215 * zswap entry functions
216 **********************************/
217 static struct kmem_cache
*zswap_entry_cache
;
219 static int __init
zswap_entry_cache_create(void)
221 zswap_entry_cache
= KMEM_CACHE(zswap_entry
, 0);
222 return zswap_entry_cache
== NULL
;
225 static void __init
zswap_entry_cache_destroy(void)
227 kmem_cache_destroy(zswap_entry_cache
);
230 static struct zswap_entry
*zswap_entry_cache_alloc(gfp_t gfp
)
232 struct zswap_entry
*entry
;
233 entry
= kmem_cache_alloc(zswap_entry_cache
, gfp
);
237 RB_CLEAR_NODE(&entry
->rbnode
);
241 static void zswap_entry_cache_free(struct zswap_entry
*entry
)
243 kmem_cache_free(zswap_entry_cache
, entry
);
246 /*********************************
248 **********************************/
249 static struct zswap_entry
*zswap_rb_search(struct rb_root
*root
, pgoff_t offset
)
251 struct rb_node
*node
= root
->rb_node
;
252 struct zswap_entry
*entry
;
255 entry
= rb_entry(node
, struct zswap_entry
, rbnode
);
256 if (entry
->offset
> offset
)
257 node
= node
->rb_left
;
258 else if (entry
->offset
< offset
)
259 node
= node
->rb_right
;
267 * In the case that a entry with the same offset is found, a pointer to
268 * the existing entry is stored in dupentry and the function returns -EEXIST
270 static int zswap_rb_insert(struct rb_root
*root
, struct zswap_entry
*entry
,
271 struct zswap_entry
**dupentry
)
273 struct rb_node
**link
= &root
->rb_node
, *parent
= NULL
;
274 struct zswap_entry
*myentry
;
278 myentry
= rb_entry(parent
, struct zswap_entry
, rbnode
);
279 if (myentry
->offset
> entry
->offset
)
280 link
= &(*link
)->rb_left
;
281 else if (myentry
->offset
< entry
->offset
)
282 link
= &(*link
)->rb_right
;
288 rb_link_node(&entry
->rbnode
, parent
, link
);
289 rb_insert_color(&entry
->rbnode
, root
);
293 static void zswap_rb_erase(struct rb_root
*root
, struct zswap_entry
*entry
)
295 if (!RB_EMPTY_NODE(&entry
->rbnode
)) {
296 rb_erase(&entry
->rbnode
, root
);
297 RB_CLEAR_NODE(&entry
->rbnode
);
302 * Carries out the common pattern of freeing and entry's zpool allocation,
303 * freeing the entry itself, and decrementing the number of stored pages.
305 static void zswap_free_entry(struct zswap_entry
*entry
)
307 zpool_free(entry
->pool
->zpool
, entry
->handle
);
308 zswap_pool_put(entry
->pool
);
309 zswap_entry_cache_free(entry
);
310 atomic_dec(&zswap_stored_pages
);
311 zswap_update_total_size();
314 /* caller must hold the tree lock */
315 static void zswap_entry_get(struct zswap_entry
*entry
)
320 /* caller must hold the tree lock
321 * remove from the tree and free it, if nobody reference the entry
323 static void zswap_entry_put(struct zswap_tree
*tree
,
324 struct zswap_entry
*entry
)
326 int refcount
= --entry
->refcount
;
328 BUG_ON(refcount
< 0);
330 zswap_rb_erase(&tree
->rbroot
, entry
);
331 zswap_free_entry(entry
);
335 /* caller must hold the tree lock */
336 static struct zswap_entry
*zswap_entry_find_get(struct rb_root
*root
,
339 struct zswap_entry
*entry
;
341 entry
= zswap_rb_search(root
, offset
);
343 zswap_entry_get(entry
);
348 /*********************************
350 **********************************/
351 static DEFINE_PER_CPU(u8
*, zswap_dstmem
);
353 static int __zswap_cpu_dstmem_notifier(unsigned long action
, unsigned long cpu
)
359 dst
= kmalloc_node(PAGE_SIZE
* 2, GFP_KERNEL
, cpu_to_node(cpu
));
361 pr_err("can't allocate compressor buffer\n");
364 per_cpu(zswap_dstmem
, cpu
) = dst
;
367 case CPU_UP_CANCELED
:
368 dst
= per_cpu(zswap_dstmem
, cpu
);
370 per_cpu(zswap_dstmem
, cpu
) = NULL
;
378 static int zswap_cpu_dstmem_notifier(struct notifier_block
*nb
,
379 unsigned long action
, void *pcpu
)
381 return __zswap_cpu_dstmem_notifier(action
, (unsigned long)pcpu
);
384 static struct notifier_block zswap_dstmem_notifier
= {
385 .notifier_call
= zswap_cpu_dstmem_notifier
,
388 static int __init
zswap_cpu_dstmem_init(void)
392 cpu_notifier_register_begin();
393 for_each_online_cpu(cpu
)
394 if (__zswap_cpu_dstmem_notifier(CPU_UP_PREPARE
, cpu
) ==
397 __register_cpu_notifier(&zswap_dstmem_notifier
);
398 cpu_notifier_register_done();
402 for_each_online_cpu(cpu
)
403 __zswap_cpu_dstmem_notifier(CPU_UP_CANCELED
, cpu
);
404 cpu_notifier_register_done();
408 static void zswap_cpu_dstmem_destroy(void)
412 cpu_notifier_register_begin();
413 for_each_online_cpu(cpu
)
414 __zswap_cpu_dstmem_notifier(CPU_UP_CANCELED
, cpu
);
415 __unregister_cpu_notifier(&zswap_dstmem_notifier
);
416 cpu_notifier_register_done();
419 static int __zswap_cpu_comp_notifier(struct zswap_pool
*pool
,
420 unsigned long action
, unsigned long cpu
)
422 struct crypto_comp
*tfm
;
426 if (WARN_ON(*per_cpu_ptr(pool
->tfm
, cpu
)))
428 tfm
= crypto_alloc_comp(pool
->tfm_name
, 0, 0);
429 if (IS_ERR_OR_NULL(tfm
)) {
430 pr_err("could not alloc crypto comp %s : %ld\n",
431 pool
->tfm_name
, PTR_ERR(tfm
));
434 *per_cpu_ptr(pool
->tfm
, cpu
) = tfm
;
437 case CPU_UP_CANCELED
:
438 tfm
= *per_cpu_ptr(pool
->tfm
, cpu
);
439 if (!IS_ERR_OR_NULL(tfm
))
440 crypto_free_comp(tfm
);
441 *per_cpu_ptr(pool
->tfm
, cpu
) = NULL
;
449 static int zswap_cpu_comp_notifier(struct notifier_block
*nb
,
450 unsigned long action
, void *pcpu
)
452 unsigned long cpu
= (unsigned long)pcpu
;
453 struct zswap_pool
*pool
= container_of(nb
, typeof(*pool
), notifier
);
455 return __zswap_cpu_comp_notifier(pool
, action
, cpu
);
458 static int zswap_cpu_comp_init(struct zswap_pool
*pool
)
462 memset(&pool
->notifier
, 0, sizeof(pool
->notifier
));
463 pool
->notifier
.notifier_call
= zswap_cpu_comp_notifier
;
465 cpu_notifier_register_begin();
466 for_each_online_cpu(cpu
)
467 if (__zswap_cpu_comp_notifier(pool
, CPU_UP_PREPARE
, cpu
) ==
470 __register_cpu_notifier(&pool
->notifier
);
471 cpu_notifier_register_done();
475 for_each_online_cpu(cpu
)
476 __zswap_cpu_comp_notifier(pool
, CPU_UP_CANCELED
, cpu
);
477 cpu_notifier_register_done();
481 static void zswap_cpu_comp_destroy(struct zswap_pool
*pool
)
485 cpu_notifier_register_begin();
486 for_each_online_cpu(cpu
)
487 __zswap_cpu_comp_notifier(pool
, CPU_UP_CANCELED
, cpu
);
488 __unregister_cpu_notifier(&pool
->notifier
);
489 cpu_notifier_register_done();
492 /*********************************
494 **********************************/
496 static struct zswap_pool
*__zswap_pool_current(void)
498 struct zswap_pool
*pool
;
500 pool
= list_first_or_null_rcu(&zswap_pools
, typeof(*pool
), list
);
506 static struct zswap_pool
*zswap_pool_current(void)
508 assert_spin_locked(&zswap_pools_lock
);
510 return __zswap_pool_current();
513 static struct zswap_pool
*zswap_pool_current_get(void)
515 struct zswap_pool
*pool
;
519 pool
= __zswap_pool_current();
520 if (!pool
|| !zswap_pool_get(pool
))
528 static struct zswap_pool
*zswap_pool_last_get(void)
530 struct zswap_pool
*pool
, *last
= NULL
;
534 list_for_each_entry_rcu(pool
, &zswap_pools
, list
)
536 if (!WARN_ON(!last
) && !zswap_pool_get(last
))
544 /* type and compressor must be null-terminated */
545 static struct zswap_pool
*zswap_pool_find_get(char *type
, char *compressor
)
547 struct zswap_pool
*pool
;
549 assert_spin_locked(&zswap_pools_lock
);
551 list_for_each_entry_rcu(pool
, &zswap_pools
, list
) {
552 if (strcmp(pool
->tfm_name
, compressor
))
554 if (strcmp(zpool_get_type(pool
->zpool
), type
))
556 /* if we can't get it, it's about to be destroyed */
557 if (!zswap_pool_get(pool
))
565 static struct zswap_pool
*zswap_pool_create(char *type
, char *compressor
)
567 struct zswap_pool
*pool
;
568 gfp_t gfp
= __GFP_NORETRY
| __GFP_NOWARN
| __GFP_KSWAPD_RECLAIM
;
570 pool
= kzalloc(sizeof(*pool
), GFP_KERNEL
);
572 pr_err("pool alloc failed\n");
576 pool
->zpool
= zpool_create_pool(type
, "zswap", gfp
, &zswap_zpool_ops
);
578 pr_err("%s zpool not available\n", type
);
581 pr_debug("using %s zpool\n", zpool_get_type(pool
->zpool
));
583 strlcpy(pool
->tfm_name
, compressor
, sizeof(pool
->tfm_name
));
584 pool
->tfm
= alloc_percpu(struct crypto_comp
*);
586 pr_err("percpu alloc failed\n");
590 if (zswap_cpu_comp_init(pool
))
592 pr_debug("using %s compressor\n", pool
->tfm_name
);
594 /* being the current pool takes 1 ref; this func expects the
595 * caller to always add the new pool as the current pool
597 kref_init(&pool
->kref
);
598 INIT_LIST_HEAD(&pool
->list
);
600 zswap_pool_debug("created", pool
);
605 free_percpu(pool
->tfm
);
607 zpool_destroy_pool(pool
->zpool
);
612 static __init
struct zswap_pool
*__zswap_pool_create_fallback(void)
614 if (!crypto_has_comp(zswap_compressor
, 0, 0)) {
615 if (!strcmp(zswap_compressor
, ZSWAP_COMPRESSOR_DEFAULT
)) {
616 pr_err("default compressor %s not available\n",
620 pr_err("compressor %s not available, using default %s\n",
621 zswap_compressor
, ZSWAP_COMPRESSOR_DEFAULT
);
622 param_free_charp(&zswap_compressor
);
623 zswap_compressor
= ZSWAP_COMPRESSOR_DEFAULT
;
625 if (!zpool_has_pool(zswap_zpool_type
)) {
626 if (!strcmp(zswap_zpool_type
, ZSWAP_ZPOOL_DEFAULT
)) {
627 pr_err("default zpool %s not available\n",
631 pr_err("zpool %s not available, using default %s\n",
632 zswap_zpool_type
, ZSWAP_ZPOOL_DEFAULT
);
633 param_free_charp(&zswap_zpool_type
);
634 zswap_zpool_type
= ZSWAP_ZPOOL_DEFAULT
;
637 return zswap_pool_create(zswap_zpool_type
, zswap_compressor
);
640 static void zswap_pool_destroy(struct zswap_pool
*pool
)
642 zswap_pool_debug("destroying", pool
);
644 zswap_cpu_comp_destroy(pool
);
645 free_percpu(pool
->tfm
);
646 zpool_destroy_pool(pool
->zpool
);
650 static int __must_check
zswap_pool_get(struct zswap_pool
*pool
)
652 return kref_get_unless_zero(&pool
->kref
);
655 static void __zswap_pool_release(struct rcu_head
*head
)
657 struct zswap_pool
*pool
= container_of(head
, typeof(*pool
), rcu_head
);
659 /* nobody should have been able to get a kref... */
660 WARN_ON(kref_get_unless_zero(&pool
->kref
));
662 /* pool is now off zswap_pools list and has no references. */
663 zswap_pool_destroy(pool
);
666 static void __zswap_pool_empty(struct kref
*kref
)
668 struct zswap_pool
*pool
;
670 pool
= container_of(kref
, typeof(*pool
), kref
);
672 spin_lock(&zswap_pools_lock
);
674 WARN_ON(pool
== zswap_pool_current());
676 list_del_rcu(&pool
->list
);
677 call_rcu(&pool
->rcu_head
, __zswap_pool_release
);
679 spin_unlock(&zswap_pools_lock
);
682 static void zswap_pool_put(struct zswap_pool
*pool
)
684 kref_put(&pool
->kref
, __zswap_pool_empty
);
687 /*********************************
689 **********************************/
691 /* val must be a null-terminated string */
692 static int __zswap_param_set(const char *val
, const struct kernel_param
*kp
,
693 char *type
, char *compressor
)
695 struct zswap_pool
*pool
, *put_pool
= NULL
;
696 char *s
= strstrip((char *)val
);
699 /* no change required */
700 if (!strcmp(s
, *(char **)kp
->arg
))
703 /* if this is load-time (pre-init) param setting,
704 * don't create a pool; that's done during init.
706 if (!zswap_init_started
)
707 return param_set_charp(s
, kp
);
710 if (!zpool_has_pool(s
)) {
711 pr_err("zpool %s not available\n", s
);
715 } else if (!compressor
) {
716 if (!crypto_has_comp(s
, 0, 0)) {
717 pr_err("compressor %s not available\n", s
);
726 spin_lock(&zswap_pools_lock
);
728 pool
= zswap_pool_find_get(type
, compressor
);
730 zswap_pool_debug("using existing", pool
);
731 list_del_rcu(&pool
->list
);
733 spin_unlock(&zswap_pools_lock
);
734 pool
= zswap_pool_create(type
, compressor
);
735 spin_lock(&zswap_pools_lock
);
739 ret
= param_set_charp(s
, kp
);
744 put_pool
= zswap_pool_current();
745 list_add_rcu(&pool
->list
, &zswap_pools
);
747 /* add the possibly pre-existing pool to the end of the pools
748 * list; if it's new (and empty) then it'll be removed and
749 * destroyed by the put after we drop the lock
751 list_add_tail_rcu(&pool
->list
, &zswap_pools
);
755 spin_unlock(&zswap_pools_lock
);
757 /* drop the ref from either the old current pool,
758 * or the new pool we failed to add
761 zswap_pool_put(put_pool
);
766 static int zswap_compressor_param_set(const char *val
,
767 const struct kernel_param
*kp
)
769 return __zswap_param_set(val
, kp
, zswap_zpool_type
, NULL
);
772 static int zswap_zpool_param_set(const char *val
,
773 const struct kernel_param
*kp
)
775 return __zswap_param_set(val
, kp
, NULL
, zswap_compressor
);
778 /*********************************
780 **********************************/
781 /* return enum for zswap_get_swap_cache_page */
782 enum zswap_get_swap_ret
{
784 ZSWAP_SWAPCACHE_EXIST
,
785 ZSWAP_SWAPCACHE_FAIL
,
789 * zswap_get_swap_cache_page
791 * This is an adaption of read_swap_cache_async()
793 * This function tries to find a page with the given swap entry
794 * in the swapper_space address space (the swap cache). If the page
795 * is found, it is returned in retpage. Otherwise, a page is allocated,
796 * added to the swap cache, and returned in retpage.
798 * If success, the swap cache page is returned in retpage
799 * Returns ZSWAP_SWAPCACHE_EXIST if page was already in the swap cache
800 * Returns ZSWAP_SWAPCACHE_NEW if the new page needs to be populated,
801 * the new page is added to swapcache and locked
802 * Returns ZSWAP_SWAPCACHE_FAIL on error
804 static int zswap_get_swap_cache_page(swp_entry_t entry
,
805 struct page
**retpage
)
807 bool page_was_allocated
;
809 *retpage
= __read_swap_cache_async(entry
, GFP_KERNEL
,
810 NULL
, 0, &page_was_allocated
);
811 if (page_was_allocated
)
812 return ZSWAP_SWAPCACHE_NEW
;
814 return ZSWAP_SWAPCACHE_FAIL
;
815 return ZSWAP_SWAPCACHE_EXIST
;
819 * Attempts to free an entry by adding a page to the swap cache,
820 * decompressing the entry data into the page, and issuing a
821 * bio write to write the page back to the swap device.
823 * This can be thought of as a "resumed writeback" of the page
824 * to the swap device. We are basically resuming the same swap
825 * writeback path that was intercepted with the frontswap_store()
826 * in the first place. After the page has been decompressed into
827 * the swap cache, the compressed version stored by zswap can be
830 static int zswap_writeback_entry(struct zpool
*pool
, unsigned long handle
)
832 struct zswap_header
*zhdr
;
833 swp_entry_t swpentry
;
834 struct zswap_tree
*tree
;
836 struct zswap_entry
*entry
;
838 struct crypto_comp
*tfm
;
842 struct writeback_control wbc
= {
843 .sync_mode
= WB_SYNC_NONE
,
846 /* extract swpentry from data */
847 zhdr
= zpool_map_handle(pool
, handle
, ZPOOL_MM_RO
);
848 swpentry
= zhdr
->swpentry
; /* here */
849 zpool_unmap_handle(pool
, handle
);
850 tree
= zswap_trees
[swp_type(swpentry
)];
851 offset
= swp_offset(swpentry
);
853 /* find and ref zswap entry */
854 spin_lock(&tree
->lock
);
855 entry
= zswap_entry_find_get(&tree
->rbroot
, offset
);
857 /* entry was invalidated */
858 spin_unlock(&tree
->lock
);
861 spin_unlock(&tree
->lock
);
862 BUG_ON(offset
!= entry
->offset
);
864 /* try to allocate swap cache page */
865 switch (zswap_get_swap_cache_page(swpentry
, &page
)) {
866 case ZSWAP_SWAPCACHE_FAIL
: /* no memory or invalidate happened */
870 case ZSWAP_SWAPCACHE_EXIST
:
871 /* page is already in the swap cache, ignore for now */
876 case ZSWAP_SWAPCACHE_NEW
: /* page is locked */
879 src
= (u8
*)zpool_map_handle(entry
->pool
->zpool
, entry
->handle
,
880 ZPOOL_MM_RO
) + sizeof(struct zswap_header
);
881 dst
= kmap_atomic(page
);
882 tfm
= *get_cpu_ptr(entry
->pool
->tfm
);
883 ret
= crypto_comp_decompress(tfm
, src
, entry
->length
,
885 put_cpu_ptr(entry
->pool
->tfm
);
887 zpool_unmap_handle(entry
->pool
->zpool
, entry
->handle
);
889 BUG_ON(dlen
!= PAGE_SIZE
);
891 /* page is up to date */
892 SetPageUptodate(page
);
895 /* move it to the tail of the inactive list after end_writeback */
896 SetPageReclaim(page
);
898 /* start writeback */
899 __swap_writepage(page
, &wbc
, end_swap_bio_write
);
901 zswap_written_back_pages
++;
903 spin_lock(&tree
->lock
);
904 /* drop local reference */
905 zswap_entry_put(tree
, entry
);
908 * There are two possible situations for entry here:
909 * (1) refcount is 1(normal case), entry is valid and on the tree
910 * (2) refcount is 0, entry is freed and not on the tree
911 * because invalidate happened during writeback
912 * search the tree and free the entry if find entry
914 if (entry
== zswap_rb_search(&tree
->rbroot
, offset
))
915 zswap_entry_put(tree
, entry
);
916 spin_unlock(&tree
->lock
);
921 * if we get here due to ZSWAP_SWAPCACHE_EXIST
922 * a load may happening concurrently
923 * it is safe and okay to not free the entry
924 * if we free the entry in the following put
925 * it it either okay to return !0
928 spin_lock(&tree
->lock
);
929 zswap_entry_put(tree
, entry
);
930 spin_unlock(&tree
->lock
);
936 static int zswap_shrink(void)
938 struct zswap_pool
*pool
;
941 pool
= zswap_pool_last_get();
945 ret
= zpool_shrink(pool
->zpool
, 1, NULL
);
947 zswap_pool_put(pool
);
952 /*********************************
954 **********************************/
955 /* attempts to compress and store an single page */
956 static int zswap_frontswap_store(unsigned type
, pgoff_t offset
,
959 struct zswap_tree
*tree
= zswap_trees
[type
];
960 struct zswap_entry
*entry
, *dupentry
;
961 struct crypto_comp
*tfm
;
963 unsigned int dlen
= PAGE_SIZE
, len
;
964 unsigned long handle
;
967 struct zswap_header
*zhdr
;
969 if (!zswap_enabled
|| !tree
) {
974 /* reclaim space if needed */
975 if (zswap_is_full()) {
976 zswap_pool_limit_hit
++;
977 if (zswap_shrink()) {
978 zswap_reject_reclaim_fail
++;
985 entry
= zswap_entry_cache_alloc(GFP_KERNEL
);
987 zswap_reject_kmemcache_fail
++;
992 /* if entry is successfully added, it keeps the reference */
993 entry
->pool
= zswap_pool_current_get();
1000 dst
= get_cpu_var(zswap_dstmem
);
1001 tfm
= *get_cpu_ptr(entry
->pool
->tfm
);
1002 src
= kmap_atomic(page
);
1003 ret
= crypto_comp_compress(tfm
, src
, PAGE_SIZE
, dst
, &dlen
);
1005 put_cpu_ptr(entry
->pool
->tfm
);
1012 len
= dlen
+ sizeof(struct zswap_header
);
1013 ret
= zpool_malloc(entry
->pool
->zpool
, len
,
1014 __GFP_NORETRY
| __GFP_NOWARN
| __GFP_KSWAPD_RECLAIM
,
1016 if (ret
== -ENOSPC
) {
1017 zswap_reject_compress_poor
++;
1021 zswap_reject_alloc_fail
++;
1024 zhdr
= zpool_map_handle(entry
->pool
->zpool
, handle
, ZPOOL_MM_RW
);
1025 zhdr
->swpentry
= swp_entry(type
, offset
);
1026 buf
= (u8
*)(zhdr
+ 1);
1027 memcpy(buf
, dst
, dlen
);
1028 zpool_unmap_handle(entry
->pool
->zpool
, handle
);
1029 put_cpu_var(zswap_dstmem
);
1031 /* populate entry */
1032 entry
->offset
= offset
;
1033 entry
->handle
= handle
;
1034 entry
->length
= dlen
;
1037 spin_lock(&tree
->lock
);
1039 ret
= zswap_rb_insert(&tree
->rbroot
, entry
, &dupentry
);
1040 if (ret
== -EEXIST
) {
1041 zswap_duplicate_entry
++;
1042 /* remove from rbtree */
1043 zswap_rb_erase(&tree
->rbroot
, dupentry
);
1044 zswap_entry_put(tree
, dupentry
);
1046 } while (ret
== -EEXIST
);
1047 spin_unlock(&tree
->lock
);
1050 atomic_inc(&zswap_stored_pages
);
1051 zswap_update_total_size();
1056 put_cpu_var(zswap_dstmem
);
1057 zswap_pool_put(entry
->pool
);
1059 zswap_entry_cache_free(entry
);
1065 * returns 0 if the page was successfully decompressed
1066 * return -1 on entry not found or error
1068 static int zswap_frontswap_load(unsigned type
, pgoff_t offset
,
1071 struct zswap_tree
*tree
= zswap_trees
[type
];
1072 struct zswap_entry
*entry
;
1073 struct crypto_comp
*tfm
;
1079 spin_lock(&tree
->lock
);
1080 entry
= zswap_entry_find_get(&tree
->rbroot
, offset
);
1082 /* entry was written back */
1083 spin_unlock(&tree
->lock
);
1086 spin_unlock(&tree
->lock
);
1090 src
= (u8
*)zpool_map_handle(entry
->pool
->zpool
, entry
->handle
,
1091 ZPOOL_MM_RO
) + sizeof(struct zswap_header
);
1092 dst
= kmap_atomic(page
);
1093 tfm
= *get_cpu_ptr(entry
->pool
->tfm
);
1094 ret
= crypto_comp_decompress(tfm
, src
, entry
->length
, dst
, &dlen
);
1095 put_cpu_ptr(entry
->pool
->tfm
);
1097 zpool_unmap_handle(entry
->pool
->zpool
, entry
->handle
);
1100 spin_lock(&tree
->lock
);
1101 zswap_entry_put(tree
, entry
);
1102 spin_unlock(&tree
->lock
);
1107 /* frees an entry in zswap */
1108 static void zswap_frontswap_invalidate_page(unsigned type
, pgoff_t offset
)
1110 struct zswap_tree
*tree
= zswap_trees
[type
];
1111 struct zswap_entry
*entry
;
1114 spin_lock(&tree
->lock
);
1115 entry
= zswap_rb_search(&tree
->rbroot
, offset
);
1117 /* entry was written back */
1118 spin_unlock(&tree
->lock
);
1122 /* remove from rbtree */
1123 zswap_rb_erase(&tree
->rbroot
, entry
);
1125 /* drop the initial reference from entry creation */
1126 zswap_entry_put(tree
, entry
);
1128 spin_unlock(&tree
->lock
);
1131 /* frees all zswap entries for the given swap type */
1132 static void zswap_frontswap_invalidate_area(unsigned type
)
1134 struct zswap_tree
*tree
= zswap_trees
[type
];
1135 struct zswap_entry
*entry
, *n
;
1140 /* walk the tree and free everything */
1141 spin_lock(&tree
->lock
);
1142 rbtree_postorder_for_each_entry_safe(entry
, n
, &tree
->rbroot
, rbnode
)
1143 zswap_free_entry(entry
);
1144 tree
->rbroot
= RB_ROOT
;
1145 spin_unlock(&tree
->lock
);
1147 zswap_trees
[type
] = NULL
;
1150 static void zswap_frontswap_init(unsigned type
)
1152 struct zswap_tree
*tree
;
1154 tree
= kzalloc(sizeof(struct zswap_tree
), GFP_KERNEL
);
1156 pr_err("alloc failed, zswap disabled for swap type %d\n", type
);
1160 tree
->rbroot
= RB_ROOT
;
1161 spin_lock_init(&tree
->lock
);
1162 zswap_trees
[type
] = tree
;
1165 static struct frontswap_ops zswap_frontswap_ops
= {
1166 .store
= zswap_frontswap_store
,
1167 .load
= zswap_frontswap_load
,
1168 .invalidate_page
= zswap_frontswap_invalidate_page
,
1169 .invalidate_area
= zswap_frontswap_invalidate_area
,
1170 .init
= zswap_frontswap_init
1173 /*********************************
1175 **********************************/
1176 #ifdef CONFIG_DEBUG_FS
1177 #include <linux/debugfs.h>
1179 static struct dentry
*zswap_debugfs_root
;
1181 static int __init
zswap_debugfs_init(void)
1183 if (!debugfs_initialized())
1186 zswap_debugfs_root
= debugfs_create_dir("zswap", NULL
);
1187 if (!zswap_debugfs_root
)
1190 debugfs_create_u64("pool_limit_hit", S_IRUGO
,
1191 zswap_debugfs_root
, &zswap_pool_limit_hit
);
1192 debugfs_create_u64("reject_reclaim_fail", S_IRUGO
,
1193 zswap_debugfs_root
, &zswap_reject_reclaim_fail
);
1194 debugfs_create_u64("reject_alloc_fail", S_IRUGO
,
1195 zswap_debugfs_root
, &zswap_reject_alloc_fail
);
1196 debugfs_create_u64("reject_kmemcache_fail", S_IRUGO
,
1197 zswap_debugfs_root
, &zswap_reject_kmemcache_fail
);
1198 debugfs_create_u64("reject_compress_poor", S_IRUGO
,
1199 zswap_debugfs_root
, &zswap_reject_compress_poor
);
1200 debugfs_create_u64("written_back_pages", S_IRUGO
,
1201 zswap_debugfs_root
, &zswap_written_back_pages
);
1202 debugfs_create_u64("duplicate_entry", S_IRUGO
,
1203 zswap_debugfs_root
, &zswap_duplicate_entry
);
1204 debugfs_create_u64("pool_total_size", S_IRUGO
,
1205 zswap_debugfs_root
, &zswap_pool_total_size
);
1206 debugfs_create_atomic_t("stored_pages", S_IRUGO
,
1207 zswap_debugfs_root
, &zswap_stored_pages
);
1212 static void __exit
zswap_debugfs_exit(void)
1214 debugfs_remove_recursive(zswap_debugfs_root
);
1217 static int __init
zswap_debugfs_init(void)
1222 static void __exit
zswap_debugfs_exit(void) { }
1225 /*********************************
1226 * module init and exit
1227 **********************************/
1228 static int __init
init_zswap(void)
1230 struct zswap_pool
*pool
;
1232 zswap_init_started
= true;
1234 if (zswap_entry_cache_create()) {
1235 pr_err("entry cache creation failed\n");
1239 if (zswap_cpu_dstmem_init()) {
1240 pr_err("dstmem alloc failed\n");
1244 pool
= __zswap_pool_create_fallback();
1246 pr_err("pool creation failed\n");
1249 pr_info("loaded using pool %s/%s\n", pool
->tfm_name
,
1250 zpool_get_type(pool
->zpool
));
1252 list_add(&pool
->list
, &zswap_pools
);
1254 frontswap_register_ops(&zswap_frontswap_ops
);
1255 if (zswap_debugfs_init())
1256 pr_warn("debugfs initialization failed\n");
1260 zswap_cpu_dstmem_destroy();
1262 zswap_entry_cache_destroy();
1266 /* must be late so crypto has time to come up */
1267 late_initcall(init_zswap
);
1269 MODULE_LICENSE("GPL");
1270 MODULE_AUTHOR("Seth Jennings <sjennings@variantweb.net>");
1271 MODULE_DESCRIPTION("Compressed cache for swap pages");