blob: 68e8831068f4b52bb792fb0d5bc29dbee996039d [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
Minchan Kim48b48002016-07-26 15:23:31 -070020 * page->freelist(index): links together all component pages of a zspage
21 * For the huge page, this is always 0, so we use this field
22 * to store handle.
Ganesh Mahendranfd854462016-07-28 15:47:54 -070023 * page->units: 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
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800161enum zs_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{
Minchan Kim48b48002016-07-26 15:23:31 -0700492 return page->units;
Minchan Kim4f420472016-07-26 15:23:17 -0700493}
494
495static inline void set_first_obj_offset(struct page *page, int offset)
496{
Minchan Kim48b48002016-07-26 15:23:31 -0700497 page->units = 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 Kim37836892016-07-26 15:23:23 -0700520static void set_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700521 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600522 enum fullness_group fullness)
523{
Minchan Kim37836892016-07-26 15:23:23 -0700524 zspage->class = class_idx;
525 zspage->fullness = fullness;
Nitin Gupta61989a82012-01-09 16:51:56 -0600526}
527
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900528/*
529 * zsmalloc divides the pool into various size classes where each
530 * class maintains a list of zspages where each zspage is divided
531 * into equal sized chunks. Each allocation falls into one of these
532 * classes depending on its size. This function returns index of the
Shijie Luocb152a12021-05-06 18:05:51 -0700533 * size class which has chunk size big enough to hold the given size.
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900534 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600535static int get_size_class_index(int size)
536{
537 int idx = 0;
538
539 if (likely(size > ZS_MIN_ALLOC_SIZE))
540 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
541 ZS_SIZE_CLASS_DELTA);
542
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700543 return min_t(int, ZS_SIZE_CLASSES - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600544}
545
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700546/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700547static inline void zs_stat_inc(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700548 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700549{
Minchan Kim48b48002016-07-26 15:23:31 -0700550 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700551}
552
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700553/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700554static inline void zs_stat_dec(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700555 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700556{
Minchan Kim48b48002016-07-26 15:23:31 -0700557 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700558}
559
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700560/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700561static inline unsigned long zs_stat_get(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700562 int type)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700563{
Minchan Kim48b48002016-07-26 15:23:31 -0700564 return class->stats.objs[type];
Minchan Kim248ca1b2015-04-15 16:15:42 -0700565}
566
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700567#ifdef CONFIG_ZSMALLOC_STAT
568
Dan Streetman4abaac92016-05-26 15:16:27 -0700569static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700570{
Dan Streetman4abaac92016-05-26 15:16:27 -0700571 if (!debugfs_initialized()) {
572 pr_warn("debugfs not available, stat dir not created\n");
573 return;
574 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700575
576 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700577}
578
579static void __exit zs_stat_exit(void)
580{
581 debugfs_remove_recursive(zs_stat_root);
582}
583
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700584static unsigned long zs_can_compact(struct size_class *class);
585
Minchan Kim248ca1b2015-04-15 16:15:42 -0700586static int zs_stats_size_show(struct seq_file *s, void *v)
587{
588 int i;
589 struct zs_pool *pool = s->private;
590 struct size_class *class;
591 int objs_per_zspage;
592 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700593 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700594 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
595 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700596 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700597
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700598 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700599 "class", "size", "almost_full", "almost_empty",
600 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700601 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700602
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700603 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim248ca1b2015-04-15 16:15:42 -0700604 class = pool->size_class[i];
605
606 if (class->index != i)
607 continue;
608
609 spin_lock(&class->lock);
610 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
611 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
612 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
613 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700614 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700615 spin_unlock(&class->lock);
616
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700617 objs_per_zspage = class->objs_per_zspage;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700618 pages_used = obj_allocated / objs_per_zspage *
619 class->pages_per_zspage;
620
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700621 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
622 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700623 i, class->size, class_almost_full, class_almost_empty,
624 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700625 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700626
627 total_class_almost_full += class_almost_full;
628 total_class_almost_empty += class_almost_empty;
629 total_objs += obj_allocated;
630 total_used_objs += obj_used;
631 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700632 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700633 }
634
635 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700636 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700637 "Total", "", total_class_almost_full,
638 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700639 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700640
641 return 0;
642}
Andy Shevchenko5ad35092018-04-05 16:23:16 -0700643DEFINE_SHOW_ATTRIBUTE(zs_stats_size);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700644
Dan Streetmand34f6152016-05-20 16:59:56 -0700645static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700646{
Dan Streetman4abaac92016-05-26 15:16:27 -0700647 if (!zs_stat_root) {
648 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700649 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700650 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700651
Greg Kroah-Hartman42685092019-01-22 16:21:09 +0100652 pool->stat_dentry = debugfs_create_dir(name, zs_stat_root);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700653
Greg Kroah-Hartman42685092019-01-22 16:21:09 +0100654 debugfs_create_file("classes", S_IFREG | 0444, pool->stat_dentry, pool,
655 &zs_stats_size_fops);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700656}
657
658static void zs_pool_stat_destroy(struct zs_pool *pool)
659{
660 debugfs_remove_recursive(pool->stat_dentry);
661}
662
663#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700664static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700665{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700666}
667
668static void __exit zs_stat_exit(void)
669{
670}
671
Dan Streetmand34f6152016-05-20 16:59:56 -0700672static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700673{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700674}
675
676static inline void zs_pool_stat_destroy(struct zs_pool *pool)
677{
678}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700679#endif
680
Minchan Kim48b48002016-07-26 15:23:31 -0700681
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900682/*
683 * For each size class, zspages are divided into different groups
684 * depending on how "full" they are. This was done so that we could
685 * easily find empty or nearly empty zspages when we try to shrink
686 * the pool (not yet implemented). This function returns fullness
687 * status of the given page.
688 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700689static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700690 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600691{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700692 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600693 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700694
Minchan Kim37836892016-07-26 15:23:23 -0700695 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700696 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600697
698 if (inuse == 0)
699 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700700 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600701 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700702 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600703 fg = ZS_ALMOST_EMPTY;
704 else
705 fg = ZS_ALMOST_FULL;
706
707 return fg;
708}
709
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900710/*
711 * Each size class maintains various freelists and zspages are assigned
712 * to one of these freelists based on the number of live objects they
713 * have. This functions inserts the given zspage into the freelist
714 * identified by <class, fullness_group>.
715 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700716static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700717 struct zspage *zspage,
718 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600719{
Minchan Kim37836892016-07-26 15:23:23 -0700720 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600721
Minchan Kim48b48002016-07-26 15:23:31 -0700722 zs_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700723 head = list_first_entry_or_null(&class->fullness_list[fullness],
724 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700725 /*
Minchan Kim37836892016-07-26 15:23:23 -0700726 * We want to see more ZS_FULL pages and less almost empty/full.
727 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700728 */
Miaohe Lin110ceb82020-12-14 19:14:22 -0800729 if (head && get_zspage_inuse(zspage) < get_zspage_inuse(head))
730 list_add(&zspage->list, &head->list);
731 else
732 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600733}
734
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900735/*
736 * This function removes the given zspage from the freelist identified
737 * by <class, fullness_group>.
738 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700739static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700740 struct zspage *zspage,
741 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600742{
Minchan Kim37836892016-07-26 15:23:23 -0700743 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Minchan Kim48b48002016-07-26 15:23:31 -0700744 VM_BUG_ON(is_zspage_isolated(zspage));
Nitin Gupta61989a82012-01-09 16:51:56 -0600745
Minchan Kim37836892016-07-26 15:23:23 -0700746 list_del_init(&zspage->list);
Minchan Kim48b48002016-07-26 15:23:31 -0700747 zs_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600748}
749
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900750/*
751 * Each size class maintains zspages in different fullness groups depending
752 * on the number of live objects they contain. When allocating or freeing
753 * objects, the fullness status of the page can change, say, from ALMOST_FULL
754 * to ALMOST_EMPTY when freeing an object. This function checks if such
755 * a status change has occurred for the given page and accordingly moves the
756 * page from the freelist of the old fullness group to that of the new
757 * fullness group.
758 */
Minchan Kimc7806262015-04-15 16:15:26 -0700759static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700760 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600761{
762 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600763 enum fullness_group currfg, newfg;
764
Minchan Kim37836892016-07-26 15:23:23 -0700765 get_zspage_mapping(zspage, &class_idx, &currfg);
766 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600767 if (newfg == currfg)
768 goto out;
769
Minchan Kim48b48002016-07-26 15:23:31 -0700770 if (!is_zspage_isolated(zspage)) {
771 remove_zspage(class, zspage, currfg);
772 insert_zspage(class, zspage, newfg);
773 }
774
Minchan Kim37836892016-07-26 15:23:23 -0700775 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600776
777out:
778 return newfg;
779}
780
781/*
782 * We have to decide on how many pages to link together
783 * to form a zspage for each size class. This is important
784 * to reduce wastage due to unusable space left at end of
785 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700786 * wastage = Zp % class_size
787 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600788 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
789 *
790 * For example, for size class of 3/8 * PAGE_SIZE, we should
791 * link together 3 PAGE_SIZE sized pages to form a zspage
792 * since then we can perfectly fit in 8 such objects.
793 */
Minchan Kim2e3b61542012-05-03 15:40:39 +0900794static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600795{
796 int i, max_usedpc = 0;
797 /* zspage order which gives maximum used size per KB */
798 int max_usedpc_order = 1;
799
Seth Jennings84d4faa2012-03-05 11:33:21 -0600800 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600801 int zspage_size;
802 int waste, usedpc;
803
804 zspage_size = i * PAGE_SIZE;
805 waste = zspage_size % class_size;
806 usedpc = (zspage_size - waste) * 100 / zspage_size;
807
808 if (usedpc > max_usedpc) {
809 max_usedpc = usedpc;
810 max_usedpc_order = i;
811 }
812 }
813
814 return max_usedpc_order;
815}
816
Minchan Kim37836892016-07-26 15:23:23 -0700817static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600818{
Miaohe Lina6c5e0f2021-02-25 17:18:34 -0800819 struct zspage *zspage = (struct zspage *)page_private(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700820
821 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
822 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600823}
824
825static struct page *get_next_page(struct page *page)
826{
Minchan Kim48b48002016-07-26 15:23:31 -0700827 if (unlikely(PageHugeObject(page)))
828 return NULL;
829
830 return page->freelist;
Nitin Gupta61989a82012-01-09 16:51:56 -0600831}
832
Minchan Kimbfd093f2016-07-26 15:23:28 -0700833/**
834 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700835 * @obj: the encoded object value
Minchan Kimbfd093f2016-07-26 15:23:28 -0700836 * @page: page object resides in zspage
837 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800838 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700839static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700840 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600841{
Minchan Kim312fcae2015-04-15 16:15:30 -0700842 obj >>= OBJ_TAG_BITS;
843 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
844 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600845}
846
Minchan Kimbfd093f2016-07-26 15:23:28 -0700847/**
848 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
849 * @page: page object resides in zspage
850 * @obj_idx: object index
851 */
852static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
853{
854 unsigned long obj;
855
856 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
857 obj |= obj_idx & OBJ_INDEX_MASK;
858 obj <<= OBJ_TAG_BITS;
859
860 return obj;
861}
862
Minchan Kim2e40e162015-04-15 16:15:23 -0700863static unsigned long handle_to_obj(unsigned long handle)
864{
865 return *(unsigned long *)handle;
866}
867
Minchan Kim48b48002016-07-26 15:23:31 -0700868static unsigned long obj_to_head(struct page *page, void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700869{
Minchan Kim48b48002016-07-26 15:23:31 -0700870 if (unlikely(PageHugeObject(page))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700871 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim37836892016-07-26 15:23:23 -0700872 return page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700873 } else
874 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700875}
876
Minchan Kim48b48002016-07-26 15:23:31 -0700877static inline int testpin_tag(unsigned long handle)
878{
879 return bit_spin_is_locked(HANDLE_PIN_BIT, (unsigned long *)handle);
880}
881
Minchan Kim312fcae2015-04-15 16:15:30 -0700882static inline int trypin_tag(unsigned long handle)
883{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700884 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700885}
886
Jules Irenge70c7ec92020-04-06 20:08:27 -0700887static void pin_tag(unsigned long handle) __acquires(bitlock)
Minchan Kim312fcae2015-04-15 16:15:30 -0700888{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700889 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700890}
891
Jules Irengebc22b182020-04-06 20:08:30 -0700892static void unpin_tag(unsigned long handle) __releases(bitlock)
Minchan Kim312fcae2015-04-15 16:15:30 -0700893{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700894 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700895}
896
Nitin Guptaf4477e92012-04-02 09:13:56 -0500897static void reset_page(struct page *page)
898{
Minchan Kim48b48002016-07-26 15:23:31 -0700899 __ClearPageMovable(page);
Ganesh Mahendran18fd06b2016-07-28 15:48:00 -0700900 ClearPagePrivate(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500901 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700902 page_mapcount_reset(page);
903 ClearPageHugeObject(page);
904 page->freelist = NULL;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500905}
906
Colin Ian King4d0a5402018-08-17 15:46:50 -0700907static int trylock_zspage(struct zspage *zspage)
Minchan Kim48b48002016-07-26 15:23:31 -0700908{
909 struct page *cursor, *fail;
910
911 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
912 get_next_page(cursor)) {
913 if (!trylock_page(cursor)) {
914 fail = cursor;
915 goto unlock;
916 }
917 }
918
919 return 1;
920unlock:
921 for (cursor = get_first_page(zspage); cursor != fail; cursor =
922 get_next_page(cursor))
923 unlock_page(cursor);
924
925 return 0;
926}
927
928static void __free_zspage(struct zs_pool *pool, struct size_class *class,
929 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600930{
Minchan Kim37836892016-07-26 15:23:23 -0700931 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700932 enum fullness_group fg;
933 unsigned int class_idx;
934
935 get_zspage_mapping(zspage, &class_idx, &fg);
936
937 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -0600938
Minchan Kim37836892016-07-26 15:23:23 -0700939 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -0700940 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -0600941
Minchan Kim48b48002016-07-26 15:23:31 -0700942 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -0700943 do {
Minchan Kim48b48002016-07-26 15:23:31 -0700944 VM_BUG_ON_PAGE(!PageLocked(page), page);
945 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -0700946 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700947 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -0700948 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -0700949 put_page(page);
950 page = next;
951 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -0600952
Minchan Kim37836892016-07-26 15:23:23 -0700953 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700954
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700955 zs_stat_dec(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700956 atomic_long_sub(class->pages_per_zspage,
957 &pool->pages_allocated);
958}
959
960static void free_zspage(struct zs_pool *pool, struct size_class *class,
961 struct zspage *zspage)
962{
963 VM_BUG_ON(get_zspage_inuse(zspage));
964 VM_BUG_ON(list_empty(&zspage->list));
965
966 if (!trylock_zspage(zspage)) {
967 kick_deferred_free(pool);
968 return;
969 }
970
971 remove_zspage(class, zspage, ZS_EMPTY);
972 __free_zspage(pool, class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600973}
974
975/* Initialize a newly allocated zspage */
Minchan Kim37836892016-07-26 15:23:23 -0700976static void init_zspage(struct size_class *class, struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600977{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700978 unsigned int freeobj = 1;
Nitin Gupta61989a82012-01-09 16:51:56 -0600979 unsigned long off = 0;
Minchan Kim48b48002016-07-26 15:23:31 -0700980 struct page *page = get_first_page(zspage);
Minchan Kim830e4bc2016-05-20 16:59:39 -0700981
Nitin Gupta61989a82012-01-09 16:51:56 -0600982 while (page) {
983 struct page *next_page;
984 struct link_free *link;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800985 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -0600986
Minchan Kim37836892016-07-26 15:23:23 -0700987 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -0600988
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800989 vaddr = kmap_atomic(page);
990 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600991
Dan Streetman5538c562014-10-09 15:30:01 -0700992 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -0700993 link->next = freeobj++ << OBJ_TAG_BITS;
Dan Streetman5538c562014-10-09 15:30:01 -0700994 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600995 }
996
997 /*
998 * We now come to the last (full or partial) object on this
999 * page, which must point to the first object on the next
1000 * page (if present)
1001 */
1002 next_page = get_next_page(page);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001003 if (next_page) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001004 link->next = freeobj++ << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001005 } else {
1006 /*
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001007 * Reset OBJ_TAG_BITS bit to last link to tell
Minchan Kimbfd093f2016-07-26 15:23:28 -07001008 * whether it's allocated object or not.
1009 */
Nick Desaulniers01a6ad92018-01-31 16:20:15 -08001010 link->next = -1UL << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001011 }
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001012 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -06001013 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -07001014 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -06001015 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001016
Minchan Kimbfd093f2016-07-26 15:23:28 -07001017 set_freeobj(zspage, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001018}
1019
Minchan Kim48b48002016-07-26 15:23:31 -07001020static void create_page_chain(struct size_class *class, struct zspage *zspage,
1021 struct page *pages[])
Nitin Gupta61989a82012-01-09 16:51:56 -06001022{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001023 int i;
1024 struct page *page;
1025 struct page *prev_page = NULL;
Minchan Kim48b48002016-07-26 15:23:31 -07001026 int nr_pages = class->pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001027
1028 /*
1029 * Allocate individual pages and link them together as:
Minchan Kim48b48002016-07-26 15:23:31 -07001030 * 1. all pages are linked together using page->freelist
Minchan Kim37836892016-07-26 15:23:23 -07001031 * 2. each sub-page point to zspage using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001032 *
Minchan Kim37836892016-07-26 15:23:23 -07001033 * we set PG_private to identify the first page (i.e. no other sub-page
Yisheng Xie22c5cef2017-02-24 14:59:42 -08001034 * has this flag set).
Nitin Gupta61989a82012-01-09 16:51:56 -06001035 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001036 for (i = 0; i < nr_pages; i++) {
1037 page = pages[i];
Minchan Kim37836892016-07-26 15:23:23 -07001038 set_page_private(page, (unsigned long)zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001039 page->freelist = NULL;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001040 if (i == 0) {
Minchan Kim37836892016-07-26 15:23:23 -07001041 zspage->first_page = page;
Minchan Kima27545bf2012-04-25 15:23:09 +09001042 SetPagePrivate(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001043 if (unlikely(class->objs_per_zspage == 1 &&
1044 class->pages_per_zspage == 1))
1045 SetPageHugeObject(page);
Minchan Kim37836892016-07-26 15:23:23 -07001046 } else {
Minchan Kim48b48002016-07-26 15:23:31 -07001047 prev_page->freelist = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001048 }
Nitin Gupta61989a82012-01-09 16:51:56 -06001049 prev_page = page;
1050 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001051}
Nitin Gupta61989a82012-01-09 16:51:56 -06001052
Minchan Kimbdb0af72016-07-26 15:23:20 -07001053/*
1054 * Allocate a zspage for the given size class
1055 */
Minchan Kim37836892016-07-26 15:23:23 -07001056static struct zspage *alloc_zspage(struct zs_pool *pool,
1057 struct size_class *class,
1058 gfp_t gfp)
Minchan Kimbdb0af72016-07-26 15:23:20 -07001059{
1060 int i;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001061 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Minchan Kim37836892016-07-26 15:23:23 -07001062 struct zspage *zspage = cache_alloc_zspage(pool, gfp);
1063
1064 if (!zspage)
1065 return NULL;
1066
Minchan Kim48b48002016-07-26 15:23:31 -07001067 zspage->magic = ZSPAGE_MAGIC;
1068 migrate_lock_init(zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001069
Minchan Kimbdb0af72016-07-26 15:23:20 -07001070 for (i = 0; i < class->pages_per_zspage; i++) {
1071 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001072
Minchan Kim37836892016-07-26 15:23:23 -07001073 page = alloc_page(gfp);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001074 if (!page) {
Minchan Kim91537fe2016-07-26 15:24:45 -07001075 while (--i >= 0) {
1076 dec_zone_page_state(pages[i], NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001077 __free_page(pages[i]);
Minchan Kim91537fe2016-07-26 15:24:45 -07001078 }
Minchan Kim37836892016-07-26 15:23:23 -07001079 cache_free_zspage(pool, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001080 return NULL;
1081 }
Minchan Kim91537fe2016-07-26 15:24:45 -07001082
1083 inc_zone_page_state(page, NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001084 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001085 }
1086
Minchan Kim48b48002016-07-26 15:23:31 -07001087 create_page_chain(class, zspage, pages);
Minchan Kim37836892016-07-26 15:23:23 -07001088 init_zspage(class, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001089
Minchan Kim37836892016-07-26 15:23:23 -07001090 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001091}
1092
Minchan Kim37836892016-07-26 15:23:23 -07001093static struct zspage *find_get_zspage(struct size_class *class)
Nitin Gupta61989a82012-01-09 16:51:56 -06001094{
1095 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001096 struct zspage *zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001097
Minchan Kim48b48002016-07-26 15:23:31 -07001098 for (i = ZS_ALMOST_FULL; i >= ZS_EMPTY; i--) {
Minchan Kim37836892016-07-26 15:23:23 -07001099 zspage = list_first_entry_or_null(&class->fullness_list[i],
1100 struct zspage, list);
1101 if (zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001102 break;
1103 }
1104
Minchan Kim37836892016-07-26 15:23:23 -07001105 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001106}
1107
Seth Jenningsf5536462012-07-18 11:55:56 -05001108static inline int __zs_cpu_up(struct mapping_area *area)
1109{
1110 /*
1111 * Make sure we don't leak memory if a cpu UP notification
1112 * and zs_init() race and both call zs_cpu_up() on the same cpu
1113 */
1114 if (area->vm_buf)
1115 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001116 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001117 if (!area->vm_buf)
1118 return -ENOMEM;
1119 return 0;
1120}
1121
1122static inline void __zs_cpu_down(struct mapping_area *area)
1123{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001124 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001125 area->vm_buf = NULL;
1126}
1127
1128static void *__zs_map_object(struct mapping_area *area,
1129 struct page *pages[2], int off, int size)
1130{
Seth Jennings5f6019022012-07-02 16:15:49 -05001131 int sizes[2];
1132 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001133 char *buf = area->vm_buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001134
Seth Jenningsf5536462012-07-18 11:55:56 -05001135 /* disable page faults to match kmap_atomic() return conditions */
1136 pagefault_disable();
1137
1138 /* no read fastpath */
1139 if (area->vm_mm == ZS_MM_WO)
1140 goto out;
Seth Jennings5f6019022012-07-02 16:15:49 -05001141
1142 sizes[0] = PAGE_SIZE - off;
1143 sizes[1] = size - sizes[0];
1144
Seth Jennings5f6019022012-07-02 16:15:49 -05001145 /* copy object to per-cpu buffer */
1146 addr = kmap_atomic(pages[0]);
1147 memcpy(buf, addr + off, sizes[0]);
1148 kunmap_atomic(addr);
1149 addr = kmap_atomic(pages[1]);
1150 memcpy(buf + sizes[0], addr, sizes[1]);
1151 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001152out:
1153 return area->vm_buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001154}
1155
Seth Jenningsf5536462012-07-18 11:55:56 -05001156static void __zs_unmap_object(struct mapping_area *area,
1157 struct page *pages[2], int off, int size)
Seth Jennings5f6019022012-07-02 16:15:49 -05001158{
Seth Jennings5f6019022012-07-02 16:15:49 -05001159 int sizes[2];
1160 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001161 char *buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001162
Seth Jenningsf5536462012-07-18 11:55:56 -05001163 /* no write fastpath */
1164 if (area->vm_mm == ZS_MM_RO)
1165 goto out;
Seth Jennings5f6019022012-07-02 16:15:49 -05001166
Minchan Kim7b60a682015-04-15 16:15:39 -07001167 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001168 buf = buf + ZS_HANDLE_SIZE;
1169 size -= ZS_HANDLE_SIZE;
1170 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001171
Seth Jennings5f6019022012-07-02 16:15:49 -05001172 sizes[0] = PAGE_SIZE - off;
1173 sizes[1] = size - sizes[0];
1174
1175 /* copy per-cpu buffer to object */
1176 addr = kmap_atomic(pages[0]);
1177 memcpy(addr + off, buf, sizes[0]);
1178 kunmap_atomic(addr);
1179 addr = kmap_atomic(pages[1]);
1180 memcpy(addr, buf + sizes[0], sizes[1]);
1181 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001182
1183out:
1184 /* enable page faults to match kunmap_atomic() return conditions */
1185 pagefault_enable();
Seth Jennings5f6019022012-07-02 16:15:49 -05001186}
Nitin Gupta61989a82012-01-09 16:51:56 -06001187
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001188static int zs_cpu_prepare(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001189{
Nitin Gupta61989a82012-01-09 16:51:56 -06001190 struct mapping_area *area;
1191
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001192 area = &per_cpu(zs_map_area, cpu);
1193 return __zs_cpu_up(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001194}
1195
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001196static int zs_cpu_dead(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001197{
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001198 struct mapping_area *area;
Nitin Gupta61989a82012-01-09 16:51:56 -06001199
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001200 area = &per_cpu(zs_map_area, cpu);
1201 __zs_cpu_down(area);
1202 return 0;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001203}
1204
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001205static bool can_merge(struct size_class *prev, int pages_per_zspage,
1206 int objs_per_zspage)
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001207{
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001208 if (prev->pages_per_zspage == pages_per_zspage &&
1209 prev->objs_per_zspage == objs_per_zspage)
1210 return true;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001211
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001212 return false;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001213}
1214
Minchan Kim37836892016-07-26 15:23:23 -07001215static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001216{
Minchan Kim37836892016-07-26 15:23:23 -07001217 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001218}
1219
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001220unsigned long zs_get_total_pages(struct zs_pool *pool)
1221{
1222 return atomic_long_read(&pool->pages_allocated);
1223}
1224EXPORT_SYMBOL_GPL(zs_get_total_pages);
1225
1226/**
1227 * zs_map_object - get address of allocated object from handle.
1228 * @pool: pool from which the object was allocated
1229 * @handle: handle returned from zs_malloc
Ingo Molnarf0953a12021-05-06 18:06:47 -07001230 * @mm: mapping mode to use
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001231 *
1232 * Before using an object allocated from zs_malloc, it must be mapped using
1233 * this function. When done with the object, it must be unmapped using
1234 * zs_unmap_object.
1235 *
1236 * Only one object can be mapped per cpu at a time. There is no protection
1237 * against nested mappings.
1238 *
1239 * This function returns with preemption and page faults disabled.
1240 */
1241void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1242 enum zs_mapmode mm)
1243{
Minchan Kim37836892016-07-26 15:23:23 -07001244 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001245 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001246 unsigned long obj, off;
1247 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001248
1249 unsigned int class_idx;
1250 enum fullness_group fg;
1251 struct size_class *class;
1252 struct mapping_area *area;
1253 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001254 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001255
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001256 /*
1257 * Because we use per-cpu mapping areas shared among the
1258 * pools/users, we can't allow mapping in interrupt context
1259 * because it can corrupt another users mappings.
1260 */
Sergey Senozhatsky1aedcaf2017-11-15 17:34:03 -08001261 BUG_ON(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001262
Minchan Kim312fcae2015-04-15 16:15:30 -07001263 /* From now on, migration cannot move the object */
1264 pin_tag(handle);
1265
Minchan Kim2e40e162015-04-15 16:15:23 -07001266 obj = handle_to_obj(handle);
1267 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001268 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001269
1270 /* migration cannot move any subpage in this zspage */
1271 migrate_read_lock(zspage);
1272
Minchan Kim37836892016-07-26 15:23:23 -07001273 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001274 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001275 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001276
1277 area = &get_cpu_var(zs_map_area);
1278 area->vm_mm = mm;
1279 if (off + class->size <= PAGE_SIZE) {
1280 /* this object is contained entirely within a page */
1281 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001282 ret = area->vm_addr + off;
1283 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001284 }
1285
1286 /* this object spans two pages */
1287 pages[0] = page;
1288 pages[1] = get_next_page(page);
1289 BUG_ON(!pages[1]);
1290
Minchan Kim2e40e162015-04-15 16:15:23 -07001291 ret = __zs_map_object(area, pages, off, class->size);
1292out:
Minchan Kim48b48002016-07-26 15:23:31 -07001293 if (likely(!PageHugeObject(page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001294 ret += ZS_HANDLE_SIZE;
1295
1296 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001297}
1298EXPORT_SYMBOL_GPL(zs_map_object);
1299
1300void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1301{
Minchan Kim37836892016-07-26 15:23:23 -07001302 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001303 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001304 unsigned long obj, off;
1305 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001306
1307 unsigned int class_idx;
1308 enum fullness_group fg;
1309 struct size_class *class;
1310 struct mapping_area *area;
1311
Minchan Kim2e40e162015-04-15 16:15:23 -07001312 obj = handle_to_obj(handle);
1313 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001314 zspage = get_zspage(page);
1315 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001316 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001317 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001318
1319 area = this_cpu_ptr(&zs_map_area);
1320 if (off + class->size <= PAGE_SIZE)
1321 kunmap_atomic(area->vm_addr);
1322 else {
1323 struct page *pages[2];
1324
1325 pages[0] = page;
1326 pages[1] = get_next_page(page);
1327 BUG_ON(!pages[1]);
1328
1329 __zs_unmap_object(area, pages, off, class->size);
1330 }
1331 put_cpu_var(zs_map_area);
Minchan Kim48b48002016-07-26 15:23:31 -07001332
1333 migrate_read_unlock(zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07001334 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001335}
1336EXPORT_SYMBOL_GPL(zs_unmap_object);
1337
Sergey Senozhatsky010b4952018-04-05 16:24:43 -07001338/**
1339 * zs_huge_class_size() - Returns the size (in bytes) of the first huge
1340 * zsmalloc &size_class.
1341 * @pool: zsmalloc pool to use
1342 *
1343 * The function returns the size of the first huge class - any object of equal
1344 * or bigger size will be stored in zspage consisting of a single physical
1345 * page.
1346 *
1347 * Context: Any context.
1348 *
1349 * Return: the size (in bytes) of the first huge zsmalloc &size_class.
1350 */
1351size_t zs_huge_class_size(struct zs_pool *pool)
1352{
1353 return huge_class_size;
1354}
1355EXPORT_SYMBOL_GPL(zs_huge_class_size);
1356
Minchan Kim251cbb92016-05-20 16:59:42 -07001357static unsigned long obj_malloc(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001358 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001359{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001360 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001361 unsigned long obj;
1362 struct link_free *link;
1363
1364 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001365 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001366 void *vaddr;
1367
Minchan Kim312fcae2015-04-15 16:15:30 -07001368 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001369 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001370
1371 offset = obj * class->size;
1372 nr_page = offset >> PAGE_SHIFT;
1373 m_offset = offset & ~PAGE_MASK;
1374 m_page = get_first_page(zspage);
1375
1376 for (i = 0; i < nr_page; i++)
1377 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001378
1379 vaddr = kmap_atomic(m_page);
1380 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001381 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001382 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001383 /* record handle in the header of allocated chunk */
1384 link->handle = handle;
1385 else
Minchan Kim37836892016-07-26 15:23:23 -07001386 /* record handle to page->index */
1387 zspage->first_page->index = handle;
1388
Minchan Kimc7806262015-04-15 16:15:26 -07001389 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001390 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001391 zs_stat_inc(class, OBJ_USED, 1);
1392
Minchan Kimbfd093f2016-07-26 15:23:28 -07001393 obj = location_to_obj(m_page, obj);
1394
Minchan Kimc7806262015-04-15 16:15:26 -07001395 return obj;
1396}
1397
1398
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001399/**
1400 * zs_malloc - Allocate block of given size from pool.
1401 * @pool: pool to allocate from
1402 * @size: size of block to allocate
Ganesh Mahendranfd854462016-07-28 15:47:54 -07001403 * @gfp: gfp flags when allocating object
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001404 *
1405 * On success, handle to the allocated object is returned,
1406 * otherwise 0.
1407 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1408 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001409unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001410{
Minchan Kim2e40e162015-04-15 16:15:23 -07001411 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001412 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001413 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001414 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001415
Minchan Kim7b60a682015-04-15 16:15:39 -07001416 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001417 return 0;
1418
Minchan Kim37836892016-07-26 15:23:23 -07001419 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001420 if (!handle)
1421 return 0;
1422
1423 /* extra space in chunk to keep the handle */
1424 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001425 class = pool->size_class[get_size_class_index(size)];
1426
1427 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001428 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001429 if (likely(zspage)) {
1430 obj = obj_malloc(class, zspage, handle);
1431 /* Now move the zspage to another fullness group, if required */
1432 fix_fullness_group(class, zspage);
1433 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001434 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001435
Minchan Kim48b48002016-07-26 15:23:31 -07001436 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001437 }
1438
Minchan Kim48b48002016-07-26 15:23:31 -07001439 spin_unlock(&class->lock);
1440
1441 zspage = alloc_zspage(pool, class, gfp);
1442 if (!zspage) {
1443 cache_free_handle(pool, handle);
1444 return 0;
1445 }
1446
1447 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001448 obj = obj_malloc(class, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001449 newfg = get_fullness_group(class, zspage);
1450 insert_zspage(class, zspage, newfg);
1451 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001452 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001453 atomic_long_add(class->pages_per_zspage,
1454 &pool->pages_allocated);
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001455 zs_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001456
1457 /* We completely set up zspage so mark them as movable */
1458 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001459 spin_unlock(&class->lock);
1460
Minchan Kim2e40e162015-04-15 16:15:23 -07001461 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001462}
1463EXPORT_SYMBOL_GPL(zs_malloc);
1464
Minchan Kim1ee47162016-05-20 16:59:45 -07001465static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001466{
1467 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001468 struct zspage *zspage;
1469 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001470 unsigned long f_offset;
1471 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001472 void *vaddr;
1473
Minchan Kimc7806262015-04-15 16:15:26 -07001474 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001475 f_offset = (class->size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001476 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001477
Minchan Kimc7806262015-04-15 16:15:26 -07001478 vaddr = kmap_atomic(f_page);
1479
1480 /* Insert this object in containing zspage's freelist */
1481 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001482 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001483 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001484 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001485 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001486 zs_stat_dec(class, OBJ_USED, 1);
1487}
1488
1489void zs_free(struct zs_pool *pool, unsigned long handle)
1490{
Minchan Kim37836892016-07-26 15:23:23 -07001491 struct zspage *zspage;
1492 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001493 unsigned long obj;
1494 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001495 int class_idx;
1496 struct size_class *class;
1497 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001498 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001499
Minchan Kim2e40e162015-04-15 16:15:23 -07001500 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001501 return;
1502
Minchan Kim312fcae2015-04-15 16:15:30 -07001503 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001504 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001505 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001506 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001507
Minchan Kim48b48002016-07-26 15:23:31 -07001508 migrate_read_lock(zspage);
1509
Minchan Kim37836892016-07-26 15:23:23 -07001510 get_zspage_mapping(zspage, &class_idx, &fullness);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001511 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001512
1513 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001514 obj_free(class, obj);
Minchan Kim37836892016-07-26 15:23:23 -07001515 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001516 if (fullness != ZS_EMPTY) {
1517 migrate_read_unlock(zspage);
1518 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001519 }
Minchan Kim48b48002016-07-26 15:23:31 -07001520
1521 isolated = is_zspage_isolated(zspage);
1522 migrate_read_unlock(zspage);
1523 /* If zspage is isolated, zs_page_putback will free the zspage */
1524 if (likely(!isolated))
1525 free_zspage(pool, class, zspage);
1526out:
1527
Minchan Kim312fcae2015-04-15 16:15:30 -07001528 spin_unlock(&class->lock);
1529 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001530 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001531}
1532EXPORT_SYMBOL_GPL(zs_free);
1533
Minchan Kim251cbb92016-05-20 16:59:42 -07001534static void zs_object_copy(struct size_class *class, unsigned long dst,
1535 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001536{
1537 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001538 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001539 unsigned long s_off, d_off;
1540 void *s_addr, *d_addr;
1541 int s_size, d_size, size;
1542 int written = 0;
1543
1544 s_size = d_size = class->size;
1545
1546 obj_to_location(src, &s_page, &s_objidx);
1547 obj_to_location(dst, &d_page, &d_objidx);
1548
Minchan Kimbfd093f2016-07-26 15:23:28 -07001549 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1550 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001551
1552 if (s_off + class->size > PAGE_SIZE)
1553 s_size = PAGE_SIZE - s_off;
1554
1555 if (d_off + class->size > PAGE_SIZE)
1556 d_size = PAGE_SIZE - d_off;
1557
1558 s_addr = kmap_atomic(s_page);
1559 d_addr = kmap_atomic(d_page);
1560
1561 while (1) {
1562 size = min(s_size, d_size);
1563 memcpy(d_addr + d_off, s_addr + s_off, size);
1564 written += size;
1565
1566 if (written == class->size)
1567 break;
1568
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001569 s_off += size;
1570 s_size -= size;
1571 d_off += size;
1572 d_size -= size;
1573
1574 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001575 kunmap_atomic(d_addr);
1576 kunmap_atomic(s_addr);
1577 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001578 s_addr = kmap_atomic(s_page);
1579 d_addr = kmap_atomic(d_page);
1580 s_size = class->size - written;
1581 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001582 }
1583
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001584 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001585 kunmap_atomic(d_addr);
1586 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001587 d_addr = kmap_atomic(d_page);
1588 d_size = class->size - written;
1589 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001590 }
1591 }
1592
1593 kunmap_atomic(d_addr);
1594 kunmap_atomic(s_addr);
1595}
1596
1597/*
1598 * Find alloced object in zspage from index object and
1599 * return handle.
1600 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001601static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001602 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001603{
1604 unsigned long head;
1605 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001606 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001607 unsigned long handle = 0;
1608 void *addr = kmap_atomic(page);
1609
Minchan Kim37836892016-07-26 15:23:23 -07001610 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001611 offset += class->size * index;
1612
1613 while (offset < PAGE_SIZE) {
Minchan Kim48b48002016-07-26 15:23:31 -07001614 head = obj_to_head(page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001615 if (head & OBJ_ALLOCATED_TAG) {
1616 handle = head & ~OBJ_ALLOCATED_TAG;
1617 if (trypin_tag(handle))
1618 break;
1619 handle = 0;
1620 }
1621
1622 offset += class->size;
1623 index++;
1624 }
1625
1626 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001627
1628 *obj_idx = index;
1629
Minchan Kim312fcae2015-04-15 16:15:30 -07001630 return handle;
1631}
1632
1633struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001634 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001635 struct page *s_page;
1636 /* Destination page for migration which should be a first page
1637 * of zspage. */
1638 struct page *d_page;
1639 /* Starting object index within @s_page which used for live object
1640 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001641 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001642};
1643
1644static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1645 struct zs_compact_control *cc)
1646{
1647 unsigned long used_obj, free_obj;
1648 unsigned long handle;
1649 struct page *s_page = cc->s_page;
1650 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001651 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001652 int ret = 0;
1653
1654 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001655 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001656 if (!handle) {
1657 s_page = get_next_page(s_page);
1658 if (!s_page)
1659 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001660 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001661 continue;
1662 }
1663
1664 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001665 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001666 unpin_tag(handle);
1667 ret = -ENOMEM;
1668 break;
1669 }
1670
1671 used_obj = handle_to_obj(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001672 free_obj = obj_malloc(class, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001673 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001674 obj_idx++;
Junil Leec102f07c2016-01-20 14:58:18 -08001675 /*
1676 * record_obj updates handle's value to free_obj and it will
1677 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1678 * breaks synchronization using pin_tag(e,g, zs_free) so
1679 * let's keep the lock bit.
1680 */
1681 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001682 record_obj(handle, free_obj);
1683 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001684 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001685 }
1686
1687 /* Remember last position in this iteration */
1688 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001689 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001690
1691 return ret;
1692}
1693
Minchan Kim37836892016-07-26 15:23:23 -07001694static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001695{
1696 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001697 struct zspage *zspage;
1698 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001699
Minchan Kim37836892016-07-26 15:23:23 -07001700 if (!source) {
1701 fg[0] = ZS_ALMOST_FULL;
1702 fg[1] = ZS_ALMOST_EMPTY;
1703 }
1704
1705 for (i = 0; i < 2; i++) {
1706 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1707 struct zspage, list);
1708 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001709 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001710 remove_zspage(class, zspage, fg[i]);
1711 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001712 }
1713 }
1714
Minchan Kim37836892016-07-26 15:23:23 -07001715 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001716}
1717
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001718/*
Minchan Kim37836892016-07-26 15:23:23 -07001719 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001720 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001721 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001722 *
Minchan Kim37836892016-07-26 15:23:23 -07001723 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001724 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001725static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001726 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001727{
Minchan Kim312fcae2015-04-15 16:15:30 -07001728 enum fullness_group fullness;
1729
Minchan Kim48b48002016-07-26 15:23:31 -07001730 VM_BUG_ON(is_zspage_isolated(zspage));
1731
Minchan Kim37836892016-07-26 15:23:23 -07001732 fullness = get_fullness_group(class, zspage);
1733 insert_zspage(class, zspage, fullness);
1734 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001735
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001736 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001737}
1738
Minchan Kim48b48002016-07-26 15:23:31 -07001739#ifdef CONFIG_COMPACTION
Colin Ian King4d0a5402018-08-17 15:46:50 -07001740/*
1741 * To prevent zspage destroy during migration, zspage freeing should
1742 * hold locks of all pages in the zspage.
1743 */
1744static void lock_zspage(struct zspage *zspage)
1745{
1746 struct page *page = get_first_page(zspage);
1747
1748 do {
1749 lock_page(page);
1750 } while ((page = get_next_page(page)) != NULL);
1751}
1752
David Howells8e9231f2019-03-25 16:38:23 +00001753static int zs_init_fs_context(struct fs_context *fc)
Minchan Kim48b48002016-07-26 15:23:31 -07001754{
David Howells8e9231f2019-03-25 16:38:23 +00001755 return init_pseudo(fc, ZSMALLOC_MAGIC) ? 0 : -ENOMEM;
Minchan Kim48b48002016-07-26 15:23:31 -07001756}
1757
1758static struct file_system_type zsmalloc_fs = {
1759 .name = "zsmalloc",
David Howells8e9231f2019-03-25 16:38:23 +00001760 .init_fs_context = zs_init_fs_context,
Minchan Kim48b48002016-07-26 15:23:31 -07001761 .kill_sb = kill_anon_super,
1762};
1763
1764static int zsmalloc_mount(void)
1765{
1766 int ret = 0;
1767
1768 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1769 if (IS_ERR(zsmalloc_mnt))
1770 ret = PTR_ERR(zsmalloc_mnt);
1771
1772 return ret;
1773}
1774
1775static void zsmalloc_unmount(void)
1776{
1777 kern_unmount(zsmalloc_mnt);
1778}
1779
1780static void migrate_lock_init(struct zspage *zspage)
1781{
1782 rwlock_init(&zspage->lock);
1783}
1784
Jules Irengecfc451cf2020-04-06 20:08:21 -07001785static void migrate_read_lock(struct zspage *zspage) __acquires(&zspage->lock)
Minchan Kim48b48002016-07-26 15:23:31 -07001786{
1787 read_lock(&zspage->lock);
1788}
1789
Jules Irenge8a374cc2020-04-06 20:08:24 -07001790static void migrate_read_unlock(struct zspage *zspage) __releases(&zspage->lock)
Minchan Kim48b48002016-07-26 15:23:31 -07001791{
1792 read_unlock(&zspage->lock);
1793}
1794
1795static void migrate_write_lock(struct zspage *zspage)
1796{
1797 write_lock(&zspage->lock);
1798}
1799
1800static void migrate_write_unlock(struct zspage *zspage)
1801{
1802 write_unlock(&zspage->lock);
1803}
1804
1805/* Number of isolated subpage for *page migration* in this zspage */
1806static void inc_zspage_isolation(struct zspage *zspage)
1807{
1808 zspage->isolated++;
1809}
1810
1811static void dec_zspage_isolation(struct zspage *zspage)
1812{
1813 zspage->isolated--;
1814}
1815
Henry Burns1a87aa02019-08-24 17:55:03 -07001816static void putback_zspage_deferred(struct zs_pool *pool,
1817 struct size_class *class,
1818 struct zspage *zspage)
1819{
1820 enum fullness_group fg;
1821
1822 fg = putback_zspage(class, zspage);
1823 if (fg == ZS_EMPTY)
1824 schedule_work(&pool->free_work);
1825
1826}
1827
Henry Burns701d6782019-08-24 17:55:06 -07001828static inline void zs_pool_dec_isolated(struct zs_pool *pool)
1829{
1830 VM_BUG_ON(atomic_long_read(&pool->isolated_pages) <= 0);
1831 atomic_long_dec(&pool->isolated_pages);
1832 /*
1833 * There's no possibility of racing, since wait_for_isolated_drain()
1834 * checks the isolated count under &class->lock after enqueuing
1835 * on migration_wait.
1836 */
1837 if (atomic_long_read(&pool->isolated_pages) == 0 && pool->destroying)
1838 wake_up_all(&pool->migration_wait);
1839}
1840
Minchan Kim48b48002016-07-26 15:23:31 -07001841static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1842 struct page *newpage, struct page *oldpage)
1843{
1844 struct page *page;
1845 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1846 int idx = 0;
1847
1848 page = get_first_page(zspage);
1849 do {
1850 if (page == oldpage)
1851 pages[idx] = newpage;
1852 else
1853 pages[idx] = page;
1854 idx++;
1855 } while ((page = get_next_page(page)) != NULL);
1856
1857 create_page_chain(class, zspage, pages);
1858 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
1859 if (unlikely(PageHugeObject(oldpage)))
1860 newpage->index = oldpage->index;
1861 __SetPageMovable(newpage, page_mapping(oldpage));
1862}
1863
Colin Ian King4d0a5402018-08-17 15:46:50 -07001864static bool zs_page_isolate(struct page *page, isolate_mode_t mode)
Minchan Kim48b48002016-07-26 15:23:31 -07001865{
1866 struct zs_pool *pool;
1867 struct size_class *class;
1868 int class_idx;
1869 enum fullness_group fullness;
1870 struct zspage *zspage;
1871 struct address_space *mapping;
1872
1873 /*
1874 * Page is locked so zspage couldn't be destroyed. For detail, look at
1875 * lock_zspage in free_zspage.
1876 */
1877 VM_BUG_ON_PAGE(!PageMovable(page), page);
1878 VM_BUG_ON_PAGE(PageIsolated(page), page);
1879
1880 zspage = get_zspage(page);
1881
1882 /*
1883 * Without class lock, fullness could be stale while class_idx is okay
1884 * because class_idx is constant unless page is freed so we should get
1885 * fullness again under class lock.
1886 */
1887 get_zspage_mapping(zspage, &class_idx, &fullness);
1888 mapping = page_mapping(page);
1889 pool = mapping->private_data;
1890 class = pool->size_class[class_idx];
1891
1892 spin_lock(&class->lock);
1893 if (get_zspage_inuse(zspage) == 0) {
1894 spin_unlock(&class->lock);
1895 return false;
1896 }
1897
1898 /* zspage is isolated for object migration */
1899 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
1900 spin_unlock(&class->lock);
1901 return false;
1902 }
1903
1904 /*
1905 * If this is first time isolation for the zspage, isolate zspage from
1906 * size_class to prevent further object allocation from the zspage.
1907 */
1908 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
1909 get_zspage_mapping(zspage, &class_idx, &fullness);
Henry Burns701d6782019-08-24 17:55:06 -07001910 atomic_long_inc(&pool->isolated_pages);
Minchan Kim48b48002016-07-26 15:23:31 -07001911 remove_zspage(class, zspage, fullness);
1912 }
1913
1914 inc_zspage_isolation(zspage);
1915 spin_unlock(&class->lock);
1916
1917 return true;
1918}
1919
Colin Ian King4d0a5402018-08-17 15:46:50 -07001920static int zs_page_migrate(struct address_space *mapping, struct page *newpage,
Minchan Kim48b48002016-07-26 15:23:31 -07001921 struct page *page, enum migrate_mode mode)
1922{
1923 struct zs_pool *pool;
1924 struct size_class *class;
1925 int class_idx;
1926 enum fullness_group fullness;
1927 struct zspage *zspage;
1928 struct page *dummy;
1929 void *s_addr, *d_addr, *addr;
1930 int offset, pos;
1931 unsigned long handle, head;
1932 unsigned long old_obj, new_obj;
1933 unsigned int obj_idx;
1934 int ret = -EAGAIN;
1935
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001936 /*
1937 * We cannot support the _NO_COPY case here, because copy needs to
1938 * happen under the zs lock, which does not work with
1939 * MIGRATE_SYNC_NO_COPY workflow.
1940 */
1941 if (mode == MIGRATE_SYNC_NO_COPY)
1942 return -EINVAL;
1943
Minchan Kim48b48002016-07-26 15:23:31 -07001944 VM_BUG_ON_PAGE(!PageMovable(page), page);
1945 VM_BUG_ON_PAGE(!PageIsolated(page), page);
1946
1947 zspage = get_zspage(page);
1948
1949 /* Concurrent compactor cannot migrate any subpage in zspage */
1950 migrate_write_lock(zspage);
1951 get_zspage_mapping(zspage, &class_idx, &fullness);
1952 pool = mapping->private_data;
1953 class = pool->size_class[class_idx];
1954 offset = get_first_obj_offset(page);
1955
1956 spin_lock(&class->lock);
1957 if (!get_zspage_inuse(zspage)) {
Hui Zhu77ff4652017-09-06 16:21:08 -07001958 /*
1959 * Set "offset" to end of the page so that every loops
1960 * skips unnecessary object scanning.
1961 */
1962 offset = PAGE_SIZE;
Minchan Kim48b48002016-07-26 15:23:31 -07001963 }
1964
1965 pos = offset;
1966 s_addr = kmap_atomic(page);
1967 while (pos < PAGE_SIZE) {
1968 head = obj_to_head(page, s_addr + pos);
1969 if (head & OBJ_ALLOCATED_TAG) {
1970 handle = head & ~OBJ_ALLOCATED_TAG;
1971 if (!trypin_tag(handle))
1972 goto unpin_objects;
1973 }
1974 pos += class->size;
1975 }
1976
1977 /*
1978 * Here, any user cannot access all objects in the zspage so let's move.
1979 */
1980 d_addr = kmap_atomic(newpage);
1981 memcpy(d_addr, s_addr, PAGE_SIZE);
1982 kunmap_atomic(d_addr);
1983
1984 for (addr = s_addr + offset; addr < s_addr + pos;
1985 addr += class->size) {
1986 head = obj_to_head(page, addr);
1987 if (head & OBJ_ALLOCATED_TAG) {
1988 handle = head & ~OBJ_ALLOCATED_TAG;
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) {
2033 head = obj_to_head(page, addr);
2034 if (head & OBJ_ALLOCATED_TAG) {
2035 handle = head & ~OBJ_ALLOCATED_TAG;
zhouchuangaoecfc2bd2021-05-04 18:40:00 -07002036 BUG_ON(!testpin_tag(handle));
Minchan Kim48b48002016-07-26 15:23:31 -07002037 unpin_tag(handle);
2038 }
2039 }
2040 kunmap_atomic(s_addr);
Minchan Kim48b48002016-07-26 15:23:31 -07002041 spin_unlock(&class->lock);
2042 migrate_write_unlock(zspage);
2043
2044 return ret;
2045}
2046
Colin Ian King4d0a5402018-08-17 15:46:50 -07002047static void zs_page_putback(struct page *page)
Minchan Kim48b48002016-07-26 15:23:31 -07002048{
2049 struct zs_pool *pool;
2050 struct size_class *class;
2051 int class_idx;
2052 enum fullness_group fg;
2053 struct address_space *mapping;
2054 struct zspage *zspage;
2055
2056 VM_BUG_ON_PAGE(!PageMovable(page), page);
2057 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2058
2059 zspage = get_zspage(page);
2060 get_zspage_mapping(zspage, &class_idx, &fg);
2061 mapping = page_mapping(page);
2062 pool = mapping->private_data;
2063 class = pool->size_class[class_idx];
2064
2065 spin_lock(&class->lock);
2066 dec_zspage_isolation(zspage);
2067 if (!is_zspage_isolated(zspage)) {
Minchan Kim48b48002016-07-26 15:23:31 -07002068 /*
2069 * Due to page_lock, we cannot free zspage immediately
2070 * so let's defer.
2071 */
Henry Burns1a87aa02019-08-24 17:55:03 -07002072 putback_zspage_deferred(pool, class, zspage);
Henry Burns701d6782019-08-24 17:55:06 -07002073 zs_pool_dec_isolated(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002074 }
2075 spin_unlock(&class->lock);
2076}
2077
Colin Ian King4d0a5402018-08-17 15:46:50 -07002078static const struct address_space_operations zsmalloc_aops = {
Minchan Kim48b48002016-07-26 15:23:31 -07002079 .isolate_page = zs_page_isolate,
2080 .migratepage = zs_page_migrate,
2081 .putback_page = zs_page_putback,
2082};
2083
2084static int zs_register_migration(struct zs_pool *pool)
2085{
2086 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2087 if (IS_ERR(pool->inode)) {
2088 pool->inode = NULL;
2089 return 1;
2090 }
2091
2092 pool->inode->i_mapping->private_data = pool;
2093 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2094 return 0;
2095}
2096
Henry Burns701d6782019-08-24 17:55:06 -07002097static bool pool_isolated_are_drained(struct zs_pool *pool)
2098{
2099 return atomic_long_read(&pool->isolated_pages) == 0;
2100}
2101
2102/* Function for resolving migration */
2103static void wait_for_isolated_drain(struct zs_pool *pool)
2104{
2105
2106 /*
2107 * We're in the process of destroying the pool, so there are no
2108 * active allocations. zs_page_isolate() fails for completely free
2109 * zspages, so we need only wait for the zs_pool's isolated
2110 * count to hit zero.
2111 */
2112 wait_event(pool->migration_wait,
2113 pool_isolated_are_drained(pool));
2114}
2115
Minchan Kim48b48002016-07-26 15:23:31 -07002116static void zs_unregister_migration(struct zs_pool *pool)
2117{
Henry Burns701d6782019-08-24 17:55:06 -07002118 pool->destroying = true;
2119 /*
2120 * We need a memory barrier here to ensure global visibility of
2121 * pool->destroying. Thus pool->isolated pages will either be 0 in which
2122 * case we don't care, or it will be > 0 and pool->destroying will
2123 * ensure that we wake up once isolation hits 0.
2124 */
2125 smp_mb();
2126 wait_for_isolated_drain(pool); /* This can block */
Minchan Kim48b48002016-07-26 15:23:31 -07002127 flush_work(&pool->free_work);
Markus Elfringc3491ec2016-07-28 15:48:59 -07002128 iput(pool->inode);
Minchan Kim48b48002016-07-26 15:23:31 -07002129}
2130
2131/*
2132 * Caller should hold page_lock of all pages in the zspage
2133 * In here, we cannot use zspage meta data.
2134 */
2135static void async_free_zspage(struct work_struct *work)
2136{
2137 int i;
2138 struct size_class *class;
2139 unsigned int class_idx;
2140 enum fullness_group fullness;
2141 struct zspage *zspage, *tmp;
2142 LIST_HEAD(free_pages);
2143 struct zs_pool *pool = container_of(work, struct zs_pool,
2144 free_work);
2145
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002146 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim48b48002016-07-26 15:23:31 -07002147 class = pool->size_class[i];
2148 if (class->index != i)
2149 continue;
2150
2151 spin_lock(&class->lock);
2152 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2153 spin_unlock(&class->lock);
2154 }
2155
2156
2157 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2158 list_del(&zspage->list);
2159 lock_zspage(zspage);
2160
2161 get_zspage_mapping(zspage, &class_idx, &fullness);
2162 VM_BUG_ON(fullness != ZS_EMPTY);
2163 class = pool->size_class[class_idx];
2164 spin_lock(&class->lock);
Miaohe Lin33848332021-06-30 18:53:04 -07002165 __free_zspage(pool, class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07002166 spin_unlock(&class->lock);
2167 }
2168};
2169
2170static void kick_deferred_free(struct zs_pool *pool)
2171{
2172 schedule_work(&pool->free_work);
2173}
2174
2175static void init_deferred_free(struct zs_pool *pool)
2176{
2177 INIT_WORK(&pool->free_work, async_free_zspage);
2178}
2179
2180static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2181{
2182 struct page *page = get_first_page(zspage);
2183
2184 do {
2185 WARN_ON(!trylock_page(page));
2186 __SetPageMovable(page, pool->inode->i_mapping);
2187 unlock_page(page);
2188 } while ((page = get_next_page(page)) != NULL);
2189}
2190#endif
2191
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002192/*
2193 *
2194 * Based on the number of unused allocated objects calculate
2195 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002196 */
2197static unsigned long zs_can_compact(struct size_class *class)
2198{
2199 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002200 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2201 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002202
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002203 if (obj_allocated <= obj_used)
2204 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002205
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002206 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002207 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002208
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002209 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002210}
2211
Rokudo Yan23959282021-02-25 17:18:31 -08002212static unsigned long __zs_compact(struct zs_pool *pool,
2213 struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002214{
Minchan Kim312fcae2015-04-15 16:15:30 -07002215 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002216 struct zspage *src_zspage;
2217 struct zspage *dst_zspage = NULL;
Rokudo Yan23959282021-02-25 17:18:31 -08002218 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002219
Minchan Kim312fcae2015-04-15 16:15:30 -07002220 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002221 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002222
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002223 if (!zs_can_compact(class))
2224 break;
2225
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002226 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002227 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002228
Minchan Kim37836892016-07-26 15:23:23 -07002229 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002230 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002231 /*
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07002232 * If there is no more space in dst_page, resched
2233 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002234 */
2235 if (!migrate_zspage(pool, class, &cc))
2236 break;
2237
Minchan Kim4aa409c2016-07-26 15:23:26 -07002238 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002239 }
2240
2241 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002242 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002243 break;
2244
Minchan Kim4aa409c2016-07-26 15:23:26 -07002245 putback_zspage(class, dst_zspage);
2246 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002247 free_zspage(pool, class, src_zspage);
Rokudo Yan23959282021-02-25 17:18:31 -08002248 pages_freed += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002249 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002250 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002251 cond_resched();
2252 spin_lock(&class->lock);
2253 }
2254
Minchan Kim37836892016-07-26 15:23:23 -07002255 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002256 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002257
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002258 spin_unlock(&class->lock);
Rokudo Yan23959282021-02-25 17:18:31 -08002259
2260 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002261}
2262
2263unsigned long zs_compact(struct zs_pool *pool)
2264{
2265 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002266 struct size_class *class;
Rokudo Yan23959282021-02-25 17:18:31 -08002267 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002268
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002269 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002270 class = pool->size_class[i];
2271 if (!class)
2272 continue;
2273 if (class->index != i)
2274 continue;
Rokudo Yan23959282021-02-25 17:18:31 -08002275 pages_freed += __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002276 }
Rokudo Yan23959282021-02-25 17:18:31 -08002277 atomic_long_add(pages_freed, &pool->stats.pages_compacted);
Minchan Kim312fcae2015-04-15 16:15:30 -07002278
Rokudo Yan23959282021-02-25 17:18:31 -08002279 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002280}
2281EXPORT_SYMBOL_GPL(zs_compact);
2282
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002283void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2284{
2285 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2286}
2287EXPORT_SYMBOL_GPL(zs_pool_stats);
2288
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002289static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2290 struct shrink_control *sc)
2291{
2292 unsigned long pages_freed;
2293 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2294 shrinker);
2295
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002296 /*
2297 * Compact classes and calculate compaction delta.
2298 * Can run concurrently with a manually triggered
2299 * (by user) compaction.
2300 */
Rokudo Yan23959282021-02-25 17:18:31 -08002301 pages_freed = zs_compact(pool);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002302
2303 return pages_freed ? pages_freed : SHRINK_STOP;
2304}
2305
2306static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2307 struct shrink_control *sc)
2308{
2309 int i;
2310 struct size_class *class;
2311 unsigned long pages_to_free = 0;
2312 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2313 shrinker);
2314
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002315 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002316 class = pool->size_class[i];
2317 if (!class)
2318 continue;
2319 if (class->index != i)
2320 continue;
2321
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002322 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002323 }
2324
2325 return pages_to_free;
2326}
2327
2328static void zs_unregister_shrinker(struct zs_pool *pool)
2329{
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002330 unregister_shrinker(&pool->shrinker);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002331}
2332
2333static int zs_register_shrinker(struct zs_pool *pool)
2334{
2335 pool->shrinker.scan_objects = zs_shrinker_scan;
2336 pool->shrinker.count_objects = zs_shrinker_count;
2337 pool->shrinker.batch = 0;
2338 pool->shrinker.seeks = DEFAULT_SEEKS;
2339
2340 return register_shrinker(&pool->shrinker);
2341}
2342
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002343/**
2344 * zs_create_pool - Creates an allocation pool to work from.
Ganesh Mahendranfd854462016-07-28 15:47:54 -07002345 * @name: pool name to be created
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002346 *
2347 * This function must be called before anything when using
2348 * the zsmalloc allocator.
2349 *
2350 * On success, a pointer to the newly created pool is returned,
2351 * otherwise NULL.
2352 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002353struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002354{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002355 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002356 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002357 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002358
Ganesh Mahendran18136652014-12-12 16:57:10 -08002359 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002360 if (!pool)
2361 return NULL;
2362
Minchan Kim48b48002016-07-26 15:23:31 -07002363 init_deferred_free(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002364
Minchan Kim2e40e162015-04-15 16:15:23 -07002365 pool->name = kstrdup(name, GFP_KERNEL);
2366 if (!pool->name)
2367 goto err;
2368
Andrew Morton441e2542019-08-30 16:04:35 -07002369#ifdef CONFIG_COMPACTION
Henry Burns701d6782019-08-24 17:55:06 -07002370 init_waitqueue_head(&pool->migration_wait);
Andrew Morton441e2542019-08-30 16:04:35 -07002371#endif
Henry Burns701d6782019-08-24 17:55:06 -07002372
Minchan Kim37836892016-07-26 15:23:23 -07002373 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002374 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002375
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002376 /*
Xishi Qiu399d8ee2017-02-22 15:45:01 -08002377 * Iterate reversely, because, size of size_class that we want to use
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002378 * for merging should be larger or equal to current size.
2379 */
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002380 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002381 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002382 int pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002383 int objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002384 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002385 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002386
2387 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2388 if (size > ZS_MAX_ALLOC_SIZE)
2389 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002390 pages_per_zspage = get_pages_per_zspage(size);
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002391 objs_per_zspage = pages_per_zspage * PAGE_SIZE / size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002392
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002393 /*
Sergey Senozhatsky010b4952018-04-05 16:24:43 -07002394 * We iterate from biggest down to smallest classes,
2395 * so huge_class_size holds the size of the first huge
2396 * class. Any object bigger than or equal to that will
2397 * endup in the huge class.
2398 */
2399 if (pages_per_zspage != 1 && objs_per_zspage != 1 &&
2400 !huge_class_size) {
2401 huge_class_size = size;
2402 /*
2403 * The object uses ZS_HANDLE_SIZE bytes to store the
2404 * handle. We need to subtract it, because zs_malloc()
2405 * unconditionally adds handle size before it performs
2406 * size class search - so object may be smaller than
2407 * huge class size, yet it still can end up in the huge
2408 * class because it grows by ZS_HANDLE_SIZE extra bytes
2409 * right before class lookup.
2410 */
2411 huge_class_size -= (ZS_HANDLE_SIZE - 1);
2412 }
2413
2414 /*
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002415 * size_class is used for normal zsmalloc operation such
2416 * as alloc/free for that size. Although it is natural that we
2417 * have one size_class for each size, there is a chance that we
2418 * can get more memory utilization if we use one size_class for
2419 * many different sizes whose size_class have same
2420 * characteristics. So, we makes size_class point to
2421 * previous size_class if possible.
2422 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002423 if (prev_class) {
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002424 if (can_merge(prev_class, pages_per_zspage, objs_per_zspage)) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002425 pool->size_class[i] = prev_class;
2426 continue;
2427 }
2428 }
2429
2430 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2431 if (!class)
2432 goto err;
2433
Nitin Gupta61989a82012-01-09 16:51:56 -06002434 class->size = size;
2435 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002436 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002437 class->objs_per_zspage = objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002438 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002439 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002440 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2441 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002442 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002443
2444 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002445 }
2446
Dan Streetmand34f6152016-05-20 16:59:56 -07002447 /* debug only, don't abort if it fails */
2448 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002449
Minchan Kim48b48002016-07-26 15:23:31 -07002450 if (zs_register_migration(pool))
2451 goto err;
2452
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002453 /*
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002454 * Not critical since shrinker is only used to trigger internal
2455 * defragmentation of the pool which is pretty optional thing. If
2456 * registration fails we still can use the pool normally and user can
2457 * trigger compaction manually. Thus, ignore return code.
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002458 */
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002459 zs_register_shrinker(pool);
2460
Nitin Gupta61989a82012-01-09 16:51:56 -06002461 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002462
2463err:
2464 zs_destroy_pool(pool);
2465 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002466}
2467EXPORT_SYMBOL_GPL(zs_create_pool);
2468
2469void zs_destroy_pool(struct zs_pool *pool)
2470{
2471 int i;
2472
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002473 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002474 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002475 zs_pool_stat_destroy(pool);
2476
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002477 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002478 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002479 struct size_class *class = pool->size_class[i];
2480
2481 if (!class)
2482 continue;
2483
2484 if (class->index != i)
2485 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002486
Minchan Kim48b48002016-07-26 15:23:31 -07002487 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002488 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002489 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002490 class->size, fg);
2491 }
2492 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002493 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002494 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002495
Minchan Kim37836892016-07-26 15:23:23 -07002496 destroy_cache(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002497 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002498 kfree(pool);
2499}
2500EXPORT_SYMBOL_GPL(zs_destroy_pool);
2501
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002502static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002503{
Minchan Kim48b48002016-07-26 15:23:31 -07002504 int ret;
2505
2506 ret = zsmalloc_mount();
2507 if (ret)
2508 goto out;
2509
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002510 ret = cpuhp_setup_state(CPUHP_MM_ZS_PREPARE, "mm/zsmalloc:prepare",
2511 zs_cpu_prepare, zs_cpu_dead);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002512 if (ret)
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002513 goto hp_setup_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002514
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002515#ifdef CONFIG_ZPOOL
2516 zpool_register_driver(&zs_zpool_driver);
2517#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002518
Dan Streetman4abaac92016-05-26 15:16:27 -07002519 zs_stat_init();
2520
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002521 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002522
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002523hp_setup_fail:
Minchan Kim48b48002016-07-26 15:23:31 -07002524 zsmalloc_unmount();
2525out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002526 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002527}
Nitin Gupta61989a82012-01-09 16:51:56 -06002528
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002529static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002530{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002531#ifdef CONFIG_ZPOOL
2532 zpool_unregister_driver(&zs_zpool_driver);
2533#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002534 zsmalloc_unmount();
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002535 cpuhp_remove_state(CPUHP_MM_ZS_PREPARE);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002536
2537 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002538}
Ben Hutchings069f1012012-06-20 02:31:11 +01002539
2540module_init(zs_init);
2541module_exit(zs_exit);
2542
2543MODULE_LICENSE("Dual BSD/GPL");
2544MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");