blob: 49143de9934ceabf506bdb546117cfeb07cf925d [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.
Nitin Gupta2db51da2012-06-09 17:41:14 -070023 *
24 * Usage of struct page flags:
25 * PG_private: identifies the first component page
26 * PG_private2: identifies the last component page
Minchan Kim48b48002016-07-26 15:23:31 -070027 * PG_owner_priv_1: indentifies the huge component page
Nitin Gupta2db51da2012-06-09 17:41:14 -070028 *
29 */
30
Dan Streetman4abaac92016-05-26 15:16:27 -070031#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Nitin Gupta61989a82012-01-09 16:51:56 -060033#include <linux/module.h>
34#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070035#include <linux/sched.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060036#include <linux/bitops.h>
37#include <linux/errno.h>
38#include <linux/highmem.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060039#include <linux/string.h>
40#include <linux/slab.h>
41#include <asm/tlbflush.h>
42#include <asm/pgtable.h>
43#include <linux/cpumask.h>
44#include <linux/cpu.h>
Seth Jennings0cbb6132012-02-13 08:47:49 -060045#include <linux/vmalloc.h>
Sergey Senozhatsky759b26b2015-11-06 16:29:29 -080046#include <linux/preempt.h>
Seth Jennings0959c632012-08-08 15:12:17 +090047#include <linux/spinlock.h>
48#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080049#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080050#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070051#include <linux/zpool.h>
Minchan Kim48b48002016-07-26 15:23:31 -070052#include <linux/mount.h>
Minchan Kimdd4123f2016-07-26 15:26:50 -070053#include <linux/migrate.h>
Minchan Kim48b48002016-07-26 15:23:31 -070054#include <linux/pagemap.h>
55
56#define ZSPAGE_MAGIC 0x58
Seth Jennings0959c632012-08-08 15:12:17 +090057
58/*
59 * This must be power of 2 and greater than of equal to sizeof(link_free).
60 * These two conditions ensure that any 'struct link_free' itself doesn't
61 * span more than 1 page which avoids complex case of mapping 2 pages simply
62 * to restore link_free pointer values.
63 */
64#define ZS_ALIGN 8
65
66/*
67 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
68 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
69 */
70#define ZS_MAX_ZSPAGE_ORDER 2
71#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
72
Minchan Kim2e40e162015-04-15 16:15:23 -070073#define ZS_HANDLE_SIZE (sizeof(unsigned long))
74
Seth Jennings0959c632012-08-08 15:12:17 +090075/*
76 * Object location (<PFN>, <obj_idx>) is encoded as
Nitin Cuptac3e3e882013-12-11 11:04:37 +090077 * as single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090078 *
Minchan Kimbfd093f2016-07-26 15:23:28 -070079 * Note that object index <obj_idx> starts from 0.
Seth Jennings0959c632012-08-08 15:12:17 +090080 *
81 * This is made more complicated by various memory models and PAE.
82 */
83
84#ifndef MAX_PHYSMEM_BITS
85#ifdef CONFIG_HIGHMEM64G
86#define MAX_PHYSMEM_BITS 36
87#else /* !CONFIG_HIGHMEM64G */
88/*
89 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
90 * be PAGE_SHIFT
91 */
92#define MAX_PHYSMEM_BITS BITS_PER_LONG
93#endif
94#endif
95#define _PFN_BITS (MAX_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -070096
97/*
98 * Memory for allocating for handle keeps object position by
99 * encoding <page, obj_idx> and the encoded value has a room
100 * in least bit(ie, look at obj_to_location).
101 * We use the bit to synchronize between object access by
102 * user and migration.
103 */
104#define HANDLE_PIN_BIT 0
105
106/*
107 * Head in allocated object should have OBJ_ALLOCATED_TAG
108 * to identify the object was allocated or not.
109 * It's okay to add the status bit in the least bit because
110 * header keeps handle which is 4byte-aligned address so we
111 * have room for two bit at least.
112 */
113#define OBJ_ALLOCATED_TAG 1
114#define OBJ_TAG_BITS 1
115#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900116#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
117
118#define MAX(a, b) ((a) >= (b) ? (a) : (b))
119/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
120#define ZS_MIN_ALLOC_SIZE \
121 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700122/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700123#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900124
125/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700126 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900127 * trader-off here:
128 * - Large number of size classes is potentially wasteful as free page are
129 * spread across these classes
130 * - Small number of size classes causes large internal fragmentation
131 * - Probably its better to use specific size classes (empirically
132 * determined). NOTE: all those class sizes must be set as multiple of
133 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
134 *
135 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
136 * (reason above)
137 */
Minchan Kim37836892016-07-26 15:23:23 -0700138#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> CLASS_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900139
140/*
141 * We do not maintain any list for completely empty or full pages
142 */
143enum fullness_group {
Seth Jennings0959c632012-08-08 15:12:17 +0900144 ZS_EMPTY,
Minchan Kim48b48002016-07-26 15:23:31 -0700145 ZS_ALMOST_EMPTY,
146 ZS_ALMOST_FULL,
147 ZS_FULL,
148 NR_ZS_FULLNESS,
Seth Jennings0959c632012-08-08 15:12:17 +0900149};
150
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800151enum zs_stat_type {
Minchan Kim48b48002016-07-26 15:23:31 -0700152 CLASS_EMPTY,
153 CLASS_ALMOST_EMPTY,
154 CLASS_ALMOST_FULL,
155 CLASS_FULL,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800156 OBJ_ALLOCATED,
157 OBJ_USED,
Minchan Kim48b48002016-07-26 15:23:31 -0700158 NR_ZS_STAT_TYPE,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800159};
160
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800161struct zs_size_stat {
162 unsigned long objs[NR_ZS_STAT_TYPE];
163};
164
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700165#ifdef CONFIG_ZSMALLOC_STAT
166static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800167#endif
168
Minchan Kim48b48002016-07-26 15:23:31 -0700169#ifdef CONFIG_COMPACTION
170static struct vfsmount *zsmalloc_mnt;
171#endif
172
Seth Jennings0959c632012-08-08 15:12:17 +0900173/*
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800174 * number of size_classes
175 */
176static int zs_size_classes;
177
178/*
Seth Jennings0959c632012-08-08 15:12:17 +0900179 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
180 * n <= N / f, where
181 * n = number of allocated objects
182 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700183 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900184 *
185 * Similarly, we assign zspage to:
186 * ZS_ALMOST_FULL when n > N / f
187 * ZS_EMPTY when n == 0
188 * ZS_FULL when n == N
189 *
190 * (see: fix_fullness_group())
191 */
192static const int fullness_threshold_frac = 4;
193
194struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700195 spinlock_t lock;
Minchan Kim48b48002016-07-26 15:23:31 -0700196 struct list_head fullness_list[NR_ZS_FULLNESS];
Seth Jennings0959c632012-08-08 15:12:17 +0900197 /*
198 * Size of objects stored in this class. Must be multiple
199 * of ZS_ALIGN.
200 */
201 int size;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700202 int objs_per_zspage;
Weijie Yang7dfa4612016-01-14 15:22:40 -0800203 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
204 int pages_per_zspage;
Minchan Kim48b48002016-07-26 15:23:31 -0700205
206 unsigned int index;
207 struct zs_size_stat stats;
Seth Jennings0959c632012-08-08 15:12:17 +0900208};
209
Minchan Kim48b48002016-07-26 15:23:31 -0700210/* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
211static void SetPageHugeObject(struct page *page)
212{
213 SetPageOwnerPriv1(page);
214}
215
216static void ClearPageHugeObject(struct page *page)
217{
218 ClearPageOwnerPriv1(page);
219}
220
221static int PageHugeObject(struct page *page)
222{
223 return PageOwnerPriv1(page);
224}
225
Seth Jennings0959c632012-08-08 15:12:17 +0900226/*
227 * Placed within free objects to form a singly linked list.
Minchan Kim37836892016-07-26 15:23:23 -0700228 * For every zspage, zspage->freeobj gives head of this list.
Seth Jennings0959c632012-08-08 15:12:17 +0900229 *
230 * This must be power of 2 and less than or equal to ZS_ALIGN
231 */
232struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700233 union {
234 /*
Minchan Kimbfd093f2016-07-26 15:23:28 -0700235 * Free object index;
Minchan Kim2e40e162015-04-15 16:15:23 -0700236 * It's valid for non-allocated object
237 */
Minchan Kimbfd093f2016-07-26 15:23:28 -0700238 unsigned long next;
Minchan Kim2e40e162015-04-15 16:15:23 -0700239 /*
240 * Handle of allocated object.
241 */
242 unsigned long handle;
243 };
Seth Jennings0959c632012-08-08 15:12:17 +0900244};
245
246struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800247 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800248
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -0800249 struct size_class **size_class;
Minchan Kim2e40e162015-04-15 16:15:23 -0700250 struct kmem_cache *handle_cachep;
Minchan Kim37836892016-07-26 15:23:23 -0700251 struct kmem_cache *zspage_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900252
Minchan Kim13de8932014-10-09 15:29:48 -0700253 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800254
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700255 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700256
257 /* Compact classes */
258 struct shrinker shrinker;
259 /*
260 * To signify that register_shrinker() was successful
261 * and unregister_shrinker() will not Oops.
262 */
263 bool shrinker_enabled;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800264#ifdef CONFIG_ZSMALLOC_STAT
265 struct dentry *stat_dentry;
266#endif
Minchan Kim48b48002016-07-26 15:23:31 -0700267#ifdef CONFIG_COMPACTION
268 struct inode *inode;
269 struct work_struct free_work;
270#endif
Seth Jennings0959c632012-08-08 15:12:17 +0900271};
Nitin Gupta61989a82012-01-09 16:51:56 -0600272
273/*
274 * A zspage's class index and fullness group
275 * are encoded in its (first)page->mapping
276 */
Minchan Kim37836892016-07-26 15:23:23 -0700277#define FULLNESS_BITS 2
278#define CLASS_BITS 8
Minchan Kim48b48002016-07-26 15:23:31 -0700279#define ISOLATED_BITS 3
280#define MAGIC_VAL_BITS 8
Minchan Kim4f420472016-07-26 15:23:17 -0700281
Minchan Kim37836892016-07-26 15:23:23 -0700282struct zspage {
283 struct {
284 unsigned int fullness:FULLNESS_BITS;
285 unsigned int class:CLASS_BITS;
Minchan Kim48b48002016-07-26 15:23:31 -0700286 unsigned int isolated:ISOLATED_BITS;
287 unsigned int magic:MAGIC_VAL_BITS;
Minchan Kim37836892016-07-26 15:23:23 -0700288 };
289 unsigned int inuse;
Minchan Kimbfd093f2016-07-26 15:23:28 -0700290 unsigned int freeobj;
Minchan Kim37836892016-07-26 15:23:23 -0700291 struct page *first_page;
292 struct list_head list; /* fullness list */
Minchan Kim48b48002016-07-26 15:23:31 -0700293#ifdef CONFIG_COMPACTION
294 rwlock_t lock;
295#endif
Minchan Kim37836892016-07-26 15:23:23 -0700296};
Nitin Gupta61989a82012-01-09 16:51:56 -0600297
Seth Jenningsf5536462012-07-18 11:55:56 -0500298struct mapping_area {
Minchan Kim1b945ae2013-12-11 11:04:36 +0900299#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -0500300 struct vm_struct *vm; /* vm area for mapping object that span pages */
301#else
302 char *vm_buf; /* copy buffer for objects that span pages */
303#endif
304 char *vm_addr; /* address of kmap_atomic()'ed pages */
305 enum zs_mapmode vm_mm; /* mapping mode */
306};
307
Minchan Kim48b48002016-07-26 15:23:31 -0700308#ifdef CONFIG_COMPACTION
309static int zs_register_migration(struct zs_pool *pool);
310static void zs_unregister_migration(struct zs_pool *pool);
311static void migrate_lock_init(struct zspage *zspage);
312static void migrate_read_lock(struct zspage *zspage);
313static void migrate_read_unlock(struct zspage *zspage);
314static void kick_deferred_free(struct zs_pool *pool);
315static void init_deferred_free(struct zs_pool *pool);
316static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage);
317#else
318static int zsmalloc_mount(void) { return 0; }
319static void zsmalloc_unmount(void) {}
320static int zs_register_migration(struct zs_pool *pool) { return 0; }
321static void zs_unregister_migration(struct zs_pool *pool) {}
322static void migrate_lock_init(struct zspage *zspage) {}
323static void migrate_read_lock(struct zspage *zspage) {}
324static void migrate_read_unlock(struct zspage *zspage) {}
325static void kick_deferred_free(struct zs_pool *pool) {}
326static void init_deferred_free(struct zs_pool *pool) {}
327static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage) {}
328#endif
329
Minchan Kim37836892016-07-26 15:23:23 -0700330static int create_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700331{
332 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
333 0, 0, NULL);
Minchan Kim37836892016-07-26 15:23:23 -0700334 if (!pool->handle_cachep)
335 return 1;
336
337 pool->zspage_cachep = kmem_cache_create("zspage", sizeof(struct zspage),
338 0, 0, NULL);
339 if (!pool->zspage_cachep) {
340 kmem_cache_destroy(pool->handle_cachep);
341 pool->handle_cachep = NULL;
342 return 1;
343 }
344
345 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -0700346}
347
Minchan Kim37836892016-07-26 15:23:23 -0700348static void destroy_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700349{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700350 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim37836892016-07-26 15:23:23 -0700351 kmem_cache_destroy(pool->zspage_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700352}
353
Minchan Kim37836892016-07-26 15:23:23 -0700354static unsigned long cache_alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700355{
356 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700357 gfp & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim2e40e162015-04-15 16:15:23 -0700358}
359
Minchan Kim37836892016-07-26 15:23:23 -0700360static void cache_free_handle(struct zs_pool *pool, unsigned long handle)
Minchan Kim2e40e162015-04-15 16:15:23 -0700361{
362 kmem_cache_free(pool->handle_cachep, (void *)handle);
363}
364
Minchan Kim37836892016-07-26 15:23:23 -0700365static struct zspage *cache_alloc_zspage(struct zs_pool *pool, gfp_t flags)
366{
Minchan Kim48b48002016-07-26 15:23:31 -0700367 return kmem_cache_alloc(pool->zspage_cachep,
368 flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim37836892016-07-26 15:23:23 -0700369};
370
371static void cache_free_zspage(struct zs_pool *pool, struct zspage *zspage)
372{
373 kmem_cache_free(pool->zspage_cachep, zspage);
374}
375
Minchan Kim2e40e162015-04-15 16:15:23 -0700376static void record_obj(unsigned long handle, unsigned long obj)
377{
Junil Leec102f072016-01-20 14:58:18 -0800378 /*
379 * lsb of @obj represents handle lock while other bits
380 * represent object value the handle is pointing so
381 * updating shouldn't do store tearing.
382 */
383 WRITE_ONCE(*(unsigned long *)handle, obj);
Minchan Kim2e40e162015-04-15 16:15:23 -0700384}
385
Dan Streetmanc7957792014-08-06 16:08:38 -0700386/* zpool driver */
387
388#ifdef CONFIG_ZPOOL
389
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800390static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700391 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700392 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700393{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700394 /*
395 * Ignore global gfp flags: zs_malloc() may be invoked from
396 * different contexts and its caller must provide a valid
397 * gfp mask.
398 */
399 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700400}
401
402static void zs_zpool_destroy(void *pool)
403{
404 zs_destroy_pool(pool);
405}
406
407static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
408 unsigned long *handle)
409{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700410 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700411 return *handle ? 0 : -1;
412}
413static void zs_zpool_free(void *pool, unsigned long handle)
414{
415 zs_free(pool, handle);
416}
417
418static int zs_zpool_shrink(void *pool, unsigned int pages,
419 unsigned int *reclaimed)
420{
421 return -EINVAL;
422}
423
424static void *zs_zpool_map(void *pool, unsigned long handle,
425 enum zpool_mapmode mm)
426{
427 enum zs_mapmode zs_mm;
428
429 switch (mm) {
430 case ZPOOL_MM_RO:
431 zs_mm = ZS_MM_RO;
432 break;
433 case ZPOOL_MM_WO:
434 zs_mm = ZS_MM_WO;
435 break;
436 case ZPOOL_MM_RW: /* fallthru */
437 default:
438 zs_mm = ZS_MM_RW;
439 break;
440 }
441
442 return zs_map_object(pool, handle, zs_mm);
443}
444static void zs_zpool_unmap(void *pool, unsigned long handle)
445{
446 zs_unmap_object(pool, handle);
447}
448
449static u64 zs_zpool_total_size(void *pool)
450{
Minchan Kim722cdc12014-10-09 15:29:50 -0700451 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700452}
453
454static struct zpool_driver zs_zpool_driver = {
455 .type = "zsmalloc",
456 .owner = THIS_MODULE,
457 .create = zs_zpool_create,
458 .destroy = zs_zpool_destroy,
459 .malloc = zs_zpool_malloc,
460 .free = zs_zpool_free,
461 .shrink = zs_zpool_shrink,
462 .map = zs_zpool_map,
463 .unmap = zs_zpool_unmap,
464 .total_size = zs_zpool_total_size,
465};
466
Kees Cook137f8cf2014-08-29 15:18:40 -0700467MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700468#endif /* CONFIG_ZPOOL */
469
Minchan Kim248ca1b2015-04-15 16:15:42 -0700470static unsigned int get_maxobj_per_zspage(int size, int pages_per_zspage)
471{
472 return pages_per_zspage * PAGE_SIZE / size;
473}
474
Nitin Gupta61989a82012-01-09 16:51:56 -0600475/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
476static DEFINE_PER_CPU(struct mapping_area, zs_map_area);
477
Minchan Kim48b48002016-07-26 15:23:31 -0700478static bool is_zspage_isolated(struct zspage *zspage)
479{
480 return zspage->isolated;
481}
482
Nitin Gupta61989a82012-01-09 16:51:56 -0600483static int is_first_page(struct page *page)
484{
Minchan Kima27545bf2012-04-25 15:23:09 +0900485 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600486}
487
Minchan Kim48b48002016-07-26 15:23:31 -0700488/* Protected by class->lock */
Minchan Kim37836892016-07-26 15:23:23 -0700489static inline int get_zspage_inuse(struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600490{
Minchan Kim37836892016-07-26 15:23:23 -0700491 return zspage->inuse;
Nitin Gupta61989a82012-01-09 16:51:56 -0600492}
493
Minchan Kim37836892016-07-26 15:23:23 -0700494static inline void set_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700495{
Minchan Kim37836892016-07-26 15:23:23 -0700496 zspage->inuse = val;
Minchan Kim4f420472016-07-26 15:23:17 -0700497}
498
Minchan Kim37836892016-07-26 15:23:23 -0700499static inline void mod_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700500{
Minchan Kim37836892016-07-26 15:23:23 -0700501 zspage->inuse += val;
Minchan Kim4f420472016-07-26 15:23:17 -0700502}
503
Minchan Kim48b48002016-07-26 15:23:31 -0700504static inline struct page *get_first_page(struct zspage *zspage)
505{
506 struct page *first_page = zspage->first_page;
507
508 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
509 return first_page;
510}
511
Minchan Kim4f420472016-07-26 15:23:17 -0700512static inline int get_first_obj_offset(struct page *page)
513{
Minchan Kim48b48002016-07-26 15:23:31 -0700514 return page->units;
Minchan Kim4f420472016-07-26 15:23:17 -0700515}
516
517static inline void set_first_obj_offset(struct page *page, int offset)
518{
Minchan Kim48b48002016-07-26 15:23:31 -0700519 page->units = offset;
Minchan Kim4f420472016-07-26 15:23:17 -0700520}
521
Minchan Kimbfd093f2016-07-26 15:23:28 -0700522static inline unsigned int get_freeobj(struct zspage *zspage)
Minchan Kim4f420472016-07-26 15:23:17 -0700523{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700524 return zspage->freeobj;
Minchan Kim4f420472016-07-26 15:23:17 -0700525}
526
Minchan Kimbfd093f2016-07-26 15:23:28 -0700527static inline void set_freeobj(struct zspage *zspage, unsigned int obj)
Minchan Kim4f420472016-07-26 15:23:17 -0700528{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700529 zspage->freeobj = obj;
Minchan Kim4f420472016-07-26 15:23:17 -0700530}
531
Minchan Kim37836892016-07-26 15:23:23 -0700532static void get_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700533 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600534 enum fullness_group *fullness)
535{
Minchan Kim48b48002016-07-26 15:23:31 -0700536 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
537
Minchan Kim37836892016-07-26 15:23:23 -0700538 *fullness = zspage->fullness;
539 *class_idx = zspage->class;
Nitin Gupta61989a82012-01-09 16:51:56 -0600540}
541
Minchan Kim37836892016-07-26 15:23:23 -0700542static void set_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700543 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600544 enum fullness_group fullness)
545{
Minchan Kim37836892016-07-26 15:23:23 -0700546 zspage->class = class_idx;
547 zspage->fullness = fullness;
Nitin Gupta61989a82012-01-09 16:51:56 -0600548}
549
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900550/*
551 * zsmalloc divides the pool into various size classes where each
552 * class maintains a list of zspages where each zspage is divided
553 * into equal sized chunks. Each allocation falls into one of these
554 * classes depending on its size. This function returns index of the
555 * size class which has chunk size big enough to hold the give size.
556 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600557static int get_size_class_index(int size)
558{
559 int idx = 0;
560
561 if (likely(size > ZS_MIN_ALLOC_SIZE))
562 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
563 ZS_SIZE_CLASS_DELTA);
564
Minchan Kim7b60a682015-04-15 16:15:39 -0700565 return min(zs_size_classes - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600566}
567
Minchan Kim248ca1b2015-04-15 16:15:42 -0700568static inline void zs_stat_inc(struct size_class *class,
569 enum zs_stat_type type, unsigned long cnt)
570{
Minchan Kim48b48002016-07-26 15:23:31 -0700571 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700572}
573
574static inline void zs_stat_dec(struct size_class *class,
575 enum zs_stat_type type, unsigned long cnt)
576{
Minchan Kim48b48002016-07-26 15:23:31 -0700577 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700578}
579
580static inline unsigned long zs_stat_get(struct size_class *class,
581 enum zs_stat_type type)
582{
Minchan Kim48b48002016-07-26 15:23:31 -0700583 return class->stats.objs[type];
Minchan Kim248ca1b2015-04-15 16:15:42 -0700584}
585
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700586#ifdef CONFIG_ZSMALLOC_STAT
587
Dan Streetman4abaac92016-05-26 15:16:27 -0700588static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700589{
Dan Streetman4abaac92016-05-26 15:16:27 -0700590 if (!debugfs_initialized()) {
591 pr_warn("debugfs not available, stat dir not created\n");
592 return;
593 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700594
595 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
596 if (!zs_stat_root)
Dan Streetman4abaac92016-05-26 15:16:27 -0700597 pr_warn("debugfs 'zsmalloc' stat dir creation failed\n");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700598}
599
600static void __exit zs_stat_exit(void)
601{
602 debugfs_remove_recursive(zs_stat_root);
603}
604
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700605static unsigned long zs_can_compact(struct size_class *class);
606
Minchan Kim248ca1b2015-04-15 16:15:42 -0700607static int zs_stats_size_show(struct seq_file *s, void *v)
608{
609 int i;
610 struct zs_pool *pool = s->private;
611 struct size_class *class;
612 int objs_per_zspage;
613 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700614 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700615 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
616 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700617 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700618
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700619 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700620 "class", "size", "almost_full", "almost_empty",
621 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700622 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700623
624 for (i = 0; i < zs_size_classes; i++) {
625 class = pool->size_class[i];
626
627 if (class->index != i)
628 continue;
629
630 spin_lock(&class->lock);
631 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
632 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
633 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
634 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700635 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700636 spin_unlock(&class->lock);
637
638 objs_per_zspage = get_maxobj_per_zspage(class->size,
639 class->pages_per_zspage);
640 pages_used = obj_allocated / objs_per_zspage *
641 class->pages_per_zspage;
642
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700643 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
644 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700645 i, class->size, class_almost_full, class_almost_empty,
646 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700647 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700648
649 total_class_almost_full += class_almost_full;
650 total_class_almost_empty += class_almost_empty;
651 total_objs += obj_allocated;
652 total_used_objs += obj_used;
653 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700654 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700655 }
656
657 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700658 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700659 "Total", "", total_class_almost_full,
660 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700661 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700662
663 return 0;
664}
665
666static int zs_stats_size_open(struct inode *inode, struct file *file)
667{
668 return single_open(file, zs_stats_size_show, inode->i_private);
669}
670
671static const struct file_operations zs_stat_size_ops = {
672 .open = zs_stats_size_open,
673 .read = seq_read,
674 .llseek = seq_lseek,
675 .release = single_release,
676};
677
Dan Streetmand34f6152016-05-20 16:59:56 -0700678static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700679{
680 struct dentry *entry;
681
Dan Streetman4abaac92016-05-26 15:16:27 -0700682 if (!zs_stat_root) {
683 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700684 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700685 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700686
687 entry = debugfs_create_dir(name, zs_stat_root);
688 if (!entry) {
689 pr_warn("debugfs dir <%s> creation failed\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700690 return;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700691 }
692 pool->stat_dentry = entry;
693
694 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
695 pool->stat_dentry, pool, &zs_stat_size_ops);
696 if (!entry) {
697 pr_warn("%s: debugfs file entry <%s> creation failed\n",
698 name, "classes");
Dan Streetman4abaac92016-05-26 15:16:27 -0700699 debugfs_remove_recursive(pool->stat_dentry);
700 pool->stat_dentry = NULL;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700701 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700702}
703
704static void zs_pool_stat_destroy(struct zs_pool *pool)
705{
706 debugfs_remove_recursive(pool->stat_dentry);
707}
708
709#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700710static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700711{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700712}
713
714static void __exit zs_stat_exit(void)
715{
716}
717
Dan Streetmand34f6152016-05-20 16:59:56 -0700718static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700719{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700720}
721
722static inline void zs_pool_stat_destroy(struct zs_pool *pool)
723{
724}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700725#endif
726
Minchan Kim48b48002016-07-26 15:23:31 -0700727
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900728/*
729 * For each size class, zspages are divided into different groups
730 * depending on how "full" they are. This was done so that we could
731 * easily find empty or nearly empty zspages when we try to shrink
732 * the pool (not yet implemented). This function returns fullness
733 * status of the given page.
734 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700735static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700736 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600737{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700738 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600739 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700740
Minchan Kim37836892016-07-26 15:23:23 -0700741 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700742 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600743
744 if (inuse == 0)
745 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700746 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600747 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700748 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600749 fg = ZS_ALMOST_EMPTY;
750 else
751 fg = ZS_ALMOST_FULL;
752
753 return fg;
754}
755
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900756/*
757 * Each size class maintains various freelists and zspages are assigned
758 * to one of these freelists based on the number of live objects they
759 * have. This functions inserts the given zspage into the freelist
760 * identified by <class, fullness_group>.
761 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700762static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700763 struct zspage *zspage,
764 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600765{
Minchan Kim37836892016-07-26 15:23:23 -0700766 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600767
Minchan Kim48b48002016-07-26 15:23:31 -0700768 zs_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700769 head = list_first_entry_or_null(&class->fullness_list[fullness],
770 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700771 /*
Minchan Kim37836892016-07-26 15:23:23 -0700772 * We want to see more ZS_FULL pages and less almost empty/full.
773 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700774 */
Minchan Kim37836892016-07-26 15:23:23 -0700775 if (head) {
776 if (get_zspage_inuse(zspage) < get_zspage_inuse(head)) {
777 list_add(&zspage->list, &head->list);
778 return;
779 }
780 }
781 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600782}
783
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900784/*
785 * This function removes the given zspage from the freelist identified
786 * by <class, fullness_group>.
787 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700788static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700789 struct zspage *zspage,
790 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600791{
Minchan Kim37836892016-07-26 15:23:23 -0700792 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Minchan Kim48b48002016-07-26 15:23:31 -0700793 VM_BUG_ON(is_zspage_isolated(zspage));
Nitin Gupta61989a82012-01-09 16:51:56 -0600794
Minchan Kim37836892016-07-26 15:23:23 -0700795 list_del_init(&zspage->list);
Minchan Kim48b48002016-07-26 15:23:31 -0700796 zs_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600797}
798
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900799/*
800 * Each size class maintains zspages in different fullness groups depending
801 * on the number of live objects they contain. When allocating or freeing
802 * objects, the fullness status of the page can change, say, from ALMOST_FULL
803 * to ALMOST_EMPTY when freeing an object. This function checks if such
804 * a status change has occurred for the given page and accordingly moves the
805 * page from the freelist of the old fullness group to that of the new
806 * fullness group.
807 */
Minchan Kimc7806262015-04-15 16:15:26 -0700808static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700809 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600810{
811 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600812 enum fullness_group currfg, newfg;
813
Minchan Kim37836892016-07-26 15:23:23 -0700814 get_zspage_mapping(zspage, &class_idx, &currfg);
815 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600816 if (newfg == currfg)
817 goto out;
818
Minchan Kim48b48002016-07-26 15:23:31 -0700819 if (!is_zspage_isolated(zspage)) {
820 remove_zspage(class, zspage, currfg);
821 insert_zspage(class, zspage, newfg);
822 }
823
Minchan Kim37836892016-07-26 15:23:23 -0700824 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600825
826out:
827 return newfg;
828}
829
830/*
831 * We have to decide on how many pages to link together
832 * to form a zspage for each size class. This is important
833 * to reduce wastage due to unusable space left at end of
834 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700835 * wastage = Zp % class_size
836 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600837 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
838 *
839 * For example, for size class of 3/8 * PAGE_SIZE, we should
840 * link together 3 PAGE_SIZE sized pages to form a zspage
841 * since then we can perfectly fit in 8 such objects.
842 */
Minchan Kim2e3b6152012-05-03 15:40:39 +0900843static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600844{
845 int i, max_usedpc = 0;
846 /* zspage order which gives maximum used size per KB */
847 int max_usedpc_order = 1;
848
Seth Jennings84d4faa2012-03-05 11:33:21 -0600849 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600850 int zspage_size;
851 int waste, usedpc;
852
853 zspage_size = i * PAGE_SIZE;
854 waste = zspage_size % class_size;
855 usedpc = (zspage_size - waste) * 100 / zspage_size;
856
857 if (usedpc > max_usedpc) {
858 max_usedpc = usedpc;
859 max_usedpc_order = i;
860 }
861 }
862
863 return max_usedpc_order;
864}
865
Minchan Kim37836892016-07-26 15:23:23 -0700866static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600867{
Minchan Kim48b48002016-07-26 15:23:31 -0700868 struct zspage *zspage = (struct zspage *)page->private;
869
870 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
871 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600872}
873
874static struct page *get_next_page(struct page *page)
875{
Minchan Kim48b48002016-07-26 15:23:31 -0700876 if (unlikely(PageHugeObject(page)))
877 return NULL;
878
879 return page->freelist;
Nitin Gupta61989a82012-01-09 16:51:56 -0600880}
881
Minchan Kimbfd093f2016-07-26 15:23:28 -0700882/**
883 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
884 * @page: page object resides in zspage
885 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800886 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700887static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700888 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600889{
Minchan Kim312fcae2015-04-15 16:15:30 -0700890 obj >>= OBJ_TAG_BITS;
891 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
892 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600893}
894
Minchan Kimbfd093f2016-07-26 15:23:28 -0700895/**
896 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
897 * @page: page object resides in zspage
898 * @obj_idx: object index
899 */
900static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
901{
902 unsigned long obj;
903
904 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
905 obj |= obj_idx & OBJ_INDEX_MASK;
906 obj <<= OBJ_TAG_BITS;
907
908 return obj;
909}
910
Minchan Kim2e40e162015-04-15 16:15:23 -0700911static unsigned long handle_to_obj(unsigned long handle)
912{
913 return *(unsigned long *)handle;
914}
915
Minchan Kim48b48002016-07-26 15:23:31 -0700916static unsigned long obj_to_head(struct page *page, void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700917{
Minchan Kim48b48002016-07-26 15:23:31 -0700918 if (unlikely(PageHugeObject(page))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700919 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim37836892016-07-26 15:23:23 -0700920 return page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700921 } else
922 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700923}
924
Minchan Kim48b48002016-07-26 15:23:31 -0700925static inline int testpin_tag(unsigned long handle)
926{
927 return bit_spin_is_locked(HANDLE_PIN_BIT, (unsigned long *)handle);
928}
929
Minchan Kim312fcae2015-04-15 16:15:30 -0700930static inline int trypin_tag(unsigned long handle)
931{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700932 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700933}
934
935static void pin_tag(unsigned long handle)
936{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700937 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700938}
939
940static void unpin_tag(unsigned long handle)
941{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700942 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700943}
944
Nitin Guptaf4477e92012-04-02 09:13:56 -0500945static void reset_page(struct page *page)
946{
Minchan Kim48b48002016-07-26 15:23:31 -0700947 __ClearPageMovable(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500948 clear_bit(PG_private, &page->flags);
949 clear_bit(PG_private_2, &page->flags);
950 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700951 page_mapcount_reset(page);
952 ClearPageHugeObject(page);
953 page->freelist = NULL;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500954}
955
Minchan Kim48b48002016-07-26 15:23:31 -0700956/*
957 * To prevent zspage destroy during migration, zspage freeing should
958 * hold locks of all pages in the zspage.
959 */
960void lock_zspage(struct zspage *zspage)
961{
962 struct page *page = get_first_page(zspage);
963
964 do {
965 lock_page(page);
966 } while ((page = get_next_page(page)) != NULL);
967}
968
969int trylock_zspage(struct zspage *zspage)
970{
971 struct page *cursor, *fail;
972
973 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
974 get_next_page(cursor)) {
975 if (!trylock_page(cursor)) {
976 fail = cursor;
977 goto unlock;
978 }
979 }
980
981 return 1;
982unlock:
983 for (cursor = get_first_page(zspage); cursor != fail; cursor =
984 get_next_page(cursor))
985 unlock_page(cursor);
986
987 return 0;
988}
989
990static void __free_zspage(struct zs_pool *pool, struct size_class *class,
991 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600992{
Minchan Kim37836892016-07-26 15:23:23 -0700993 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700994 enum fullness_group fg;
995 unsigned int class_idx;
996
997 get_zspage_mapping(zspage, &class_idx, &fg);
998
999 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -06001000
Minchan Kim37836892016-07-26 15:23:23 -07001001 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -07001002 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -06001003
Minchan Kim48b48002016-07-26 15:23:31 -07001004 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -07001005 do {
Minchan Kim48b48002016-07-26 15:23:31 -07001006 VM_BUG_ON_PAGE(!PageLocked(page), page);
1007 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -07001008 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001009 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -07001010 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -07001011 put_page(page);
1012 page = next;
1013 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -06001014
Minchan Kim37836892016-07-26 15:23:23 -07001015 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001016
1017 zs_stat_dec(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1018 class->size, class->pages_per_zspage));
1019 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
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001353static void init_zs_size_classes(void)
1354{
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
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001364static bool can_merge(struct size_class *prev, int size, int pages_per_zspage)
1365{
1366 if (prev->pages_per_zspage != pages_per_zspage)
1367 return false;
1368
1369 if (get_maxobj_per_zspage(prev->size, prev->pages_per_zspage)
1370 != get_maxobj_per_zspage(size, pages_per_zspage))
1371 return false;
1372
1373 return true;
1374}
1375
Minchan Kim37836892016-07-26 15:23:23 -07001376static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001377{
Minchan Kim37836892016-07-26 15:23:23 -07001378 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001379}
1380
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001381unsigned long zs_get_total_pages(struct zs_pool *pool)
1382{
1383 return atomic_long_read(&pool->pages_allocated);
1384}
1385EXPORT_SYMBOL_GPL(zs_get_total_pages);
1386
1387/**
1388 * zs_map_object - get address of allocated object from handle.
1389 * @pool: pool from which the object was allocated
1390 * @handle: handle returned from zs_malloc
1391 *
1392 * Before using an object allocated from zs_malloc, it must be mapped using
1393 * this function. When done with the object, it must be unmapped using
1394 * zs_unmap_object.
1395 *
1396 * Only one object can be mapped per cpu at a time. There is no protection
1397 * against nested mappings.
1398 *
1399 * This function returns with preemption and page faults disabled.
1400 */
1401void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1402 enum zs_mapmode mm)
1403{
Minchan Kim37836892016-07-26 15:23:23 -07001404 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001405 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001406 unsigned long obj, off;
1407 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001408
1409 unsigned int class_idx;
1410 enum fullness_group fg;
1411 struct size_class *class;
1412 struct mapping_area *area;
1413 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001414 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001415
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001416 /*
1417 * Because we use per-cpu mapping areas shared among the
1418 * pools/users, we can't allow mapping in interrupt context
1419 * because it can corrupt another users mappings.
1420 */
Minchan Kim830e4bc2016-05-20 16:59:39 -07001421 WARN_ON_ONCE(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001422
Minchan Kim312fcae2015-04-15 16:15:30 -07001423 /* From now on, migration cannot move the object */
1424 pin_tag(handle);
1425
Minchan Kim2e40e162015-04-15 16:15:23 -07001426 obj = handle_to_obj(handle);
1427 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001428 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001429
1430 /* migration cannot move any subpage in this zspage */
1431 migrate_read_lock(zspage);
1432
Minchan Kim37836892016-07-26 15:23:23 -07001433 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001434 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001435 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001436
1437 area = &get_cpu_var(zs_map_area);
1438 area->vm_mm = mm;
1439 if (off + class->size <= PAGE_SIZE) {
1440 /* this object is contained entirely within a page */
1441 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001442 ret = area->vm_addr + off;
1443 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001444 }
1445
1446 /* this object spans two pages */
1447 pages[0] = page;
1448 pages[1] = get_next_page(page);
1449 BUG_ON(!pages[1]);
1450
Minchan Kim2e40e162015-04-15 16:15:23 -07001451 ret = __zs_map_object(area, pages, off, class->size);
1452out:
Minchan Kim48b48002016-07-26 15:23:31 -07001453 if (likely(!PageHugeObject(page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001454 ret += ZS_HANDLE_SIZE;
1455
1456 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001457}
1458EXPORT_SYMBOL_GPL(zs_map_object);
1459
1460void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1461{
Minchan Kim37836892016-07-26 15:23:23 -07001462 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001463 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001464 unsigned long obj, off;
1465 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001466
1467 unsigned int class_idx;
1468 enum fullness_group fg;
1469 struct size_class *class;
1470 struct mapping_area *area;
1471
Minchan Kim2e40e162015-04-15 16:15:23 -07001472 obj = handle_to_obj(handle);
1473 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001474 zspage = get_zspage(page);
1475 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001476 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001477 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001478
1479 area = this_cpu_ptr(&zs_map_area);
1480 if (off + class->size <= PAGE_SIZE)
1481 kunmap_atomic(area->vm_addr);
1482 else {
1483 struct page *pages[2];
1484
1485 pages[0] = page;
1486 pages[1] = get_next_page(page);
1487 BUG_ON(!pages[1]);
1488
1489 __zs_unmap_object(area, pages, off, class->size);
1490 }
1491 put_cpu_var(zs_map_area);
Minchan Kim48b48002016-07-26 15:23:31 -07001492
1493 migrate_read_unlock(zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07001494 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001495}
1496EXPORT_SYMBOL_GPL(zs_unmap_object);
1497
Minchan Kim251cbb92016-05-20 16:59:42 -07001498static unsigned long obj_malloc(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001499 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001500{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001501 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001502 unsigned long obj;
1503 struct link_free *link;
1504
1505 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001506 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001507 void *vaddr;
1508
Minchan Kim312fcae2015-04-15 16:15:30 -07001509 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001510 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001511
1512 offset = obj * class->size;
1513 nr_page = offset >> PAGE_SHIFT;
1514 m_offset = offset & ~PAGE_MASK;
1515 m_page = get_first_page(zspage);
1516
1517 for (i = 0; i < nr_page; i++)
1518 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001519
1520 vaddr = kmap_atomic(m_page);
1521 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001522 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001523 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001524 /* record handle in the header of allocated chunk */
1525 link->handle = handle;
1526 else
Minchan Kim37836892016-07-26 15:23:23 -07001527 /* record handle to page->index */
1528 zspage->first_page->index = handle;
1529
Minchan Kimc7806262015-04-15 16:15:26 -07001530 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001531 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001532 zs_stat_inc(class, OBJ_USED, 1);
1533
Minchan Kimbfd093f2016-07-26 15:23:28 -07001534 obj = location_to_obj(m_page, obj);
1535
Minchan Kimc7806262015-04-15 16:15:26 -07001536 return obj;
1537}
1538
1539
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001540/**
1541 * zs_malloc - Allocate block of given size from pool.
1542 * @pool: pool to allocate from
1543 * @size: size of block to allocate
1544 *
1545 * On success, handle to the allocated object is returned,
1546 * otherwise 0.
1547 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1548 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001549unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001550{
Minchan Kim2e40e162015-04-15 16:15:23 -07001551 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001552 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001553 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001554 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001555
Minchan Kim7b60a682015-04-15 16:15:39 -07001556 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001557 return 0;
1558
Minchan Kim37836892016-07-26 15:23:23 -07001559 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001560 if (!handle)
1561 return 0;
1562
1563 /* extra space in chunk to keep the handle */
1564 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001565 class = pool->size_class[get_size_class_index(size)];
1566
1567 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001568 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001569 if (likely(zspage)) {
1570 obj = obj_malloc(class, zspage, handle);
1571 /* Now move the zspage to another fullness group, if required */
1572 fix_fullness_group(class, zspage);
1573 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001574 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001575
Minchan Kim48b48002016-07-26 15:23:31 -07001576 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001577 }
1578
Minchan Kim48b48002016-07-26 15:23:31 -07001579 spin_unlock(&class->lock);
1580
1581 zspage = alloc_zspage(pool, class, gfp);
1582 if (!zspage) {
1583 cache_free_handle(pool, handle);
1584 return 0;
1585 }
1586
1587 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001588 obj = obj_malloc(class, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001589 newfg = get_fullness_group(class, zspage);
1590 insert_zspage(class, zspage, newfg);
1591 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001592 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001593 atomic_long_add(class->pages_per_zspage,
1594 &pool->pages_allocated);
1595 zs_stat_inc(class, OBJ_ALLOCATED, get_maxobj_per_zspage(
1596 class->size, class->pages_per_zspage));
1597
1598 /* We completely set up zspage so mark them as movable */
1599 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001600 spin_unlock(&class->lock);
1601
Minchan Kim2e40e162015-04-15 16:15:23 -07001602 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001603}
1604EXPORT_SYMBOL_GPL(zs_malloc);
1605
Minchan Kim1ee47162016-05-20 16:59:45 -07001606static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001607{
1608 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001609 struct zspage *zspage;
1610 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001611 unsigned long f_offset;
1612 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001613 void *vaddr;
1614
Minchan Kim312fcae2015-04-15 16:15:30 -07001615 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001616 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001617 f_offset = (class->size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001618 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001619
Minchan Kimc7806262015-04-15 16:15:26 -07001620 vaddr = kmap_atomic(f_page);
1621
1622 /* Insert this object in containing zspage's freelist */
1623 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001624 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001625 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001626 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001627 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001628 zs_stat_dec(class, OBJ_USED, 1);
1629}
1630
1631void zs_free(struct zs_pool *pool, unsigned long handle)
1632{
Minchan Kim37836892016-07-26 15:23:23 -07001633 struct zspage *zspage;
1634 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001635 unsigned long obj;
1636 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001637 int class_idx;
1638 struct size_class *class;
1639 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001640 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001641
Minchan Kim2e40e162015-04-15 16:15:23 -07001642 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001643 return;
1644
Minchan Kim312fcae2015-04-15 16:15:30 -07001645 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001646 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001647 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001648 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001649
Minchan Kim48b48002016-07-26 15:23:31 -07001650 migrate_read_lock(zspage);
1651
Minchan Kim37836892016-07-26 15:23:23 -07001652 get_zspage_mapping(zspage, &class_idx, &fullness);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001653 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001654
1655 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001656 obj_free(class, obj);
Minchan Kim37836892016-07-26 15:23:23 -07001657 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001658 if (fullness != ZS_EMPTY) {
1659 migrate_read_unlock(zspage);
1660 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001661 }
Minchan Kim48b48002016-07-26 15:23:31 -07001662
1663 isolated = is_zspage_isolated(zspage);
1664 migrate_read_unlock(zspage);
1665 /* If zspage is isolated, zs_page_putback will free the zspage */
1666 if (likely(!isolated))
1667 free_zspage(pool, class, zspage);
1668out:
1669
Minchan Kim312fcae2015-04-15 16:15:30 -07001670 spin_unlock(&class->lock);
1671 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001672 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001673}
1674EXPORT_SYMBOL_GPL(zs_free);
1675
Minchan Kim251cbb92016-05-20 16:59:42 -07001676static void zs_object_copy(struct size_class *class, unsigned long dst,
1677 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001678{
1679 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001680 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001681 unsigned long s_off, d_off;
1682 void *s_addr, *d_addr;
1683 int s_size, d_size, size;
1684 int written = 0;
1685
1686 s_size = d_size = class->size;
1687
1688 obj_to_location(src, &s_page, &s_objidx);
1689 obj_to_location(dst, &d_page, &d_objidx);
1690
Minchan Kimbfd093f2016-07-26 15:23:28 -07001691 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1692 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001693
1694 if (s_off + class->size > PAGE_SIZE)
1695 s_size = PAGE_SIZE - s_off;
1696
1697 if (d_off + class->size > PAGE_SIZE)
1698 d_size = PAGE_SIZE - d_off;
1699
1700 s_addr = kmap_atomic(s_page);
1701 d_addr = kmap_atomic(d_page);
1702
1703 while (1) {
1704 size = min(s_size, d_size);
1705 memcpy(d_addr + d_off, s_addr + s_off, size);
1706 written += size;
1707
1708 if (written == class->size)
1709 break;
1710
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001711 s_off += size;
1712 s_size -= size;
1713 d_off += size;
1714 d_size -= size;
1715
1716 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001717 kunmap_atomic(d_addr);
1718 kunmap_atomic(s_addr);
1719 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001720 s_addr = kmap_atomic(s_page);
1721 d_addr = kmap_atomic(d_page);
1722 s_size = class->size - written;
1723 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001724 }
1725
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001726 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001727 kunmap_atomic(d_addr);
1728 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001729 d_addr = kmap_atomic(d_page);
1730 d_size = class->size - written;
1731 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001732 }
1733 }
1734
1735 kunmap_atomic(d_addr);
1736 kunmap_atomic(s_addr);
1737}
1738
1739/*
1740 * Find alloced object in zspage from index object and
1741 * return handle.
1742 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001743static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001744 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001745{
1746 unsigned long head;
1747 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001748 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001749 unsigned long handle = 0;
1750 void *addr = kmap_atomic(page);
1751
Minchan Kim37836892016-07-26 15:23:23 -07001752 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001753 offset += class->size * index;
1754
1755 while (offset < PAGE_SIZE) {
Minchan Kim48b48002016-07-26 15:23:31 -07001756 head = obj_to_head(page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001757 if (head & OBJ_ALLOCATED_TAG) {
1758 handle = head & ~OBJ_ALLOCATED_TAG;
1759 if (trypin_tag(handle))
1760 break;
1761 handle = 0;
1762 }
1763
1764 offset += class->size;
1765 index++;
1766 }
1767
1768 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001769
1770 *obj_idx = index;
1771
Minchan Kim312fcae2015-04-15 16:15:30 -07001772 return handle;
1773}
1774
1775struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001776 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001777 struct page *s_page;
1778 /* Destination page for migration which should be a first page
1779 * of zspage. */
1780 struct page *d_page;
1781 /* Starting object index within @s_page which used for live object
1782 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001783 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001784};
1785
1786static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1787 struct zs_compact_control *cc)
1788{
1789 unsigned long used_obj, free_obj;
1790 unsigned long handle;
1791 struct page *s_page = cc->s_page;
1792 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001793 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001794 int ret = 0;
1795
1796 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001797 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001798 if (!handle) {
1799 s_page = get_next_page(s_page);
1800 if (!s_page)
1801 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001802 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001803 continue;
1804 }
1805
1806 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001807 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001808 unpin_tag(handle);
1809 ret = -ENOMEM;
1810 break;
1811 }
1812
1813 used_obj = handle_to_obj(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001814 free_obj = obj_malloc(class, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001815 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001816 obj_idx++;
Junil Leec102f072016-01-20 14:58:18 -08001817 /*
1818 * record_obj updates handle's value to free_obj and it will
1819 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1820 * breaks synchronization using pin_tag(e,g, zs_free) so
1821 * let's keep the lock bit.
1822 */
1823 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001824 record_obj(handle, free_obj);
1825 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001826 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001827 }
1828
1829 /* Remember last position in this iteration */
1830 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001831 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001832
1833 return ret;
1834}
1835
Minchan Kim37836892016-07-26 15:23:23 -07001836static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001837{
1838 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001839 struct zspage *zspage;
1840 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001841
Minchan Kim37836892016-07-26 15:23:23 -07001842 if (!source) {
1843 fg[0] = ZS_ALMOST_FULL;
1844 fg[1] = ZS_ALMOST_EMPTY;
1845 }
1846
1847 for (i = 0; i < 2; i++) {
1848 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1849 struct zspage, list);
1850 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001851 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001852 remove_zspage(class, zspage, fg[i]);
1853 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001854 }
1855 }
1856
Minchan Kim37836892016-07-26 15:23:23 -07001857 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001858}
1859
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001860/*
Minchan Kim37836892016-07-26 15:23:23 -07001861 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001862 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001863 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001864 *
Minchan Kim37836892016-07-26 15:23:23 -07001865 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001866 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001867static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001868 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001869{
Minchan Kim312fcae2015-04-15 16:15:30 -07001870 enum fullness_group fullness;
1871
Minchan Kim48b48002016-07-26 15:23:31 -07001872 VM_BUG_ON(is_zspage_isolated(zspage));
1873
Minchan Kim37836892016-07-26 15:23:23 -07001874 fullness = get_fullness_group(class, zspage);
1875 insert_zspage(class, zspage, fullness);
1876 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001877
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001878 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001879}
1880
Minchan Kim48b48002016-07-26 15:23:31 -07001881#ifdef CONFIG_COMPACTION
1882static struct dentry *zs_mount(struct file_system_type *fs_type,
1883 int flags, const char *dev_name, void *data)
1884{
1885 static const struct dentry_operations ops = {
1886 .d_dname = simple_dname,
1887 };
1888
1889 return mount_pseudo(fs_type, "zsmalloc:", NULL, &ops, ZSMALLOC_MAGIC);
1890}
1891
1892static struct file_system_type zsmalloc_fs = {
1893 .name = "zsmalloc",
1894 .mount = zs_mount,
1895 .kill_sb = kill_anon_super,
1896};
1897
1898static int zsmalloc_mount(void)
1899{
1900 int ret = 0;
1901
1902 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1903 if (IS_ERR(zsmalloc_mnt))
1904 ret = PTR_ERR(zsmalloc_mnt);
1905
1906 return ret;
1907}
1908
1909static void zsmalloc_unmount(void)
1910{
1911 kern_unmount(zsmalloc_mnt);
1912}
1913
1914static void migrate_lock_init(struct zspage *zspage)
1915{
1916 rwlock_init(&zspage->lock);
1917}
1918
1919static void migrate_read_lock(struct zspage *zspage)
1920{
1921 read_lock(&zspage->lock);
1922}
1923
1924static void migrate_read_unlock(struct zspage *zspage)
1925{
1926 read_unlock(&zspage->lock);
1927}
1928
1929static void migrate_write_lock(struct zspage *zspage)
1930{
1931 write_lock(&zspage->lock);
1932}
1933
1934static void migrate_write_unlock(struct zspage *zspage)
1935{
1936 write_unlock(&zspage->lock);
1937}
1938
1939/* Number of isolated subpage for *page migration* in this zspage */
1940static void inc_zspage_isolation(struct zspage *zspage)
1941{
1942 zspage->isolated++;
1943}
1944
1945static void dec_zspage_isolation(struct zspage *zspage)
1946{
1947 zspage->isolated--;
1948}
1949
1950static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1951 struct page *newpage, struct page *oldpage)
1952{
1953 struct page *page;
1954 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1955 int idx = 0;
1956
1957 page = get_first_page(zspage);
1958 do {
1959 if (page == oldpage)
1960 pages[idx] = newpage;
1961 else
1962 pages[idx] = page;
1963 idx++;
1964 } while ((page = get_next_page(page)) != NULL);
1965
1966 create_page_chain(class, zspage, pages);
1967 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
1968 if (unlikely(PageHugeObject(oldpage)))
1969 newpage->index = oldpage->index;
1970 __SetPageMovable(newpage, page_mapping(oldpage));
1971}
1972
1973bool zs_page_isolate(struct page *page, isolate_mode_t mode)
1974{
1975 struct zs_pool *pool;
1976 struct size_class *class;
1977 int class_idx;
1978 enum fullness_group fullness;
1979 struct zspage *zspage;
1980 struct address_space *mapping;
1981
1982 /*
1983 * Page is locked so zspage couldn't be destroyed. For detail, look at
1984 * lock_zspage in free_zspage.
1985 */
1986 VM_BUG_ON_PAGE(!PageMovable(page), page);
1987 VM_BUG_ON_PAGE(PageIsolated(page), page);
1988
1989 zspage = get_zspage(page);
1990
1991 /*
1992 * Without class lock, fullness could be stale while class_idx is okay
1993 * because class_idx is constant unless page is freed so we should get
1994 * fullness again under class lock.
1995 */
1996 get_zspage_mapping(zspage, &class_idx, &fullness);
1997 mapping = page_mapping(page);
1998 pool = mapping->private_data;
1999 class = pool->size_class[class_idx];
2000
2001 spin_lock(&class->lock);
2002 if (get_zspage_inuse(zspage) == 0) {
2003 spin_unlock(&class->lock);
2004 return false;
2005 }
2006
2007 /* zspage is isolated for object migration */
2008 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2009 spin_unlock(&class->lock);
2010 return false;
2011 }
2012
2013 /*
2014 * If this is first time isolation for the zspage, isolate zspage from
2015 * size_class to prevent further object allocation from the zspage.
2016 */
2017 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2018 get_zspage_mapping(zspage, &class_idx, &fullness);
2019 remove_zspage(class, zspage, fullness);
2020 }
2021
2022 inc_zspage_isolation(zspage);
2023 spin_unlock(&class->lock);
2024
2025 return true;
2026}
2027
2028int zs_page_migrate(struct address_space *mapping, struct page *newpage,
2029 struct page *page, enum migrate_mode mode)
2030{
2031 struct zs_pool *pool;
2032 struct size_class *class;
2033 int class_idx;
2034 enum fullness_group fullness;
2035 struct zspage *zspage;
2036 struct page *dummy;
2037 void *s_addr, *d_addr, *addr;
2038 int offset, pos;
2039 unsigned long handle, head;
2040 unsigned long old_obj, new_obj;
2041 unsigned int obj_idx;
2042 int ret = -EAGAIN;
2043
2044 VM_BUG_ON_PAGE(!PageMovable(page), page);
2045 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2046
2047 zspage = get_zspage(page);
2048
2049 /* Concurrent compactor cannot migrate any subpage in zspage */
2050 migrate_write_lock(zspage);
2051 get_zspage_mapping(zspage, &class_idx, &fullness);
2052 pool = mapping->private_data;
2053 class = pool->size_class[class_idx];
2054 offset = get_first_obj_offset(page);
2055
2056 spin_lock(&class->lock);
2057 if (!get_zspage_inuse(zspage)) {
2058 ret = -EBUSY;
2059 goto unlock_class;
2060 }
2061
2062 pos = offset;
2063 s_addr = kmap_atomic(page);
2064 while (pos < PAGE_SIZE) {
2065 head = obj_to_head(page, s_addr + pos);
2066 if (head & OBJ_ALLOCATED_TAG) {
2067 handle = head & ~OBJ_ALLOCATED_TAG;
2068 if (!trypin_tag(handle))
2069 goto unpin_objects;
2070 }
2071 pos += class->size;
2072 }
2073
2074 /*
2075 * Here, any user cannot access all objects in the zspage so let's move.
2076 */
2077 d_addr = kmap_atomic(newpage);
2078 memcpy(d_addr, s_addr, PAGE_SIZE);
2079 kunmap_atomic(d_addr);
2080
2081 for (addr = s_addr + offset; addr < s_addr + pos;
2082 addr += class->size) {
2083 head = obj_to_head(page, addr);
2084 if (head & OBJ_ALLOCATED_TAG) {
2085 handle = head & ~OBJ_ALLOCATED_TAG;
2086 if (!testpin_tag(handle))
2087 BUG();
2088
2089 old_obj = handle_to_obj(handle);
2090 obj_to_location(old_obj, &dummy, &obj_idx);
2091 new_obj = (unsigned long)location_to_obj(newpage,
2092 obj_idx);
2093 new_obj |= BIT(HANDLE_PIN_BIT);
2094 record_obj(handle, new_obj);
2095 }
2096 }
2097
2098 replace_sub_page(class, zspage, newpage, page);
2099 get_page(newpage);
2100
2101 dec_zspage_isolation(zspage);
2102
2103 /*
2104 * Page migration is done so let's putback isolated zspage to
2105 * the list if @page is final isolated subpage in the zspage.
2106 */
2107 if (!is_zspage_isolated(zspage))
2108 putback_zspage(class, zspage);
2109
2110 reset_page(page);
2111 put_page(page);
2112 page = newpage;
2113
Minchan Kimdd4123f2016-07-26 15:26:50 -07002114 ret = MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07002115unpin_objects:
2116 for (addr = s_addr + offset; addr < s_addr + pos;
2117 addr += class->size) {
2118 head = obj_to_head(page, addr);
2119 if (head & OBJ_ALLOCATED_TAG) {
2120 handle = head & ~OBJ_ALLOCATED_TAG;
2121 if (!testpin_tag(handle))
2122 BUG();
2123 unpin_tag(handle);
2124 }
2125 }
2126 kunmap_atomic(s_addr);
2127unlock_class:
2128 spin_unlock(&class->lock);
2129 migrate_write_unlock(zspage);
2130
2131 return ret;
2132}
2133
2134void zs_page_putback(struct page *page)
2135{
2136 struct zs_pool *pool;
2137 struct size_class *class;
2138 int class_idx;
2139 enum fullness_group fg;
2140 struct address_space *mapping;
2141 struct zspage *zspage;
2142
2143 VM_BUG_ON_PAGE(!PageMovable(page), page);
2144 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2145
2146 zspage = get_zspage(page);
2147 get_zspage_mapping(zspage, &class_idx, &fg);
2148 mapping = page_mapping(page);
2149 pool = mapping->private_data;
2150 class = pool->size_class[class_idx];
2151
2152 spin_lock(&class->lock);
2153 dec_zspage_isolation(zspage);
2154 if (!is_zspage_isolated(zspage)) {
2155 fg = putback_zspage(class, zspage);
2156 /*
2157 * Due to page_lock, we cannot free zspage immediately
2158 * so let's defer.
2159 */
2160 if (fg == ZS_EMPTY)
2161 schedule_work(&pool->free_work);
2162 }
2163 spin_unlock(&class->lock);
2164}
2165
2166const struct address_space_operations zsmalloc_aops = {
2167 .isolate_page = zs_page_isolate,
2168 .migratepage = zs_page_migrate,
2169 .putback_page = zs_page_putback,
2170};
2171
2172static int zs_register_migration(struct zs_pool *pool)
2173{
2174 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2175 if (IS_ERR(pool->inode)) {
2176 pool->inode = NULL;
2177 return 1;
2178 }
2179
2180 pool->inode->i_mapping->private_data = pool;
2181 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2182 return 0;
2183}
2184
2185static void zs_unregister_migration(struct zs_pool *pool)
2186{
2187 flush_work(&pool->free_work);
2188 if (pool->inode)
2189 iput(pool->inode);
2190}
2191
2192/*
2193 * Caller should hold page_lock of all pages in the zspage
2194 * In here, we cannot use zspage meta data.
2195 */
2196static void async_free_zspage(struct work_struct *work)
2197{
2198 int i;
2199 struct size_class *class;
2200 unsigned int class_idx;
2201 enum fullness_group fullness;
2202 struct zspage *zspage, *tmp;
2203 LIST_HEAD(free_pages);
2204 struct zs_pool *pool = container_of(work, struct zs_pool,
2205 free_work);
2206
2207 for (i = 0; i < zs_size_classes; i++) {
2208 class = pool->size_class[i];
2209 if (class->index != i)
2210 continue;
2211
2212 spin_lock(&class->lock);
2213 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2214 spin_unlock(&class->lock);
2215 }
2216
2217
2218 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2219 list_del(&zspage->list);
2220 lock_zspage(zspage);
2221
2222 get_zspage_mapping(zspage, &class_idx, &fullness);
2223 VM_BUG_ON(fullness != ZS_EMPTY);
2224 class = pool->size_class[class_idx];
2225 spin_lock(&class->lock);
2226 __free_zspage(pool, pool->size_class[class_idx], zspage);
2227 spin_unlock(&class->lock);
2228 }
2229};
2230
2231static void kick_deferred_free(struct zs_pool *pool)
2232{
2233 schedule_work(&pool->free_work);
2234}
2235
2236static void init_deferred_free(struct zs_pool *pool)
2237{
2238 INIT_WORK(&pool->free_work, async_free_zspage);
2239}
2240
2241static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2242{
2243 struct page *page = get_first_page(zspage);
2244
2245 do {
2246 WARN_ON(!trylock_page(page));
2247 __SetPageMovable(page, pool->inode->i_mapping);
2248 unlock_page(page);
2249 } while ((page = get_next_page(page)) != NULL);
2250}
2251#endif
2252
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002253/*
2254 *
2255 * Based on the number of unused allocated objects calculate
2256 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002257 */
2258static unsigned long zs_can_compact(struct size_class *class)
2259{
2260 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002261 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2262 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002263
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002264 if (obj_allocated <= obj_used)
2265 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002266
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002267 obj_wasted = obj_allocated - obj_used;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002268 obj_wasted /= get_maxobj_per_zspage(class->size,
2269 class->pages_per_zspage);
2270
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002271 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002272}
2273
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002274static void __zs_compact(struct zs_pool *pool, struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002275{
Minchan Kim312fcae2015-04-15 16:15:30 -07002276 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002277 struct zspage *src_zspage;
2278 struct zspage *dst_zspage = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07002279
Minchan Kim312fcae2015-04-15 16:15:30 -07002280 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002281 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002282
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002283 if (!zs_can_compact(class))
2284 break;
2285
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002286 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002287 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002288
Minchan Kim37836892016-07-26 15:23:23 -07002289 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002290 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002291 /*
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07002292 * If there is no more space in dst_page, resched
2293 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002294 */
2295 if (!migrate_zspage(pool, class, &cc))
2296 break;
2297
Minchan Kim4aa409c2016-07-26 15:23:26 -07002298 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002299 }
2300
2301 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002302 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002303 break;
2304
Minchan Kim4aa409c2016-07-26 15:23:26 -07002305 putback_zspage(class, dst_zspage);
2306 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002307 free_zspage(pool, class, src_zspage);
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002308 pool->stats.pages_compacted += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002309 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002310 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002311 cond_resched();
2312 spin_lock(&class->lock);
2313 }
2314
Minchan Kim37836892016-07-26 15:23:23 -07002315 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002316 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002317
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002318 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002319}
2320
2321unsigned long zs_compact(struct zs_pool *pool)
2322{
2323 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002324 struct size_class *class;
2325
2326 for (i = zs_size_classes - 1; i >= 0; i--) {
2327 class = pool->size_class[i];
2328 if (!class)
2329 continue;
2330 if (class->index != i)
2331 continue;
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002332 __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002333 }
2334
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07002335 return pool->stats.pages_compacted;
Minchan Kim312fcae2015-04-15 16:15:30 -07002336}
2337EXPORT_SYMBOL_GPL(zs_compact);
2338
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002339void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2340{
2341 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2342}
2343EXPORT_SYMBOL_GPL(zs_pool_stats);
2344
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002345static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2346 struct shrink_control *sc)
2347{
2348 unsigned long pages_freed;
2349 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2350 shrinker);
2351
2352 pages_freed = pool->stats.pages_compacted;
2353 /*
2354 * Compact classes and calculate compaction delta.
2355 * Can run concurrently with a manually triggered
2356 * (by user) compaction.
2357 */
2358 pages_freed = zs_compact(pool) - pages_freed;
2359
2360 return pages_freed ? pages_freed : SHRINK_STOP;
2361}
2362
2363static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2364 struct shrink_control *sc)
2365{
2366 int i;
2367 struct size_class *class;
2368 unsigned long pages_to_free = 0;
2369 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2370 shrinker);
2371
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002372 for (i = zs_size_classes - 1; i >= 0; i--) {
2373 class = pool->size_class[i];
2374 if (!class)
2375 continue;
2376 if (class->index != i)
2377 continue;
2378
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002379 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002380 }
2381
2382 return pages_to_free;
2383}
2384
2385static void zs_unregister_shrinker(struct zs_pool *pool)
2386{
2387 if (pool->shrinker_enabled) {
2388 unregister_shrinker(&pool->shrinker);
2389 pool->shrinker_enabled = false;
2390 }
2391}
2392
2393static int zs_register_shrinker(struct zs_pool *pool)
2394{
2395 pool->shrinker.scan_objects = zs_shrinker_scan;
2396 pool->shrinker.count_objects = zs_shrinker_count;
2397 pool->shrinker.batch = 0;
2398 pool->shrinker.seeks = DEFAULT_SEEKS;
2399
2400 return register_shrinker(&pool->shrinker);
2401}
2402
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002403/**
2404 * zs_create_pool - Creates an allocation pool to work from.
Seth Jennings0d145a52013-01-30 09:36:52 -06002405 * @flags: allocation flags used to allocate pool metadata
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002406 *
2407 * This function must be called before anything when using
2408 * the zsmalloc allocator.
2409 *
2410 * On success, a pointer to the newly created pool is returned,
2411 * otherwise NULL.
2412 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002413struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002414{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002415 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002416 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002417 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002418
Ganesh Mahendran18136652014-12-12 16:57:10 -08002419 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002420 if (!pool)
2421 return NULL;
2422
Minchan Kim48b48002016-07-26 15:23:31 -07002423 init_deferred_free(pool);
Minchan Kim2e40e162015-04-15 16:15:23 -07002424 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
2425 GFP_KERNEL);
2426 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002427 kfree(pool);
2428 return NULL;
2429 }
2430
Minchan Kim2e40e162015-04-15 16:15:23 -07002431 pool->name = kstrdup(name, GFP_KERNEL);
2432 if (!pool->name)
2433 goto err;
2434
Minchan Kim37836892016-07-26 15:23:23 -07002435 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002436 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002437
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002438 /*
2439 * Iterate reversly, because, size of size_class that we want to use
2440 * for merging should be larger or equal to current size.
2441 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002442 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002443 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002444 int pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002445 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002446 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002447
2448 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2449 if (size > ZS_MAX_ALLOC_SIZE)
2450 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002451 pages_per_zspage = get_pages_per_zspage(size);
Nitin Gupta61989a82012-01-09 16:51:56 -06002452
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002453 /*
2454 * size_class is used for normal zsmalloc operation such
2455 * as alloc/free for that size. Although it is natural that we
2456 * have one size_class for each size, there is a chance that we
2457 * can get more memory utilization if we use one size_class for
2458 * many different sizes whose size_class have same
2459 * characteristics. So, we makes size_class point to
2460 * previous size_class if possible.
2461 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002462 if (prev_class) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002463 if (can_merge(prev_class, size, pages_per_zspage)) {
2464 pool->size_class[i] = prev_class;
2465 continue;
2466 }
2467 }
2468
2469 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2470 if (!class)
2471 goto err;
2472
Nitin Gupta61989a82012-01-09 16:51:56 -06002473 class->size = size;
2474 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002475 class->pages_per_zspage = pages_per_zspage;
Minchan Kim1fc6e272016-07-26 15:23:11 -07002476 class->objs_per_zspage = class->pages_per_zspage *
2477 PAGE_SIZE / class->size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002478 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002479 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002480 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2481 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002482 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002483
2484 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002485 }
2486
Dan Streetmand34f6152016-05-20 16:59:56 -07002487 /* debug only, don't abort if it fails */
2488 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002489
Minchan Kim48b48002016-07-26 15:23:31 -07002490 if (zs_register_migration(pool))
2491 goto err;
2492
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002493 /*
2494 * Not critical, we still can use the pool
2495 * and user can trigger compaction manually.
2496 */
2497 if (zs_register_shrinker(pool) == 0)
2498 pool->shrinker_enabled = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06002499 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002500
2501err:
2502 zs_destroy_pool(pool);
2503 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002504}
2505EXPORT_SYMBOL_GPL(zs_create_pool);
2506
2507void zs_destroy_pool(struct zs_pool *pool)
2508{
2509 int i;
2510
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002511 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002512 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002513 zs_pool_stat_destroy(pool);
2514
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002515 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002516 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002517 struct size_class *class = pool->size_class[i];
2518
2519 if (!class)
2520 continue;
2521
2522 if (class->index != i)
2523 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002524
Minchan Kim48b48002016-07-26 15:23:31 -07002525 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002526 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002527 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002528 class->size, fg);
2529 }
2530 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002531 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002532 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002533
Minchan Kim37836892016-07-26 15:23:23 -07002534 destroy_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002535 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002536 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002537 kfree(pool);
2538}
2539EXPORT_SYMBOL_GPL(zs_destroy_pool);
2540
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002541static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002542{
Minchan Kim48b48002016-07-26 15:23:31 -07002543 int ret;
2544
2545 ret = zsmalloc_mount();
2546 if (ret)
2547 goto out;
2548
2549 ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06002550
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002551 if (ret)
2552 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002553
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002554 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06002555
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002556#ifdef CONFIG_ZPOOL
2557 zpool_register_driver(&zs_zpool_driver);
2558#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002559
Dan Streetman4abaac92016-05-26 15:16:27 -07002560 zs_stat_init();
2561
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002562 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002563
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002564notifier_fail:
2565 zs_unregister_cpu_notifier();
Minchan Kim48b48002016-07-26 15:23:31 -07002566 zsmalloc_unmount();
2567out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002568 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002569}
Nitin Gupta61989a82012-01-09 16:51:56 -06002570
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002571static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002572{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002573#ifdef CONFIG_ZPOOL
2574 zpool_unregister_driver(&zs_zpool_driver);
2575#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002576 zsmalloc_unmount();
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002577 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002578
2579 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002580}
Ben Hutchings069f1012012-06-20 02:31:11 +01002581
2582module_init(zs_init);
2583module_exit(zs_exit);
2584
2585MODULE_LICENSE("Dual BSD/GPL");
2586MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");