blob: ffe8c4341ec9bc2bf9b193a009c3c4cf9ffb6da6 [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
86#ifndef MAX_PHYSMEM_BITS
87#ifdef CONFIG_HIGHMEM64G
88#define MAX_PHYSMEM_BITS 36
89#else /* !CONFIG_HIGHMEM64G */
90/*
91 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
92 * be PAGE_SHIFT
93 */
94#define MAX_PHYSMEM_BITS BITS_PER_LONG
95#endif
96#endif
97#define _PFN_BITS (MAX_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -070098
99/*
100 * Memory for allocating for handle keeps object position by
101 * encoding <page, obj_idx> and the encoded value has a room
102 * in least bit(ie, look at obj_to_location).
103 * We use the bit to synchronize between object access by
104 * user and migration.
105 */
106#define HANDLE_PIN_BIT 0
107
108/*
109 * Head in allocated object should have OBJ_ALLOCATED_TAG
110 * to identify the object was allocated or not.
111 * It's okay to add the status bit in the least bit because
112 * header keeps handle which is 4byte-aligned address so we
113 * have room for two bit at least.
114 */
115#define OBJ_ALLOCATED_TAG 1
116#define OBJ_TAG_BITS 1
117#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900118#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
119
120#define MAX(a, b) ((a) >= (b) ? (a) : (b))
121/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
122#define ZS_MIN_ALLOC_SIZE \
123 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700124/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700125#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900126
127/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700128 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900129 * trader-off here:
130 * - Large number of size classes is potentially wasteful as free page are
131 * spread across these classes
132 * - Small number of size classes causes large internal fragmentation
133 * - Probably its better to use specific size classes (empirically
134 * determined). NOTE: all those class sizes must be set as multiple of
135 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
136 *
137 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
138 * (reason above)
139 */
Minchan Kim37836892016-07-26 15:23:23 -0700140#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> CLASS_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900141
Seth Jennings0959c632012-08-08 15:12:17 +0900142enum fullness_group {
Seth Jennings0959c632012-08-08 15:12:17 +0900143 ZS_EMPTY,
Minchan Kim48b48002016-07-26 15:23:31 -0700144 ZS_ALMOST_EMPTY,
145 ZS_ALMOST_FULL,
146 ZS_FULL,
147 NR_ZS_FULLNESS,
Seth Jennings0959c632012-08-08 15:12:17 +0900148};
149
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800150enum zs_stat_type {
Minchan Kim48b48002016-07-26 15:23:31 -0700151 CLASS_EMPTY,
152 CLASS_ALMOST_EMPTY,
153 CLASS_ALMOST_FULL,
154 CLASS_FULL,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800155 OBJ_ALLOCATED,
156 OBJ_USED,
Minchan Kim48b48002016-07-26 15:23:31 -0700157 NR_ZS_STAT_TYPE,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800158};
159
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800160struct zs_size_stat {
161 unsigned long objs[NR_ZS_STAT_TYPE];
162};
163
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700164#ifdef CONFIG_ZSMALLOC_STAT
165static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800166#endif
167
Minchan Kim48b48002016-07-26 15:23:31 -0700168#ifdef CONFIG_COMPACTION
169static struct vfsmount *zsmalloc_mnt;
170#endif
171
Seth Jennings0959c632012-08-08 15:12:17 +0900172/*
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800173 * number of size_classes
174 */
175static int zs_size_classes;
176
177/*
Seth Jennings0959c632012-08-08 15:12:17 +0900178 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
179 * n <= N / f, where
180 * n = number of allocated objects
181 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700182 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900183 *
184 * Similarly, we assign zspage to:
185 * ZS_ALMOST_FULL when n > N / f
186 * ZS_EMPTY when n == 0
187 * ZS_FULL when n == N
188 *
189 * (see: fix_fullness_group())
190 */
191static const int fullness_threshold_frac = 4;
Sergey Senozhatskyda33b2a2018-04-05 16:24:43 -0700192static size_t huge_class_size;
Seth Jennings0959c632012-08-08 15:12:17 +0900193
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,
Vinayak Menonfda5cc72018-04-03 16:32:26 +0530361 gfp & ~(__GFP_HIGHMEM|__GFP_MOVABLE|__GFP_CMA));
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,
Vinayak Menonfda5cc72018-04-03 16:32:26 +0530372 flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE|__GFP_CMA));
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 Desaulniersced00e32017-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 Kaehlcke0dbfde62017-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 Kaehlcke0dbfde62017-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 Kaehlcke0dbfde62017-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 Kaehlcke0dbfde62017-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 Kaehlcke0dbfde62017-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 Kaehlcke0dbfde62017-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
Sergey Senozhatskyda33b2a2018-04-05 16:24:43 -07001496/**
1497 * zs_huge_class_size() - Returns the size (in bytes) of the first huge
1498 * zsmalloc &size_class.
1499 * @pool: zsmalloc pool to use
1500 *
1501 * The function returns the size of the first huge class - any object of equal
1502 * or bigger size will be stored in zspage consisting of a single physical
1503 * page.
1504 *
1505 * Context: Any context.
1506 *
1507 * Return: the size (in bytes) of the first huge zsmalloc &size_class.
1508 */
1509size_t zs_huge_class_size(struct zs_pool *pool)
1510{
1511 return huge_class_size;
1512}
1513EXPORT_SYMBOL_GPL(zs_huge_class_size);
1514
Minchan Kim251cbb92016-05-20 16:59:42 -07001515static unsigned long obj_malloc(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001516 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001517{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001518 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001519 unsigned long obj;
1520 struct link_free *link;
1521
1522 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001523 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001524 void *vaddr;
1525
Minchan Kim312fcae2015-04-15 16:15:30 -07001526 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001527 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001528
1529 offset = obj * class->size;
1530 nr_page = offset >> PAGE_SHIFT;
1531 m_offset = offset & ~PAGE_MASK;
1532 m_page = get_first_page(zspage);
1533
1534 for (i = 0; i < nr_page; i++)
1535 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001536
1537 vaddr = kmap_atomic(m_page);
1538 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001539 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001540 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001541 /* record handle in the header of allocated chunk */
1542 link->handle = handle;
1543 else
Minchan Kim37836892016-07-26 15:23:23 -07001544 /* record handle to page->index */
1545 zspage->first_page->index = handle;
1546
Minchan Kimc7806262015-04-15 16:15:26 -07001547 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001548 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001549 zs_stat_inc(class, OBJ_USED, 1);
1550
Minchan Kimbfd093f2016-07-26 15:23:28 -07001551 obj = location_to_obj(m_page, obj);
1552
Minchan Kimc7806262015-04-15 16:15:26 -07001553 return obj;
1554}
1555
1556
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001557/**
1558 * zs_malloc - Allocate block of given size from pool.
1559 * @pool: pool to allocate from
1560 * @size: size of block to allocate
Ganesh Mahendranfd854462016-07-28 15:47:54 -07001561 * @gfp: gfp flags when allocating object
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001562 *
1563 * On success, handle to the allocated object is returned,
1564 * otherwise 0.
1565 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1566 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001567unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001568{
Minchan Kim2e40e162015-04-15 16:15:23 -07001569 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001570 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001571 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001572 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001573
Minchan Kim7b60a682015-04-15 16:15:39 -07001574 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001575 return 0;
1576
Minchan Kim37836892016-07-26 15:23:23 -07001577 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001578 if (!handle)
1579 return 0;
1580
1581 /* extra space in chunk to keep the handle */
1582 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001583 class = pool->size_class[get_size_class_index(size)];
1584
1585 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001586 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001587 if (likely(zspage)) {
1588 obj = obj_malloc(class, zspage, handle);
1589 /* Now move the zspage to another fullness group, if required */
1590 fix_fullness_group(class, zspage);
1591 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001592 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001593
Minchan Kim48b48002016-07-26 15:23:31 -07001594 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001595 }
1596
Minchan Kim48b48002016-07-26 15:23:31 -07001597 spin_unlock(&class->lock);
1598
1599 zspage = alloc_zspage(pool, class, gfp);
1600 if (!zspage) {
1601 cache_free_handle(pool, handle);
1602 return 0;
1603 }
1604
1605 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001606 obj = obj_malloc(class, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001607 newfg = get_fullness_group(class, zspage);
1608 insert_zspage(class, zspage, newfg);
1609 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001610 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001611 atomic_long_add(class->pages_per_zspage,
1612 &pool->pages_allocated);
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001613 zs_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001614
1615 /* We completely set up zspage so mark them as movable */
1616 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001617 spin_unlock(&class->lock);
1618
Minchan Kim2e40e162015-04-15 16:15:23 -07001619 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001620}
1621EXPORT_SYMBOL_GPL(zs_malloc);
1622
Minchan Kim1ee47162016-05-20 16:59:45 -07001623static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001624{
1625 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001626 struct zspage *zspage;
1627 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001628 unsigned long f_offset;
1629 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001630 void *vaddr;
1631
Minchan Kim312fcae2015-04-15 16:15:30 -07001632 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001633 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001634 f_offset = (class->size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001635 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001636
Minchan Kimc7806262015-04-15 16:15:26 -07001637 vaddr = kmap_atomic(f_page);
1638
1639 /* Insert this object in containing zspage's freelist */
1640 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001641 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001642 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001643 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001644 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001645 zs_stat_dec(class, OBJ_USED, 1);
1646}
1647
1648void zs_free(struct zs_pool *pool, unsigned long handle)
1649{
Minchan Kim37836892016-07-26 15:23:23 -07001650 struct zspage *zspage;
1651 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001652 unsigned long obj;
1653 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001654 int class_idx;
1655 struct size_class *class;
1656 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001657 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001658
Minchan Kim2e40e162015-04-15 16:15:23 -07001659 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001660 return;
1661
Minchan Kim312fcae2015-04-15 16:15:30 -07001662 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001663 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001664 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001665 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001666
Minchan Kim48b48002016-07-26 15:23:31 -07001667 migrate_read_lock(zspage);
1668
Minchan Kim37836892016-07-26 15:23:23 -07001669 get_zspage_mapping(zspage, &class_idx, &fullness);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001670 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001671
1672 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001673 obj_free(class, obj);
Minchan Kim37836892016-07-26 15:23:23 -07001674 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001675 if (fullness != ZS_EMPTY) {
1676 migrate_read_unlock(zspage);
1677 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001678 }
Minchan Kim48b48002016-07-26 15:23:31 -07001679
1680 isolated = is_zspage_isolated(zspage);
1681 migrate_read_unlock(zspage);
1682 /* If zspage is isolated, zs_page_putback will free the zspage */
1683 if (likely(!isolated))
1684 free_zspage(pool, class, zspage);
1685out:
1686
Minchan Kim312fcae2015-04-15 16:15:30 -07001687 spin_unlock(&class->lock);
1688 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001689 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001690}
1691EXPORT_SYMBOL_GPL(zs_free);
1692
Minchan Kim251cbb92016-05-20 16:59:42 -07001693static void zs_object_copy(struct size_class *class, unsigned long dst,
1694 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001695{
1696 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001697 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001698 unsigned long s_off, d_off;
1699 void *s_addr, *d_addr;
1700 int s_size, d_size, size;
1701 int written = 0;
1702
1703 s_size = d_size = class->size;
1704
1705 obj_to_location(src, &s_page, &s_objidx);
1706 obj_to_location(dst, &d_page, &d_objidx);
1707
Minchan Kimbfd093f2016-07-26 15:23:28 -07001708 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1709 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001710
1711 if (s_off + class->size > PAGE_SIZE)
1712 s_size = PAGE_SIZE - s_off;
1713
1714 if (d_off + class->size > PAGE_SIZE)
1715 d_size = PAGE_SIZE - d_off;
1716
1717 s_addr = kmap_atomic(s_page);
1718 d_addr = kmap_atomic(d_page);
1719
1720 while (1) {
1721 size = min(s_size, d_size);
1722 memcpy(d_addr + d_off, s_addr + s_off, size);
1723 written += size;
1724
1725 if (written == class->size)
1726 break;
1727
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001728 s_off += size;
1729 s_size -= size;
1730 d_off += size;
1731 d_size -= size;
1732
1733 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001734 kunmap_atomic(d_addr);
1735 kunmap_atomic(s_addr);
1736 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001737 s_addr = kmap_atomic(s_page);
1738 d_addr = kmap_atomic(d_page);
1739 s_size = class->size - written;
1740 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001741 }
1742
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001743 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001744 kunmap_atomic(d_addr);
1745 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001746 d_addr = kmap_atomic(d_page);
1747 d_size = class->size - written;
1748 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001749 }
1750 }
1751
1752 kunmap_atomic(d_addr);
1753 kunmap_atomic(s_addr);
1754}
1755
1756/*
1757 * Find alloced object in zspage from index object and
1758 * return handle.
1759 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001760static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001761 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001762{
1763 unsigned long head;
1764 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001765 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001766 unsigned long handle = 0;
1767 void *addr = kmap_atomic(page);
1768
Minchan Kim37836892016-07-26 15:23:23 -07001769 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001770 offset += class->size * index;
1771
1772 while (offset < PAGE_SIZE) {
Minchan Kim48b48002016-07-26 15:23:31 -07001773 head = obj_to_head(page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001774 if (head & OBJ_ALLOCATED_TAG) {
1775 handle = head & ~OBJ_ALLOCATED_TAG;
1776 if (trypin_tag(handle))
1777 break;
1778 handle = 0;
1779 }
1780
1781 offset += class->size;
1782 index++;
1783 }
1784
1785 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001786
1787 *obj_idx = index;
1788
Minchan Kim312fcae2015-04-15 16:15:30 -07001789 return handle;
1790}
1791
1792struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001793 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001794 struct page *s_page;
1795 /* Destination page for migration which should be a first page
1796 * of zspage. */
1797 struct page *d_page;
1798 /* Starting object index within @s_page which used for live object
1799 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001800 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001801};
1802
1803static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1804 struct zs_compact_control *cc)
1805{
1806 unsigned long used_obj, free_obj;
1807 unsigned long handle;
1808 struct page *s_page = cc->s_page;
1809 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001810 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001811 int ret = 0;
1812
1813 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001814 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001815 if (!handle) {
1816 s_page = get_next_page(s_page);
1817 if (!s_page)
1818 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001819 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001820 continue;
1821 }
1822
1823 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001824 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001825 unpin_tag(handle);
1826 ret = -ENOMEM;
1827 break;
1828 }
1829
1830 used_obj = handle_to_obj(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001831 free_obj = obj_malloc(class, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001832 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001833 obj_idx++;
Junil Leec102f072016-01-20 14:58:18 -08001834 /*
1835 * record_obj updates handle's value to free_obj and it will
1836 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1837 * breaks synchronization using pin_tag(e,g, zs_free) so
1838 * let's keep the lock bit.
1839 */
1840 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001841 record_obj(handle, free_obj);
1842 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001843 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001844 }
1845
1846 /* Remember last position in this iteration */
1847 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001848 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001849
1850 return ret;
1851}
1852
Minchan Kim37836892016-07-26 15:23:23 -07001853static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001854{
1855 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001856 struct zspage *zspage;
1857 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001858
Minchan Kim37836892016-07-26 15:23:23 -07001859 if (!source) {
1860 fg[0] = ZS_ALMOST_FULL;
1861 fg[1] = ZS_ALMOST_EMPTY;
1862 }
1863
1864 for (i = 0; i < 2; i++) {
1865 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1866 struct zspage, list);
1867 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001868 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001869 remove_zspage(class, zspage, fg[i]);
1870 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001871 }
1872 }
1873
Minchan Kim37836892016-07-26 15:23:23 -07001874 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001875}
1876
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001877/*
Minchan Kim37836892016-07-26 15:23:23 -07001878 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001879 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001880 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001881 *
Minchan Kim37836892016-07-26 15:23:23 -07001882 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001883 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001884static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001885 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001886{
Minchan Kim312fcae2015-04-15 16:15:30 -07001887 enum fullness_group fullness;
1888
Minchan Kim48b48002016-07-26 15:23:31 -07001889 VM_BUG_ON(is_zspage_isolated(zspage));
1890
Minchan Kim37836892016-07-26 15:23:23 -07001891 fullness = get_fullness_group(class, zspage);
1892 insert_zspage(class, zspage, fullness);
1893 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001894
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001895 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001896}
1897
Minchan Kim48b48002016-07-26 15:23:31 -07001898#ifdef CONFIG_COMPACTION
1899static struct dentry *zs_mount(struct file_system_type *fs_type,
1900 int flags, const char *dev_name, void *data)
1901{
1902 static const struct dentry_operations ops = {
1903 .d_dname = simple_dname,
1904 };
1905
1906 return mount_pseudo(fs_type, "zsmalloc:", NULL, &ops, ZSMALLOC_MAGIC);
1907}
1908
1909static struct file_system_type zsmalloc_fs = {
1910 .name = "zsmalloc",
1911 .mount = zs_mount,
1912 .kill_sb = kill_anon_super,
1913};
1914
1915static int zsmalloc_mount(void)
1916{
1917 int ret = 0;
1918
1919 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1920 if (IS_ERR(zsmalloc_mnt))
1921 ret = PTR_ERR(zsmalloc_mnt);
1922
1923 return ret;
1924}
1925
1926static void zsmalloc_unmount(void)
1927{
1928 kern_unmount(zsmalloc_mnt);
1929}
1930
1931static void migrate_lock_init(struct zspage *zspage)
1932{
1933 rwlock_init(&zspage->lock);
1934}
1935
1936static void migrate_read_lock(struct zspage *zspage)
1937{
1938 read_lock(&zspage->lock);
1939}
1940
1941static void migrate_read_unlock(struct zspage *zspage)
1942{
1943 read_unlock(&zspage->lock);
1944}
1945
1946static void migrate_write_lock(struct zspage *zspage)
1947{
1948 write_lock(&zspage->lock);
1949}
1950
1951static void migrate_write_unlock(struct zspage *zspage)
1952{
1953 write_unlock(&zspage->lock);
1954}
1955
1956/* Number of isolated subpage for *page migration* in this zspage */
1957static void inc_zspage_isolation(struct zspage *zspage)
1958{
1959 zspage->isolated++;
1960}
1961
1962static void dec_zspage_isolation(struct zspage *zspage)
1963{
1964 zspage->isolated--;
1965}
1966
Henry Burns29295162019-08-24 17:55:03 -07001967static void putback_zspage_deferred(struct zs_pool *pool,
1968 struct size_class *class,
1969 struct zspage *zspage)
1970{
1971 enum fullness_group fg;
1972
1973 fg = putback_zspage(class, zspage);
1974 if (fg == ZS_EMPTY)
1975 schedule_work(&pool->free_work);
1976
1977}
1978
Henry Burns0e7e2732019-08-24 17:55:06 -07001979static inline void zs_pool_dec_isolated(struct zs_pool *pool)
1980{
1981 VM_BUG_ON(atomic_long_read(&pool->isolated_pages) <= 0);
1982 atomic_long_dec(&pool->isolated_pages);
1983 /*
1984 * There's no possibility of racing, since wait_for_isolated_drain()
1985 * checks the isolated count under &class->lock after enqueuing
1986 * on migration_wait.
1987 */
1988 if (atomic_long_read(&pool->isolated_pages) == 0 && pool->destroying)
1989 wake_up_all(&pool->migration_wait);
1990}
1991
Minchan Kim48b48002016-07-26 15:23:31 -07001992static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1993 struct page *newpage, struct page *oldpage)
1994{
1995 struct page *page;
1996 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1997 int idx = 0;
1998
1999 page = get_first_page(zspage);
2000 do {
2001 if (page == oldpage)
2002 pages[idx] = newpage;
2003 else
2004 pages[idx] = page;
2005 idx++;
2006 } while ((page = get_next_page(page)) != NULL);
2007
2008 create_page_chain(class, zspage, pages);
2009 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
2010 if (unlikely(PageHugeObject(oldpage)))
2011 newpage->index = oldpage->index;
2012 __SetPageMovable(newpage, page_mapping(oldpage));
2013}
2014
2015bool zs_page_isolate(struct page *page, isolate_mode_t mode)
2016{
2017 struct zs_pool *pool;
2018 struct size_class *class;
2019 int class_idx;
2020 enum fullness_group fullness;
2021 struct zspage *zspage;
2022 struct address_space *mapping;
2023
2024 /*
2025 * Page is locked so zspage couldn't be destroyed. For detail, look at
2026 * lock_zspage in free_zspage.
2027 */
2028 VM_BUG_ON_PAGE(!PageMovable(page), page);
2029 VM_BUG_ON_PAGE(PageIsolated(page), page);
2030
2031 zspage = get_zspage(page);
2032
2033 /*
2034 * Without class lock, fullness could be stale while class_idx is okay
2035 * because class_idx is constant unless page is freed so we should get
2036 * fullness again under class lock.
2037 */
2038 get_zspage_mapping(zspage, &class_idx, &fullness);
2039 mapping = page_mapping(page);
2040 pool = mapping->private_data;
2041 class = pool->size_class[class_idx];
2042
2043 spin_lock(&class->lock);
2044 if (get_zspage_inuse(zspage) == 0) {
2045 spin_unlock(&class->lock);
2046 return false;
2047 }
2048
2049 /* zspage is isolated for object migration */
2050 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2051 spin_unlock(&class->lock);
2052 return false;
2053 }
2054
2055 /*
2056 * If this is first time isolation for the zspage, isolate zspage from
2057 * size_class to prevent further object allocation from the zspage.
2058 */
2059 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2060 get_zspage_mapping(zspage, &class_idx, &fullness);
Henry Burns0e7e2732019-08-24 17:55:06 -07002061 atomic_long_inc(&pool->isolated_pages);
Minchan Kim48b48002016-07-26 15:23:31 -07002062 remove_zspage(class, zspage, fullness);
2063 }
2064
2065 inc_zspage_isolation(zspage);
2066 spin_unlock(&class->lock);
2067
2068 return true;
2069}
2070
2071int zs_page_migrate(struct address_space *mapping, struct page *newpage,
2072 struct page *page, enum migrate_mode mode)
2073{
2074 struct zs_pool *pool;
2075 struct size_class *class;
2076 int class_idx;
2077 enum fullness_group fullness;
2078 struct zspage *zspage;
2079 struct page *dummy;
2080 void *s_addr, *d_addr, *addr;
2081 int offset, pos;
2082 unsigned long handle, head;
2083 unsigned long old_obj, new_obj;
2084 unsigned int obj_idx;
2085 int ret = -EAGAIN;
2086
2087 VM_BUG_ON_PAGE(!PageMovable(page), page);
2088 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2089
2090 zspage = get_zspage(page);
2091
2092 /* Concurrent compactor cannot migrate any subpage in zspage */
2093 migrate_write_lock(zspage);
2094 get_zspage_mapping(zspage, &class_idx, &fullness);
2095 pool = mapping->private_data;
2096 class = pool->size_class[class_idx];
2097 offset = get_first_obj_offset(page);
2098
2099 spin_lock(&class->lock);
2100 if (!get_zspage_inuse(zspage)) {
2101 ret = -EBUSY;
2102 goto unlock_class;
2103 }
2104
2105 pos = offset;
2106 s_addr = kmap_atomic(page);
2107 while (pos < PAGE_SIZE) {
2108 head = obj_to_head(page, s_addr + pos);
2109 if (head & OBJ_ALLOCATED_TAG) {
2110 handle = head & ~OBJ_ALLOCATED_TAG;
2111 if (!trypin_tag(handle))
2112 goto unpin_objects;
2113 }
2114 pos += class->size;
2115 }
2116
2117 /*
2118 * Here, any user cannot access all objects in the zspage so let's move.
2119 */
2120 d_addr = kmap_atomic(newpage);
2121 memcpy(d_addr, s_addr, PAGE_SIZE);
2122 kunmap_atomic(d_addr);
2123
2124 for (addr = s_addr + offset; addr < s_addr + pos;
2125 addr += class->size) {
2126 head = obj_to_head(page, addr);
2127 if (head & OBJ_ALLOCATED_TAG) {
2128 handle = head & ~OBJ_ALLOCATED_TAG;
2129 if (!testpin_tag(handle))
2130 BUG();
2131
2132 old_obj = handle_to_obj(handle);
2133 obj_to_location(old_obj, &dummy, &obj_idx);
2134 new_obj = (unsigned long)location_to_obj(newpage,
2135 obj_idx);
2136 new_obj |= BIT(HANDLE_PIN_BIT);
2137 record_obj(handle, new_obj);
2138 }
2139 }
2140
2141 replace_sub_page(class, zspage, newpage, page);
2142 get_page(newpage);
2143
2144 dec_zspage_isolation(zspage);
2145
2146 /*
2147 * Page migration is done so let's putback isolated zspage to
2148 * the list if @page is final isolated subpage in the zspage.
2149 */
Henry Burns0e7e2732019-08-24 17:55:06 -07002150 if (!is_zspage_isolated(zspage)) {
2151 /*
2152 * We cannot race with zs_destroy_pool() here because we wait
2153 * for isolation to hit zero before we start destroying.
2154 * Also, we ensure that everyone can see pool->destroying before
2155 * we start waiting.
2156 */
Henry Burns29295162019-08-24 17:55:03 -07002157 putback_zspage_deferred(pool, class, zspage);
Henry Burns0e7e2732019-08-24 17:55:06 -07002158 zs_pool_dec_isolated(pool);
2159 }
Minchan Kim48b48002016-07-26 15:23:31 -07002160
Chanho Mindf5e2d32020-01-04 12:59:36 -08002161 if (page_zone(newpage) != page_zone(page)) {
2162 dec_zone_page_state(page, NR_ZSPAGES);
2163 inc_zone_page_state(newpage, NR_ZSPAGES);
2164 }
2165
Minchan Kim48b48002016-07-26 15:23:31 -07002166 reset_page(page);
2167 put_page(page);
2168 page = newpage;
2169
Minchan Kimdd4123f2016-07-26 15:26:50 -07002170 ret = MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07002171unpin_objects:
2172 for (addr = s_addr + offset; addr < s_addr + pos;
2173 addr += class->size) {
2174 head = obj_to_head(page, addr);
2175 if (head & OBJ_ALLOCATED_TAG) {
2176 handle = head & ~OBJ_ALLOCATED_TAG;
2177 if (!testpin_tag(handle))
2178 BUG();
2179 unpin_tag(handle);
2180 }
2181 }
2182 kunmap_atomic(s_addr);
2183unlock_class:
2184 spin_unlock(&class->lock);
2185 migrate_write_unlock(zspage);
2186
2187 return ret;
2188}
2189
2190void zs_page_putback(struct page *page)
2191{
2192 struct zs_pool *pool;
2193 struct size_class *class;
2194 int class_idx;
2195 enum fullness_group fg;
2196 struct address_space *mapping;
2197 struct zspage *zspage;
2198
2199 VM_BUG_ON_PAGE(!PageMovable(page), page);
2200 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2201
2202 zspage = get_zspage(page);
2203 get_zspage_mapping(zspage, &class_idx, &fg);
2204 mapping = page_mapping(page);
2205 pool = mapping->private_data;
2206 class = pool->size_class[class_idx];
2207
2208 spin_lock(&class->lock);
2209 dec_zspage_isolation(zspage);
2210 if (!is_zspage_isolated(zspage)) {
Minchan Kim48b48002016-07-26 15:23:31 -07002211 /*
2212 * Due to page_lock, we cannot free zspage immediately
2213 * so let's defer.
2214 */
Henry Burns29295162019-08-24 17:55:03 -07002215 putback_zspage_deferred(pool, class, zspage);
Henry Burns0e7e2732019-08-24 17:55:06 -07002216 zs_pool_dec_isolated(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002217 }
2218 spin_unlock(&class->lock);
2219}
2220
2221const struct address_space_operations zsmalloc_aops = {
2222 .isolate_page = zs_page_isolate,
2223 .migratepage = zs_page_migrate,
2224 .putback_page = zs_page_putback,
2225};
2226
2227static int zs_register_migration(struct zs_pool *pool)
2228{
2229 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2230 if (IS_ERR(pool->inode)) {
2231 pool->inode = NULL;
2232 return 1;
2233 }
2234
2235 pool->inode->i_mapping->private_data = pool;
2236 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2237 return 0;
2238}
2239
Henry Burns0e7e2732019-08-24 17:55:06 -07002240static bool pool_isolated_are_drained(struct zs_pool *pool)
2241{
2242 return atomic_long_read(&pool->isolated_pages) == 0;
2243}
2244
2245/* Function for resolving migration */
2246static void wait_for_isolated_drain(struct zs_pool *pool)
2247{
2248
2249 /*
2250 * We're in the process of destroying the pool, so there are no
2251 * active allocations. zs_page_isolate() fails for completely free
2252 * zspages, so we need only wait for the zs_pool's isolated
2253 * count to hit zero.
2254 */
2255 wait_event(pool->migration_wait,
2256 pool_isolated_are_drained(pool));
2257}
2258
Minchan Kim48b48002016-07-26 15:23:31 -07002259static void zs_unregister_migration(struct zs_pool *pool)
2260{
Henry Burns0e7e2732019-08-24 17:55:06 -07002261 pool->destroying = true;
2262 /*
2263 * We need a memory barrier here to ensure global visibility of
2264 * pool->destroying. Thus pool->isolated pages will either be 0 in which
2265 * case we don't care, or it will be > 0 and pool->destroying will
2266 * ensure that we wake up once isolation hits 0.
2267 */
2268 smp_mb();
2269 wait_for_isolated_drain(pool); /* This can block */
Minchan Kim48b48002016-07-26 15:23:31 -07002270 flush_work(&pool->free_work);
Markus Elfringc3491ec2016-07-28 15:48:59 -07002271 iput(pool->inode);
Minchan Kim48b48002016-07-26 15:23:31 -07002272}
2273
2274/*
2275 * Caller should hold page_lock of all pages in the zspage
2276 * In here, we cannot use zspage meta data.
2277 */
2278static void async_free_zspage(struct work_struct *work)
2279{
2280 int i;
2281 struct size_class *class;
2282 unsigned int class_idx;
2283 enum fullness_group fullness;
2284 struct zspage *zspage, *tmp;
2285 LIST_HEAD(free_pages);
2286 struct zs_pool *pool = container_of(work, struct zs_pool,
2287 free_work);
2288
2289 for (i = 0; i < zs_size_classes; i++) {
2290 class = pool->size_class[i];
2291 if (class->index != i)
2292 continue;
2293
2294 spin_lock(&class->lock);
2295 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2296 spin_unlock(&class->lock);
2297 }
2298
2299
2300 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2301 list_del(&zspage->list);
2302 lock_zspage(zspage);
2303
2304 get_zspage_mapping(zspage, &class_idx, &fullness);
2305 VM_BUG_ON(fullness != ZS_EMPTY);
2306 class = pool->size_class[class_idx];
2307 spin_lock(&class->lock);
2308 __free_zspage(pool, pool->size_class[class_idx], zspage);
2309 spin_unlock(&class->lock);
2310 }
2311};
2312
2313static void kick_deferred_free(struct zs_pool *pool)
2314{
2315 schedule_work(&pool->free_work);
2316}
2317
2318static void init_deferred_free(struct zs_pool *pool)
2319{
2320 INIT_WORK(&pool->free_work, async_free_zspage);
2321}
2322
2323static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2324{
2325 struct page *page = get_first_page(zspage);
2326
2327 do {
2328 WARN_ON(!trylock_page(page));
2329 __SetPageMovable(page, pool->inode->i_mapping);
2330 unlock_page(page);
2331 } while ((page = get_next_page(page)) != NULL);
2332}
2333#endif
2334
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002335/*
2336 *
2337 * Based on the number of unused allocated objects calculate
2338 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002339 */
2340static unsigned long zs_can_compact(struct size_class *class)
2341{
2342 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002343 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2344 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002345
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002346 if (obj_allocated <= obj_used)
2347 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002348
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002349 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002350 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002351
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002352 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002353}
2354
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002355static void __zs_compact(struct zs_pool *pool, struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002356{
Minchan Kim312fcae2015-04-15 16:15:30 -07002357 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002358 struct zspage *src_zspage;
2359 struct zspage *dst_zspage = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07002360
Minchan Kim312fcae2015-04-15 16:15:30 -07002361 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002362 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002363
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002364 if (!zs_can_compact(class))
2365 break;
2366
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002367 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002368 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002369
Minchan Kim37836892016-07-26 15:23:23 -07002370 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002371 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002372 /*
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07002373 * If there is no more space in dst_page, resched
2374 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002375 */
2376 if (!migrate_zspage(pool, class, &cc))
2377 break;
2378
Minchan Kim4aa409c2016-07-26 15:23:26 -07002379 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002380 }
2381
2382 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002383 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002384 break;
2385
Minchan Kim4aa409c2016-07-26 15:23:26 -07002386 putback_zspage(class, dst_zspage);
2387 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002388 free_zspage(pool, class, src_zspage);
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002389 pool->stats.pages_compacted += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002390 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002391 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002392 cond_resched();
2393 spin_lock(&class->lock);
2394 }
2395
Minchan Kim37836892016-07-26 15:23:23 -07002396 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002397 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002398
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002399 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002400}
2401
2402unsigned long zs_compact(struct zs_pool *pool)
2403{
2404 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002405 struct size_class *class;
2406
2407 for (i = zs_size_classes - 1; i >= 0; i--) {
2408 class = pool->size_class[i];
2409 if (!class)
2410 continue;
2411 if (class->index != i)
2412 continue;
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002413 __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002414 }
2415
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07002416 return pool->stats.pages_compacted;
Minchan Kim312fcae2015-04-15 16:15:30 -07002417}
2418EXPORT_SYMBOL_GPL(zs_compact);
2419
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002420void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2421{
2422 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2423}
2424EXPORT_SYMBOL_GPL(zs_pool_stats);
2425
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002426static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2427 struct shrink_control *sc)
2428{
2429 unsigned long pages_freed;
2430 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2431 shrinker);
2432
2433 pages_freed = pool->stats.pages_compacted;
2434 /*
2435 * Compact classes and calculate compaction delta.
2436 * Can run concurrently with a manually triggered
2437 * (by user) compaction.
2438 */
2439 pages_freed = zs_compact(pool) - pages_freed;
2440
2441 return pages_freed ? pages_freed : SHRINK_STOP;
2442}
2443
2444static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2445 struct shrink_control *sc)
2446{
2447 int i;
2448 struct size_class *class;
2449 unsigned long pages_to_free = 0;
2450 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2451 shrinker);
2452
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002453 for (i = zs_size_classes - 1; i >= 0; i--) {
2454 class = pool->size_class[i];
2455 if (!class)
2456 continue;
2457 if (class->index != i)
2458 continue;
2459
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002460 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002461 }
2462
2463 return pages_to_free;
2464}
2465
2466static void zs_unregister_shrinker(struct zs_pool *pool)
2467{
2468 if (pool->shrinker_enabled) {
2469 unregister_shrinker(&pool->shrinker);
2470 pool->shrinker_enabled = false;
2471 }
2472}
2473
2474static int zs_register_shrinker(struct zs_pool *pool)
2475{
2476 pool->shrinker.scan_objects = zs_shrinker_scan;
2477 pool->shrinker.count_objects = zs_shrinker_count;
2478 pool->shrinker.batch = 0;
2479 pool->shrinker.seeks = DEFAULT_SEEKS;
2480
2481 return register_shrinker(&pool->shrinker);
2482}
2483
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002484/**
2485 * zs_create_pool - Creates an allocation pool to work from.
Ganesh Mahendranfd854462016-07-28 15:47:54 -07002486 * @name: pool name to be created
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002487 *
2488 * This function must be called before anything when using
2489 * the zsmalloc allocator.
2490 *
2491 * On success, a pointer to the newly created pool is returned,
2492 * otherwise NULL.
2493 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002494struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002495{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002496 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002497 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002498 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002499
Ganesh Mahendran18136652014-12-12 16:57:10 -08002500 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002501 if (!pool)
2502 return NULL;
2503
Minchan Kim48b48002016-07-26 15:23:31 -07002504 init_deferred_free(pool);
Minchan Kim2e40e162015-04-15 16:15:23 -07002505 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
2506 GFP_KERNEL);
2507 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002508 kfree(pool);
2509 return NULL;
2510 }
2511
Minchan Kim2e40e162015-04-15 16:15:23 -07002512 pool->name = kstrdup(name, GFP_KERNEL);
2513 if (!pool->name)
2514 goto err;
2515
Andrew Morton9ae46112019-08-30 16:04:35 -07002516#ifdef CONFIG_COMPACTION
Henry Burns0e7e2732019-08-24 17:55:06 -07002517 init_waitqueue_head(&pool->migration_wait);
Andrew Morton9ae46112019-08-30 16:04:35 -07002518#endif
Henry Burns0e7e2732019-08-24 17:55:06 -07002519
Minchan Kim37836892016-07-26 15:23:23 -07002520 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002521 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002522
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002523 /*
2524 * Iterate reversly, because, size of size_class that we want to use
2525 * for merging should be larger or equal to current size.
2526 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002527 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002528 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002529 int pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002530 int objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002531 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002532 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002533
2534 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2535 if (size > ZS_MAX_ALLOC_SIZE)
2536 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002537 pages_per_zspage = get_pages_per_zspage(size);
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002538 objs_per_zspage = pages_per_zspage * PAGE_SIZE / size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002539
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002540 /*
Sergey Senozhatskyda33b2a2018-04-05 16:24:43 -07002541 * We iterate from biggest down to smallest classes,
2542 * so huge_class_size holds the size of the first huge
2543 * class. Any object bigger than or equal to that will
2544 * endup in the huge class.
2545 */
2546 if (pages_per_zspage != 1 && objs_per_zspage != 1 &&
2547 !huge_class_size) {
2548 huge_class_size = size;
2549 /*
2550 * The object uses ZS_HANDLE_SIZE bytes to store the
2551 * handle. We need to subtract it, because zs_malloc()
2552 * unconditionally adds handle size before it performs
2553 * size class search - so object may be smaller than
2554 * huge class size, yet it still can end up in the huge
2555 * class because it grows by ZS_HANDLE_SIZE extra bytes
2556 * right before class lookup.
2557 */
2558 huge_class_size -= (ZS_HANDLE_SIZE - 1);
2559 }
2560
2561 /*
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002562 * size_class is used for normal zsmalloc operation such
2563 * as alloc/free for that size. Although it is natural that we
2564 * have one size_class for each size, there is a chance that we
2565 * can get more memory utilization if we use one size_class for
2566 * many different sizes whose size_class have same
2567 * characteristics. So, we makes size_class point to
2568 * previous size_class if possible.
2569 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002570 if (prev_class) {
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002571 if (can_merge(prev_class, pages_per_zspage, objs_per_zspage)) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002572 pool->size_class[i] = prev_class;
2573 continue;
2574 }
2575 }
2576
2577 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2578 if (!class)
2579 goto err;
2580
Nitin Gupta61989a82012-01-09 16:51:56 -06002581 class->size = size;
2582 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002583 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002584 class->objs_per_zspage = objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002585 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002586 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002587 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2588 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002589 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002590
2591 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002592 }
2593
Dan Streetmand34f6152016-05-20 16:59:56 -07002594 /* debug only, don't abort if it fails */
2595 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002596
Minchan Kim48b48002016-07-26 15:23:31 -07002597 if (zs_register_migration(pool))
2598 goto err;
2599
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002600 /*
2601 * Not critical, we still can use the pool
2602 * and user can trigger compaction manually.
2603 */
2604 if (zs_register_shrinker(pool) == 0)
2605 pool->shrinker_enabled = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06002606 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002607
2608err:
2609 zs_destroy_pool(pool);
2610 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002611}
2612EXPORT_SYMBOL_GPL(zs_create_pool);
2613
2614void zs_destroy_pool(struct zs_pool *pool)
2615{
2616 int i;
2617
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002618 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002619 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002620 zs_pool_stat_destroy(pool);
2621
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002622 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002623 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002624 struct size_class *class = pool->size_class[i];
2625
2626 if (!class)
2627 continue;
2628
2629 if (class->index != i)
2630 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002631
Minchan Kim48b48002016-07-26 15:23:31 -07002632 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002633 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002634 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002635 class->size, fg);
2636 }
2637 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002638 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002639 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002640
Minchan Kim37836892016-07-26 15:23:23 -07002641 destroy_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002642 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002643 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002644 kfree(pool);
2645}
2646EXPORT_SYMBOL_GPL(zs_destroy_pool);
2647
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002648static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002649{
Minchan Kim48b48002016-07-26 15:23:31 -07002650 int ret;
2651
2652 ret = zsmalloc_mount();
2653 if (ret)
2654 goto out;
2655
2656 ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06002657
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002658 if (ret)
2659 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002660
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002661 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06002662
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002663#ifdef CONFIG_ZPOOL
2664 zpool_register_driver(&zs_zpool_driver);
2665#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002666
Dan Streetman4abaac92016-05-26 15:16:27 -07002667 zs_stat_init();
2668
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002669 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002670
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002671notifier_fail:
2672 zs_unregister_cpu_notifier();
Minchan Kim48b48002016-07-26 15:23:31 -07002673 zsmalloc_unmount();
2674out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002675 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002676}
Nitin Gupta61989a82012-01-09 16:51:56 -06002677
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002678static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002679{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002680#ifdef CONFIG_ZPOOL
2681 zpool_unregister_driver(&zs_zpool_driver);
2682#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002683 zsmalloc_unmount();
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002684 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002685
2686 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002687}
Ben Hutchings069f1012012-06-20 02:31:11 +01002688
2689module_init(zs_init);
2690module_exit(zs_exit);
2691
2692MODULE_LICENSE("Dual BSD/GPL");
2693MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");