blob: 5c72fd5f8fac97c800613a07eb96fe340e2ec949 [file] [log] [blame]
Nitin Gupta61989a82012-01-09 16:51:56 -06001/*
2 * zsmalloc memory allocator
3 *
4 * Copyright (C) 2011 Nitin Gupta
Minchan Kim31fc00b2014-01-30 15:45:55 -08005 * Copyright (C) 2012, 2013 Minchan Kim
Nitin Gupta61989a82012-01-09 16:51:56 -06006 *
7 * This code is released using a dual license strategy: BSD/GPL
8 * You can choose the license that better fits your requirements.
9 *
10 * Released under the terms of 3-clause BSD License
11 * Released under the terms of GNU General Public License Version 2.0
12 */
13
Nitin Gupta2db51da2012-06-09 17:41:14 -070014/*
Nitin Gupta2db51da2012-06-09 17:41:14 -070015 * Following is how we use various fields and flags of underlying
16 * struct page(s) to form a zspage.
17 *
18 * Usage of struct page fields:
Minchan Kim37836892016-07-26 15:23:23 -070019 * page->private: points to zspage
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +010020 * page->index: links together all component pages of a zspage
Minchan Kim48b48002016-07-26 15:23:31 -070021 * For the huge page, this is always 0, so we use this field
22 * to store handle.
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +010023 * page->page_type: first object offset in a subpage of zspage
Nitin Gupta2db51da2012-06-09 17:41:14 -070024 *
25 * Usage of struct page flags:
26 * PG_private: identifies the first component page
Xishi Qiu399d8ee2017-02-22 15:45:01 -080027 * PG_owner_priv_1: identifies the huge component page
Nitin Gupta2db51da2012-06-09 17:41:14 -070028 *
29 */
30
Dan Streetman4abaac92016-05-26 15:16:27 -070031#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Nitin Gupta61989a82012-01-09 16:51:56 -060033#include <linux/module.h>
34#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070035#include <linux/sched.h>
Ingo Molnar50d34392017-02-05 16:03:58 +010036#include <linux/magic.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060037#include <linux/bitops.h>
38#include <linux/errno.h>
39#include <linux/highmem.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060040#include <linux/string.h>
41#include <linux/slab.h>
Mike Rapoportca5999f2020-06-08 21:32:38 -070042#include <linux/pgtable.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -070043#include <asm/tlbflush.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060044#include <linux/cpumask.h>
45#include <linux/cpu.h>
Seth Jennings0cbb6132012-02-13 08:47:49 -060046#include <linux/vmalloc.h>
Sergey Senozhatsky759b26b2015-11-06 16:29:29 -080047#include <linux/preempt.h>
Seth Jennings0959c632012-08-08 15:12:17 +090048#include <linux/spinlock.h>
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -080049#include <linux/shrinker.h>
Seth Jennings0959c632012-08-08 15:12:17 +090050#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080051#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080052#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070053#include <linux/zpool.h>
Minchan Kim48b48002016-07-26 15:23:31 -070054#include <linux/mount.h>
David Howells8e9231f2019-03-25 16:38:23 +000055#include <linux/pseudo_fs.h>
Minchan Kimdd4123f2016-07-26 15:26:50 -070056#include <linux/migrate.h>
Henry Burns701d6782019-08-24 17:55:06 -070057#include <linux/wait.h>
Minchan Kim48b48002016-07-26 15:23:31 -070058#include <linux/pagemap.h>
Sergey Senozhatskycdc346b2018-01-04 16:18:02 -080059#include <linux/fs.h>
Minchan Kim48b48002016-07-26 15:23:31 -070060
61#define ZSPAGE_MAGIC 0x58
Seth Jennings0959c632012-08-08 15:12:17 +090062
63/*
Shijie Luocb152a12021-05-06 18:05:51 -070064 * This must be power of 2 and greater than or equal to sizeof(link_free).
Seth Jennings0959c632012-08-08 15:12:17 +090065 * These two conditions ensure that any 'struct link_free' itself doesn't
66 * span more than 1 page which avoids complex case of mapping 2 pages simply
67 * to restore link_free pointer values.
68 */
69#define ZS_ALIGN 8
70
71/*
72 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
73 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
74 */
75#define ZS_MAX_ZSPAGE_ORDER 2
76#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
77
Minchan Kim2e40e162015-04-15 16:15:23 -070078#define ZS_HANDLE_SIZE (sizeof(unsigned long))
79
Seth Jennings0959c632012-08-08 15:12:17 +090080/*
81 * Object location (<PFN>, <obj_idx>) is encoded as
Randy Dunlapb956b5a2020-08-11 18:33:31 -070082 * a single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090083 *
Minchan Kimbfd093f2016-07-26 15:23:28 -070084 * Note that object index <obj_idx> starts from 0.
Seth Jennings0959c632012-08-08 15:12:17 +090085 *
86 * This is made more complicated by various memory models and PAE.
87 */
88
Kirill A. Shutemov02390b82018-02-14 14:16:49 +030089#ifndef MAX_POSSIBLE_PHYSMEM_BITS
90#ifdef MAX_PHYSMEM_BITS
91#define MAX_POSSIBLE_PHYSMEM_BITS MAX_PHYSMEM_BITS
92#else
Seth Jennings0959c632012-08-08 15:12:17 +090093/*
94 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
95 * be PAGE_SHIFT
96 */
Kirill A. Shutemov02390b82018-02-14 14:16:49 +030097#define MAX_POSSIBLE_PHYSMEM_BITS BITS_PER_LONG
Seth Jennings0959c632012-08-08 15:12:17 +090098#endif
99#endif
Kirill A. Shutemov02390b82018-02-14 14:16:49 +0300100
101#define _PFN_BITS (MAX_POSSIBLE_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -0700102
103/*
104 * Memory for allocating for handle keeps object position by
105 * encoding <page, obj_idx> and the encoded value has a room
106 * in least bit(ie, look at obj_to_location).
107 * We use the bit to synchronize between object access by
108 * user and migration.
109 */
110#define HANDLE_PIN_BIT 0
111
112/*
113 * Head in allocated object should have OBJ_ALLOCATED_TAG
114 * to identify the object was allocated or not.
115 * It's okay to add the status bit in the least bit because
116 * header keeps handle which is 4byte-aligned address so we
117 * have room for two bit at least.
118 */
119#define OBJ_ALLOCATED_TAG 1
120#define OBJ_TAG_BITS 1
121#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900122#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
123
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700124#define FULLNESS_BITS 2
125#define CLASS_BITS 8
126#define ISOLATED_BITS 3
127#define MAGIC_VAL_BITS 8
128
Seth Jennings0959c632012-08-08 15:12:17 +0900129#define MAX(a, b) ((a) >= (b) ? (a) : (b))
130/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
131#define ZS_MIN_ALLOC_SIZE \
132 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700133/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700134#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900135
136/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700137 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900138 * trader-off here:
139 * - Large number of size classes is potentially wasteful as free page are
140 * spread across these classes
141 * - Small number of size classes causes large internal fragmentation
142 * - Probably its better to use specific size classes (empirically
143 * determined). NOTE: all those class sizes must be set as multiple of
144 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
145 *
146 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
147 * (reason above)
148 */
Minchan Kim37836892016-07-26 15:23:23 -0700149#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> CLASS_BITS)
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700150#define ZS_SIZE_CLASSES (DIV_ROUND_UP(ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE, \
151 ZS_SIZE_CLASS_DELTA) + 1)
Seth Jennings0959c632012-08-08 15:12:17 +0900152
Seth Jennings0959c632012-08-08 15:12:17 +0900153enum fullness_group {
Seth Jennings0959c632012-08-08 15:12:17 +0900154 ZS_EMPTY,
Minchan Kim48b48002016-07-26 15:23:31 -0700155 ZS_ALMOST_EMPTY,
156 ZS_ALMOST_FULL,
157 ZS_FULL,
158 NR_ZS_FULLNESS,
Seth Jennings0959c632012-08-08 15:12:17 +0900159};
160
Minchan Kim3828a762022-01-21 22:13:54 -0800161enum class_stat_type {
Minchan Kim48b48002016-07-26 15:23:31 -0700162 CLASS_EMPTY,
163 CLASS_ALMOST_EMPTY,
164 CLASS_ALMOST_FULL,
165 CLASS_FULL,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800166 OBJ_ALLOCATED,
167 OBJ_USED,
Minchan Kim48b48002016-07-26 15:23:31 -0700168 NR_ZS_STAT_TYPE,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800169};
170
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800171struct zs_size_stat {
172 unsigned long objs[NR_ZS_STAT_TYPE];
173};
174
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700175#ifdef CONFIG_ZSMALLOC_STAT
176static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800177#endif
178
Minchan Kim48b48002016-07-26 15:23:31 -0700179#ifdef CONFIG_COMPACTION
180static struct vfsmount *zsmalloc_mnt;
181#endif
182
Seth Jennings0959c632012-08-08 15:12:17 +0900183/*
184 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
185 * n <= N / f, where
186 * n = number of allocated objects
187 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700188 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900189 *
190 * Similarly, we assign zspage to:
191 * ZS_ALMOST_FULL when n > N / f
192 * ZS_EMPTY when n == 0
193 * ZS_FULL when n == N
194 *
195 * (see: fix_fullness_group())
196 */
197static const int fullness_threshold_frac = 4;
Sergey Senozhatsky010b4952018-04-05 16:24:43 -0700198static size_t huge_class_size;
Seth Jennings0959c632012-08-08 15:12:17 +0900199
200struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700201 spinlock_t lock;
Minchan Kim48b48002016-07-26 15:23:31 -0700202 struct list_head fullness_list[NR_ZS_FULLNESS];
Seth Jennings0959c632012-08-08 15:12:17 +0900203 /*
204 * Size of objects stored in this class. Must be multiple
205 * of ZS_ALIGN.
206 */
207 int size;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700208 int objs_per_zspage;
Weijie Yang7dfa4612016-01-14 15:22:40 -0800209 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
210 int pages_per_zspage;
Minchan Kim48b48002016-07-26 15:23:31 -0700211
212 unsigned int index;
213 struct zs_size_stat stats;
Seth Jennings0959c632012-08-08 15:12:17 +0900214};
215
Minchan Kim48b48002016-07-26 15:23:31 -0700216/* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
217static void SetPageHugeObject(struct page *page)
218{
219 SetPageOwnerPriv1(page);
220}
221
222static void ClearPageHugeObject(struct page *page)
223{
224 ClearPageOwnerPriv1(page);
225}
226
227static int PageHugeObject(struct page *page)
228{
229 return PageOwnerPriv1(page);
230}
231
Seth Jennings0959c632012-08-08 15:12:17 +0900232/*
233 * Placed within free objects to form a singly linked list.
Minchan Kim37836892016-07-26 15:23:23 -0700234 * For every zspage, zspage->freeobj gives head of this list.
Seth Jennings0959c632012-08-08 15:12:17 +0900235 *
236 * This must be power of 2 and less than or equal to ZS_ALIGN
237 */
238struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700239 union {
240 /*
Minchan Kimbfd093f2016-07-26 15:23:28 -0700241 * Free object index;
Minchan Kim2e40e162015-04-15 16:15:23 -0700242 * It's valid for non-allocated object
243 */
Minchan Kimbfd093f2016-07-26 15:23:28 -0700244 unsigned long next;
Minchan Kim2e40e162015-04-15 16:15:23 -0700245 /*
246 * Handle of allocated object.
247 */
248 unsigned long handle;
249 };
Seth Jennings0959c632012-08-08 15:12:17 +0900250};
251
252struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800253 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800254
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700255 struct size_class *size_class[ZS_SIZE_CLASSES];
Minchan Kim2e40e162015-04-15 16:15:23 -0700256 struct kmem_cache *handle_cachep;
Minchan Kim37836892016-07-26 15:23:23 -0700257 struct kmem_cache *zspage_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900258
Minchan Kim13de8932014-10-09 15:29:48 -0700259 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800260
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700261 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700262
263 /* Compact classes */
264 struct shrinker shrinker;
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -0800265
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800266#ifdef CONFIG_ZSMALLOC_STAT
267 struct dentry *stat_dentry;
268#endif
Minchan Kim48b48002016-07-26 15:23:31 -0700269#ifdef CONFIG_COMPACTION
270 struct inode *inode;
271 struct work_struct free_work;
Henry Burns701d6782019-08-24 17:55:06 -0700272 /* A wait queue for when migration races with async_free_zspage() */
273 struct wait_queue_head migration_wait;
274 atomic_long_t isolated_pages;
275 bool destroying;
Minchan Kim48b48002016-07-26 15:23:31 -0700276#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900277};
Nitin Gupta61989a82012-01-09 16:51:56 -0600278
Minchan Kim37836892016-07-26 15:23:23 -0700279struct zspage {
280 struct {
281 unsigned int fullness:FULLNESS_BITS;
Minchan Kim85d492f2017-04-13 14:56:40 -0700282 unsigned int class:CLASS_BITS + 1;
Minchan Kim48b48002016-07-26 15:23:31 -0700283 unsigned int isolated:ISOLATED_BITS;
284 unsigned int magic:MAGIC_VAL_BITS;
Minchan Kim37836892016-07-26 15:23:23 -0700285 };
286 unsigned int inuse;
Minchan Kimbfd093f2016-07-26 15:23:28 -0700287 unsigned int freeobj;
Minchan Kim37836892016-07-26 15:23:23 -0700288 struct page *first_page;
289 struct list_head list; /* fullness list */
Minchan Kim48b48002016-07-26 15:23:31 -0700290#ifdef CONFIG_COMPACTION
291 rwlock_t lock;
292#endif
Minchan Kim37836892016-07-26 15:23:23 -0700293};
Nitin Gupta61989a82012-01-09 16:51:56 -0600294
Seth Jenningsf5536462012-07-18 11:55:56 -0500295struct mapping_area {
Seth Jenningsf5536462012-07-18 11:55:56 -0500296 char *vm_buf; /* copy buffer for objects that span pages */
Seth Jenningsf5536462012-07-18 11:55:56 -0500297 char *vm_addr; /* address of kmap_atomic()'ed pages */
298 enum zs_mapmode vm_mm; /* mapping mode */
299};
300
Minchan Kim48b48002016-07-26 15:23:31 -0700301#ifdef CONFIG_COMPACTION
302static int zs_register_migration(struct zs_pool *pool);
303static void zs_unregister_migration(struct zs_pool *pool);
304static void migrate_lock_init(struct zspage *zspage);
305static void migrate_read_lock(struct zspage *zspage);
306static void migrate_read_unlock(struct zspage *zspage);
307static void kick_deferred_free(struct zs_pool *pool);
308static void init_deferred_free(struct zs_pool *pool);
309static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage);
310#else
311static int zsmalloc_mount(void) { return 0; }
312static void zsmalloc_unmount(void) {}
313static int zs_register_migration(struct zs_pool *pool) { return 0; }
314static void zs_unregister_migration(struct zs_pool *pool) {}
315static void migrate_lock_init(struct zspage *zspage) {}
316static void migrate_read_lock(struct zspage *zspage) {}
317static void migrate_read_unlock(struct zspage *zspage) {}
318static void kick_deferred_free(struct zs_pool *pool) {}
319static void init_deferred_free(struct zs_pool *pool) {}
320static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage) {}
321#endif
322
Minchan Kim37836892016-07-26 15:23:23 -0700323static int create_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700324{
325 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
326 0, 0, NULL);
Minchan Kim37836892016-07-26 15:23:23 -0700327 if (!pool->handle_cachep)
328 return 1;
329
330 pool->zspage_cachep = kmem_cache_create("zspage", sizeof(struct zspage),
331 0, 0, NULL);
332 if (!pool->zspage_cachep) {
333 kmem_cache_destroy(pool->handle_cachep);
334 pool->handle_cachep = NULL;
335 return 1;
336 }
337
338 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -0700339}
340
Minchan Kim37836892016-07-26 15:23:23 -0700341static void destroy_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700342{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700343 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim37836892016-07-26 15:23:23 -0700344 kmem_cache_destroy(pool->zspage_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700345}
346
Minchan Kim37836892016-07-26 15:23:23 -0700347static unsigned long cache_alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700348{
349 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700350 gfp & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim2e40e162015-04-15 16:15:23 -0700351}
352
Minchan Kim37836892016-07-26 15:23:23 -0700353static void cache_free_handle(struct zs_pool *pool, unsigned long handle)
Minchan Kim2e40e162015-04-15 16:15:23 -0700354{
355 kmem_cache_free(pool->handle_cachep, (void *)handle);
356}
357
Minchan Kim37836892016-07-26 15:23:23 -0700358static struct zspage *cache_alloc_zspage(struct zs_pool *pool, gfp_t flags)
359{
Miaohe Linf0231302021-02-25 17:18:27 -0800360 return kmem_cache_zalloc(pool->zspage_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700361 flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Xishi Qiu399d8ee2017-02-22 15:45:01 -0800362}
Minchan Kim37836892016-07-26 15:23:23 -0700363
364static void cache_free_zspage(struct zs_pool *pool, struct zspage *zspage)
365{
366 kmem_cache_free(pool->zspage_cachep, zspage);
367}
368
Minchan Kim2e40e162015-04-15 16:15:23 -0700369static void record_obj(unsigned long handle, unsigned long obj)
370{
Junil Leec102f07c2016-01-20 14:58:18 -0800371 /*
372 * lsb of @obj represents handle lock while other bits
373 * represent object value the handle is pointing so
374 * updating shouldn't do store tearing.
375 */
376 WRITE_ONCE(*(unsigned long *)handle, obj);
Minchan Kim2e40e162015-04-15 16:15:23 -0700377}
378
Dan Streetmanc7957792014-08-06 16:08:38 -0700379/* zpool driver */
380
381#ifdef CONFIG_ZPOOL
382
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800383static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700384 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700385 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700386{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700387 /*
388 * Ignore global gfp flags: zs_malloc() may be invoked from
389 * different contexts and its caller must provide a valid
390 * gfp mask.
391 */
392 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700393}
394
395static void zs_zpool_destroy(void *pool)
396{
397 zs_destroy_pool(pool);
398}
399
400static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
401 unsigned long *handle)
402{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700403 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700404 return *handle ? 0 : -1;
405}
406static void zs_zpool_free(void *pool, unsigned long handle)
407{
408 zs_free(pool, handle);
409}
410
Dan Streetmanc7957792014-08-06 16:08:38 -0700411static void *zs_zpool_map(void *pool, unsigned long handle,
412 enum zpool_mapmode mm)
413{
414 enum zs_mapmode zs_mm;
415
416 switch (mm) {
417 case ZPOOL_MM_RO:
418 zs_mm = ZS_MM_RO;
419 break;
420 case ZPOOL_MM_WO:
421 zs_mm = ZS_MM_WO;
422 break;
Joe Perchese4a9bc52020-04-06 20:08:39 -0700423 case ZPOOL_MM_RW:
Dan Streetmanc7957792014-08-06 16:08:38 -0700424 default:
425 zs_mm = ZS_MM_RW;
426 break;
427 }
428
429 return zs_map_object(pool, handle, zs_mm);
430}
431static void zs_zpool_unmap(void *pool, unsigned long handle)
432{
433 zs_unmap_object(pool, handle);
434}
435
436static u64 zs_zpool_total_size(void *pool)
437{
Minchan Kim722cdc12014-10-09 15:29:50 -0700438 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700439}
440
441static struct zpool_driver zs_zpool_driver = {
Hui Zhuc165f252019-09-23 15:39:37 -0700442 .type = "zsmalloc",
443 .owner = THIS_MODULE,
444 .create = zs_zpool_create,
445 .destroy = zs_zpool_destroy,
446 .malloc_support_movable = true,
447 .malloc = zs_zpool_malloc,
448 .free = zs_zpool_free,
449 .map = zs_zpool_map,
450 .unmap = zs_zpool_unmap,
451 .total_size = zs_zpool_total_size,
Dan Streetmanc7957792014-08-06 16:08:38 -0700452};
453
Kees Cook137f8cf2014-08-29 15:18:40 -0700454MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700455#endif /* CONFIG_ZPOOL */
456
Nitin Gupta61989a82012-01-09 16:51:56 -0600457/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
458static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
459
Minchan Kim48b48002016-07-26 15:23:31 -0700460static bool is_zspage_isolated(struct zspage *zspage)
461{
462 return zspage->isolated;
463}
464
Nick Desaulniers3457f412017-07-10 15:47:26 -0700465static __maybe_unused int is_first_page(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600466{
Minchan Kima27545bf2012-04-25 15:23:09 +0900467 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600468}
469
Minchan Kim48b48002016-07-26 15:23:31 -0700470/* Protected by class->lock */
Minchan Kim37836892016-07-26 15:23:23 -0700471static inline int get_zspage_inuse(struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600472{
Minchan Kim37836892016-07-26 15:23:23 -0700473 return zspage->inuse;
Nitin Gupta61989a82012-01-09 16:51:56 -0600474}
475
Minchan Kim4f420472016-07-26 15:23:17 -0700476
Minchan Kim37836892016-07-26 15:23:23 -0700477static inline void mod_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700478{
Minchan Kim37836892016-07-26 15:23:23 -0700479 zspage->inuse += val;
Minchan Kim4f420472016-07-26 15:23:17 -0700480}
481
Minchan Kim48b48002016-07-26 15:23:31 -0700482static inline struct page *get_first_page(struct zspage *zspage)
483{
484 struct page *first_page = zspage->first_page;
485
486 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
487 return first_page;
488}
489
Minchan Kim4f420472016-07-26 15:23:17 -0700490static inline int get_first_obj_offset(struct page *page)
491{
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100492 return page->page_type;
Minchan Kim4f420472016-07-26 15:23:17 -0700493}
494
495static inline void set_first_obj_offset(struct page *page, int offset)
496{
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100497 page->page_type = offset;
Minchan Kim4f420472016-07-26 15:23:17 -0700498}
499
Minchan Kimbfd093f2016-07-26 15:23:28 -0700500static inline unsigned int get_freeobj(struct zspage *zspage)
Minchan Kim4f420472016-07-26 15:23:17 -0700501{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700502 return zspage->freeobj;
Minchan Kim4f420472016-07-26 15:23:17 -0700503}
504
Minchan Kimbfd093f2016-07-26 15:23:28 -0700505static inline void set_freeobj(struct zspage *zspage, unsigned int obj)
Minchan Kim4f420472016-07-26 15:23:17 -0700506{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700507 zspage->freeobj = obj;
Minchan Kim4f420472016-07-26 15:23:17 -0700508}
509
Minchan Kim37836892016-07-26 15:23:23 -0700510static void get_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700511 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600512 enum fullness_group *fullness)
513{
Minchan Kim48b48002016-07-26 15:23:31 -0700514 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
515
Minchan Kim37836892016-07-26 15:23:23 -0700516 *fullness = zspage->fullness;
517 *class_idx = zspage->class;
Nitin Gupta61989a82012-01-09 16:51:56 -0600518}
519
Minchan Kim67f1c9c2022-01-21 22:13:51 -0800520static struct size_class *zspage_class(struct zs_pool *pool,
521 struct zspage *zspage)
522{
523 return pool->size_class[zspage->class];
524}
525
Minchan Kim37836892016-07-26 15:23:23 -0700526static void set_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700527 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600528 enum fullness_group fullness)
529{
Minchan Kim37836892016-07-26 15:23:23 -0700530 zspage->class = class_idx;
531 zspage->fullness = fullness;
Nitin Gupta61989a82012-01-09 16:51:56 -0600532}
533
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900534/*
535 * zsmalloc divides the pool into various size classes where each
536 * class maintains a list of zspages where each zspage is divided
537 * into equal sized chunks. Each allocation falls into one of these
538 * classes depending on its size. This function returns index of the
Shijie Luocb152a12021-05-06 18:05:51 -0700539 * size class which has chunk size big enough to hold the given size.
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900540 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600541static int get_size_class_index(int size)
542{
543 int idx = 0;
544
545 if (likely(size > ZS_MIN_ALLOC_SIZE))
546 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
547 ZS_SIZE_CLASS_DELTA);
548
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700549 return min_t(int, ZS_SIZE_CLASSES - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600550}
551
Minchan Kim3828a762022-01-21 22:13:54 -0800552/* type can be of enum type class_stat_type or fullness_group */
553static inline void class_stat_inc(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700554 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700555{
Minchan Kim48b48002016-07-26 15:23:31 -0700556 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700557}
558
Minchan Kim3828a762022-01-21 22:13:54 -0800559/* type can be of enum type class_stat_type or fullness_group */
560static inline void class_stat_dec(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700561 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700562{
Minchan Kim48b48002016-07-26 15:23:31 -0700563 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700564}
565
Minchan Kim3828a762022-01-21 22:13:54 -0800566/* type can be of enum type class_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700567static inline unsigned long zs_stat_get(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700568 int type)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700569{
Minchan Kim48b48002016-07-26 15:23:31 -0700570 return class->stats.objs[type];
Minchan Kim248ca1b2015-04-15 16:15:42 -0700571}
572
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700573#ifdef CONFIG_ZSMALLOC_STAT
574
Dan Streetman4abaac92016-05-26 15:16:27 -0700575static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700576{
Dan Streetman4abaac92016-05-26 15:16:27 -0700577 if (!debugfs_initialized()) {
578 pr_warn("debugfs not available, stat dir not created\n");
579 return;
580 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700581
582 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700583}
584
585static void __exit zs_stat_exit(void)
586{
587 debugfs_remove_recursive(zs_stat_root);
588}
589
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700590static unsigned long zs_can_compact(struct size_class *class);
591
Minchan Kim248ca1b2015-04-15 16:15:42 -0700592static int zs_stats_size_show(struct seq_file *s, void *v)
593{
594 int i;
595 struct zs_pool *pool = s->private;
596 struct size_class *class;
597 int objs_per_zspage;
598 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700599 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700600 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
601 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700602 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700603
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700604 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700605 "class", "size", "almost_full", "almost_empty",
606 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700607 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700608
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700609 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim248ca1b2015-04-15 16:15:42 -0700610 class = pool->size_class[i];
611
612 if (class->index != i)
613 continue;
614
615 spin_lock(&class->lock);
616 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
617 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
618 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
619 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700620 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700621 spin_unlock(&class->lock);
622
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700623 objs_per_zspage = class->objs_per_zspage;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700624 pages_used = obj_allocated / objs_per_zspage *
625 class->pages_per_zspage;
626
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700627 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
628 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700629 i, class->size, class_almost_full, class_almost_empty,
630 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700631 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700632
633 total_class_almost_full += class_almost_full;
634 total_class_almost_empty += class_almost_empty;
635 total_objs += obj_allocated;
636 total_used_objs += obj_used;
637 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700638 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700639 }
640
641 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700642 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700643 "Total", "", total_class_almost_full,
644 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700645 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700646
647 return 0;
648}
Andy Shevchenko5ad35092018-04-05 16:23:16 -0700649DEFINE_SHOW_ATTRIBUTE(zs_stats_size);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700650
Dan Streetmand34f6152016-05-20 16:59:56 -0700651static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700652{
Dan Streetman4abaac92016-05-26 15:16:27 -0700653 if (!zs_stat_root) {
654 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700655 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700656 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700657
Greg Kroah-Hartman42685092019-01-22 16:21:09 +0100658 pool->stat_dentry = debugfs_create_dir(name, zs_stat_root);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700659
Greg Kroah-Hartman42685092019-01-22 16:21:09 +0100660 debugfs_create_file("classes", S_IFREG | 0444, pool->stat_dentry, pool,
661 &zs_stats_size_fops);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700662}
663
664static void zs_pool_stat_destroy(struct zs_pool *pool)
665{
666 debugfs_remove_recursive(pool->stat_dentry);
667}
668
669#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700670static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700671{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700672}
673
674static void __exit zs_stat_exit(void)
675{
676}
677
Dan Streetmand34f6152016-05-20 16:59:56 -0700678static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700679{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700680}
681
682static inline void zs_pool_stat_destroy(struct zs_pool *pool)
683{
684}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700685#endif
686
Minchan Kim48b48002016-07-26 15:23:31 -0700687
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900688/*
689 * For each size class, zspages are divided into different groups
690 * depending on how "full" they are. This was done so that we could
691 * easily find empty or nearly empty zspages when we try to shrink
692 * the pool (not yet implemented). This function returns fullness
693 * status of the given page.
694 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700695static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700696 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600697{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700698 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600699 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700700
Minchan Kim37836892016-07-26 15:23:23 -0700701 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700702 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600703
704 if (inuse == 0)
705 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700706 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600707 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700708 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600709 fg = ZS_ALMOST_EMPTY;
710 else
711 fg = ZS_ALMOST_FULL;
712
713 return fg;
714}
715
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900716/*
717 * Each size class maintains various freelists and zspages are assigned
718 * to one of these freelists based on the number of live objects they
719 * have. This functions inserts the given zspage into the freelist
720 * identified by <class, fullness_group>.
721 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700722static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700723 struct zspage *zspage,
724 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600725{
Minchan Kim37836892016-07-26 15:23:23 -0700726 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600727
Minchan Kim3828a762022-01-21 22:13:54 -0800728 class_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700729 head = list_first_entry_or_null(&class->fullness_list[fullness],
730 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700731 /*
Minchan Kim37836892016-07-26 15:23:23 -0700732 * We want to see more ZS_FULL pages and less almost empty/full.
733 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700734 */
Miaohe Lin110ceb82020-12-14 19:14:22 -0800735 if (head && get_zspage_inuse(zspage) < get_zspage_inuse(head))
736 list_add(&zspage->list, &head->list);
737 else
738 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600739}
740
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900741/*
742 * This function removes the given zspage from the freelist identified
743 * by <class, fullness_group>.
744 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700745static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700746 struct zspage *zspage,
747 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600748{
Minchan Kim37836892016-07-26 15:23:23 -0700749 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Minchan Kim48b48002016-07-26 15:23:31 -0700750 VM_BUG_ON(is_zspage_isolated(zspage));
Nitin Gupta61989a82012-01-09 16:51:56 -0600751
Minchan Kim37836892016-07-26 15:23:23 -0700752 list_del_init(&zspage->list);
Minchan Kim3828a762022-01-21 22:13:54 -0800753 class_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600754}
755
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900756/*
757 * Each size class maintains zspages in different fullness groups depending
758 * on the number of live objects they contain. When allocating or freeing
759 * objects, the fullness status of the page can change, say, from ALMOST_FULL
760 * to ALMOST_EMPTY when freeing an object. This function checks if such
761 * a status change has occurred for the given page and accordingly moves the
762 * page from the freelist of the old fullness group to that of the new
763 * fullness group.
764 */
Minchan Kimc7806262015-04-15 16:15:26 -0700765static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700766 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600767{
768 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600769 enum fullness_group currfg, newfg;
770
Minchan Kim37836892016-07-26 15:23:23 -0700771 get_zspage_mapping(zspage, &class_idx, &currfg);
772 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600773 if (newfg == currfg)
774 goto out;
775
Minchan Kim48b48002016-07-26 15:23:31 -0700776 if (!is_zspage_isolated(zspage)) {
777 remove_zspage(class, zspage, currfg);
778 insert_zspage(class, zspage, newfg);
779 }
780
Minchan Kim37836892016-07-26 15:23:23 -0700781 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600782
783out:
784 return newfg;
785}
786
787/*
788 * We have to decide on how many pages to link together
789 * to form a zspage for each size class. This is important
790 * to reduce wastage due to unusable space left at end of
791 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700792 * wastage = Zp % class_size
793 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600794 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
795 *
796 * For example, for size class of 3/8 * PAGE_SIZE, we should
797 * link together 3 PAGE_SIZE sized pages to form a zspage
798 * since then we can perfectly fit in 8 such objects.
799 */
Minchan Kim2e3b61542012-05-03 15:40:39 +0900800static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600801{
802 int i, max_usedpc = 0;
803 /* zspage order which gives maximum used size per KB */
804 int max_usedpc_order = 1;
805
Seth Jennings84d4faa2012-03-05 11:33:21 -0600806 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600807 int zspage_size;
808 int waste, usedpc;
809
810 zspage_size = i * PAGE_SIZE;
811 waste = zspage_size % class_size;
812 usedpc = (zspage_size - waste) * 100 / zspage_size;
813
814 if (usedpc > max_usedpc) {
815 max_usedpc = usedpc;
816 max_usedpc_order = i;
817 }
818 }
819
820 return max_usedpc_order;
821}
822
Minchan Kim37836892016-07-26 15:23:23 -0700823static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600824{
Miaohe Lina6c5e0f2021-02-25 17:18:34 -0800825 struct zspage *zspage = (struct zspage *)page_private(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700826
827 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
828 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600829}
830
831static struct page *get_next_page(struct page *page)
832{
Minchan Kim48b48002016-07-26 15:23:31 -0700833 if (unlikely(PageHugeObject(page)))
834 return NULL;
835
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100836 return (struct page *)page->index;
Nitin Gupta61989a82012-01-09 16:51:56 -0600837}
838
Minchan Kimbfd093f2016-07-26 15:23:28 -0700839/**
840 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700841 * @obj: the encoded object value
Minchan Kimbfd093f2016-07-26 15:23:28 -0700842 * @page: page object resides in zspage
843 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800844 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700845static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700846 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600847{
Minchan Kim312fcae2015-04-15 16:15:30 -0700848 obj >>= OBJ_TAG_BITS;
849 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
850 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600851}
852
Minchan Kim67f1c9c2022-01-21 22:13:51 -0800853static void obj_to_page(unsigned long obj, struct page **page)
854{
855 obj >>= OBJ_TAG_BITS;
856 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
857}
858
Minchan Kimbfd093f2016-07-26 15:23:28 -0700859/**
860 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
861 * @page: page object resides in zspage
862 * @obj_idx: object index
863 */
864static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
865{
866 unsigned long obj;
867
868 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
869 obj |= obj_idx & OBJ_INDEX_MASK;
870 obj <<= OBJ_TAG_BITS;
871
872 return obj;
873}
874
Minchan Kim2e40e162015-04-15 16:15:23 -0700875static unsigned long handle_to_obj(unsigned long handle)
876{
877 return *(unsigned long *)handle;
878}
879
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800880static bool obj_allocated(struct page *page, void *obj, unsigned long *phandle)
Minchan Kim312fcae2015-04-15 16:15:30 -0700881{
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800882 unsigned long handle;
883
Minchan Kim48b48002016-07-26 15:23:31 -0700884 if (unlikely(PageHugeObject(page))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700885 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800886 handle = page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700887 } else
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800888 handle = *(unsigned long *)obj;
889
890 if (!(handle & OBJ_ALLOCATED_TAG))
891 return false;
892
893 *phandle = handle & ~OBJ_ALLOCATED_TAG;
894 return true;
Minchan Kim312fcae2015-04-15 16:15:30 -0700895}
896
Minchan Kim48b48002016-07-26 15:23:31 -0700897static inline int testpin_tag(unsigned long handle)
898{
899 return bit_spin_is_locked(HANDLE_PIN_BIT, (unsigned long *)handle);
900}
901
Minchan Kim312fcae2015-04-15 16:15:30 -0700902static inline int trypin_tag(unsigned long handle)
903{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700904 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700905}
906
Jules Irenge70c7ec92020-04-06 20:08:27 -0700907static void pin_tag(unsigned long handle) __acquires(bitlock)
Minchan Kim312fcae2015-04-15 16:15:30 -0700908{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700909 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700910}
911
Jules Irengebc22b182020-04-06 20:08:30 -0700912static void unpin_tag(unsigned long handle) __releases(bitlock)
Minchan Kim312fcae2015-04-15 16:15:30 -0700913{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700914 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700915}
916
Nitin Guptaf4477e92012-04-02 09:13:56 -0500917static void reset_page(struct page *page)
918{
Minchan Kim48b48002016-07-26 15:23:31 -0700919 __ClearPageMovable(page);
Ganesh Mahendran18fd06b2016-07-28 15:48:00 -0700920 ClearPagePrivate(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500921 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700922 page_mapcount_reset(page);
923 ClearPageHugeObject(page);
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100924 page->index = 0;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500925}
926
Colin Ian King4d0a5402018-08-17 15:46:50 -0700927static int trylock_zspage(struct zspage *zspage)
Minchan Kim48b48002016-07-26 15:23:31 -0700928{
929 struct page *cursor, *fail;
930
931 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
932 get_next_page(cursor)) {
933 if (!trylock_page(cursor)) {
934 fail = cursor;
935 goto unlock;
936 }
937 }
938
939 return 1;
940unlock:
941 for (cursor = get_first_page(zspage); cursor != fail; cursor =
942 get_next_page(cursor))
943 unlock_page(cursor);
944
945 return 0;
946}
947
948static void __free_zspage(struct zs_pool *pool, struct size_class *class,
949 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600950{
Minchan Kim37836892016-07-26 15:23:23 -0700951 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700952 enum fullness_group fg;
953 unsigned int class_idx;
954
955 get_zspage_mapping(zspage, &class_idx, &fg);
956
957 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -0600958
Minchan Kim37836892016-07-26 15:23:23 -0700959 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -0700960 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -0600961
Minchan Kim48b48002016-07-26 15:23:31 -0700962 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -0700963 do {
Minchan Kim48b48002016-07-26 15:23:31 -0700964 VM_BUG_ON_PAGE(!PageLocked(page), page);
965 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -0700966 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700967 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -0700968 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -0700969 put_page(page);
970 page = next;
971 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -0600972
Minchan Kim37836892016-07-26 15:23:23 -0700973 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700974
Minchan Kim3828a762022-01-21 22:13:54 -0800975 class_stat_dec(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700976 atomic_long_sub(class->pages_per_zspage,
977 &pool->pages_allocated);
978}
979
980static void free_zspage(struct zs_pool *pool, struct size_class *class,
981 struct zspage *zspage)
982{
983 VM_BUG_ON(get_zspage_inuse(zspage));
984 VM_BUG_ON(list_empty(&zspage->list));
985
986 if (!trylock_zspage(zspage)) {
987 kick_deferred_free(pool);
988 return;
989 }
990
991 remove_zspage(class, zspage, ZS_EMPTY);
992 __free_zspage(pool, class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600993}
994
995/* Initialize a newly allocated zspage */
Minchan Kim37836892016-07-26 15:23:23 -0700996static void init_zspage(struct size_class *class, struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600997{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700998 unsigned int freeobj = 1;
Nitin Gupta61989a82012-01-09 16:51:56 -0600999 unsigned long off = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07001000 struct page *page = get_first_page(zspage);
Minchan Kim830e4bc2016-05-20 16:59:39 -07001001
Nitin Gupta61989a82012-01-09 16:51:56 -06001002 while (page) {
1003 struct page *next_page;
1004 struct link_free *link;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001005 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -06001006
Minchan Kim37836892016-07-26 15:23:23 -07001007 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -06001008
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001009 vaddr = kmap_atomic(page);
1010 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001011
Dan Streetman5538c562014-10-09 15:30:01 -07001012 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001013 link->next = freeobj++ << OBJ_TAG_BITS;
Dan Streetman5538c562014-10-09 15:30:01 -07001014 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001015 }
1016
1017 /*
1018 * We now come to the last (full or partial) object on this
1019 * page, which must point to the first object on the next
1020 * page (if present)
1021 */
1022 next_page = get_next_page(page);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001023 if (next_page) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001024 link->next = freeobj++ << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001025 } else {
1026 /*
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001027 * Reset OBJ_TAG_BITS bit to last link to tell
Minchan Kimbfd093f2016-07-26 15:23:28 -07001028 * whether it's allocated object or not.
1029 */
Nick Desaulniers01a6ad92018-01-31 16:20:15 -08001030 link->next = -1UL << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001031 }
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001032 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -06001033 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -07001034 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -06001035 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001036
Minchan Kimbfd093f2016-07-26 15:23:28 -07001037 set_freeobj(zspage, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001038}
1039
Minchan Kim48b48002016-07-26 15:23:31 -07001040static void create_page_chain(struct size_class *class, struct zspage *zspage,
1041 struct page *pages[])
Nitin Gupta61989a82012-01-09 16:51:56 -06001042{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001043 int i;
1044 struct page *page;
1045 struct page *prev_page = NULL;
Minchan Kim48b48002016-07-26 15:23:31 -07001046 int nr_pages = class->pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001047
1048 /*
1049 * Allocate individual pages and link them together as:
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +01001050 * 1. all pages are linked together using page->index
Minchan Kim37836892016-07-26 15:23:23 -07001051 * 2. each sub-page point to zspage using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001052 *
Minchan Kim37836892016-07-26 15:23:23 -07001053 * we set PG_private to identify the first page (i.e. no other sub-page
Yisheng Xie22c5cef2017-02-24 14:59:42 -08001054 * has this flag set).
Nitin Gupta61989a82012-01-09 16:51:56 -06001055 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001056 for (i = 0; i < nr_pages; i++) {
1057 page = pages[i];
Minchan Kim37836892016-07-26 15:23:23 -07001058 set_page_private(page, (unsigned long)zspage);
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +01001059 page->index = 0;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001060 if (i == 0) {
Minchan Kim37836892016-07-26 15:23:23 -07001061 zspage->first_page = page;
Minchan Kima27545bf2012-04-25 15:23:09 +09001062 SetPagePrivate(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001063 if (unlikely(class->objs_per_zspage == 1 &&
1064 class->pages_per_zspage == 1))
1065 SetPageHugeObject(page);
Minchan Kim37836892016-07-26 15:23:23 -07001066 } else {
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +01001067 prev_page->index = (unsigned long)page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001068 }
Nitin Gupta61989a82012-01-09 16:51:56 -06001069 prev_page = page;
1070 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001071}
Nitin Gupta61989a82012-01-09 16:51:56 -06001072
Minchan Kimbdb0af72016-07-26 15:23:20 -07001073/*
1074 * Allocate a zspage for the given size class
1075 */
Minchan Kim37836892016-07-26 15:23:23 -07001076static struct zspage *alloc_zspage(struct zs_pool *pool,
1077 struct size_class *class,
1078 gfp_t gfp)
Minchan Kimbdb0af72016-07-26 15:23:20 -07001079{
1080 int i;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001081 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Minchan Kim37836892016-07-26 15:23:23 -07001082 struct zspage *zspage = cache_alloc_zspage(pool, gfp);
1083
1084 if (!zspage)
1085 return NULL;
1086
Minchan Kim48b48002016-07-26 15:23:31 -07001087 zspage->magic = ZSPAGE_MAGIC;
1088 migrate_lock_init(zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001089
Minchan Kimbdb0af72016-07-26 15:23:20 -07001090 for (i = 0; i < class->pages_per_zspage; i++) {
1091 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001092
Minchan Kim37836892016-07-26 15:23:23 -07001093 page = alloc_page(gfp);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001094 if (!page) {
Minchan Kim91537fe2016-07-26 15:24:45 -07001095 while (--i >= 0) {
1096 dec_zone_page_state(pages[i], NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001097 __free_page(pages[i]);
Minchan Kim91537fe2016-07-26 15:24:45 -07001098 }
Minchan Kim37836892016-07-26 15:23:23 -07001099 cache_free_zspage(pool, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001100 return NULL;
1101 }
Minchan Kim91537fe2016-07-26 15:24:45 -07001102
1103 inc_zone_page_state(page, NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001104 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001105 }
1106
Minchan Kim48b48002016-07-26 15:23:31 -07001107 create_page_chain(class, zspage, pages);
Minchan Kim37836892016-07-26 15:23:23 -07001108 init_zspage(class, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001109
Minchan Kim37836892016-07-26 15:23:23 -07001110 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001111}
1112
Minchan Kim37836892016-07-26 15:23:23 -07001113static struct zspage *find_get_zspage(struct size_class *class)
Nitin Gupta61989a82012-01-09 16:51:56 -06001114{
1115 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001116 struct zspage *zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001117
Minchan Kim48b48002016-07-26 15:23:31 -07001118 for (i = ZS_ALMOST_FULL; i >= ZS_EMPTY; i--) {
Minchan Kim37836892016-07-26 15:23:23 -07001119 zspage = list_first_entry_or_null(&class->fullness_list[i],
1120 struct zspage, list);
1121 if (zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001122 break;
1123 }
1124
Minchan Kim37836892016-07-26 15:23:23 -07001125 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001126}
1127
Seth Jenningsf5536462012-07-18 11:55:56 -05001128static inline int __zs_cpu_up(struct mapping_area *area)
1129{
1130 /*
1131 * Make sure we don't leak memory if a cpu UP notification
1132 * and zs_init() race and both call zs_cpu_up() on the same cpu
1133 */
1134 if (area->vm_buf)
1135 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001136 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001137 if (!area->vm_buf)
1138 return -ENOMEM;
1139 return 0;
1140}
1141
1142static inline void __zs_cpu_down(struct mapping_area *area)
1143{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001144 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001145 area->vm_buf = NULL;
1146}
1147
1148static void *__zs_map_object(struct mapping_area *area,
1149 struct page *pages[2], int off, int size)
1150{
Seth Jennings5f6019022012-07-02 16:15:49 -05001151 int sizes[2];
1152 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001153 char *buf = area->vm_buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001154
Seth Jenningsf5536462012-07-18 11:55:56 -05001155 /* disable page faults to match kmap_atomic() return conditions */
1156 pagefault_disable();
1157
1158 /* no read fastpath */
1159 if (area->vm_mm == ZS_MM_WO)
1160 goto out;
Seth Jennings5f6019022012-07-02 16:15:49 -05001161
1162 sizes[0] = PAGE_SIZE - off;
1163 sizes[1] = size - sizes[0];
1164
Seth Jennings5f6019022012-07-02 16:15:49 -05001165 /* copy object to per-cpu buffer */
1166 addr = kmap_atomic(pages[0]);
1167 memcpy(buf, addr + off, sizes[0]);
1168 kunmap_atomic(addr);
1169 addr = kmap_atomic(pages[1]);
1170 memcpy(buf + sizes[0], addr, sizes[1]);
1171 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001172out:
1173 return area->vm_buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001174}
1175
Seth Jenningsf5536462012-07-18 11:55:56 -05001176static void __zs_unmap_object(struct mapping_area *area,
1177 struct page *pages[2], int off, int size)
Seth Jennings5f6019022012-07-02 16:15:49 -05001178{
Seth Jennings5f6019022012-07-02 16:15:49 -05001179 int sizes[2];
1180 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001181 char *buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001182
Seth Jenningsf5536462012-07-18 11:55:56 -05001183 /* no write fastpath */
1184 if (area->vm_mm == ZS_MM_RO)
1185 goto out;
Seth Jennings5f6019022012-07-02 16:15:49 -05001186
Minchan Kim7b60a682015-04-15 16:15:39 -07001187 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001188 buf = buf + ZS_HANDLE_SIZE;
1189 size -= ZS_HANDLE_SIZE;
1190 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001191
Seth Jennings5f6019022012-07-02 16:15:49 -05001192 sizes[0] = PAGE_SIZE - off;
1193 sizes[1] = size - sizes[0];
1194
1195 /* copy per-cpu buffer to object */
1196 addr = kmap_atomic(pages[0]);
1197 memcpy(addr + off, buf, sizes[0]);
1198 kunmap_atomic(addr);
1199 addr = kmap_atomic(pages[1]);
1200 memcpy(addr, buf + sizes[0], sizes[1]);
1201 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001202
1203out:
1204 /* enable page faults to match kunmap_atomic() return conditions */
1205 pagefault_enable();
Seth Jennings5f6019022012-07-02 16:15:49 -05001206}
Nitin Gupta61989a82012-01-09 16:51:56 -06001207
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001208static int zs_cpu_prepare(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001209{
Nitin Gupta61989a82012-01-09 16:51:56 -06001210 struct mapping_area *area;
1211
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001212 area = &per_cpu(zs_map_area, cpu);
1213 return __zs_cpu_up(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001214}
1215
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001216static int zs_cpu_dead(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001217{
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001218 struct mapping_area *area;
Nitin Gupta61989a82012-01-09 16:51:56 -06001219
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001220 area = &per_cpu(zs_map_area, cpu);
1221 __zs_cpu_down(area);
1222 return 0;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001223}
1224
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001225static bool can_merge(struct size_class *prev, int pages_per_zspage,
1226 int objs_per_zspage)
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001227{
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001228 if (prev->pages_per_zspage == pages_per_zspage &&
1229 prev->objs_per_zspage == objs_per_zspage)
1230 return true;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001231
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001232 return false;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001233}
1234
Minchan Kim37836892016-07-26 15:23:23 -07001235static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001236{
Minchan Kim37836892016-07-26 15:23:23 -07001237 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001238}
1239
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001240unsigned long zs_get_total_pages(struct zs_pool *pool)
1241{
1242 return atomic_long_read(&pool->pages_allocated);
1243}
1244EXPORT_SYMBOL_GPL(zs_get_total_pages);
1245
1246/**
1247 * zs_map_object - get address of allocated object from handle.
1248 * @pool: pool from which the object was allocated
1249 * @handle: handle returned from zs_malloc
Ingo Molnarf0953a12021-05-06 18:06:47 -07001250 * @mm: mapping mode to use
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001251 *
1252 * Before using an object allocated from zs_malloc, it must be mapped using
1253 * this function. When done with the object, it must be unmapped using
1254 * zs_unmap_object.
1255 *
1256 * Only one object can be mapped per cpu at a time. There is no protection
1257 * against nested mappings.
1258 *
1259 * This function returns with preemption and page faults disabled.
1260 */
1261void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1262 enum zs_mapmode mm)
1263{
Minchan Kim37836892016-07-26 15:23:23 -07001264 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001265 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001266 unsigned long obj, off;
1267 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001268
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001269 struct size_class *class;
1270 struct mapping_area *area;
1271 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001272 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001273
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001274 /*
1275 * Because we use per-cpu mapping areas shared among the
1276 * pools/users, we can't allow mapping in interrupt context
1277 * because it can corrupt another users mappings.
1278 */
Sergey Senozhatsky1aedcaf2017-11-15 17:34:03 -08001279 BUG_ON(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001280
Minchan Kim312fcae2015-04-15 16:15:30 -07001281 /* From now on, migration cannot move the object */
1282 pin_tag(handle);
1283
Minchan Kim2e40e162015-04-15 16:15:23 -07001284 obj = handle_to_obj(handle);
1285 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001286 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001287
1288 /* migration cannot move any subpage in this zspage */
1289 migrate_read_lock(zspage);
1290
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001291 class = zspage_class(pool, zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001292 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001293
1294 area = &get_cpu_var(zs_map_area);
1295 area->vm_mm = mm;
1296 if (off + class->size <= PAGE_SIZE) {
1297 /* this object is contained entirely within a page */
1298 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001299 ret = area->vm_addr + off;
1300 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001301 }
1302
1303 /* this object spans two pages */
1304 pages[0] = page;
1305 pages[1] = get_next_page(page);
1306 BUG_ON(!pages[1]);
1307
Minchan Kim2e40e162015-04-15 16:15:23 -07001308 ret = __zs_map_object(area, pages, off, class->size);
1309out:
Minchan Kim48b48002016-07-26 15:23:31 -07001310 if (likely(!PageHugeObject(page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001311 ret += ZS_HANDLE_SIZE;
1312
1313 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001314}
1315EXPORT_SYMBOL_GPL(zs_map_object);
1316
1317void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1318{
Minchan Kim37836892016-07-26 15:23:23 -07001319 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001320 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001321 unsigned long obj, off;
1322 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001323
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001324 struct size_class *class;
1325 struct mapping_area *area;
1326
Minchan Kim2e40e162015-04-15 16:15:23 -07001327 obj = handle_to_obj(handle);
1328 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001329 zspage = get_zspage(page);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001330 class = zspage_class(pool, zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001331 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001332
1333 area = this_cpu_ptr(&zs_map_area);
1334 if (off + class->size <= PAGE_SIZE)
1335 kunmap_atomic(area->vm_addr);
1336 else {
1337 struct page *pages[2];
1338
1339 pages[0] = page;
1340 pages[1] = get_next_page(page);
1341 BUG_ON(!pages[1]);
1342
1343 __zs_unmap_object(area, pages, off, class->size);
1344 }
1345 put_cpu_var(zs_map_area);
Minchan Kim48b48002016-07-26 15:23:31 -07001346
1347 migrate_read_unlock(zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07001348 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001349}
1350EXPORT_SYMBOL_GPL(zs_unmap_object);
1351
Sergey Senozhatsky010b4952018-04-05 16:24:43 -07001352/**
1353 * zs_huge_class_size() - Returns the size (in bytes) of the first huge
1354 * zsmalloc &size_class.
1355 * @pool: zsmalloc pool to use
1356 *
1357 * The function returns the size of the first huge class - any object of equal
1358 * or bigger size will be stored in zspage consisting of a single physical
1359 * page.
1360 *
1361 * Context: Any context.
1362 *
1363 * Return: the size (in bytes) of the first huge zsmalloc &size_class.
1364 */
1365size_t zs_huge_class_size(struct zs_pool *pool)
1366{
1367 return huge_class_size;
1368}
1369EXPORT_SYMBOL_GPL(zs_huge_class_size);
1370
Minchan Kim0a5f0792022-01-21 22:13:57 -08001371static unsigned long obj_malloc(struct zs_pool *pool,
Minchan Kim37836892016-07-26 15:23:23 -07001372 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001373{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001374 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001375 unsigned long obj;
1376 struct link_free *link;
Minchan Kim0a5f0792022-01-21 22:13:57 -08001377 struct size_class *class;
Minchan Kimc7806262015-04-15 16:15:26 -07001378
1379 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001380 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001381 void *vaddr;
1382
Minchan Kim0a5f0792022-01-21 22:13:57 -08001383 class = pool->size_class[zspage->class];
Minchan Kim312fcae2015-04-15 16:15:30 -07001384 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001385 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001386
1387 offset = obj * class->size;
1388 nr_page = offset >> PAGE_SHIFT;
1389 m_offset = offset & ~PAGE_MASK;
1390 m_page = get_first_page(zspage);
1391
1392 for (i = 0; i < nr_page; i++)
1393 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001394
1395 vaddr = kmap_atomic(m_page);
1396 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001397 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001398 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001399 /* record handle in the header of allocated chunk */
1400 link->handle = handle;
1401 else
Minchan Kim37836892016-07-26 15:23:23 -07001402 /* record handle to page->index */
1403 zspage->first_page->index = handle;
1404
Minchan Kimc7806262015-04-15 16:15:26 -07001405 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001406 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001407
Minchan Kimbfd093f2016-07-26 15:23:28 -07001408 obj = location_to_obj(m_page, obj);
1409
Minchan Kimc7806262015-04-15 16:15:26 -07001410 return obj;
1411}
1412
1413
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001414/**
1415 * zs_malloc - Allocate block of given size from pool.
1416 * @pool: pool to allocate from
1417 * @size: size of block to allocate
Ganesh Mahendranfd854462016-07-28 15:47:54 -07001418 * @gfp: gfp flags when allocating object
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001419 *
1420 * On success, handle to the allocated object is returned,
1421 * otherwise 0.
1422 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1423 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001424unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001425{
Minchan Kim2e40e162015-04-15 16:15:23 -07001426 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001427 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001428 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001429 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001430
Minchan Kim7b60a682015-04-15 16:15:39 -07001431 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001432 return 0;
1433
Minchan Kim37836892016-07-26 15:23:23 -07001434 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001435 if (!handle)
1436 return 0;
1437
1438 /* extra space in chunk to keep the handle */
1439 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001440 class = pool->size_class[get_size_class_index(size)];
1441
1442 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001443 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001444 if (likely(zspage)) {
Minchan Kim0a5f0792022-01-21 22:13:57 -08001445 obj = obj_malloc(pool, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001446 /* Now move the zspage to another fullness group, if required */
1447 fix_fullness_group(class, zspage);
1448 record_obj(handle, obj);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001449 class_stat_inc(class, OBJ_USED, 1);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001450 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001451
Minchan Kim48b48002016-07-26 15:23:31 -07001452 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001453 }
1454
Minchan Kim48b48002016-07-26 15:23:31 -07001455 spin_unlock(&class->lock);
1456
1457 zspage = alloc_zspage(pool, class, gfp);
1458 if (!zspage) {
1459 cache_free_handle(pool, handle);
1460 return 0;
1461 }
1462
1463 spin_lock(&class->lock);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001464 obj = obj_malloc(pool, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001465 newfg = get_fullness_group(class, zspage);
1466 insert_zspage(class, zspage, newfg);
1467 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001468 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001469 atomic_long_add(class->pages_per_zspage,
1470 &pool->pages_allocated);
Minchan Kim3828a762022-01-21 22:13:54 -08001471 class_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001472 class_stat_inc(class, OBJ_USED, 1);
Minchan Kim48b48002016-07-26 15:23:31 -07001473
1474 /* We completely set up zspage so mark them as movable */
1475 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001476 spin_unlock(&class->lock);
1477
Minchan Kim2e40e162015-04-15 16:15:23 -07001478 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001479}
1480EXPORT_SYMBOL_GPL(zs_malloc);
1481
Minchan Kim0a5f0792022-01-21 22:13:57 -08001482static void obj_free(int class_size, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001483{
1484 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001485 struct zspage *zspage;
1486 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001487 unsigned long f_offset;
1488 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001489 void *vaddr;
1490
Minchan Kimc7806262015-04-15 16:15:26 -07001491 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001492 f_offset = (class_size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001493 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001494
Minchan Kimc7806262015-04-15 16:15:26 -07001495 vaddr = kmap_atomic(f_page);
1496
1497 /* Insert this object in containing zspage's freelist */
1498 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001499 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001500 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001501 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001502 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001503}
1504
1505void zs_free(struct zs_pool *pool, unsigned long handle)
1506{
Minchan Kim37836892016-07-26 15:23:23 -07001507 struct zspage *zspage;
1508 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001509 unsigned long obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001510 struct size_class *class;
1511 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001512 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001513
Minchan Kim2e40e162015-04-15 16:15:23 -07001514 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001515 return;
1516
Minchan Kim312fcae2015-04-15 16:15:30 -07001517 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001518 obj = handle_to_obj(handle);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001519 obj_to_page(obj, &f_page);
Minchan Kim37836892016-07-26 15:23:23 -07001520 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001521
Minchan Kim48b48002016-07-26 15:23:31 -07001522 migrate_read_lock(zspage);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001523 class = zspage_class(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001524
1525 spin_lock(&class->lock);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001526 obj_free(class->size, obj);
1527 class_stat_dec(class, OBJ_USED, 1);
Minchan Kim37836892016-07-26 15:23:23 -07001528 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001529 if (fullness != ZS_EMPTY) {
1530 migrate_read_unlock(zspage);
1531 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001532 }
Minchan Kim48b48002016-07-26 15:23:31 -07001533
1534 isolated = is_zspage_isolated(zspage);
1535 migrate_read_unlock(zspage);
1536 /* If zspage is isolated, zs_page_putback will free the zspage */
1537 if (likely(!isolated))
1538 free_zspage(pool, class, zspage);
1539out:
1540
Minchan Kim312fcae2015-04-15 16:15:30 -07001541 spin_unlock(&class->lock);
1542 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001543 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001544}
1545EXPORT_SYMBOL_GPL(zs_free);
1546
Minchan Kim251cbb92016-05-20 16:59:42 -07001547static void zs_object_copy(struct size_class *class, unsigned long dst,
1548 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001549{
1550 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001551 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001552 unsigned long s_off, d_off;
1553 void *s_addr, *d_addr;
1554 int s_size, d_size, size;
1555 int written = 0;
1556
1557 s_size = d_size = class->size;
1558
1559 obj_to_location(src, &s_page, &s_objidx);
1560 obj_to_location(dst, &d_page, &d_objidx);
1561
Minchan Kimbfd093f2016-07-26 15:23:28 -07001562 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1563 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001564
1565 if (s_off + class->size > PAGE_SIZE)
1566 s_size = PAGE_SIZE - s_off;
1567
1568 if (d_off + class->size > PAGE_SIZE)
1569 d_size = PAGE_SIZE - d_off;
1570
1571 s_addr = kmap_atomic(s_page);
1572 d_addr = kmap_atomic(d_page);
1573
1574 while (1) {
1575 size = min(s_size, d_size);
1576 memcpy(d_addr + d_off, s_addr + s_off, size);
1577 written += size;
1578
1579 if (written == class->size)
1580 break;
1581
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001582 s_off += size;
1583 s_size -= size;
1584 d_off += size;
1585 d_size -= size;
1586
1587 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001588 kunmap_atomic(d_addr);
1589 kunmap_atomic(s_addr);
1590 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001591 s_addr = kmap_atomic(s_page);
1592 d_addr = kmap_atomic(d_page);
1593 s_size = class->size - written;
1594 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001595 }
1596
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001597 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001598 kunmap_atomic(d_addr);
1599 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001600 d_addr = kmap_atomic(d_page);
1601 d_size = class->size - written;
1602 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001603 }
1604 }
1605
1606 kunmap_atomic(d_addr);
1607 kunmap_atomic(s_addr);
1608}
1609
1610/*
1611 * Find alloced object in zspage from index object and
1612 * return handle.
1613 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001614static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001615 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001616{
Minchan Kim312fcae2015-04-15 16:15:30 -07001617 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001618 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001619 unsigned long handle = 0;
1620 void *addr = kmap_atomic(page);
1621
Minchan Kim37836892016-07-26 15:23:23 -07001622 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001623 offset += class->size * index;
1624
1625 while (offset < PAGE_SIZE) {
Minchan Kim3ae92ac2022-01-21 22:14:01 -08001626 if (obj_allocated(page, addr + offset, &handle)) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001627 if (trypin_tag(handle))
1628 break;
1629 handle = 0;
1630 }
1631
1632 offset += class->size;
1633 index++;
1634 }
1635
1636 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001637
1638 *obj_idx = index;
1639
Minchan Kim312fcae2015-04-15 16:15:30 -07001640 return handle;
1641}
1642
1643struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001644 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001645 struct page *s_page;
1646 /* Destination page for migration which should be a first page
1647 * of zspage. */
1648 struct page *d_page;
1649 /* Starting object index within @s_page which used for live object
1650 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001651 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001652};
1653
1654static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1655 struct zs_compact_control *cc)
1656{
1657 unsigned long used_obj, free_obj;
1658 unsigned long handle;
1659 struct page *s_page = cc->s_page;
1660 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001661 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001662 int ret = 0;
1663
1664 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001665 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001666 if (!handle) {
1667 s_page = get_next_page(s_page);
1668 if (!s_page)
1669 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001670 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001671 continue;
1672 }
1673
1674 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001675 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001676 unpin_tag(handle);
1677 ret = -ENOMEM;
1678 break;
1679 }
1680
1681 used_obj = handle_to_obj(handle);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001682 free_obj = obj_malloc(pool, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001683 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001684 obj_idx++;
Junil Leec102f07c2016-01-20 14:58:18 -08001685 /*
1686 * record_obj updates handle's value to free_obj and it will
1687 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1688 * breaks synchronization using pin_tag(e,g, zs_free) so
1689 * let's keep the lock bit.
1690 */
1691 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001692 record_obj(handle, free_obj);
1693 unpin_tag(handle);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001694 obj_free(class->size, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001695 }
1696
1697 /* Remember last position in this iteration */
1698 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001699 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001700
1701 return ret;
1702}
1703
Minchan Kim37836892016-07-26 15:23:23 -07001704static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001705{
1706 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001707 struct zspage *zspage;
1708 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001709
Minchan Kim37836892016-07-26 15:23:23 -07001710 if (!source) {
1711 fg[0] = ZS_ALMOST_FULL;
1712 fg[1] = ZS_ALMOST_EMPTY;
1713 }
1714
1715 for (i = 0; i < 2; i++) {
1716 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1717 struct zspage, list);
1718 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001719 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001720 remove_zspage(class, zspage, fg[i]);
1721 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001722 }
1723 }
1724
Minchan Kim37836892016-07-26 15:23:23 -07001725 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001726}
1727
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001728/*
Minchan Kim37836892016-07-26 15:23:23 -07001729 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001730 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001731 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001732 *
Minchan Kim37836892016-07-26 15:23:23 -07001733 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001734 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001735static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001736 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001737{
Minchan Kim312fcae2015-04-15 16:15:30 -07001738 enum fullness_group fullness;
1739
Minchan Kim48b48002016-07-26 15:23:31 -07001740 VM_BUG_ON(is_zspage_isolated(zspage));
1741
Minchan Kim37836892016-07-26 15:23:23 -07001742 fullness = get_fullness_group(class, zspage);
1743 insert_zspage(class, zspage, fullness);
1744 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001745
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001746 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001747}
1748
Minchan Kim48b48002016-07-26 15:23:31 -07001749#ifdef CONFIG_COMPACTION
Colin Ian King4d0a5402018-08-17 15:46:50 -07001750/*
1751 * To prevent zspage destroy during migration, zspage freeing should
1752 * hold locks of all pages in the zspage.
1753 */
1754static void lock_zspage(struct zspage *zspage)
1755{
1756 struct page *page = get_first_page(zspage);
1757
1758 do {
1759 lock_page(page);
1760 } while ((page = get_next_page(page)) != NULL);
1761}
1762
David Howells8e9231f2019-03-25 16:38:23 +00001763static int zs_init_fs_context(struct fs_context *fc)
Minchan Kim48b48002016-07-26 15:23:31 -07001764{
David Howells8e9231f2019-03-25 16:38:23 +00001765 return init_pseudo(fc, ZSMALLOC_MAGIC) ? 0 : -ENOMEM;
Minchan Kim48b48002016-07-26 15:23:31 -07001766}
1767
1768static struct file_system_type zsmalloc_fs = {
1769 .name = "zsmalloc",
David Howells8e9231f2019-03-25 16:38:23 +00001770 .init_fs_context = zs_init_fs_context,
Minchan Kim48b48002016-07-26 15:23:31 -07001771 .kill_sb = kill_anon_super,
1772};
1773
1774static int zsmalloc_mount(void)
1775{
1776 int ret = 0;
1777
1778 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1779 if (IS_ERR(zsmalloc_mnt))
1780 ret = PTR_ERR(zsmalloc_mnt);
1781
1782 return ret;
1783}
1784
1785static void zsmalloc_unmount(void)
1786{
1787 kern_unmount(zsmalloc_mnt);
1788}
1789
1790static void migrate_lock_init(struct zspage *zspage)
1791{
1792 rwlock_init(&zspage->lock);
1793}
1794
Jules Irengecfc451cf2020-04-06 20:08:21 -07001795static void migrate_read_lock(struct zspage *zspage) __acquires(&zspage->lock)
Minchan Kim48b48002016-07-26 15:23:31 -07001796{
1797 read_lock(&zspage->lock);
1798}
1799
Jules Irenge8a374cc2020-04-06 20:08:24 -07001800static void migrate_read_unlock(struct zspage *zspage) __releases(&zspage->lock)
Minchan Kim48b48002016-07-26 15:23:31 -07001801{
1802 read_unlock(&zspage->lock);
1803}
1804
1805static void migrate_write_lock(struct zspage *zspage)
1806{
1807 write_lock(&zspage->lock);
1808}
1809
1810static void migrate_write_unlock(struct zspage *zspage)
1811{
1812 write_unlock(&zspage->lock);
1813}
1814
1815/* Number of isolated subpage for *page migration* in this zspage */
1816static void inc_zspage_isolation(struct zspage *zspage)
1817{
1818 zspage->isolated++;
1819}
1820
1821static void dec_zspage_isolation(struct zspage *zspage)
1822{
1823 zspage->isolated--;
1824}
1825
Henry Burns1a87aa02019-08-24 17:55:03 -07001826static void putback_zspage_deferred(struct zs_pool *pool,
1827 struct size_class *class,
1828 struct zspage *zspage)
1829{
1830 enum fullness_group fg;
1831
1832 fg = putback_zspage(class, zspage);
1833 if (fg == ZS_EMPTY)
1834 schedule_work(&pool->free_work);
1835
1836}
1837
Henry Burns701d6782019-08-24 17:55:06 -07001838static inline void zs_pool_dec_isolated(struct zs_pool *pool)
1839{
1840 VM_BUG_ON(atomic_long_read(&pool->isolated_pages) <= 0);
1841 atomic_long_dec(&pool->isolated_pages);
1842 /*
Miaohe Linafe86052021-11-05 13:45:03 -07001843 * Checking pool->destroying must happen after atomic_long_dec()
1844 * for pool->isolated_pages above. Paired with the smp_mb() in
1845 * zs_unregister_migration().
Henry Burns701d6782019-08-24 17:55:06 -07001846 */
Miaohe Linafe86052021-11-05 13:45:03 -07001847 smp_mb__after_atomic();
Henry Burns701d6782019-08-24 17:55:06 -07001848 if (atomic_long_read(&pool->isolated_pages) == 0 && pool->destroying)
1849 wake_up_all(&pool->migration_wait);
1850}
1851
Minchan Kim48b48002016-07-26 15:23:31 -07001852static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1853 struct page *newpage, struct page *oldpage)
1854{
1855 struct page *page;
1856 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1857 int idx = 0;
1858
1859 page = get_first_page(zspage);
1860 do {
1861 if (page == oldpage)
1862 pages[idx] = newpage;
1863 else
1864 pages[idx] = page;
1865 idx++;
1866 } while ((page = get_next_page(page)) != NULL);
1867
1868 create_page_chain(class, zspage, pages);
1869 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
1870 if (unlikely(PageHugeObject(oldpage)))
1871 newpage->index = oldpage->index;
1872 __SetPageMovable(newpage, page_mapping(oldpage));
1873}
1874
Colin Ian King4d0a5402018-08-17 15:46:50 -07001875static bool zs_page_isolate(struct page *page, isolate_mode_t mode)
Minchan Kim48b48002016-07-26 15:23:31 -07001876{
1877 struct zs_pool *pool;
1878 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001879 struct zspage *zspage;
1880 struct address_space *mapping;
1881
1882 /*
1883 * Page is locked so zspage couldn't be destroyed. For detail, look at
1884 * lock_zspage in free_zspage.
1885 */
1886 VM_BUG_ON_PAGE(!PageMovable(page), page);
1887 VM_BUG_ON_PAGE(PageIsolated(page), page);
1888
1889 zspage = get_zspage(page);
1890
Minchan Kim48b48002016-07-26 15:23:31 -07001891 mapping = page_mapping(page);
1892 pool = mapping->private_data;
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001893
1894 class = zspage_class(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001895
1896 spin_lock(&class->lock);
1897 if (get_zspage_inuse(zspage) == 0) {
1898 spin_unlock(&class->lock);
1899 return false;
1900 }
1901
1902 /* zspage is isolated for object migration */
1903 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
1904 spin_unlock(&class->lock);
1905 return false;
1906 }
1907
1908 /*
1909 * If this is first time isolation for the zspage, isolate zspage from
1910 * size_class to prevent further object allocation from the zspage.
1911 */
1912 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001913 enum fullness_group fullness;
1914 unsigned int class_idx;
1915
Minchan Kim48b48002016-07-26 15:23:31 -07001916 get_zspage_mapping(zspage, &class_idx, &fullness);
Henry Burns701d6782019-08-24 17:55:06 -07001917 atomic_long_inc(&pool->isolated_pages);
Minchan Kim48b48002016-07-26 15:23:31 -07001918 remove_zspage(class, zspage, fullness);
1919 }
1920
1921 inc_zspage_isolation(zspage);
1922 spin_unlock(&class->lock);
1923
1924 return true;
1925}
1926
Colin Ian King4d0a5402018-08-17 15:46:50 -07001927static int zs_page_migrate(struct address_space *mapping, struct page *newpage,
Minchan Kim48b48002016-07-26 15:23:31 -07001928 struct page *page, enum migrate_mode mode)
1929{
1930 struct zs_pool *pool;
1931 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001932 struct zspage *zspage;
1933 struct page *dummy;
1934 void *s_addr, *d_addr, *addr;
1935 int offset, pos;
Minchan Kim3ae92ac2022-01-21 22:14:01 -08001936 unsigned long handle;
Minchan Kim48b48002016-07-26 15:23:31 -07001937 unsigned long old_obj, new_obj;
1938 unsigned int obj_idx;
1939 int ret = -EAGAIN;
1940
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001941 /*
1942 * We cannot support the _NO_COPY case here, because copy needs to
1943 * happen under the zs lock, which does not work with
1944 * MIGRATE_SYNC_NO_COPY workflow.
1945 */
1946 if (mode == MIGRATE_SYNC_NO_COPY)
1947 return -EINVAL;
1948
Minchan Kim48b48002016-07-26 15:23:31 -07001949 VM_BUG_ON_PAGE(!PageMovable(page), page);
1950 VM_BUG_ON_PAGE(!PageIsolated(page), page);
1951
1952 zspage = get_zspage(page);
1953
1954 /* Concurrent compactor cannot migrate any subpage in zspage */
1955 migrate_write_lock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001956 pool = mapping->private_data;
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001957 class = zspage_class(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001958 offset = get_first_obj_offset(page);
1959
1960 spin_lock(&class->lock);
1961 if (!get_zspage_inuse(zspage)) {
Hui Zhu77ff4652017-09-06 16:21:08 -07001962 /*
1963 * Set "offset" to end of the page so that every loops
1964 * skips unnecessary object scanning.
1965 */
1966 offset = PAGE_SIZE;
Minchan Kim48b48002016-07-26 15:23:31 -07001967 }
1968
1969 pos = offset;
1970 s_addr = kmap_atomic(page);
1971 while (pos < PAGE_SIZE) {
Minchan Kim3ae92ac2022-01-21 22:14:01 -08001972 if (obj_allocated(page, s_addr + pos, &handle)) {
Minchan Kim48b48002016-07-26 15:23:31 -07001973 if (!trypin_tag(handle))
1974 goto unpin_objects;
1975 }
1976 pos += class->size;
1977 }
1978
1979 /*
1980 * Here, any user cannot access all objects in the zspage so let's move.
1981 */
1982 d_addr = kmap_atomic(newpage);
1983 memcpy(d_addr, s_addr, PAGE_SIZE);
1984 kunmap_atomic(d_addr);
1985
1986 for (addr = s_addr + offset; addr < s_addr + pos;
1987 addr += class->size) {
Minchan Kim3ae92ac2022-01-21 22:14:01 -08001988 if (obj_allocated(page, addr, &handle)) {
zhouchuangaoecfc2bd2021-05-04 18:40:00 -07001989 BUG_ON(!testpin_tag(handle));
Minchan Kim48b48002016-07-26 15:23:31 -07001990
1991 old_obj = handle_to_obj(handle);
1992 obj_to_location(old_obj, &dummy, &obj_idx);
1993 new_obj = (unsigned long)location_to_obj(newpage,
1994 obj_idx);
1995 new_obj |= BIT(HANDLE_PIN_BIT);
1996 record_obj(handle, new_obj);
1997 }
1998 }
1999
2000 replace_sub_page(class, zspage, newpage, page);
2001 get_page(newpage);
2002
2003 dec_zspage_isolation(zspage);
2004
2005 /*
2006 * Page migration is done so let's putback isolated zspage to
2007 * the list if @page is final isolated subpage in the zspage.
2008 */
Henry Burns701d6782019-08-24 17:55:06 -07002009 if (!is_zspage_isolated(zspage)) {
2010 /*
2011 * We cannot race with zs_destroy_pool() here because we wait
2012 * for isolation to hit zero before we start destroying.
2013 * Also, we ensure that everyone can see pool->destroying before
2014 * we start waiting.
2015 */
Henry Burns1a87aa02019-08-24 17:55:03 -07002016 putback_zspage_deferred(pool, class, zspage);
Henry Burns701d6782019-08-24 17:55:06 -07002017 zs_pool_dec_isolated(pool);
2018 }
Minchan Kim48b48002016-07-26 15:23:31 -07002019
Chanho Minac8f05d2020-01-04 12:59:36 -08002020 if (page_zone(newpage) != page_zone(page)) {
2021 dec_zone_page_state(page, NR_ZSPAGES);
2022 inc_zone_page_state(newpage, NR_ZSPAGES);
2023 }
2024
Minchan Kim48b48002016-07-26 15:23:31 -07002025 reset_page(page);
2026 put_page(page);
2027 page = newpage;
2028
Minchan Kimdd4123f2016-07-26 15:26:50 -07002029 ret = MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07002030unpin_objects:
2031 for (addr = s_addr + offset; addr < s_addr + pos;
2032 addr += class->size) {
Minchan Kim3ae92ac2022-01-21 22:14:01 -08002033 if (obj_allocated(page, addr, &handle)) {
zhouchuangaoecfc2bd2021-05-04 18:40:00 -07002034 BUG_ON(!testpin_tag(handle));
Minchan Kim48b48002016-07-26 15:23:31 -07002035 unpin_tag(handle);
2036 }
2037 }
2038 kunmap_atomic(s_addr);
Minchan Kim48b48002016-07-26 15:23:31 -07002039 spin_unlock(&class->lock);
2040 migrate_write_unlock(zspage);
2041
2042 return ret;
2043}
2044
Colin Ian King4d0a5402018-08-17 15:46:50 -07002045static void zs_page_putback(struct page *page)
Minchan Kim48b48002016-07-26 15:23:31 -07002046{
2047 struct zs_pool *pool;
2048 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07002049 struct address_space *mapping;
2050 struct zspage *zspage;
2051
2052 VM_BUG_ON_PAGE(!PageMovable(page), page);
2053 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2054
2055 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07002056 mapping = page_mapping(page);
2057 pool = mapping->private_data;
Minchan Kim67f1c9c2022-01-21 22:13:51 -08002058 class = zspage_class(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07002059
2060 spin_lock(&class->lock);
2061 dec_zspage_isolation(zspage);
2062 if (!is_zspage_isolated(zspage)) {
Minchan Kim48b48002016-07-26 15:23:31 -07002063 /*
2064 * Due to page_lock, we cannot free zspage immediately
2065 * so let's defer.
2066 */
Henry Burns1a87aa02019-08-24 17:55:03 -07002067 putback_zspage_deferred(pool, class, zspage);
Henry Burns701d6782019-08-24 17:55:06 -07002068 zs_pool_dec_isolated(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002069 }
2070 spin_unlock(&class->lock);
2071}
2072
Colin Ian King4d0a5402018-08-17 15:46:50 -07002073static const struct address_space_operations zsmalloc_aops = {
Minchan Kim48b48002016-07-26 15:23:31 -07002074 .isolate_page = zs_page_isolate,
2075 .migratepage = zs_page_migrate,
2076 .putback_page = zs_page_putback,
2077};
2078
2079static int zs_register_migration(struct zs_pool *pool)
2080{
2081 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2082 if (IS_ERR(pool->inode)) {
2083 pool->inode = NULL;
2084 return 1;
2085 }
2086
2087 pool->inode->i_mapping->private_data = pool;
2088 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2089 return 0;
2090}
2091
Henry Burns701d6782019-08-24 17:55:06 -07002092static bool pool_isolated_are_drained(struct zs_pool *pool)
2093{
2094 return atomic_long_read(&pool->isolated_pages) == 0;
2095}
2096
2097/* Function for resolving migration */
2098static void wait_for_isolated_drain(struct zs_pool *pool)
2099{
2100
2101 /*
2102 * We're in the process of destroying the pool, so there are no
2103 * active allocations. zs_page_isolate() fails for completely free
2104 * zspages, so we need only wait for the zs_pool's isolated
2105 * count to hit zero.
2106 */
2107 wait_event(pool->migration_wait,
2108 pool_isolated_are_drained(pool));
2109}
2110
Minchan Kim48b48002016-07-26 15:23:31 -07002111static void zs_unregister_migration(struct zs_pool *pool)
2112{
Henry Burns701d6782019-08-24 17:55:06 -07002113 pool->destroying = true;
2114 /*
2115 * We need a memory barrier here to ensure global visibility of
2116 * pool->destroying. Thus pool->isolated pages will either be 0 in which
2117 * case we don't care, or it will be > 0 and pool->destroying will
2118 * ensure that we wake up once isolation hits 0.
2119 */
2120 smp_mb();
2121 wait_for_isolated_drain(pool); /* This can block */
Minchan Kim48b48002016-07-26 15:23:31 -07002122 flush_work(&pool->free_work);
Markus Elfringc3491ec2016-07-28 15:48:59 -07002123 iput(pool->inode);
Minchan Kim48b48002016-07-26 15:23:31 -07002124}
2125
2126/*
2127 * Caller should hold page_lock of all pages in the zspage
2128 * In here, we cannot use zspage meta data.
2129 */
2130static void async_free_zspage(struct work_struct *work)
2131{
2132 int i;
2133 struct size_class *class;
2134 unsigned int class_idx;
2135 enum fullness_group fullness;
2136 struct zspage *zspage, *tmp;
2137 LIST_HEAD(free_pages);
2138 struct zs_pool *pool = container_of(work, struct zs_pool,
2139 free_work);
2140
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002141 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim48b48002016-07-26 15:23:31 -07002142 class = pool->size_class[i];
2143 if (class->index != i)
2144 continue;
2145
2146 spin_lock(&class->lock);
2147 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2148 spin_unlock(&class->lock);
2149 }
2150
2151
2152 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2153 list_del(&zspage->list);
2154 lock_zspage(zspage);
2155
2156 get_zspage_mapping(zspage, &class_idx, &fullness);
2157 VM_BUG_ON(fullness != ZS_EMPTY);
2158 class = pool->size_class[class_idx];
2159 spin_lock(&class->lock);
Miaohe Lin33848332021-06-30 18:53:04 -07002160 __free_zspage(pool, class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07002161 spin_unlock(&class->lock);
2162 }
2163};
2164
2165static void kick_deferred_free(struct zs_pool *pool)
2166{
2167 schedule_work(&pool->free_work);
2168}
2169
2170static void init_deferred_free(struct zs_pool *pool)
2171{
2172 INIT_WORK(&pool->free_work, async_free_zspage);
2173}
2174
2175static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2176{
2177 struct page *page = get_first_page(zspage);
2178
2179 do {
2180 WARN_ON(!trylock_page(page));
2181 __SetPageMovable(page, pool->inode->i_mapping);
2182 unlock_page(page);
2183 } while ((page = get_next_page(page)) != NULL);
2184}
2185#endif
2186
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002187/*
2188 *
2189 * Based on the number of unused allocated objects calculate
2190 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002191 */
2192static unsigned long zs_can_compact(struct size_class *class)
2193{
2194 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002195 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2196 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002197
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002198 if (obj_allocated <= obj_used)
2199 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002200
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002201 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002202 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002203
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002204 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002205}
2206
Rokudo Yan23959282021-02-25 17:18:31 -08002207static unsigned long __zs_compact(struct zs_pool *pool,
2208 struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002209{
Minchan Kim312fcae2015-04-15 16:15:30 -07002210 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002211 struct zspage *src_zspage;
2212 struct zspage *dst_zspage = NULL;
Rokudo Yan23959282021-02-25 17:18:31 -08002213 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002214
Minchan Kim312fcae2015-04-15 16:15:30 -07002215 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002216 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002217
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002218 if (!zs_can_compact(class))
2219 break;
2220
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002221 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002222 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002223
Minchan Kim37836892016-07-26 15:23:23 -07002224 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002225 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002226 /*
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07002227 * If there is no more space in dst_page, resched
2228 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002229 */
2230 if (!migrate_zspage(pool, class, &cc))
2231 break;
2232
Minchan Kim4aa409c2016-07-26 15:23:26 -07002233 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002234 }
2235
2236 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002237 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002238 break;
2239
Minchan Kim4aa409c2016-07-26 15:23:26 -07002240 putback_zspage(class, dst_zspage);
2241 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002242 free_zspage(pool, class, src_zspage);
Rokudo Yan23959282021-02-25 17:18:31 -08002243 pages_freed += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002244 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002245 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002246 cond_resched();
2247 spin_lock(&class->lock);
2248 }
2249
Minchan Kim37836892016-07-26 15:23:23 -07002250 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002251 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002252
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002253 spin_unlock(&class->lock);
Rokudo Yan23959282021-02-25 17:18:31 -08002254
2255 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002256}
2257
2258unsigned long zs_compact(struct zs_pool *pool)
2259{
2260 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002261 struct size_class *class;
Rokudo Yan23959282021-02-25 17:18:31 -08002262 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002263
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002264 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002265 class = pool->size_class[i];
2266 if (!class)
2267 continue;
2268 if (class->index != i)
2269 continue;
Rokudo Yan23959282021-02-25 17:18:31 -08002270 pages_freed += __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002271 }
Rokudo Yan23959282021-02-25 17:18:31 -08002272 atomic_long_add(pages_freed, &pool->stats.pages_compacted);
Minchan Kim312fcae2015-04-15 16:15:30 -07002273
Rokudo Yan23959282021-02-25 17:18:31 -08002274 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002275}
2276EXPORT_SYMBOL_GPL(zs_compact);
2277
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002278void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2279{
2280 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2281}
2282EXPORT_SYMBOL_GPL(zs_pool_stats);
2283
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002284static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2285 struct shrink_control *sc)
2286{
2287 unsigned long pages_freed;
2288 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2289 shrinker);
2290
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002291 /*
2292 * Compact classes and calculate compaction delta.
2293 * Can run concurrently with a manually triggered
2294 * (by user) compaction.
2295 */
Rokudo Yan23959282021-02-25 17:18:31 -08002296 pages_freed = zs_compact(pool);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002297
2298 return pages_freed ? pages_freed : SHRINK_STOP;
2299}
2300
2301static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2302 struct shrink_control *sc)
2303{
2304 int i;
2305 struct size_class *class;
2306 unsigned long pages_to_free = 0;
2307 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2308 shrinker);
2309
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002310 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002311 class = pool->size_class[i];
2312 if (!class)
2313 continue;
2314 if (class->index != i)
2315 continue;
2316
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002317 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002318 }
2319
2320 return pages_to_free;
2321}
2322
2323static void zs_unregister_shrinker(struct zs_pool *pool)
2324{
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002325 unregister_shrinker(&pool->shrinker);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002326}
2327
2328static int zs_register_shrinker(struct zs_pool *pool)
2329{
2330 pool->shrinker.scan_objects = zs_shrinker_scan;
2331 pool->shrinker.count_objects = zs_shrinker_count;
2332 pool->shrinker.batch = 0;
2333 pool->shrinker.seeks = DEFAULT_SEEKS;
2334
2335 return register_shrinker(&pool->shrinker);
2336}
2337
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002338/**
2339 * zs_create_pool - Creates an allocation pool to work from.
Ganesh Mahendranfd854462016-07-28 15:47:54 -07002340 * @name: pool name to be created
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002341 *
2342 * This function must be called before anything when using
2343 * the zsmalloc allocator.
2344 *
2345 * On success, a pointer to the newly created pool is returned,
2346 * otherwise NULL.
2347 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002348struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002349{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002350 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002351 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002352 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002353
Ganesh Mahendran18136652014-12-12 16:57:10 -08002354 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002355 if (!pool)
2356 return NULL;
2357
Minchan Kim48b48002016-07-26 15:23:31 -07002358 init_deferred_free(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002359
Minchan Kim2e40e162015-04-15 16:15:23 -07002360 pool->name = kstrdup(name, GFP_KERNEL);
2361 if (!pool->name)
2362 goto err;
2363
Andrew Morton441e2542019-08-30 16:04:35 -07002364#ifdef CONFIG_COMPACTION
Henry Burns701d6782019-08-24 17:55:06 -07002365 init_waitqueue_head(&pool->migration_wait);
Andrew Morton441e2542019-08-30 16:04:35 -07002366#endif
Henry Burns701d6782019-08-24 17:55:06 -07002367
Minchan Kim37836892016-07-26 15:23:23 -07002368 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002369 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002370
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002371 /*
Xishi Qiu399d8ee2017-02-22 15:45:01 -08002372 * Iterate reversely, because, size of size_class that we want to use
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002373 * for merging should be larger or equal to current size.
2374 */
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002375 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002376 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002377 int pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002378 int objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002379 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002380 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002381
2382 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2383 if (size > ZS_MAX_ALLOC_SIZE)
2384 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002385 pages_per_zspage = get_pages_per_zspage(size);
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002386 objs_per_zspage = pages_per_zspage * PAGE_SIZE / size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002387
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002388 /*
Sergey Senozhatsky010b4952018-04-05 16:24:43 -07002389 * We iterate from biggest down to smallest classes,
2390 * so huge_class_size holds the size of the first huge
2391 * class. Any object bigger than or equal to that will
2392 * endup in the huge class.
2393 */
2394 if (pages_per_zspage != 1 && objs_per_zspage != 1 &&
2395 !huge_class_size) {
2396 huge_class_size = size;
2397 /*
2398 * The object uses ZS_HANDLE_SIZE bytes to store the
2399 * handle. We need to subtract it, because zs_malloc()
2400 * unconditionally adds handle size before it performs
2401 * size class search - so object may be smaller than
2402 * huge class size, yet it still can end up in the huge
2403 * class because it grows by ZS_HANDLE_SIZE extra bytes
2404 * right before class lookup.
2405 */
2406 huge_class_size -= (ZS_HANDLE_SIZE - 1);
2407 }
2408
2409 /*
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002410 * size_class is used for normal zsmalloc operation such
2411 * as alloc/free for that size. Although it is natural that we
2412 * have one size_class for each size, there is a chance that we
2413 * can get more memory utilization if we use one size_class for
2414 * many different sizes whose size_class have same
2415 * characteristics. So, we makes size_class point to
2416 * previous size_class if possible.
2417 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002418 if (prev_class) {
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002419 if (can_merge(prev_class, pages_per_zspage, objs_per_zspage)) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002420 pool->size_class[i] = prev_class;
2421 continue;
2422 }
2423 }
2424
2425 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2426 if (!class)
2427 goto err;
2428
Nitin Gupta61989a82012-01-09 16:51:56 -06002429 class->size = size;
2430 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002431 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002432 class->objs_per_zspage = objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002433 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002434 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002435 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2436 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002437 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002438
2439 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002440 }
2441
Dan Streetmand34f6152016-05-20 16:59:56 -07002442 /* debug only, don't abort if it fails */
2443 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002444
Minchan Kim48b48002016-07-26 15:23:31 -07002445 if (zs_register_migration(pool))
2446 goto err;
2447
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002448 /*
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002449 * Not critical since shrinker is only used to trigger internal
2450 * defragmentation of the pool which is pretty optional thing. If
2451 * registration fails we still can use the pool normally and user can
2452 * trigger compaction manually. Thus, ignore return code.
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002453 */
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002454 zs_register_shrinker(pool);
2455
Nitin Gupta61989a82012-01-09 16:51:56 -06002456 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002457
2458err:
2459 zs_destroy_pool(pool);
2460 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002461}
2462EXPORT_SYMBOL_GPL(zs_create_pool);
2463
2464void zs_destroy_pool(struct zs_pool *pool)
2465{
2466 int i;
2467
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002468 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002469 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002470 zs_pool_stat_destroy(pool);
2471
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002472 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002473 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002474 struct size_class *class = pool->size_class[i];
2475
2476 if (!class)
2477 continue;
2478
2479 if (class->index != i)
2480 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002481
Minchan Kim48b48002016-07-26 15:23:31 -07002482 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002483 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002484 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002485 class->size, fg);
2486 }
2487 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002488 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002489 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002490
Minchan Kim37836892016-07-26 15:23:23 -07002491 destroy_cache(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002492 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002493 kfree(pool);
2494}
2495EXPORT_SYMBOL_GPL(zs_destroy_pool);
2496
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002497static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002498{
Minchan Kim48b48002016-07-26 15:23:31 -07002499 int ret;
2500
2501 ret = zsmalloc_mount();
2502 if (ret)
2503 goto out;
2504
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002505 ret = cpuhp_setup_state(CPUHP_MM_ZS_PREPARE, "mm/zsmalloc:prepare",
2506 zs_cpu_prepare, zs_cpu_dead);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002507 if (ret)
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002508 goto hp_setup_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002509
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002510#ifdef CONFIG_ZPOOL
2511 zpool_register_driver(&zs_zpool_driver);
2512#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002513
Dan Streetman4abaac92016-05-26 15:16:27 -07002514 zs_stat_init();
2515
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002516 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002517
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002518hp_setup_fail:
Minchan Kim48b48002016-07-26 15:23:31 -07002519 zsmalloc_unmount();
2520out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002521 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002522}
Nitin Gupta61989a82012-01-09 16:51:56 -06002523
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002524static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002525{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002526#ifdef CONFIG_ZPOOL
2527 zpool_unregister_driver(&zs_zpool_driver);
2528#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002529 zsmalloc_unmount();
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002530 cpuhp_remove_state(CPUHP_MM_ZS_PREPARE);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002531
2532 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002533}
Ben Hutchings069f1012012-06-20 02:31:11 +01002534
2535module_init(zs_init);
2536module_exit(zs_exit);
2537
2538MODULE_LICENSE("Dual BSD/GPL");
2539MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");