blob: b5c1cd4ba2a1506cb9cd7705747a0cc6e2075eb6 [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
27 * PG_private2: identifies the last component page
Minchan Kim48b48002016-07-26 15:23:31 -070028 * PG_owner_priv_1: indentifies the huge component page
Nitin Gupta2db51da2012-06-09 17:41:14 -070029 *
30 */
31
Dan Streetman4abaac92016-05-26 15:16:27 -070032#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
33
Nitin Gupta61989a82012-01-09 16:51:56 -060034#include <linux/module.h>
35#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070036#include <linux/sched.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>
42#include <asm/tlbflush.h>
43#include <asm/pgtable.h>
44#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>
49#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080050#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080051#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070052#include <linux/zpool.h>
Minchan Kim48b48002016-07-26 15:23:31 -070053#include <linux/mount.h>
Minchan Kimdd4123f2016-07-26 15:26:50 -070054#include <linux/migrate.h>
Henry Burns0e7e2732019-08-24 17:55:06 -070055#include <linux/wait.h>
Minchan Kim48b48002016-07-26 15:23:31 -070056#include <linux/pagemap.h>
57
58#define ZSPAGE_MAGIC 0x58
Seth Jennings0959c632012-08-08 15:12:17 +090059
60/*
61 * This must be power of 2 and greater than of equal to sizeof(link_free).
62 * These two conditions ensure that any 'struct link_free' itself doesn't
63 * span more than 1 page which avoids complex case of mapping 2 pages simply
64 * to restore link_free pointer values.
65 */
66#define ZS_ALIGN 8
67
68/*
69 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
70 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
71 */
72#define ZS_MAX_ZSPAGE_ORDER 2
73#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
74
Minchan Kim2e40e162015-04-15 16:15:23 -070075#define ZS_HANDLE_SIZE (sizeof(unsigned long))
76
Seth Jennings0959c632012-08-08 15:12:17 +090077/*
78 * Object location (<PFN>, <obj_idx>) is encoded as
Nitin Cuptac3e3e882013-12-11 11:04:37 +090079 * as single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090080 *
Minchan Kimbfd093f2016-07-26 15:23:28 -070081 * Note that object index <obj_idx> starts from 0.
Seth Jennings0959c632012-08-08 15:12:17 +090082 *
83 * This is made more complicated by various memory models and PAE.
84 */
85
Kirill A. Shutemov215321a02021-11-03 13:57:13 -070086#ifndef MAX_POSSIBLE_PHYSMEM_BITS
87#ifdef MAX_PHYSMEM_BITS
88#define MAX_POSSIBLE_PHYSMEM_BITS MAX_PHYSMEM_BITS
89#else
Seth Jennings0959c632012-08-08 15:12:17 +090090/*
91 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
92 * be PAGE_SHIFT
93 */
Kirill A. Shutemov215321a02021-11-03 13:57:13 -070094#define MAX_POSSIBLE_PHYSMEM_BITS BITS_PER_LONG
Seth Jennings0959c632012-08-08 15:12:17 +090095#endif
96#endif
Kirill A. Shutemov215321a02021-11-03 13:57:13 -070097
98#define _PFN_BITS (MAX_POSSIBLE_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -070099
100/*
101 * Memory for allocating for handle keeps object position by
102 * encoding <page, obj_idx> and the encoded value has a room
103 * in least bit(ie, look at obj_to_location).
104 * We use the bit to synchronize between object access by
105 * user and migration.
106 */
107#define HANDLE_PIN_BIT 0
108
109/*
110 * Head in allocated object should have OBJ_ALLOCATED_TAG
111 * to identify the object was allocated or not.
112 * It's okay to add the status bit in the least bit because
113 * header keeps handle which is 4byte-aligned address so we
114 * have room for two bit at least.
115 */
116#define OBJ_ALLOCATED_TAG 1
117#define OBJ_TAG_BITS 1
118#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900119#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
120
121#define MAX(a, b) ((a) >= (b) ? (a) : (b))
122/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
123#define ZS_MIN_ALLOC_SIZE \
124 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700125/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700126#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900127
128/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700129 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900130 * trader-off here:
131 * - Large number of size classes is potentially wasteful as free page are
132 * spread across these classes
133 * - Small number of size classes causes large internal fragmentation
134 * - Probably its better to use specific size classes (empirically
135 * determined). NOTE: all those class sizes must be set as multiple of
136 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
137 *
138 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
139 * (reason above)
140 */
Minchan Kim37836892016-07-26 15:23:23 -0700141#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> CLASS_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900142
Seth Jennings0959c632012-08-08 15:12:17 +0900143enum fullness_group {
Seth Jennings0959c632012-08-08 15:12:17 +0900144 ZS_EMPTY,
Minchan Kim48b48002016-07-26 15:23:31 -0700145 ZS_ALMOST_EMPTY,
146 ZS_ALMOST_FULL,
147 ZS_FULL,
148 NR_ZS_FULLNESS,
Seth Jennings0959c632012-08-08 15:12:17 +0900149};
150
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800151enum zs_stat_type {
Minchan Kim48b48002016-07-26 15:23:31 -0700152 CLASS_EMPTY,
153 CLASS_ALMOST_EMPTY,
154 CLASS_ALMOST_FULL,
155 CLASS_FULL,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800156 OBJ_ALLOCATED,
157 OBJ_USED,
Minchan Kim48b48002016-07-26 15:23:31 -0700158 NR_ZS_STAT_TYPE,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800159};
160
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800161struct zs_size_stat {
162 unsigned long objs[NR_ZS_STAT_TYPE];
163};
164
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700165#ifdef CONFIG_ZSMALLOC_STAT
166static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800167#endif
168
Minchan Kim48b48002016-07-26 15:23:31 -0700169#ifdef CONFIG_COMPACTION
170static struct vfsmount *zsmalloc_mnt;
171#endif
172
Seth Jennings0959c632012-08-08 15:12:17 +0900173/*
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800174 * number of size_classes
175 */
176static int zs_size_classes;
177
178/*
Seth Jennings0959c632012-08-08 15:12:17 +0900179 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
180 * n <= N / f, where
181 * n = number of allocated objects
182 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700183 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900184 *
185 * Similarly, we assign zspage to:
186 * ZS_ALMOST_FULL when n > N / f
187 * ZS_EMPTY when n == 0
188 * ZS_FULL when n == N
189 *
190 * (see: fix_fullness_group())
191 */
192static const int fullness_threshold_frac = 4;
193
194struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700195 spinlock_t lock;
Minchan Kim48b48002016-07-26 15:23:31 -0700196 struct list_head fullness_list[NR_ZS_FULLNESS];
Seth Jennings0959c632012-08-08 15:12:17 +0900197 /*
198 * Size of objects stored in this class. Must be multiple
199 * of ZS_ALIGN.
200 */
201 int size;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700202 int objs_per_zspage;
Weijie Yang7dfa4612016-01-14 15:22:40 -0800203 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
204 int pages_per_zspage;
Minchan Kim48b48002016-07-26 15:23:31 -0700205
206 unsigned int index;
207 struct zs_size_stat stats;
Seth Jennings0959c632012-08-08 15:12:17 +0900208};
209
Minchan Kim48b48002016-07-26 15:23:31 -0700210/* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
211static void SetPageHugeObject(struct page *page)
212{
213 SetPageOwnerPriv1(page);
214}
215
216static void ClearPageHugeObject(struct page *page)
217{
218 ClearPageOwnerPriv1(page);
219}
220
221static int PageHugeObject(struct page *page)
222{
223 return PageOwnerPriv1(page);
224}
225
Seth Jennings0959c632012-08-08 15:12:17 +0900226/*
227 * Placed within free objects to form a singly linked list.
Minchan Kim37836892016-07-26 15:23:23 -0700228 * For every zspage, zspage->freeobj gives head of this list.
Seth Jennings0959c632012-08-08 15:12:17 +0900229 *
230 * This must be power of 2 and less than or equal to ZS_ALIGN
231 */
232struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700233 union {
234 /*
Minchan Kimbfd093f2016-07-26 15:23:28 -0700235 * Free object index;
Minchan Kim2e40e162015-04-15 16:15:23 -0700236 * It's valid for non-allocated object
237 */
Minchan Kimbfd093f2016-07-26 15:23:28 -0700238 unsigned long next;
Minchan Kim2e40e162015-04-15 16:15:23 -0700239 /*
240 * Handle of allocated object.
241 */
242 unsigned long handle;
243 };
Seth Jennings0959c632012-08-08 15:12:17 +0900244};
245
246struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800247 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800248
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800249 struct size_class **size_class;
Minchan Kim2e40e162015-04-15 16:15:23 -0700250 struct kmem_cache *handle_cachep;
Minchan Kim37836892016-07-26 15:23:23 -0700251 struct kmem_cache *zspage_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900252
Minchan Kim13de8932014-10-09 15:29:48 -0700253 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800254
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700255 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700256
257 /* Compact classes */
258 struct shrinker shrinker;
259 /*
260 * To signify that register_shrinker() was successful
261 * and unregister_shrinker() will not Oops.
262 */
263 bool shrinker_enabled;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800264#ifdef CONFIG_ZSMALLOC_STAT
265 struct dentry *stat_dentry;
266#endif
Minchan Kim48b48002016-07-26 15:23:31 -0700267#ifdef CONFIG_COMPACTION
268 struct inode *inode;
269 struct work_struct free_work;
Henry Burns0e7e2732019-08-24 17:55:06 -0700270 /* A wait queue for when migration races with async_free_zspage() */
271 wait_queue_head_t migration_wait;
272 atomic_long_t isolated_pages;
273 bool destroying;
Minchan Kim48b48002016-07-26 15:23:31 -0700274#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900275};
Nitin Gupta61989a82012-01-09 16:51:56 -0600276
277/*
278 * A zspage's class index and fullness group
279 * are encoded in its (first)page->mapping
280 */
Minchan Kim37836892016-07-26 15:23:23 -0700281#define FULLNESS_BITS 2
282#define CLASS_BITS 8
Minchan Kim48b48002016-07-26 15:23:31 -0700283#define ISOLATED_BITS 3
284#define MAGIC_VAL_BITS 8
Minchan Kim4f420472016-07-26 15:23:17 -0700285
Minchan Kim37836892016-07-26 15:23:23 -0700286struct zspage {
287 struct {
288 unsigned int fullness:FULLNESS_BITS;
Minchan Kimd19f7452017-04-13 14:56:40 -0700289 unsigned int class:CLASS_BITS + 1;
Minchan Kim48b48002016-07-26 15:23:31 -0700290 unsigned int isolated:ISOLATED_BITS;
291 unsigned int magic:MAGIC_VAL_BITS;
Minchan Kim37836892016-07-26 15:23:23 -0700292 };
293 unsigned int inuse;
Minchan Kimbfd093f2016-07-26 15:23:28 -0700294 unsigned int freeobj;
Minchan Kim37836892016-07-26 15:23:23 -0700295 struct page *first_page;
296 struct list_head list; /* fullness list */
Minchan Kim48b48002016-07-26 15:23:31 -0700297#ifdef CONFIG_COMPACTION
298 rwlock_t lock;
299#endif
Minchan Kim37836892016-07-26 15:23:23 -0700300};
Nitin Gupta61989a82012-01-09 16:51:56 -0600301
Seth Jenningsf5536462012-07-18 11:55:56 -0500302struct mapping_area {
Minchan Kim1b945ae2013-12-11 11:04:36 +0900303#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500304 struct vm_struct *vm; /* vm area for mapping object that span pages */
305#else
306 char *vm_buf; /* copy buffer for objects that span pages */
307#endif
308 char *vm_addr; /* address of kmap_atomic()'ed pages */
309 enum zs_mapmode vm_mm; /* mapping mode */
310};
311
Minchan Kim48b48002016-07-26 15:23:31 -0700312#ifdef CONFIG_COMPACTION
313static int zs_register_migration(struct zs_pool *pool);
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#else
322static int zsmalloc_mount(void) { return 0; }
323static void zsmalloc_unmount(void) {}
324static int zs_register_migration(struct zs_pool *pool) { return 0; }
325static void zs_unregister_migration(struct zs_pool *pool) {}
326static void migrate_lock_init(struct zspage *zspage) {}
327static void migrate_read_lock(struct zspage *zspage) {}
328static void migrate_read_unlock(struct zspage *zspage) {}
329static void kick_deferred_free(struct zs_pool *pool) {}
330static void init_deferred_free(struct zs_pool *pool) {}
331static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage) {}
332#endif
333
Minchan Kim37836892016-07-26 15:23:23 -0700334static int create_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700335{
336 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
337 0, 0, NULL);
Minchan Kim37836892016-07-26 15:23:23 -0700338 if (!pool->handle_cachep)
339 return 1;
340
341 pool->zspage_cachep = kmem_cache_create("zspage", sizeof(struct zspage),
342 0, 0, NULL);
343 if (!pool->zspage_cachep) {
344 kmem_cache_destroy(pool->handle_cachep);
345 pool->handle_cachep = NULL;
346 return 1;
347 }
348
349 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -0700350}
351
Minchan Kim37836892016-07-26 15:23:23 -0700352static void destroy_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700353{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700354 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim37836892016-07-26 15:23:23 -0700355 kmem_cache_destroy(pool->zspage_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700356}
357
Minchan Kim37836892016-07-26 15:23:23 -0700358static unsigned long cache_alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700359{
360 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700361 gfp & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim2e40e162015-04-15 16:15:23 -0700362}
363
Minchan Kim37836892016-07-26 15:23:23 -0700364static void cache_free_handle(struct zs_pool *pool, unsigned long handle)
Minchan Kim2e40e162015-04-15 16:15:23 -0700365{
366 kmem_cache_free(pool->handle_cachep, (void *)handle);
367}
368
Minchan Kim37836892016-07-26 15:23:23 -0700369static struct zspage *cache_alloc_zspage(struct zs_pool *pool, gfp_t flags)
370{
Minchan Kim48b48002016-07-26 15:23:31 -0700371 return kmem_cache_alloc(pool->zspage_cachep,
372 flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim37836892016-07-26 15:23:23 -0700373};
374
375static void cache_free_zspage(struct zs_pool *pool, struct zspage *zspage)
376{
377 kmem_cache_free(pool->zspage_cachep, zspage);
378}
379
Minchan Kim2e40e162015-04-15 16:15:23 -0700380static void record_obj(unsigned long handle, unsigned long obj)
381{
Junil Leec102f072016-01-20 14:58:18 -0800382 /*
383 * lsb of @obj represents handle lock while other bits
384 * represent object value the handle is pointing so
385 * updating shouldn't do store tearing.
386 */
387 WRITE_ONCE(*(unsigned long *)handle, obj);
Minchan Kim2e40e162015-04-15 16:15:23 -0700388}
389
Dan Streetmanc7957792014-08-06 16:08:38 -0700390/* zpool driver */
391
392#ifdef CONFIG_ZPOOL
393
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800394static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700395 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700396 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700397{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700398 /*
399 * Ignore global gfp flags: zs_malloc() may be invoked from
400 * different contexts and its caller must provide a valid
401 * gfp mask.
402 */
403 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700404}
405
406static void zs_zpool_destroy(void *pool)
407{
408 zs_destroy_pool(pool);
409}
410
411static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
412 unsigned long *handle)
413{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700414 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700415 return *handle ? 0 : -1;
416}
417static void zs_zpool_free(void *pool, unsigned long handle)
418{
419 zs_free(pool, handle);
420}
421
422static int zs_zpool_shrink(void *pool, unsigned int pages,
423 unsigned int *reclaimed)
424{
425 return -EINVAL;
426}
427
428static void *zs_zpool_map(void *pool, unsigned long handle,
429 enum zpool_mapmode mm)
430{
431 enum zs_mapmode zs_mm;
432
433 switch (mm) {
434 case ZPOOL_MM_RO:
435 zs_mm = ZS_MM_RO;
436 break;
437 case ZPOOL_MM_WO:
438 zs_mm = ZS_MM_WO;
439 break;
440 case ZPOOL_MM_RW: /* fallthru */
441 default:
442 zs_mm = ZS_MM_RW;
443 break;
444 }
445
446 return zs_map_object(pool, handle, zs_mm);
447}
448static void zs_zpool_unmap(void *pool, unsigned long handle)
449{
450 zs_unmap_object(pool, handle);
451}
452
453static u64 zs_zpool_total_size(void *pool)
454{
Minchan Kim722cdc12014-10-09 15:29:50 -0700455 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700456}
457
458static struct zpool_driver zs_zpool_driver = {
459 .type = "zsmalloc",
460 .owner = THIS_MODULE,
461 .create = zs_zpool_create,
462 .destroy = zs_zpool_destroy,
463 .malloc = zs_zpool_malloc,
464 .free = zs_zpool_free,
465 .shrink = zs_zpool_shrink,
466 .map = zs_zpool_map,
467 .unmap = zs_zpool_unmap,
468 .total_size = zs_zpool_total_size,
469};
470
Kees Cook137f8cf2014-08-29 15:18:40 -0700471MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700472#endif /* CONFIG_ZPOOL */
473
Nitin Gupta61989a82012-01-09 16:51:56 -0600474/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
475static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
476
Minchan Kim48b48002016-07-26 15:23:31 -0700477static bool is_zspage_isolated(struct zspage *zspage)
478{
479 return zspage->isolated;
480}
481
Nick Desaulniers5ac69182017-07-10 15:47:26 -0700482static __maybe_unused int is_first_page(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600483{
Minchan Kima27545bf2012-04-25 15:23:09 +0900484 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600485}
486
Minchan Kim48b48002016-07-26 15:23:31 -0700487/* Protected by class->lock */
Minchan Kim37836892016-07-26 15:23:23 -0700488static inline int get_zspage_inuse(struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600489{
Minchan Kim37836892016-07-26 15:23:23 -0700490 return zspage->inuse;
Nitin Gupta61989a82012-01-09 16:51:56 -0600491}
492
Minchan Kim37836892016-07-26 15:23:23 -0700493static inline void set_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700494{
Minchan Kim37836892016-07-26 15:23:23 -0700495 zspage->inuse = val;
Minchan Kim4f420472016-07-26 15:23:17 -0700496}
497
Minchan Kim37836892016-07-26 15:23:23 -0700498static inline void mod_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700499{
Minchan Kim37836892016-07-26 15:23:23 -0700500 zspage->inuse += val;
Minchan Kim4f420472016-07-26 15:23:17 -0700501}
502
Minchan Kim48b48002016-07-26 15:23:31 -0700503static inline struct page *get_first_page(struct zspage *zspage)
504{
505 struct page *first_page = zspage->first_page;
506
507 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
508 return first_page;
509}
510
Minchan Kim4f420472016-07-26 15:23:17 -0700511static inline int get_first_obj_offset(struct page *page)
512{
Minchan Kim48b48002016-07-26 15:23:31 -0700513 return page->units;
Minchan Kim4f420472016-07-26 15:23:17 -0700514}
515
516static inline void set_first_obj_offset(struct page *page, int offset)
517{
Minchan Kim48b48002016-07-26 15:23:31 -0700518 page->units = offset;
Minchan Kim4f420472016-07-26 15:23:17 -0700519}
520
Minchan Kimbfd093f2016-07-26 15:23:28 -0700521static inline unsigned int get_freeobj(struct zspage *zspage)
Minchan Kim4f420472016-07-26 15:23:17 -0700522{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700523 return zspage->freeobj;
Minchan Kim4f420472016-07-26 15:23:17 -0700524}
525
Minchan Kimbfd093f2016-07-26 15:23:28 -0700526static inline void set_freeobj(struct zspage *zspage, unsigned int obj)
Minchan Kim4f420472016-07-26 15:23:17 -0700527{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700528 zspage->freeobj = obj;
Minchan Kim4f420472016-07-26 15:23:17 -0700529}
530
Minchan Kim37836892016-07-26 15:23:23 -0700531static void get_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700532 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600533 enum fullness_group *fullness)
534{
Minchan Kim48b48002016-07-26 15:23:31 -0700535 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
536
Minchan Kim37836892016-07-26 15:23:23 -0700537 *fullness = zspage->fullness;
538 *class_idx = zspage->class;
Nitin Gupta61989a82012-01-09 16:51:56 -0600539}
540
Minchan Kim37836892016-07-26 15:23:23 -0700541static void set_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700542 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600543 enum fullness_group fullness)
544{
Minchan Kim37836892016-07-26 15:23:23 -0700545 zspage->class = class_idx;
546 zspage->fullness = fullness;
Nitin Gupta61989a82012-01-09 16:51:56 -0600547}
548
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900549/*
550 * zsmalloc divides the pool into various size classes where each
551 * class maintains a list of zspages where each zspage is divided
552 * into equal sized chunks. Each allocation falls into one of these
553 * classes depending on its size. This function returns index of the
554 * size class which has chunk size big enough to hold the give size.
555 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600556static int get_size_class_index(int size)
557{
558 int idx = 0;
559
560 if (likely(size > ZS_MIN_ALLOC_SIZE))
561 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
562 ZS_SIZE_CLASS_DELTA);
563
Minchan Kim7b60a682015-04-15 16:15:39 -0700564 return min(zs_size_classes - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600565}
566
Matthias Kaehlcked069e8c2017-09-08 16:13:02 -0700567/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700568static inline void zs_stat_inc(struct size_class *class,
Matthias Kaehlcked069e8c2017-09-08 16:13:02 -0700569 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700570{
Minchan Kim48b48002016-07-26 15:23:31 -0700571 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700572}
573
Matthias Kaehlcked069e8c2017-09-08 16:13:02 -0700574/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700575static inline void zs_stat_dec(struct size_class *class,
Matthias Kaehlcked069e8c2017-09-08 16:13:02 -0700576 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700577{
Minchan Kim48b48002016-07-26 15:23:31 -0700578 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700579}
580
Matthias Kaehlcked069e8c2017-09-08 16:13:02 -0700581/* type can be of enum type zs_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700582static inline unsigned long zs_stat_get(struct size_class *class,
Matthias Kaehlcked069e8c2017-09-08 16:13:02 -0700583 int type)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700584{
Minchan Kim48b48002016-07-26 15:23:31 -0700585 return class->stats.objs[type];
Minchan Kim248ca1b2015-04-15 16:15:42 -0700586}
587
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700588#ifdef CONFIG_ZSMALLOC_STAT
589
Dan Streetman4abaac92016-05-26 15:16:27 -0700590static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700591{
Dan Streetman4abaac92016-05-26 15:16:27 -0700592 if (!debugfs_initialized()) {
593 pr_warn("debugfs not available, stat dir not created\n");
594 return;
595 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700596
597 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
598 if (!zs_stat_root)
Dan Streetman4abaac92016-05-26 15:16:27 -0700599 pr_warn("debugfs 'zsmalloc' stat dir creation failed\n");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700600}
601
602static void __exit zs_stat_exit(void)
603{
604 debugfs_remove_recursive(zs_stat_root);
605}
606
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700607static unsigned long zs_can_compact(struct size_class *class);
608
Minchan Kim248ca1b2015-04-15 16:15:42 -0700609static int zs_stats_size_show(struct seq_file *s, void *v)
610{
611 int i;
612 struct zs_pool *pool = s->private;
613 struct size_class *class;
614 int objs_per_zspage;
615 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700616 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700617 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
618 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700619 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700620
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700621 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700622 "class", "size", "almost_full", "almost_empty",
623 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700624 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700625
626 for (i = 0; i < zs_size_classes; i++) {
627 class = pool->size_class[i];
628
629 if (class->index != i)
630 continue;
631
632 spin_lock(&class->lock);
633 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
634 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
635 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
636 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700637 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700638 spin_unlock(&class->lock);
639
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700640 objs_per_zspage = class->objs_per_zspage;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700641 pages_used = obj_allocated / objs_per_zspage *
642 class->pages_per_zspage;
643
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700644 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
645 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700646 i, class->size, class_almost_full, class_almost_empty,
647 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700648 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700649
650 total_class_almost_full += class_almost_full;
651 total_class_almost_empty += class_almost_empty;
652 total_objs += obj_allocated;
653 total_used_objs += obj_used;
654 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700655 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700656 }
657
658 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700659 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700660 "Total", "", total_class_almost_full,
661 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700662 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700663
664 return 0;
665}
666
667static int zs_stats_size_open(struct inode *inode, struct file *file)
668{
669 return single_open(file, zs_stats_size_show, inode->i_private);
670}
671
672static const struct file_operations zs_stat_size_ops = {
673 .open = zs_stats_size_open,
674 .read = seq_read,
675 .llseek = seq_lseek,
676 .release = single_release,
677};
678
Dan Streetmand34f6152016-05-20 16:59:56 -0700679static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700680{
681 struct dentry *entry;
682
Dan Streetman4abaac92016-05-26 15:16:27 -0700683 if (!zs_stat_root) {
684 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700685 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700686 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700687
688 entry = debugfs_create_dir(name, zs_stat_root);
689 if (!entry) {
690 pr_warn("debugfs dir <%s> creation failed\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700691 return;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700692 }
693 pool->stat_dentry = entry;
694
695 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
696 pool->stat_dentry, pool, &zs_stat_size_ops);
697 if (!entry) {
698 pr_warn("%s: debugfs file entry <%s> creation failed\n",
699 name, "classes");
Dan Streetman4abaac92016-05-26 15:16:27 -0700700 debugfs_remove_recursive(pool->stat_dentry);
701 pool->stat_dentry = NULL;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700702 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700703}
704
705static void zs_pool_stat_destroy(struct zs_pool *pool)
706{
707 debugfs_remove_recursive(pool->stat_dentry);
708}
709
710#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700711static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700712{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700713}
714
715static void __exit zs_stat_exit(void)
716{
717}
718
Dan Streetmand34f6152016-05-20 16:59:56 -0700719static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700720{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700721}
722
723static inline void zs_pool_stat_destroy(struct zs_pool *pool)
724{
725}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700726#endif
727
Minchan Kim48b48002016-07-26 15:23:31 -0700728
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900729/*
730 * For each size class, zspages are divided into different groups
731 * depending on how "full" they are. This was done so that we could
732 * easily find empty or nearly empty zspages when we try to shrink
733 * the pool (not yet implemented). This function returns fullness
734 * status of the given page.
735 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700736static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700737 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600738{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700739 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600740 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700741
Minchan Kim37836892016-07-26 15:23:23 -0700742 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700743 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600744
745 if (inuse == 0)
746 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700747 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600748 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700749 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600750 fg = ZS_ALMOST_EMPTY;
751 else
752 fg = ZS_ALMOST_FULL;
753
754 return fg;
755}
756
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900757/*
758 * Each size class maintains various freelists and zspages are assigned
759 * to one of these freelists based on the number of live objects they
760 * have. This functions inserts the given zspage into the freelist
761 * identified by <class, fullness_group>.
762 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700763static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700764 struct zspage *zspage,
765 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600766{
Minchan Kim37836892016-07-26 15:23:23 -0700767 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600768
Minchan Kim48b48002016-07-26 15:23:31 -0700769 zs_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700770 head = list_first_entry_or_null(&class->fullness_list[fullness],
771 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700772 /*
Minchan Kim37836892016-07-26 15:23:23 -0700773 * We want to see more ZS_FULL pages and less almost empty/full.
774 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700775 */
Minchan Kim37836892016-07-26 15:23:23 -0700776 if (head) {
777 if (get_zspage_inuse(zspage) < get_zspage_inuse(head)) {
778 list_add(&zspage->list, &head->list);
779 return;
780 }
781 }
782 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600783}
784
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900785/*
786 * This function removes the given zspage from the freelist identified
787 * by <class, fullness_group>.
788 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700789static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700790 struct zspage *zspage,
791 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600792{
Minchan Kim37836892016-07-26 15:23:23 -0700793 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Minchan Kim48b48002016-07-26 15:23:31 -0700794 VM_BUG_ON(is_zspage_isolated(zspage));
Nitin Gupta61989a82012-01-09 16:51:56 -0600795
Minchan Kim37836892016-07-26 15:23:23 -0700796 list_del_init(&zspage->list);
Minchan Kim48b48002016-07-26 15:23:31 -0700797 zs_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600798}
799
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900800/*
801 * Each size class maintains zspages in different fullness groups depending
802 * on the number of live objects they contain. When allocating or freeing
803 * objects, the fullness status of the page can change, say, from ALMOST_FULL
804 * to ALMOST_EMPTY when freeing an object. This function checks if such
805 * a status change has occurred for the given page and accordingly moves the
806 * page from the freelist of the old fullness group to that of the new
807 * fullness group.
808 */
Minchan Kimc7806262015-04-15 16:15:26 -0700809static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700810 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600811{
812 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600813 enum fullness_group currfg, newfg;
814
Minchan Kim37836892016-07-26 15:23:23 -0700815 get_zspage_mapping(zspage, &class_idx, &currfg);
816 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600817 if (newfg == currfg)
818 goto out;
819
Minchan Kim48b48002016-07-26 15:23:31 -0700820 if (!is_zspage_isolated(zspage)) {
821 remove_zspage(class, zspage, currfg);
822 insert_zspage(class, zspage, newfg);
823 }
824
Minchan Kim37836892016-07-26 15:23:23 -0700825 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600826
827out:
828 return newfg;
829}
830
831/*
832 * We have to decide on how many pages to link together
833 * to form a zspage for each size class. This is important
834 * to reduce wastage due to unusable space left at end of
835 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700836 * wastage = Zp % class_size
837 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600838 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
839 *
840 * For example, for size class of 3/8 * PAGE_SIZE, we should
841 * link together 3 PAGE_SIZE sized pages to form a zspage
842 * since then we can perfectly fit in 8 such objects.
843 */
Minchan Kim2e3b6152012-05-03 15:40:39 +0900844static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600845{
846 int i, max_usedpc = 0;
847 /* zspage order which gives maximum used size per KB */
848 int max_usedpc_order = 1;
849
Seth Jennings84d4faa2012-03-05 11:33:21 -0600850 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600851 int zspage_size;
852 int waste, usedpc;
853
854 zspage_size = i * PAGE_SIZE;
855 waste = zspage_size % class_size;
856 usedpc = (zspage_size - waste) * 100 / zspage_size;
857
858 if (usedpc > max_usedpc) {
859 max_usedpc = usedpc;
860 max_usedpc_order = i;
861 }
862 }
863
864 return max_usedpc_order;
865}
866
Minchan Kim37836892016-07-26 15:23:23 -0700867static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600868{
Minchan Kim48b48002016-07-26 15:23:31 -0700869 struct zspage *zspage = (struct zspage *)page->private;
870
871 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
872 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600873}
874
875static struct page *get_next_page(struct page *page)
876{
Minchan Kim48b48002016-07-26 15:23:31 -0700877 if (unlikely(PageHugeObject(page)))
878 return NULL;
879
880 return page->freelist;
Nitin Gupta61989a82012-01-09 16:51:56 -0600881}
882
Minchan Kimbfd093f2016-07-26 15:23:28 -0700883/**
884 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
885 * @page: page object resides in zspage
886 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800887 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700888static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700889 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600890{
Minchan Kim312fcae2015-04-15 16:15:30 -0700891 obj >>= OBJ_TAG_BITS;
892 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
893 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600894}
895
Minchan Kimbfd093f2016-07-26 15:23:28 -0700896/**
897 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
898 * @page: page object resides in zspage
899 * @obj_idx: object index
900 */
901static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
902{
903 unsigned long obj;
904
905 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
906 obj |= obj_idx & OBJ_INDEX_MASK;
907 obj <<= OBJ_TAG_BITS;
908
909 return obj;
910}
911
Minchan Kim2e40e162015-04-15 16:15:23 -0700912static unsigned long handle_to_obj(unsigned long handle)
913{
914 return *(unsigned long *)handle;
915}
916
Minchan Kim48b48002016-07-26 15:23:31 -0700917static unsigned long obj_to_head(struct page *page, void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700918{
Minchan Kim48b48002016-07-26 15:23:31 -0700919 if (unlikely(PageHugeObject(page))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700920 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim37836892016-07-26 15:23:23 -0700921 return page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700922 } else
923 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700924}
925
Minchan Kim48b48002016-07-26 15:23:31 -0700926static inline int testpin_tag(unsigned long handle)
927{
928 return bit_spin_is_locked(HANDLE_PIN_BIT, (unsigned long *)handle);
929}
930
Minchan Kim312fcae2015-04-15 16:15:30 -0700931static inline int trypin_tag(unsigned long handle)
932{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700933 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700934}
935
936static void pin_tag(unsigned long handle)
937{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700938 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700939}
940
941static void unpin_tag(unsigned long handle)
942{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700943 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700944}
945
Nitin Guptaf4477e92012-04-02 09:13:56 -0500946static void reset_page(struct page *page)
947{
Minchan Kim48b48002016-07-26 15:23:31 -0700948 __ClearPageMovable(page);
Ganesh Mahendran18fd06b2016-07-28 15:48:00 -0700949 ClearPagePrivate(page);
950 ClearPagePrivate2(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500951 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700952 page_mapcount_reset(page);
953 ClearPageHugeObject(page);
954 page->freelist = NULL;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500955}
956
Minchan Kim48b48002016-07-26 15:23:31 -0700957/*
958 * To prevent zspage destroy during migration, zspage freeing should
959 * hold locks of all pages in the zspage.
960 */
961void lock_zspage(struct zspage *zspage)
962{
963 struct page *page = get_first_page(zspage);
964
965 do {
966 lock_page(page);
967 } while ((page = get_next_page(page)) != NULL);
968}
969
970int trylock_zspage(struct zspage *zspage)
971{
972 struct page *cursor, *fail;
973
974 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
975 get_next_page(cursor)) {
976 if (!trylock_page(cursor)) {
977 fail = cursor;
978 goto unlock;
979 }
980 }
981
982 return 1;
983unlock:
984 for (cursor = get_first_page(zspage); cursor != fail; cursor =
985 get_next_page(cursor))
986 unlock_page(cursor);
987
988 return 0;
989}
990
991static void __free_zspage(struct zs_pool *pool, struct size_class *class,
992 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600993{
Minchan Kim37836892016-07-26 15:23:23 -0700994 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700995 enum fullness_group fg;
996 unsigned int class_idx;
997
998 get_zspage_mapping(zspage, &class_idx, &fg);
999
1000 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -06001001
Minchan Kim37836892016-07-26 15:23:23 -07001002 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -07001003 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -06001004
Minchan Kim48b48002016-07-26 15:23:31 -07001005 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -07001006 do {
Minchan Kim48b48002016-07-26 15:23:31 -07001007 VM_BUG_ON_PAGE(!PageLocked(page), page);
1008 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -07001009 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001010 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -07001011 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -07001012 put_page(page);
1013 page = next;
1014 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -06001015
Minchan Kim37836892016-07-26 15:23:23 -07001016 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001017
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001018 zs_stat_dec(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001019 atomic_long_sub(class->pages_per_zspage,
1020 &pool->pages_allocated);
1021}
1022
1023static void free_zspage(struct zs_pool *pool, struct size_class *class,
1024 struct zspage *zspage)
1025{
1026 VM_BUG_ON(get_zspage_inuse(zspage));
1027 VM_BUG_ON(list_empty(&zspage->list));
1028
1029 if (!trylock_zspage(zspage)) {
1030 kick_deferred_free(pool);
1031 return;
1032 }
1033
1034 remove_zspage(class, zspage, ZS_EMPTY);
1035 __free_zspage(pool, class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001036}
1037
1038/* Initialize a newly allocated zspage */
Minchan Kim37836892016-07-26 15:23:23 -07001039static void init_zspage(struct size_class *class, struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001040{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001041 unsigned int freeobj = 1;
Nitin Gupta61989a82012-01-09 16:51:56 -06001042 unsigned long off = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07001043 struct page *page = get_first_page(zspage);
Minchan Kim830e4bc2016-05-20 16:59:39 -07001044
Nitin Gupta61989a82012-01-09 16:51:56 -06001045 while (page) {
1046 struct page *next_page;
1047 struct link_free *link;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001048 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -06001049
Minchan Kim37836892016-07-26 15:23:23 -07001050 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -06001051
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001052 vaddr = kmap_atomic(page);
1053 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001054
Dan Streetman5538c562014-10-09 15:30:01 -07001055 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001056 link->next = freeobj++ << OBJ_TAG_BITS;
Dan Streetman5538c562014-10-09 15:30:01 -07001057 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001058 }
1059
1060 /*
1061 * We now come to the last (full or partial) object on this
1062 * page, which must point to the first object on the next
1063 * page (if present)
1064 */
1065 next_page = get_next_page(page);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001066 if (next_page) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001067 link->next = freeobj++ << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001068 } else {
1069 /*
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001070 * Reset OBJ_TAG_BITS bit to last link to tell
Minchan Kimbfd093f2016-07-26 15:23:28 -07001071 * whether it's allocated object or not.
1072 */
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001073 link->next = -1 << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001074 }
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001075 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -06001076 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -07001077 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -06001078 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001079
Minchan Kimbfd093f2016-07-26 15:23:28 -07001080 set_freeobj(zspage, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001081}
1082
Minchan Kim48b48002016-07-26 15:23:31 -07001083static void create_page_chain(struct size_class *class, struct zspage *zspage,
1084 struct page *pages[])
Nitin Gupta61989a82012-01-09 16:51:56 -06001085{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001086 int i;
1087 struct page *page;
1088 struct page *prev_page = NULL;
Minchan Kim48b48002016-07-26 15:23:31 -07001089 int nr_pages = class->pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001090
1091 /*
1092 * Allocate individual pages and link them together as:
Minchan Kim48b48002016-07-26 15:23:31 -07001093 * 1. all pages are linked together using page->freelist
Minchan Kim37836892016-07-26 15:23:23 -07001094 * 2. each sub-page point to zspage using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001095 *
Minchan Kim37836892016-07-26 15:23:23 -07001096 * we set PG_private to identify the first page (i.e. no other sub-page
1097 * has this flag set) and PG_private_2 to identify the last page.
Nitin Gupta61989a82012-01-09 16:51:56 -06001098 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001099 for (i = 0; i < nr_pages; i++) {
1100 page = pages[i];
Minchan Kim37836892016-07-26 15:23:23 -07001101 set_page_private(page, (unsigned long)zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001102 page->freelist = NULL;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001103 if (i == 0) {
Minchan Kim37836892016-07-26 15:23:23 -07001104 zspage->first_page = page;
Minchan Kima27545bf2012-04-25 15:23:09 +09001105 SetPagePrivate(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001106 if (unlikely(class->objs_per_zspage == 1 &&
1107 class->pages_per_zspage == 1))
1108 SetPageHugeObject(page);
Minchan Kim37836892016-07-26 15:23:23 -07001109 } else {
Minchan Kim48b48002016-07-26 15:23:31 -07001110 prev_page->freelist = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001111 }
Minchan Kim48b48002016-07-26 15:23:31 -07001112 if (i == nr_pages - 1)
Minchan Kima27545bf2012-04-25 15:23:09 +09001113 SetPagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001114 prev_page = page;
1115 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001116}
Nitin Gupta61989a82012-01-09 16:51:56 -06001117
Minchan Kimbdb0af72016-07-26 15:23:20 -07001118/*
1119 * Allocate a zspage for the given size class
1120 */
Minchan Kim37836892016-07-26 15:23:23 -07001121static struct zspage *alloc_zspage(struct zs_pool *pool,
1122 struct size_class *class,
1123 gfp_t gfp)
Minchan Kimbdb0af72016-07-26 15:23:20 -07001124{
1125 int i;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001126 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Minchan Kim37836892016-07-26 15:23:23 -07001127 struct zspage *zspage = cache_alloc_zspage(pool, gfp);
1128
1129 if (!zspage)
1130 return NULL;
1131
1132 memset(zspage, 0, sizeof(struct zspage));
Minchan Kim48b48002016-07-26 15:23:31 -07001133 zspage->magic = ZSPAGE_MAGIC;
1134 migrate_lock_init(zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001135
Minchan Kimbdb0af72016-07-26 15:23:20 -07001136 for (i = 0; i < class->pages_per_zspage; i++) {
1137 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001138
Minchan Kim37836892016-07-26 15:23:23 -07001139 page = alloc_page(gfp);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001140 if (!page) {
Minchan Kim91537fe2016-07-26 15:24:45 -07001141 while (--i >= 0) {
1142 dec_zone_page_state(pages[i], NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001143 __free_page(pages[i]);
Minchan Kim91537fe2016-07-26 15:24:45 -07001144 }
Minchan Kim37836892016-07-26 15:23:23 -07001145 cache_free_zspage(pool, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001146 return NULL;
1147 }
Minchan Kim91537fe2016-07-26 15:24:45 -07001148
1149 inc_zone_page_state(page, NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001150 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001151 }
1152
Minchan Kim48b48002016-07-26 15:23:31 -07001153 create_page_chain(class, zspage, pages);
Minchan Kim37836892016-07-26 15:23:23 -07001154 init_zspage(class, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001155
Minchan Kim37836892016-07-26 15:23:23 -07001156 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001157}
1158
Minchan Kim37836892016-07-26 15:23:23 -07001159static struct zspage *find_get_zspage(struct size_class *class)
Nitin Gupta61989a82012-01-09 16:51:56 -06001160{
1161 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001162 struct zspage *zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001163
Minchan Kim48b48002016-07-26 15:23:31 -07001164 for (i = ZS_ALMOST_FULL; i >= ZS_EMPTY; i--) {
Minchan Kim37836892016-07-26 15:23:23 -07001165 zspage = list_first_entry_or_null(&class->fullness_list[i],
1166 struct zspage, list);
1167 if (zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001168 break;
1169 }
1170
Minchan Kim37836892016-07-26 15:23:23 -07001171 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001172}
1173
Minchan Kim1b945ae2013-12-11 11:04:36 +09001174#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -05001175static inline int __zs_cpu_up(struct mapping_area *area)
Seth Jennings5f601902012-07-02 16:15:49 -05001176{
Seth Jenningsf5536462012-07-18 11:55:56 -05001177 /*
1178 * Make sure we don't leak memory if a cpu UP notification
1179 * and zs_init() race and both call zs_cpu_up() on the same cpu
1180 */
1181 if (area->vm)
1182 return 0;
1183 area->vm = alloc_vm_area(PAGE_SIZE * 2, NULL);
1184 if (!area->vm)
1185 return -ENOMEM;
1186 return 0;
1187}
1188
1189static inline void __zs_cpu_down(struct mapping_area *area)
1190{
1191 if (area->vm)
1192 free_vm_area(area->vm);
1193 area->vm = NULL;
1194}
1195
1196static inline void *__zs_map_object(struct mapping_area *area,
1197 struct page *pages[2], int off, int size)
1198{
WANG Chaof6f8ed42014-08-06 16:06:58 -07001199 BUG_ON(map_vm_area(area->vm, PAGE_KERNEL, pages));
Seth Jenningsf5536462012-07-18 11:55:56 -05001200 area->vm_addr = area->vm->addr;
1201 return area->vm_addr + off;
1202}
1203
1204static inline void __zs_unmap_object(struct mapping_area *area,
1205 struct page *pages[2], int off, int size)
1206{
1207 unsigned long addr = (unsigned long)area->vm_addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001208
Joerg Roedeld95abbb2013-03-27 01:43:14 +01001209 unmap_kernel_range(addr, PAGE_SIZE * 2);
Seth Jenningsf5536462012-07-18 11:55:56 -05001210}
1211
Minchan Kim1b945ae2013-12-11 11:04:36 +09001212#else /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001213
1214static inline int __zs_cpu_up(struct mapping_area *area)
1215{
1216 /*
1217 * Make sure we don't leak memory if a cpu UP notification
1218 * and zs_init() race and both call zs_cpu_up() on the same cpu
1219 */
1220 if (area->vm_buf)
1221 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001222 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001223 if (!area->vm_buf)
1224 return -ENOMEM;
1225 return 0;
1226}
1227
1228static inline void __zs_cpu_down(struct mapping_area *area)
1229{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001230 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001231 area->vm_buf = NULL;
1232}
1233
1234static void *__zs_map_object(struct mapping_area *area,
1235 struct page *pages[2], int off, int size)
1236{
Seth Jennings5f601902012-07-02 16:15:49 -05001237 int sizes[2];
1238 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001239 char *buf = area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001240
Seth Jenningsf5536462012-07-18 11:55:56 -05001241 /* disable page faults to match kmap_atomic() return conditions */
1242 pagefault_disable();
1243
1244 /* no read fastpath */
1245 if (area->vm_mm == ZS_MM_WO)
1246 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001247
1248 sizes[0] = PAGE_SIZE - off;
1249 sizes[1] = size - sizes[0];
1250
Seth Jennings5f601902012-07-02 16:15:49 -05001251 /* copy object to per-cpu buffer */
1252 addr = kmap_atomic(pages[0]);
1253 memcpy(buf, addr + off, sizes[0]);
1254 kunmap_atomic(addr);
1255 addr = kmap_atomic(pages[1]);
1256 memcpy(buf + sizes[0], addr, sizes[1]);
1257 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001258out:
1259 return area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001260}
1261
Seth Jenningsf5536462012-07-18 11:55:56 -05001262static void __zs_unmap_object(struct mapping_area *area,
1263 struct page *pages[2], int off, int size)
Seth Jennings5f601902012-07-02 16:15:49 -05001264{
Seth Jennings5f601902012-07-02 16:15:49 -05001265 int sizes[2];
1266 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001267 char *buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001268
Seth Jenningsf5536462012-07-18 11:55:56 -05001269 /* no write fastpath */
1270 if (area->vm_mm == ZS_MM_RO)
1271 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001272
Minchan Kim7b60a682015-04-15 16:15:39 -07001273 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001274 buf = buf + ZS_HANDLE_SIZE;
1275 size -= ZS_HANDLE_SIZE;
1276 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001277
Seth Jennings5f601902012-07-02 16:15:49 -05001278 sizes[0] = PAGE_SIZE - off;
1279 sizes[1] = size - sizes[0];
1280
1281 /* copy per-cpu buffer to object */
1282 addr = kmap_atomic(pages[0]);
1283 memcpy(addr + off, buf, sizes[0]);
1284 kunmap_atomic(addr);
1285 addr = kmap_atomic(pages[1]);
1286 memcpy(addr, buf + sizes[0], sizes[1]);
1287 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001288
1289out:
1290 /* enable page faults to match kunmap_atomic() return conditions */
1291 pagefault_enable();
Seth Jennings5f601902012-07-02 16:15:49 -05001292}
Nitin Gupta61989a82012-01-09 16:51:56 -06001293
Minchan Kim1b945ae2013-12-11 11:04:36 +09001294#endif /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001295
Nitin Gupta61989a82012-01-09 16:51:56 -06001296static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
1297 void *pcpu)
1298{
Seth Jenningsf5536462012-07-18 11:55:56 -05001299 int ret, cpu = (long)pcpu;
Nitin Gupta61989a82012-01-09 16:51:56 -06001300 struct mapping_area *area;
1301
1302 switch (action) {
1303 case CPU_UP_PREPARE:
1304 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001305 ret = __zs_cpu_up(area);
1306 if (ret)
1307 return notifier_from_errno(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001308 break;
1309 case CPU_DEAD:
1310 case CPU_UP_CANCELED:
1311 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001312 __zs_cpu_down(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001313 break;
1314 }
1315
1316 return NOTIFY_OK;
1317}
1318
1319static struct notifier_block zs_cpu_nb = {
1320 .notifier_call = zs_cpu_notifier
1321};
1322
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001323static int zs_register_cpu_notifier(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001324{
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001325 int cpu, uninitialized_var(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001326
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301327 cpu_notifier_register_begin();
1328
1329 __register_cpu_notifier(&zs_cpu_nb);
Nitin Gupta61989a82012-01-09 16:51:56 -06001330 for_each_online_cpu(cpu) {
1331 ret = zs_cpu_notifier(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001332 if (notifier_to_errno(ret))
1333 break;
Nitin Gupta61989a82012-01-09 16:51:56 -06001334 }
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301335
1336 cpu_notifier_register_done();
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001337 return notifier_to_errno(ret);
1338}
1339
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001340static void zs_unregister_cpu_notifier(void)
1341{
1342 int cpu;
1343
1344 cpu_notifier_register_begin();
1345
1346 for_each_online_cpu(cpu)
1347 zs_cpu_notifier(NULL, CPU_DEAD, (void *)(long)cpu);
1348 __unregister_cpu_notifier(&zs_cpu_nb);
1349
1350 cpu_notifier_register_done();
1351}
1352
Ganesh Mahendran35b34452016-07-28 15:47:57 -07001353static void __init init_zs_size_classes(void)
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001354{
1355 int nr;
1356
1357 nr = (ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) / ZS_SIZE_CLASS_DELTA + 1;
1358 if ((ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) % ZS_SIZE_CLASS_DELTA)
1359 nr += 1;
1360
1361 zs_size_classes = nr;
1362}
1363
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001364static bool can_merge(struct size_class *prev, int pages_per_zspage,
1365 int objs_per_zspage)
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001366{
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001367 if (prev->pages_per_zspage == pages_per_zspage &&
1368 prev->objs_per_zspage == objs_per_zspage)
1369 return true;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001370
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001371 return false;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001372}
1373
Minchan Kim37836892016-07-26 15:23:23 -07001374static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001375{
Minchan Kim37836892016-07-26 15:23:23 -07001376 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001377}
1378
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001379unsigned long zs_get_total_pages(struct zs_pool *pool)
1380{
1381 return atomic_long_read(&pool->pages_allocated);
1382}
1383EXPORT_SYMBOL_GPL(zs_get_total_pages);
1384
1385/**
1386 * zs_map_object - get address of allocated object from handle.
1387 * @pool: pool from which the object was allocated
1388 * @handle: handle returned from zs_malloc
1389 *
1390 * Before using an object allocated from zs_malloc, it must be mapped using
1391 * this function. When done with the object, it must be unmapped using
1392 * zs_unmap_object.
1393 *
1394 * Only one object can be mapped per cpu at a time. There is no protection
1395 * against nested mappings.
1396 *
1397 * This function returns with preemption and page faults disabled.
1398 */
1399void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1400 enum zs_mapmode mm)
1401{
Minchan Kim37836892016-07-26 15:23:23 -07001402 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001403 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001404 unsigned long obj, off;
1405 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001406
1407 unsigned int class_idx;
1408 enum fullness_group fg;
1409 struct size_class *class;
1410 struct mapping_area *area;
1411 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001412 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001413
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001414 /*
1415 * Because we use per-cpu mapping areas shared among the
1416 * pools/users, we can't allow mapping in interrupt context
1417 * because it can corrupt another users mappings.
1418 */
Sergey Senozhatsky16184002017-11-15 17:34:03 -08001419 BUG_ON(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001420
Minchan Kim312fcae2015-04-15 16:15:30 -07001421 /* From now on, migration cannot move the object */
1422 pin_tag(handle);
1423
Minchan Kim2e40e162015-04-15 16:15:23 -07001424 obj = handle_to_obj(handle);
1425 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001426 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001427
1428 /* migration cannot move any subpage in this zspage */
1429 migrate_read_lock(zspage);
1430
Minchan Kim37836892016-07-26 15:23:23 -07001431 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001432 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001433 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001434
1435 area = &get_cpu_var(zs_map_area);
1436 area->vm_mm = mm;
1437 if (off + class->size <= PAGE_SIZE) {
1438 /* this object is contained entirely within a page */
1439 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001440 ret = area->vm_addr + off;
1441 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001442 }
1443
1444 /* this object spans two pages */
1445 pages[0] = page;
1446 pages[1] = get_next_page(page);
1447 BUG_ON(!pages[1]);
1448
Minchan Kim2e40e162015-04-15 16:15:23 -07001449 ret = __zs_map_object(area, pages, off, class->size);
1450out:
Minchan Kim48b48002016-07-26 15:23:31 -07001451 if (likely(!PageHugeObject(page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001452 ret += ZS_HANDLE_SIZE;
1453
1454 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001455}
1456EXPORT_SYMBOL_GPL(zs_map_object);
1457
1458void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1459{
Minchan Kim37836892016-07-26 15:23:23 -07001460 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001461 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001462 unsigned long obj, off;
1463 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001464
1465 unsigned int class_idx;
1466 enum fullness_group fg;
1467 struct size_class *class;
1468 struct mapping_area *area;
1469
Minchan Kim2e40e162015-04-15 16:15:23 -07001470 obj = handle_to_obj(handle);
1471 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001472 zspage = get_zspage(page);
1473 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001474 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001475 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001476
1477 area = this_cpu_ptr(&zs_map_area);
1478 if (off + class->size <= PAGE_SIZE)
1479 kunmap_atomic(area->vm_addr);
1480 else {
1481 struct page *pages[2];
1482
1483 pages[0] = page;
1484 pages[1] = get_next_page(page);
1485 BUG_ON(!pages[1]);
1486
1487 __zs_unmap_object(area, pages, off, class->size);
1488 }
1489 put_cpu_var(zs_map_area);
Minchan Kim48b48002016-07-26 15:23:31 -07001490
1491 migrate_read_unlock(zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07001492 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001493}
1494EXPORT_SYMBOL_GPL(zs_unmap_object);
1495
Minchan Kim251cbb92016-05-20 16:59:42 -07001496static unsigned long obj_malloc(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001497 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001498{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001499 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001500 unsigned long obj;
1501 struct link_free *link;
1502
1503 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001504 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001505 void *vaddr;
1506
Minchan Kim312fcae2015-04-15 16:15:30 -07001507 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001508 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001509
1510 offset = obj * class->size;
1511 nr_page = offset >> PAGE_SHIFT;
1512 m_offset = offset & ~PAGE_MASK;
1513 m_page = get_first_page(zspage);
1514
1515 for (i = 0; i < nr_page; i++)
1516 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001517
1518 vaddr = kmap_atomic(m_page);
1519 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001520 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001521 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001522 /* record handle in the header of allocated chunk */
1523 link->handle = handle;
1524 else
Minchan Kim37836892016-07-26 15:23:23 -07001525 /* record handle to page->index */
1526 zspage->first_page->index = handle;
1527
Minchan Kimc7806262015-04-15 16:15:26 -07001528 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001529 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001530 zs_stat_inc(class, OBJ_USED, 1);
1531
Minchan Kimbfd093f2016-07-26 15:23:28 -07001532 obj = location_to_obj(m_page, obj);
1533
Minchan Kimc7806262015-04-15 16:15:26 -07001534 return obj;
1535}
1536
1537
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001538/**
1539 * zs_malloc - Allocate block of given size from pool.
1540 * @pool: pool to allocate from
1541 * @size: size of block to allocate
Ganesh Mahendranfd854462016-07-28 15:47:54 -07001542 * @gfp: gfp flags when allocating object
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001543 *
1544 * On success, handle to the allocated object is returned,
1545 * otherwise 0.
1546 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1547 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001548unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001549{
Minchan Kim2e40e162015-04-15 16:15:23 -07001550 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001551 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001552 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001553 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001554
Minchan Kim7b60a682015-04-15 16:15:39 -07001555 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001556 return 0;
1557
Minchan Kim37836892016-07-26 15:23:23 -07001558 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001559 if (!handle)
1560 return 0;
1561
1562 /* extra space in chunk to keep the handle */
1563 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001564 class = pool->size_class[get_size_class_index(size)];
1565
1566 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001567 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001568 if (likely(zspage)) {
1569 obj = obj_malloc(class, zspage, handle);
1570 /* Now move the zspage to another fullness group, if required */
1571 fix_fullness_group(class, zspage);
1572 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001573 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001574
Minchan Kim48b48002016-07-26 15:23:31 -07001575 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001576 }
1577
Minchan Kim48b48002016-07-26 15:23:31 -07001578 spin_unlock(&class->lock);
1579
1580 zspage = alloc_zspage(pool, class, gfp);
1581 if (!zspage) {
1582 cache_free_handle(pool, handle);
1583 return 0;
1584 }
1585
1586 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001587 obj = obj_malloc(class, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001588 newfg = get_fullness_group(class, zspage);
1589 insert_zspage(class, zspage, newfg);
1590 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001591 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001592 atomic_long_add(class->pages_per_zspage,
1593 &pool->pages_allocated);
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001594 zs_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001595
1596 /* We completely set up zspage so mark them as movable */
1597 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001598 spin_unlock(&class->lock);
1599
Minchan Kim2e40e162015-04-15 16:15:23 -07001600 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001601}
1602EXPORT_SYMBOL_GPL(zs_malloc);
1603
Minchan Kim1ee47162016-05-20 16:59:45 -07001604static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001605{
1606 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001607 struct zspage *zspage;
1608 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001609 unsigned long f_offset;
1610 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001611 void *vaddr;
1612
Minchan Kim312fcae2015-04-15 16:15:30 -07001613 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001614 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001615 f_offset = (class->size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001616 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001617
Minchan Kimc7806262015-04-15 16:15:26 -07001618 vaddr = kmap_atomic(f_page);
1619
1620 /* Insert this object in containing zspage's freelist */
1621 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001622 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001623 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001624 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001625 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001626 zs_stat_dec(class, OBJ_USED, 1);
1627}
1628
1629void zs_free(struct zs_pool *pool, unsigned long handle)
1630{
Minchan Kim37836892016-07-26 15:23:23 -07001631 struct zspage *zspage;
1632 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001633 unsigned long obj;
1634 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001635 int class_idx;
1636 struct size_class *class;
1637 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001638 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001639
Minchan Kim2e40e162015-04-15 16:15:23 -07001640 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001641 return;
1642
Minchan Kim312fcae2015-04-15 16:15:30 -07001643 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001644 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001645 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001646 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001647
Minchan Kim48b48002016-07-26 15:23:31 -07001648 migrate_read_lock(zspage);
1649
Minchan Kim37836892016-07-26 15:23:23 -07001650 get_zspage_mapping(zspage, &class_idx, &fullness);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001651 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001652
1653 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001654 obj_free(class, obj);
Minchan Kim37836892016-07-26 15:23:23 -07001655 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001656 if (fullness != ZS_EMPTY) {
1657 migrate_read_unlock(zspage);
1658 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001659 }
Minchan Kim48b48002016-07-26 15:23:31 -07001660
1661 isolated = is_zspage_isolated(zspage);
1662 migrate_read_unlock(zspage);
1663 /* If zspage is isolated, zs_page_putback will free the zspage */
1664 if (likely(!isolated))
1665 free_zspage(pool, class, zspage);
1666out:
1667
Minchan Kim312fcae2015-04-15 16:15:30 -07001668 spin_unlock(&class->lock);
1669 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001670 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001671}
1672EXPORT_SYMBOL_GPL(zs_free);
1673
Minchan Kim251cbb92016-05-20 16:59:42 -07001674static void zs_object_copy(struct size_class *class, unsigned long dst,
1675 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001676{
1677 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001678 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001679 unsigned long s_off, d_off;
1680 void *s_addr, *d_addr;
1681 int s_size, d_size, size;
1682 int written = 0;
1683
1684 s_size = d_size = class->size;
1685
1686 obj_to_location(src, &s_page, &s_objidx);
1687 obj_to_location(dst, &d_page, &d_objidx);
1688
Minchan Kimbfd093f2016-07-26 15:23:28 -07001689 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1690 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001691
1692 if (s_off + class->size > PAGE_SIZE)
1693 s_size = PAGE_SIZE - s_off;
1694
1695 if (d_off + class->size > PAGE_SIZE)
1696 d_size = PAGE_SIZE - d_off;
1697
1698 s_addr = kmap_atomic(s_page);
1699 d_addr = kmap_atomic(d_page);
1700
1701 while (1) {
1702 size = min(s_size, d_size);
1703 memcpy(d_addr + d_off, s_addr + s_off, size);
1704 written += size;
1705
1706 if (written == class->size)
1707 break;
1708
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001709 s_off += size;
1710 s_size -= size;
1711 d_off += size;
1712 d_size -= size;
1713
1714 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001715 kunmap_atomic(d_addr);
1716 kunmap_atomic(s_addr);
1717 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001718 s_addr = kmap_atomic(s_page);
1719 d_addr = kmap_atomic(d_page);
1720 s_size = class->size - written;
1721 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001722 }
1723
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001724 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001725 kunmap_atomic(d_addr);
1726 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001727 d_addr = kmap_atomic(d_page);
1728 d_size = class->size - written;
1729 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001730 }
1731 }
1732
1733 kunmap_atomic(d_addr);
1734 kunmap_atomic(s_addr);
1735}
1736
1737/*
1738 * Find alloced object in zspage from index object and
1739 * return handle.
1740 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001741static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001742 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001743{
1744 unsigned long head;
1745 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001746 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001747 unsigned long handle = 0;
1748 void *addr = kmap_atomic(page);
1749
Minchan Kim37836892016-07-26 15:23:23 -07001750 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001751 offset += class->size * index;
1752
1753 while (offset < PAGE_SIZE) {
Minchan Kim48b48002016-07-26 15:23:31 -07001754 head = obj_to_head(page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001755 if (head & OBJ_ALLOCATED_TAG) {
1756 handle = head & ~OBJ_ALLOCATED_TAG;
1757 if (trypin_tag(handle))
1758 break;
1759 handle = 0;
1760 }
1761
1762 offset += class->size;
1763 index++;
1764 }
1765
1766 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001767
1768 *obj_idx = index;
1769
Minchan Kim312fcae2015-04-15 16:15:30 -07001770 return handle;
1771}
1772
1773struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001774 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001775 struct page *s_page;
1776 /* Destination page for migration which should be a first page
1777 * of zspage. */
1778 struct page *d_page;
1779 /* Starting object index within @s_page which used for live object
1780 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001781 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001782};
1783
1784static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1785 struct zs_compact_control *cc)
1786{
1787 unsigned long used_obj, free_obj;
1788 unsigned long handle;
1789 struct page *s_page = cc->s_page;
1790 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001791 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001792 int ret = 0;
1793
1794 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001795 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001796 if (!handle) {
1797 s_page = get_next_page(s_page);
1798 if (!s_page)
1799 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001800 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001801 continue;
1802 }
1803
1804 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001805 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001806 unpin_tag(handle);
1807 ret = -ENOMEM;
1808 break;
1809 }
1810
1811 used_obj = handle_to_obj(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001812 free_obj = obj_malloc(class, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001813 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001814 obj_idx++;
Junil Leec102f072016-01-20 14:58:18 -08001815 /*
1816 * record_obj updates handle's value to free_obj and it will
1817 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1818 * breaks synchronization using pin_tag(e,g, zs_free) so
1819 * let's keep the lock bit.
1820 */
1821 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001822 record_obj(handle, free_obj);
1823 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001824 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001825 }
1826
1827 /* Remember last position in this iteration */
1828 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001829 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001830
1831 return ret;
1832}
1833
Minchan Kim37836892016-07-26 15:23:23 -07001834static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001835{
1836 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001837 struct zspage *zspage;
1838 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001839
Minchan Kim37836892016-07-26 15:23:23 -07001840 if (!source) {
1841 fg[0] = ZS_ALMOST_FULL;
1842 fg[1] = ZS_ALMOST_EMPTY;
1843 }
1844
1845 for (i = 0; i < 2; i++) {
1846 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1847 struct zspage, list);
1848 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001849 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001850 remove_zspage(class, zspage, fg[i]);
1851 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001852 }
1853 }
1854
Minchan Kim37836892016-07-26 15:23:23 -07001855 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001856}
1857
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001858/*
Minchan Kim37836892016-07-26 15:23:23 -07001859 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001860 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001861 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001862 *
Minchan Kim37836892016-07-26 15:23:23 -07001863 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001864 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001865static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001866 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001867{
Minchan Kim312fcae2015-04-15 16:15:30 -07001868 enum fullness_group fullness;
1869
Minchan Kim48b48002016-07-26 15:23:31 -07001870 VM_BUG_ON(is_zspage_isolated(zspage));
1871
Minchan Kim37836892016-07-26 15:23:23 -07001872 fullness = get_fullness_group(class, zspage);
1873 insert_zspage(class, zspage, fullness);
1874 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001875
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001876 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001877}
1878
Minchan Kim48b48002016-07-26 15:23:31 -07001879#ifdef CONFIG_COMPACTION
1880static struct dentry *zs_mount(struct file_system_type *fs_type,
1881 int flags, const char *dev_name, void *data)
1882{
1883 static const struct dentry_operations ops = {
1884 .d_dname = simple_dname,
1885 };
1886
1887 return mount_pseudo(fs_type, "zsmalloc:", NULL, &ops, ZSMALLOC_MAGIC);
1888}
1889
1890static struct file_system_type zsmalloc_fs = {
1891 .name = "zsmalloc",
1892 .mount = zs_mount,
1893 .kill_sb = kill_anon_super,
1894};
1895
1896static int zsmalloc_mount(void)
1897{
1898 int ret = 0;
1899
1900 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1901 if (IS_ERR(zsmalloc_mnt))
1902 ret = PTR_ERR(zsmalloc_mnt);
1903
1904 return ret;
1905}
1906
1907static void zsmalloc_unmount(void)
1908{
1909 kern_unmount(zsmalloc_mnt);
1910}
1911
1912static void migrate_lock_init(struct zspage *zspage)
1913{
1914 rwlock_init(&zspage->lock);
1915}
1916
1917static void migrate_read_lock(struct zspage *zspage)
1918{
1919 read_lock(&zspage->lock);
1920}
1921
1922static void migrate_read_unlock(struct zspage *zspage)
1923{
1924 read_unlock(&zspage->lock);
1925}
1926
1927static void migrate_write_lock(struct zspage *zspage)
1928{
1929 write_lock(&zspage->lock);
1930}
1931
1932static void migrate_write_unlock(struct zspage *zspage)
1933{
1934 write_unlock(&zspage->lock);
1935}
1936
1937/* Number of isolated subpage for *page migration* in this zspage */
1938static void inc_zspage_isolation(struct zspage *zspage)
1939{
1940 zspage->isolated++;
1941}
1942
1943static void dec_zspage_isolation(struct zspage *zspage)
1944{
1945 zspage->isolated--;
1946}
1947
Henry Burns29295162019-08-24 17:55:03 -07001948static void putback_zspage_deferred(struct zs_pool *pool,
1949 struct size_class *class,
1950 struct zspage *zspage)
1951{
1952 enum fullness_group fg;
1953
1954 fg = putback_zspage(class, zspage);
1955 if (fg == ZS_EMPTY)
1956 schedule_work(&pool->free_work);
1957
1958}
1959
Henry Burns0e7e2732019-08-24 17:55:06 -07001960static inline void zs_pool_dec_isolated(struct zs_pool *pool)
1961{
1962 VM_BUG_ON(atomic_long_read(&pool->isolated_pages) <= 0);
1963 atomic_long_dec(&pool->isolated_pages);
1964 /*
Miaohe Linfdcd8b62021-11-05 13:45:03 -07001965 * Checking pool->destroying must happen after atomic_long_dec()
1966 * for pool->isolated_pages above. Paired with the smp_mb() in
1967 * zs_unregister_migration().
Henry Burns0e7e2732019-08-24 17:55:06 -07001968 */
Miaohe Linfdcd8b62021-11-05 13:45:03 -07001969 smp_mb__after_atomic();
Henry Burns0e7e2732019-08-24 17:55:06 -07001970 if (atomic_long_read(&pool->isolated_pages) == 0 && pool->destroying)
1971 wake_up_all(&pool->migration_wait);
1972}
1973
Minchan Kim48b48002016-07-26 15:23:31 -07001974static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1975 struct page *newpage, struct page *oldpage)
1976{
1977 struct page *page;
1978 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1979 int idx = 0;
1980
1981 page = get_first_page(zspage);
1982 do {
1983 if (page == oldpage)
1984 pages[idx] = newpage;
1985 else
1986 pages[idx] = page;
1987 idx++;
1988 } while ((page = get_next_page(page)) != NULL);
1989
1990 create_page_chain(class, zspage, pages);
1991 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
1992 if (unlikely(PageHugeObject(oldpage)))
1993 newpage->index = oldpage->index;
1994 __SetPageMovable(newpage, page_mapping(oldpage));
1995}
1996
1997bool zs_page_isolate(struct page *page, isolate_mode_t mode)
1998{
1999 struct zs_pool *pool;
2000 struct size_class *class;
2001 int class_idx;
2002 enum fullness_group fullness;
2003 struct zspage *zspage;
2004 struct address_space *mapping;
2005
2006 /*
2007 * Page is locked so zspage couldn't be destroyed. For detail, look at
2008 * lock_zspage in free_zspage.
2009 */
2010 VM_BUG_ON_PAGE(!PageMovable(page), page);
2011 VM_BUG_ON_PAGE(PageIsolated(page), page);
2012
2013 zspage = get_zspage(page);
2014
2015 /*
2016 * Without class lock, fullness could be stale while class_idx is okay
2017 * because class_idx is constant unless page is freed so we should get
2018 * fullness again under class lock.
2019 */
2020 get_zspage_mapping(zspage, &class_idx, &fullness);
2021 mapping = page_mapping(page);
2022 pool = mapping->private_data;
2023 class = pool->size_class[class_idx];
2024
2025 spin_lock(&class->lock);
2026 if (get_zspage_inuse(zspage) == 0) {
2027 spin_unlock(&class->lock);
2028 return false;
2029 }
2030
2031 /* zspage is isolated for object migration */
2032 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2033 spin_unlock(&class->lock);
2034 return false;
2035 }
2036
2037 /*
2038 * If this is first time isolation for the zspage, isolate zspage from
2039 * size_class to prevent further object allocation from the zspage.
2040 */
2041 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2042 get_zspage_mapping(zspage, &class_idx, &fullness);
Henry Burns0e7e2732019-08-24 17:55:06 -07002043 atomic_long_inc(&pool->isolated_pages);
Minchan Kim48b48002016-07-26 15:23:31 -07002044 remove_zspage(class, zspage, fullness);
2045 }
2046
2047 inc_zspage_isolation(zspage);
2048 spin_unlock(&class->lock);
2049
2050 return true;
2051}
2052
2053int zs_page_migrate(struct address_space *mapping, struct page *newpage,
2054 struct page *page, enum migrate_mode mode)
2055{
2056 struct zs_pool *pool;
2057 struct size_class *class;
2058 int class_idx;
2059 enum fullness_group fullness;
2060 struct zspage *zspage;
2061 struct page *dummy;
2062 void *s_addr, *d_addr, *addr;
2063 int offset, pos;
2064 unsigned long handle, head;
2065 unsigned long old_obj, new_obj;
2066 unsigned int obj_idx;
2067 int ret = -EAGAIN;
2068
2069 VM_BUG_ON_PAGE(!PageMovable(page), page);
2070 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2071
2072 zspage = get_zspage(page);
2073
2074 /* Concurrent compactor cannot migrate any subpage in zspage */
2075 migrate_write_lock(zspage);
2076 get_zspage_mapping(zspage, &class_idx, &fullness);
2077 pool = mapping->private_data;
2078 class = pool->size_class[class_idx];
2079 offset = get_first_obj_offset(page);
2080
2081 spin_lock(&class->lock);
2082 if (!get_zspage_inuse(zspage)) {
2083 ret = -EBUSY;
2084 goto unlock_class;
2085 }
2086
2087 pos = offset;
2088 s_addr = kmap_atomic(page);
2089 while (pos < PAGE_SIZE) {
2090 head = obj_to_head(page, s_addr + pos);
2091 if (head & OBJ_ALLOCATED_TAG) {
2092 handle = head & ~OBJ_ALLOCATED_TAG;
2093 if (!trypin_tag(handle))
2094 goto unpin_objects;
2095 }
2096 pos += class->size;
2097 }
2098
2099 /*
2100 * Here, any user cannot access all objects in the zspage so let's move.
2101 */
2102 d_addr = kmap_atomic(newpage);
2103 memcpy(d_addr, s_addr, PAGE_SIZE);
2104 kunmap_atomic(d_addr);
2105
2106 for (addr = s_addr + offset; addr < s_addr + pos;
2107 addr += class->size) {
2108 head = obj_to_head(page, addr);
2109 if (head & OBJ_ALLOCATED_TAG) {
2110 handle = head & ~OBJ_ALLOCATED_TAG;
2111 if (!testpin_tag(handle))
2112 BUG();
2113
2114 old_obj = handle_to_obj(handle);
2115 obj_to_location(old_obj, &dummy, &obj_idx);
2116 new_obj = (unsigned long)location_to_obj(newpage,
2117 obj_idx);
2118 new_obj |= BIT(HANDLE_PIN_BIT);
2119 record_obj(handle, new_obj);
2120 }
2121 }
2122
2123 replace_sub_page(class, zspage, newpage, page);
2124 get_page(newpage);
2125
2126 dec_zspage_isolation(zspage);
2127
2128 /*
2129 * Page migration is done so let's putback isolated zspage to
2130 * the list if @page is final isolated subpage in the zspage.
2131 */
Henry Burns0e7e2732019-08-24 17:55:06 -07002132 if (!is_zspage_isolated(zspage)) {
2133 /*
2134 * We cannot race with zs_destroy_pool() here because we wait
2135 * for isolation to hit zero before we start destroying.
2136 * Also, we ensure that everyone can see pool->destroying before
2137 * we start waiting.
2138 */
Henry Burns29295162019-08-24 17:55:03 -07002139 putback_zspage_deferred(pool, class, zspage);
Henry Burns0e7e2732019-08-24 17:55:06 -07002140 zs_pool_dec_isolated(pool);
2141 }
Minchan Kim48b48002016-07-26 15:23:31 -07002142
Chanho Mindf5e2d32020-01-04 12:59:36 -08002143 if (page_zone(newpage) != page_zone(page)) {
2144 dec_zone_page_state(page, NR_ZSPAGES);
2145 inc_zone_page_state(newpage, NR_ZSPAGES);
2146 }
2147
Minchan Kim48b48002016-07-26 15:23:31 -07002148 reset_page(page);
2149 put_page(page);
2150 page = newpage;
2151
Minchan Kimdd4123f2016-07-26 15:26:50 -07002152 ret = MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07002153unpin_objects:
2154 for (addr = s_addr + offset; addr < s_addr + pos;
2155 addr += class->size) {
2156 head = obj_to_head(page, addr);
2157 if (head & OBJ_ALLOCATED_TAG) {
2158 handle = head & ~OBJ_ALLOCATED_TAG;
2159 if (!testpin_tag(handle))
2160 BUG();
2161 unpin_tag(handle);
2162 }
2163 }
2164 kunmap_atomic(s_addr);
2165unlock_class:
2166 spin_unlock(&class->lock);
2167 migrate_write_unlock(zspage);
2168
2169 return ret;
2170}
2171
2172void zs_page_putback(struct page *page)
2173{
2174 struct zs_pool *pool;
2175 struct size_class *class;
2176 int class_idx;
2177 enum fullness_group fg;
2178 struct address_space *mapping;
2179 struct zspage *zspage;
2180
2181 VM_BUG_ON_PAGE(!PageMovable(page), page);
2182 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2183
2184 zspage = get_zspage(page);
2185 get_zspage_mapping(zspage, &class_idx, &fg);
2186 mapping = page_mapping(page);
2187 pool = mapping->private_data;
2188 class = pool->size_class[class_idx];
2189
2190 spin_lock(&class->lock);
2191 dec_zspage_isolation(zspage);
2192 if (!is_zspage_isolated(zspage)) {
Minchan Kim48b48002016-07-26 15:23:31 -07002193 /*
2194 * Due to page_lock, we cannot free zspage immediately
2195 * so let's defer.
2196 */
Henry Burns29295162019-08-24 17:55:03 -07002197 putback_zspage_deferred(pool, class, zspage);
Henry Burns0e7e2732019-08-24 17:55:06 -07002198 zs_pool_dec_isolated(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002199 }
2200 spin_unlock(&class->lock);
2201}
2202
2203const struct address_space_operations zsmalloc_aops = {
2204 .isolate_page = zs_page_isolate,
2205 .migratepage = zs_page_migrate,
2206 .putback_page = zs_page_putback,
2207};
2208
2209static int zs_register_migration(struct zs_pool *pool)
2210{
2211 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2212 if (IS_ERR(pool->inode)) {
2213 pool->inode = NULL;
2214 return 1;
2215 }
2216
2217 pool->inode->i_mapping->private_data = pool;
2218 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2219 return 0;
2220}
2221
Henry Burns0e7e2732019-08-24 17:55:06 -07002222static bool pool_isolated_are_drained(struct zs_pool *pool)
2223{
2224 return atomic_long_read(&pool->isolated_pages) == 0;
2225}
2226
2227/* Function for resolving migration */
2228static void wait_for_isolated_drain(struct zs_pool *pool)
2229{
2230
2231 /*
2232 * We're in the process of destroying the pool, so there are no
2233 * active allocations. zs_page_isolate() fails for completely free
2234 * zspages, so we need only wait for the zs_pool's isolated
2235 * count to hit zero.
2236 */
2237 wait_event(pool->migration_wait,
2238 pool_isolated_are_drained(pool));
2239}
2240
Minchan Kim48b48002016-07-26 15:23:31 -07002241static void zs_unregister_migration(struct zs_pool *pool)
2242{
Henry Burns0e7e2732019-08-24 17:55:06 -07002243 pool->destroying = true;
2244 /*
2245 * We need a memory barrier here to ensure global visibility of
2246 * pool->destroying. Thus pool->isolated pages will either be 0 in which
2247 * case we don't care, or it will be > 0 and pool->destroying will
2248 * ensure that we wake up once isolation hits 0.
2249 */
2250 smp_mb();
2251 wait_for_isolated_drain(pool); /* This can block */
Minchan Kim48b48002016-07-26 15:23:31 -07002252 flush_work(&pool->free_work);
Markus Elfringc3491ec2016-07-28 15:48:59 -07002253 iput(pool->inode);
Minchan Kim48b48002016-07-26 15:23:31 -07002254}
2255
2256/*
2257 * Caller should hold page_lock of all pages in the zspage
2258 * In here, we cannot use zspage meta data.
2259 */
2260static void async_free_zspage(struct work_struct *work)
2261{
2262 int i;
2263 struct size_class *class;
2264 unsigned int class_idx;
2265 enum fullness_group fullness;
2266 struct zspage *zspage, *tmp;
2267 LIST_HEAD(free_pages);
2268 struct zs_pool *pool = container_of(work, struct zs_pool,
2269 free_work);
2270
2271 for (i = 0; i < zs_size_classes; i++) {
2272 class = pool->size_class[i];
2273 if (class->index != i)
2274 continue;
2275
2276 spin_lock(&class->lock);
2277 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2278 spin_unlock(&class->lock);
2279 }
2280
2281
2282 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2283 list_del(&zspage->list);
2284 lock_zspage(zspage);
2285
2286 get_zspage_mapping(zspage, &class_idx, &fullness);
2287 VM_BUG_ON(fullness != ZS_EMPTY);
2288 class = pool->size_class[class_idx];
2289 spin_lock(&class->lock);
2290 __free_zspage(pool, pool->size_class[class_idx], zspage);
2291 spin_unlock(&class->lock);
2292 }
2293};
2294
2295static void kick_deferred_free(struct zs_pool *pool)
2296{
2297 schedule_work(&pool->free_work);
2298}
2299
2300static void init_deferred_free(struct zs_pool *pool)
2301{
2302 INIT_WORK(&pool->free_work, async_free_zspage);
2303}
2304
2305static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2306{
2307 struct page *page = get_first_page(zspage);
2308
2309 do {
2310 WARN_ON(!trylock_page(page));
2311 __SetPageMovable(page, pool->inode->i_mapping);
2312 unlock_page(page);
2313 } while ((page = get_next_page(page)) != NULL);
2314}
2315#endif
2316
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002317/*
2318 *
2319 * Based on the number of unused allocated objects calculate
2320 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002321 */
2322static unsigned long zs_can_compact(struct size_class *class)
2323{
2324 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002325 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2326 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002327
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002328 if (obj_allocated <= obj_used)
2329 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002330
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002331 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002332 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002333
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002334 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002335}
2336
Rokudo Yand72be3a2021-02-25 17:18:31 -08002337static unsigned long __zs_compact(struct zs_pool *pool,
2338 struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002339{
Minchan Kim312fcae2015-04-15 16:15:30 -07002340 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002341 struct zspage *src_zspage;
2342 struct zspage *dst_zspage = NULL;
Rokudo Yand72be3a2021-02-25 17:18:31 -08002343 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002344
Minchan Kim312fcae2015-04-15 16:15:30 -07002345 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002346 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002347
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002348 if (!zs_can_compact(class))
2349 break;
2350
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002351 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002352 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002353
Minchan Kim37836892016-07-26 15:23:23 -07002354 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002355 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002356 /*
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07002357 * If there is no more space in dst_page, resched
2358 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002359 */
2360 if (!migrate_zspage(pool, class, &cc))
2361 break;
2362
Minchan Kim4aa409c2016-07-26 15:23:26 -07002363 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002364 }
2365
2366 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002367 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002368 break;
2369
Minchan Kim4aa409c2016-07-26 15:23:26 -07002370 putback_zspage(class, dst_zspage);
2371 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002372 free_zspage(pool, class, src_zspage);
Rokudo Yand72be3a2021-02-25 17:18:31 -08002373 pages_freed += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002374 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002375 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002376 cond_resched();
2377 spin_lock(&class->lock);
2378 }
2379
Minchan Kim37836892016-07-26 15:23:23 -07002380 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002381 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002382
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002383 spin_unlock(&class->lock);
Rokudo Yand72be3a2021-02-25 17:18:31 -08002384
2385 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002386}
2387
2388unsigned long zs_compact(struct zs_pool *pool)
2389{
2390 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002391 struct size_class *class;
Rokudo Yand72be3a2021-02-25 17:18:31 -08002392 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002393
2394 for (i = zs_size_classes - 1; i >= 0; i--) {
2395 class = pool->size_class[i];
2396 if (!class)
2397 continue;
2398 if (class->index != i)
2399 continue;
Rokudo Yand72be3a2021-02-25 17:18:31 -08002400 pages_freed += __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002401 }
Rokudo Yand72be3a2021-02-25 17:18:31 -08002402 atomic_long_add(pages_freed, &pool->stats.pages_compacted);
Minchan Kim312fcae2015-04-15 16:15:30 -07002403
Rokudo Yand72be3a2021-02-25 17:18:31 -08002404 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002405}
2406EXPORT_SYMBOL_GPL(zs_compact);
2407
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002408void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2409{
2410 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2411}
2412EXPORT_SYMBOL_GPL(zs_pool_stats);
2413
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002414static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2415 struct shrink_control *sc)
2416{
2417 unsigned long pages_freed;
2418 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2419 shrinker);
2420
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002421 /*
2422 * Compact classes and calculate compaction delta.
2423 * Can run concurrently with a manually triggered
2424 * (by user) compaction.
2425 */
Rokudo Yand72be3a2021-02-25 17:18:31 -08002426 pages_freed = zs_compact(pool);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002427
2428 return pages_freed ? pages_freed : SHRINK_STOP;
2429}
2430
2431static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2432 struct shrink_control *sc)
2433{
2434 int i;
2435 struct size_class *class;
2436 unsigned long pages_to_free = 0;
2437 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2438 shrinker);
2439
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002440 for (i = zs_size_classes - 1; i >= 0; i--) {
2441 class = pool->size_class[i];
2442 if (!class)
2443 continue;
2444 if (class->index != i)
2445 continue;
2446
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002447 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002448 }
2449
2450 return pages_to_free;
2451}
2452
2453static void zs_unregister_shrinker(struct zs_pool *pool)
2454{
2455 if (pool->shrinker_enabled) {
2456 unregister_shrinker(&pool->shrinker);
2457 pool->shrinker_enabled = false;
2458 }
2459}
2460
2461static int zs_register_shrinker(struct zs_pool *pool)
2462{
2463 pool->shrinker.scan_objects = zs_shrinker_scan;
2464 pool->shrinker.count_objects = zs_shrinker_count;
2465 pool->shrinker.batch = 0;
2466 pool->shrinker.seeks = DEFAULT_SEEKS;
2467
2468 return register_shrinker(&pool->shrinker);
2469}
2470
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002471/**
2472 * zs_create_pool - Creates an allocation pool to work from.
Ganesh Mahendranfd854462016-07-28 15:47:54 -07002473 * @name: pool name to be created
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002474 *
2475 * This function must be called before anything when using
2476 * the zsmalloc allocator.
2477 *
2478 * On success, a pointer to the newly created pool is returned,
2479 * otherwise NULL.
2480 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002481struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002482{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002483 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002484 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002485 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002486
Ganesh Mahendran18136652014-12-12 16:57:10 -08002487 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002488 if (!pool)
2489 return NULL;
2490
Minchan Kim48b48002016-07-26 15:23:31 -07002491 init_deferred_free(pool);
Minchan Kim2e40e162015-04-15 16:15:23 -07002492 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
2493 GFP_KERNEL);
2494 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002495 kfree(pool);
2496 return NULL;
2497 }
2498
Minchan Kim2e40e162015-04-15 16:15:23 -07002499 pool->name = kstrdup(name, GFP_KERNEL);
2500 if (!pool->name)
2501 goto err;
2502
Andrew Morton9ae46112019-08-30 16:04:35 -07002503#ifdef CONFIG_COMPACTION
Henry Burns0e7e2732019-08-24 17:55:06 -07002504 init_waitqueue_head(&pool->migration_wait);
Andrew Morton9ae46112019-08-30 16:04:35 -07002505#endif
Henry Burns0e7e2732019-08-24 17:55:06 -07002506
Minchan Kim37836892016-07-26 15:23:23 -07002507 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002508 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002509
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002510 /*
2511 * Iterate reversly, because, size of size_class that we want to use
2512 * for merging should be larger or equal to current size.
2513 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002514 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002515 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002516 int pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002517 int objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002518 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002519 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002520
2521 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2522 if (size > ZS_MAX_ALLOC_SIZE)
2523 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002524 pages_per_zspage = get_pages_per_zspage(size);
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002525 objs_per_zspage = pages_per_zspage * PAGE_SIZE / size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002526
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002527 /*
2528 * size_class is used for normal zsmalloc operation such
2529 * as alloc/free for that size. Although it is natural that we
2530 * have one size_class for each size, there is a chance that we
2531 * can get more memory utilization if we use one size_class for
2532 * many different sizes whose size_class have same
2533 * characteristics. So, we makes size_class point to
2534 * previous size_class if possible.
2535 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002536 if (prev_class) {
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002537 if (can_merge(prev_class, pages_per_zspage, objs_per_zspage)) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002538 pool->size_class[i] = prev_class;
2539 continue;
2540 }
2541 }
2542
2543 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2544 if (!class)
2545 goto err;
2546
Nitin Gupta61989a82012-01-09 16:51:56 -06002547 class->size = size;
2548 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002549 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002550 class->objs_per_zspage = objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002551 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002552 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002553 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2554 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002555 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002556
2557 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002558 }
2559
Dan Streetmand34f6152016-05-20 16:59:56 -07002560 /* debug only, don't abort if it fails */
2561 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002562
Minchan Kim48b48002016-07-26 15:23:31 -07002563 if (zs_register_migration(pool))
2564 goto err;
2565
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002566 /*
2567 * Not critical, we still can use the pool
2568 * and user can trigger compaction manually.
2569 */
2570 if (zs_register_shrinker(pool) == 0)
2571 pool->shrinker_enabled = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06002572 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002573
2574err:
2575 zs_destroy_pool(pool);
2576 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002577}
2578EXPORT_SYMBOL_GPL(zs_create_pool);
2579
2580void zs_destroy_pool(struct zs_pool *pool)
2581{
2582 int i;
2583
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002584 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002585 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002586 zs_pool_stat_destroy(pool);
2587
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002588 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002589 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002590 struct size_class *class = pool->size_class[i];
2591
2592 if (!class)
2593 continue;
2594
2595 if (class->index != i)
2596 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002597
Minchan Kim48b48002016-07-26 15:23:31 -07002598 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002599 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002600 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002601 class->size, fg);
2602 }
2603 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002604 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002605 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002606
Minchan Kim37836892016-07-26 15:23:23 -07002607 destroy_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002608 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002609 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002610 kfree(pool);
2611}
2612EXPORT_SYMBOL_GPL(zs_destroy_pool);
2613
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002614static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002615{
Minchan Kim48b48002016-07-26 15:23:31 -07002616 int ret;
2617
2618 ret = zsmalloc_mount();
2619 if (ret)
2620 goto out;
2621
2622 ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06002623
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002624 if (ret)
2625 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002626
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002627 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06002628
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002629#ifdef CONFIG_ZPOOL
2630 zpool_register_driver(&zs_zpool_driver);
2631#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002632
Dan Streetman4abaac92016-05-26 15:16:27 -07002633 zs_stat_init();
2634
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002635 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002636
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002637notifier_fail:
2638 zs_unregister_cpu_notifier();
Minchan Kim48b48002016-07-26 15:23:31 -07002639 zsmalloc_unmount();
2640out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002641 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002642}
Nitin Gupta61989a82012-01-09 16:51:56 -06002643
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002644static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002645{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002646#ifdef CONFIG_ZPOOL
2647 zpool_unregister_driver(&zs_zpool_driver);
2648#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002649 zsmalloc_unmount();
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002650 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002651
2652 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002653}
Ben Hutchings069f1012012-06-20 02:31:11 +01002654
2655module_init(zs_init);
2656module_exit(zs_exit);
2657
2658MODULE_LICENSE("Dual BSD/GPL");
2659MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");