blob: 72e0b296984b0ba61aac6e5d5d2e46db8b7754af [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
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700638 objs_per_zspage = class->objs_per_zspage;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700639 pages_used = obj_allocated / objs_per_zspage *
640 class->pages_per_zspage;
641
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700642 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
643 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700644 i, class->size, class_almost_full, class_almost_empty,
645 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700646 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700647
648 total_class_almost_full += class_almost_full;
649 total_class_almost_empty += class_almost_empty;
650 total_objs += obj_allocated;
651 total_used_objs += obj_used;
652 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700653 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700654 }
655
656 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700657 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700658 "Total", "", total_class_almost_full,
659 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700660 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700661
662 return 0;
663}
664
665static int zs_stats_size_open(struct inode *inode, struct file *file)
666{
667 return single_open(file, zs_stats_size_show, inode->i_private);
668}
669
670static const struct file_operations zs_stat_size_ops = {
671 .open = zs_stats_size_open,
672 .read = seq_read,
673 .llseek = seq_lseek,
674 .release = single_release,
675};
676
Dan Streetmand34f6152016-05-20 16:59:56 -0700677static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700678{
679 struct dentry *entry;
680
Dan Streetman4abaac92016-05-26 15:16:27 -0700681 if (!zs_stat_root) {
682 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700683 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700684 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700685
686 entry = debugfs_create_dir(name, zs_stat_root);
687 if (!entry) {
688 pr_warn("debugfs dir <%s> creation failed\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700689 return;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700690 }
691 pool->stat_dentry = entry;
692
693 entry = debugfs_create_file("classes", S_IFREG | S_IRUGO,
694 pool->stat_dentry, pool, &zs_stat_size_ops);
695 if (!entry) {
696 pr_warn("%s: debugfs file entry <%s> creation failed\n",
697 name, "classes");
Dan Streetman4abaac92016-05-26 15:16:27 -0700698 debugfs_remove_recursive(pool->stat_dentry);
699 pool->stat_dentry = NULL;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700700 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700701}
702
703static void zs_pool_stat_destroy(struct zs_pool *pool)
704{
705 debugfs_remove_recursive(pool->stat_dentry);
706}
707
708#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700709static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700710{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700711}
712
713static void __exit zs_stat_exit(void)
714{
715}
716
Dan Streetmand34f6152016-05-20 16:59:56 -0700717static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700718{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700719}
720
721static inline void zs_pool_stat_destroy(struct zs_pool *pool)
722{
723}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700724#endif
725
Minchan Kim48b48002016-07-26 15:23:31 -0700726
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900727/*
728 * For each size class, zspages are divided into different groups
729 * depending on how "full" they are. This was done so that we could
730 * easily find empty or nearly empty zspages when we try to shrink
731 * the pool (not yet implemented). This function returns fullness
732 * status of the given page.
733 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700734static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700735 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600736{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700737 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600738 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700739
Minchan Kim37836892016-07-26 15:23:23 -0700740 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700741 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600742
743 if (inuse == 0)
744 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700745 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600746 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700747 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600748 fg = ZS_ALMOST_EMPTY;
749 else
750 fg = ZS_ALMOST_FULL;
751
752 return fg;
753}
754
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900755/*
756 * Each size class maintains various freelists and zspages are assigned
757 * to one of these freelists based on the number of live objects they
758 * have. This functions inserts the given zspage into the freelist
759 * identified by <class, fullness_group>.
760 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700761static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700762 struct zspage *zspage,
763 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600764{
Minchan Kim37836892016-07-26 15:23:23 -0700765 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600766
Minchan Kim48b48002016-07-26 15:23:31 -0700767 zs_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700768 head = list_first_entry_or_null(&class->fullness_list[fullness],
769 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700770 /*
Minchan Kim37836892016-07-26 15:23:23 -0700771 * We want to see more ZS_FULL pages and less almost empty/full.
772 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700773 */
Minchan Kim37836892016-07-26 15:23:23 -0700774 if (head) {
775 if (get_zspage_inuse(zspage) < get_zspage_inuse(head)) {
776 list_add(&zspage->list, &head->list);
777 return;
778 }
779 }
780 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600781}
782
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900783/*
784 * This function removes the given zspage from the freelist identified
785 * by <class, fullness_group>.
786 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700787static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700788 struct zspage *zspage,
789 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600790{
Minchan Kim37836892016-07-26 15:23:23 -0700791 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Minchan Kim48b48002016-07-26 15:23:31 -0700792 VM_BUG_ON(is_zspage_isolated(zspage));
Nitin Gupta61989a82012-01-09 16:51:56 -0600793
Minchan Kim37836892016-07-26 15:23:23 -0700794 list_del_init(&zspage->list);
Minchan Kim48b48002016-07-26 15:23:31 -0700795 zs_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600796}
797
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900798/*
799 * Each size class maintains zspages in different fullness groups depending
800 * on the number of live objects they contain. When allocating or freeing
801 * objects, the fullness status of the page can change, say, from ALMOST_FULL
802 * to ALMOST_EMPTY when freeing an object. This function checks if such
803 * a status change has occurred for the given page and accordingly moves the
804 * page from the freelist of the old fullness group to that of the new
805 * fullness group.
806 */
Minchan Kimc7806262015-04-15 16:15:26 -0700807static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700808 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600809{
810 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600811 enum fullness_group currfg, newfg;
812
Minchan Kim37836892016-07-26 15:23:23 -0700813 get_zspage_mapping(zspage, &class_idx, &currfg);
814 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600815 if (newfg == currfg)
816 goto out;
817
Minchan Kim48b48002016-07-26 15:23:31 -0700818 if (!is_zspage_isolated(zspage)) {
819 remove_zspage(class, zspage, currfg);
820 insert_zspage(class, zspage, newfg);
821 }
822
Minchan Kim37836892016-07-26 15:23:23 -0700823 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600824
825out:
826 return newfg;
827}
828
829/*
830 * We have to decide on how many pages to link together
831 * to form a zspage for each size class. This is important
832 * to reduce wastage due to unusable space left at end of
833 * each zspage which is given as:
Yinghao Xie888fa372015-04-15 16:15:49 -0700834 * wastage = Zp % class_size
835 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600836 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
837 *
838 * For example, for size class of 3/8 * PAGE_SIZE, we should
839 * link together 3 PAGE_SIZE sized pages to form a zspage
840 * since then we can perfectly fit in 8 such objects.
841 */
Minchan Kim2e3b6152012-05-03 15:40:39 +0900842static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600843{
844 int i, max_usedpc = 0;
845 /* zspage order which gives maximum used size per KB */
846 int max_usedpc_order = 1;
847
Seth Jennings84d4faa2012-03-05 11:33:21 -0600848 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600849 int zspage_size;
850 int waste, usedpc;
851
852 zspage_size = i * PAGE_SIZE;
853 waste = zspage_size % class_size;
854 usedpc = (zspage_size - waste) * 100 / zspage_size;
855
856 if (usedpc > max_usedpc) {
857 max_usedpc = usedpc;
858 max_usedpc_order = i;
859 }
860 }
861
862 return max_usedpc_order;
863}
864
Minchan Kim37836892016-07-26 15:23:23 -0700865static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600866{
Minchan Kim48b48002016-07-26 15:23:31 -0700867 struct zspage *zspage = (struct zspage *)page->private;
868
869 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
870 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600871}
872
873static struct page *get_next_page(struct page *page)
874{
Minchan Kim48b48002016-07-26 15:23:31 -0700875 if (unlikely(PageHugeObject(page)))
876 return NULL;
877
878 return page->freelist;
Nitin Gupta61989a82012-01-09 16:51:56 -0600879}
880
Minchan Kimbfd093f2016-07-26 15:23:28 -0700881/**
882 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
883 * @page: page object resides in zspage
884 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800885 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700886static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700887 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600888{
Minchan Kim312fcae2015-04-15 16:15:30 -0700889 obj >>= OBJ_TAG_BITS;
890 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
891 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600892}
893
Minchan Kimbfd093f2016-07-26 15:23:28 -0700894/**
895 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
896 * @page: page object resides in zspage
897 * @obj_idx: object index
898 */
899static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
900{
901 unsigned long obj;
902
903 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
904 obj |= obj_idx & OBJ_INDEX_MASK;
905 obj <<= OBJ_TAG_BITS;
906
907 return obj;
908}
909
Minchan Kim2e40e162015-04-15 16:15:23 -0700910static unsigned long handle_to_obj(unsigned long handle)
911{
912 return *(unsigned long *)handle;
913}
914
Minchan Kim48b48002016-07-26 15:23:31 -0700915static unsigned long obj_to_head(struct page *page, void *obj)
Minchan Kim312fcae2015-04-15 16:15:30 -0700916{
Minchan Kim48b48002016-07-26 15:23:31 -0700917 if (unlikely(PageHugeObject(page))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700918 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim37836892016-07-26 15:23:23 -0700919 return page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700920 } else
921 return *(unsigned long *)obj;
Minchan Kim312fcae2015-04-15 16:15:30 -0700922}
923
Minchan Kim48b48002016-07-26 15:23:31 -0700924static inline int testpin_tag(unsigned long handle)
925{
926 return bit_spin_is_locked(HANDLE_PIN_BIT, (unsigned long *)handle);
927}
928
Minchan Kim312fcae2015-04-15 16:15:30 -0700929static inline int trypin_tag(unsigned long handle)
930{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700931 return bit_spin_trylock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700932}
933
934static void pin_tag(unsigned long handle)
935{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700936 bit_spin_lock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700937}
938
939static void unpin_tag(unsigned long handle)
940{
Minchan Kim1b8320b2016-07-26 15:23:14 -0700941 bit_spin_unlock(HANDLE_PIN_BIT, (unsigned long *)handle);
Minchan Kim312fcae2015-04-15 16:15:30 -0700942}
943
Nitin Guptaf4477e92012-04-02 09:13:56 -0500944static void reset_page(struct page *page)
945{
Minchan Kim48b48002016-07-26 15:23:31 -0700946 __ClearPageMovable(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500947 clear_bit(PG_private, &page->flags);
948 clear_bit(PG_private_2, &page->flags);
949 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700950 page_mapcount_reset(page);
951 ClearPageHugeObject(page);
952 page->freelist = NULL;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500953}
954
Minchan Kim48b48002016-07-26 15:23:31 -0700955/*
956 * To prevent zspage destroy during migration, zspage freeing should
957 * hold locks of all pages in the zspage.
958 */
959void lock_zspage(struct zspage *zspage)
960{
961 struct page *page = get_first_page(zspage);
962
963 do {
964 lock_page(page);
965 } while ((page = get_next_page(page)) != NULL);
966}
967
968int trylock_zspage(struct zspage *zspage)
969{
970 struct page *cursor, *fail;
971
972 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
973 get_next_page(cursor)) {
974 if (!trylock_page(cursor)) {
975 fail = cursor;
976 goto unlock;
977 }
978 }
979
980 return 1;
981unlock:
982 for (cursor = get_first_page(zspage); cursor != fail; cursor =
983 get_next_page(cursor))
984 unlock_page(cursor);
985
986 return 0;
987}
988
989static void __free_zspage(struct zs_pool *pool, struct size_class *class,
990 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600991{
Minchan Kim37836892016-07-26 15:23:23 -0700992 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700993 enum fullness_group fg;
994 unsigned int class_idx;
995
996 get_zspage_mapping(zspage, &class_idx, &fg);
997
998 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -0600999
Minchan Kim37836892016-07-26 15:23:23 -07001000 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -07001001 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -06001002
Minchan Kim48b48002016-07-26 15:23:31 -07001003 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -07001004 do {
Minchan Kim48b48002016-07-26 15:23:31 -07001005 VM_BUG_ON_PAGE(!PageLocked(page), page);
1006 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -07001007 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001008 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -07001009 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -07001010 put_page(page);
1011 page = next;
1012 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -06001013
Minchan Kim37836892016-07-26 15:23:23 -07001014 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001015
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001016 zs_stat_dec(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001017 atomic_long_sub(class->pages_per_zspage,
1018 &pool->pages_allocated);
1019}
1020
1021static void free_zspage(struct zs_pool *pool, struct size_class *class,
1022 struct zspage *zspage)
1023{
1024 VM_BUG_ON(get_zspage_inuse(zspage));
1025 VM_BUG_ON(list_empty(&zspage->list));
1026
1027 if (!trylock_zspage(zspage)) {
1028 kick_deferred_free(pool);
1029 return;
1030 }
1031
1032 remove_zspage(class, zspage, ZS_EMPTY);
1033 __free_zspage(pool, class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001034}
1035
1036/* Initialize a newly allocated zspage */
Minchan Kim37836892016-07-26 15:23:23 -07001037static void init_zspage(struct size_class *class, struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001038{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001039 unsigned int freeobj = 1;
Nitin Gupta61989a82012-01-09 16:51:56 -06001040 unsigned long off = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07001041 struct page *page = get_first_page(zspage);
Minchan Kim830e4bc2016-05-20 16:59:39 -07001042
Nitin Gupta61989a82012-01-09 16:51:56 -06001043 while (page) {
1044 struct page *next_page;
1045 struct link_free *link;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001046 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -06001047
Minchan Kim37836892016-07-26 15:23:23 -07001048 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -06001049
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001050 vaddr = kmap_atomic(page);
1051 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001052
Dan Streetman5538c562014-10-09 15:30:01 -07001053 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001054 link->next = freeobj++ << OBJ_TAG_BITS;
Dan Streetman5538c562014-10-09 15:30:01 -07001055 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -06001056 }
1057
1058 /*
1059 * We now come to the last (full or partial) object on this
1060 * page, which must point to the first object on the next
1061 * page (if present)
1062 */
1063 next_page = get_next_page(page);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001064 if (next_page) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001065 link->next = freeobj++ << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001066 } else {
1067 /*
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001068 * Reset OBJ_TAG_BITS bit to last link to tell
Minchan Kimbfd093f2016-07-26 15:23:28 -07001069 * whether it's allocated object or not.
1070 */
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001071 link->next = -1 << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001072 }
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001073 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -06001074 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -07001075 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -06001076 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001077
Minchan Kimbfd093f2016-07-26 15:23:28 -07001078 set_freeobj(zspage, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001079}
1080
Minchan Kim48b48002016-07-26 15:23:31 -07001081static void create_page_chain(struct size_class *class, struct zspage *zspage,
1082 struct page *pages[])
Nitin Gupta61989a82012-01-09 16:51:56 -06001083{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001084 int i;
1085 struct page *page;
1086 struct page *prev_page = NULL;
Minchan Kim48b48002016-07-26 15:23:31 -07001087 int nr_pages = class->pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001088
1089 /*
1090 * Allocate individual pages and link them together as:
Minchan Kim48b48002016-07-26 15:23:31 -07001091 * 1. all pages are linked together using page->freelist
Minchan Kim37836892016-07-26 15:23:23 -07001092 * 2. each sub-page point to zspage using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001093 *
Minchan Kim37836892016-07-26 15:23:23 -07001094 * we set PG_private to identify the first page (i.e. no other sub-page
1095 * has this flag set) and PG_private_2 to identify the last page.
Nitin Gupta61989a82012-01-09 16:51:56 -06001096 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001097 for (i = 0; i < nr_pages; i++) {
1098 page = pages[i];
Minchan Kim37836892016-07-26 15:23:23 -07001099 set_page_private(page, (unsigned long)zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001100 page->freelist = NULL;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001101 if (i == 0) {
Minchan Kim37836892016-07-26 15:23:23 -07001102 zspage->first_page = page;
Minchan Kima27545bf2012-04-25 15:23:09 +09001103 SetPagePrivate(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001104 if (unlikely(class->objs_per_zspage == 1 &&
1105 class->pages_per_zspage == 1))
1106 SetPageHugeObject(page);
Minchan Kim37836892016-07-26 15:23:23 -07001107 } else {
Minchan Kim48b48002016-07-26 15:23:31 -07001108 prev_page->freelist = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001109 }
Minchan Kim48b48002016-07-26 15:23:31 -07001110 if (i == nr_pages - 1)
Minchan Kima27545bf2012-04-25 15:23:09 +09001111 SetPagePrivate2(page);
Nitin Gupta61989a82012-01-09 16:51:56 -06001112 prev_page = page;
1113 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001114}
Nitin Gupta61989a82012-01-09 16:51:56 -06001115
Minchan Kimbdb0af72016-07-26 15:23:20 -07001116/*
1117 * Allocate a zspage for the given size class
1118 */
Minchan Kim37836892016-07-26 15:23:23 -07001119static struct zspage *alloc_zspage(struct zs_pool *pool,
1120 struct size_class *class,
1121 gfp_t gfp)
Minchan Kimbdb0af72016-07-26 15:23:20 -07001122{
1123 int i;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001124 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Minchan Kim37836892016-07-26 15:23:23 -07001125 struct zspage *zspage = cache_alloc_zspage(pool, gfp);
1126
1127 if (!zspage)
1128 return NULL;
1129
1130 memset(zspage, 0, sizeof(struct zspage));
Minchan Kim48b48002016-07-26 15:23:31 -07001131 zspage->magic = ZSPAGE_MAGIC;
1132 migrate_lock_init(zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001133
Minchan Kimbdb0af72016-07-26 15:23:20 -07001134 for (i = 0; i < class->pages_per_zspage; i++) {
1135 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001136
Minchan Kim37836892016-07-26 15:23:23 -07001137 page = alloc_page(gfp);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001138 if (!page) {
Minchan Kim91537fe2016-07-26 15:24:45 -07001139 while (--i >= 0) {
1140 dec_zone_page_state(pages[i], NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001141 __free_page(pages[i]);
Minchan Kim91537fe2016-07-26 15:24:45 -07001142 }
Minchan Kim37836892016-07-26 15:23:23 -07001143 cache_free_zspage(pool, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001144 return NULL;
1145 }
Minchan Kim91537fe2016-07-26 15:24:45 -07001146
1147 inc_zone_page_state(page, NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001148 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001149 }
1150
Minchan Kim48b48002016-07-26 15:23:31 -07001151 create_page_chain(class, zspage, pages);
Minchan Kim37836892016-07-26 15:23:23 -07001152 init_zspage(class, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001153
Minchan Kim37836892016-07-26 15:23:23 -07001154 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001155}
1156
Minchan Kim37836892016-07-26 15:23:23 -07001157static struct zspage *find_get_zspage(struct size_class *class)
Nitin Gupta61989a82012-01-09 16:51:56 -06001158{
1159 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001160 struct zspage *zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001161
Minchan Kim48b48002016-07-26 15:23:31 -07001162 for (i = ZS_ALMOST_FULL; i >= ZS_EMPTY; i--) {
Minchan Kim37836892016-07-26 15:23:23 -07001163 zspage = list_first_entry_or_null(&class->fullness_list[i],
1164 struct zspage, list);
1165 if (zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001166 break;
1167 }
1168
Minchan Kim37836892016-07-26 15:23:23 -07001169 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001170}
1171
Minchan Kim1b945ae2013-12-11 11:04:36 +09001172#ifdef CONFIG_PGTABLE_MAPPING
Seth Jenningsf5536462012-07-18 11:55:56 -05001173static inline int __zs_cpu_up(struct mapping_area *area)
Seth Jennings5f601902012-07-02 16:15:49 -05001174{
Seth Jenningsf5536462012-07-18 11:55:56 -05001175 /*
1176 * Make sure we don't leak memory if a cpu UP notification
1177 * and zs_init() race and both call zs_cpu_up() on the same cpu
1178 */
1179 if (area->vm)
1180 return 0;
1181 area->vm = alloc_vm_area(PAGE_SIZE * 2, NULL);
1182 if (!area->vm)
1183 return -ENOMEM;
1184 return 0;
1185}
1186
1187static inline void __zs_cpu_down(struct mapping_area *area)
1188{
1189 if (area->vm)
1190 free_vm_area(area->vm);
1191 area->vm = NULL;
1192}
1193
1194static inline void *__zs_map_object(struct mapping_area *area,
1195 struct page *pages[2], int off, int size)
1196{
WANG Chaof6f8ed42014-08-06 16:06:58 -07001197 BUG_ON(map_vm_area(area->vm, PAGE_KERNEL, pages));
Seth Jenningsf5536462012-07-18 11:55:56 -05001198 area->vm_addr = area->vm->addr;
1199 return area->vm_addr + off;
1200}
1201
1202static inline void __zs_unmap_object(struct mapping_area *area,
1203 struct page *pages[2], int off, int size)
1204{
1205 unsigned long addr = (unsigned long)area->vm_addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001206
Joerg Roedeld95abbb2013-03-27 01:43:14 +01001207 unmap_kernel_range(addr, PAGE_SIZE * 2);
Seth Jenningsf5536462012-07-18 11:55:56 -05001208}
1209
Minchan Kim1b945ae2013-12-11 11:04:36 +09001210#else /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001211
1212static inline int __zs_cpu_up(struct mapping_area *area)
1213{
1214 /*
1215 * Make sure we don't leak memory if a cpu UP notification
1216 * and zs_init() race and both call zs_cpu_up() on the same cpu
1217 */
1218 if (area->vm_buf)
1219 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001220 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001221 if (!area->vm_buf)
1222 return -ENOMEM;
1223 return 0;
1224}
1225
1226static inline void __zs_cpu_down(struct mapping_area *area)
1227{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001228 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001229 area->vm_buf = NULL;
1230}
1231
1232static void *__zs_map_object(struct mapping_area *area,
1233 struct page *pages[2], int off, int size)
1234{
Seth Jennings5f601902012-07-02 16:15:49 -05001235 int sizes[2];
1236 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001237 char *buf = area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001238
Seth Jenningsf5536462012-07-18 11:55:56 -05001239 /* disable page faults to match kmap_atomic() return conditions */
1240 pagefault_disable();
1241
1242 /* no read fastpath */
1243 if (area->vm_mm == ZS_MM_WO)
1244 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001245
1246 sizes[0] = PAGE_SIZE - off;
1247 sizes[1] = size - sizes[0];
1248
Seth Jennings5f601902012-07-02 16:15:49 -05001249 /* copy object to per-cpu buffer */
1250 addr = kmap_atomic(pages[0]);
1251 memcpy(buf, addr + off, sizes[0]);
1252 kunmap_atomic(addr);
1253 addr = kmap_atomic(pages[1]);
1254 memcpy(buf + sizes[0], addr, sizes[1]);
1255 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001256out:
1257 return area->vm_buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001258}
1259
Seth Jenningsf5536462012-07-18 11:55:56 -05001260static void __zs_unmap_object(struct mapping_area *area,
1261 struct page *pages[2], int off, int size)
Seth Jennings5f601902012-07-02 16:15:49 -05001262{
Seth Jennings5f601902012-07-02 16:15:49 -05001263 int sizes[2];
1264 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001265 char *buf;
Seth Jennings5f601902012-07-02 16:15:49 -05001266
Seth Jenningsf5536462012-07-18 11:55:56 -05001267 /* no write fastpath */
1268 if (area->vm_mm == ZS_MM_RO)
1269 goto out;
Seth Jennings5f601902012-07-02 16:15:49 -05001270
Minchan Kim7b60a682015-04-15 16:15:39 -07001271 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001272 buf = buf + ZS_HANDLE_SIZE;
1273 size -= ZS_HANDLE_SIZE;
1274 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001275
Seth Jennings5f601902012-07-02 16:15:49 -05001276 sizes[0] = PAGE_SIZE - off;
1277 sizes[1] = size - sizes[0];
1278
1279 /* copy per-cpu buffer to object */
1280 addr = kmap_atomic(pages[0]);
1281 memcpy(addr + off, buf, sizes[0]);
1282 kunmap_atomic(addr);
1283 addr = kmap_atomic(pages[1]);
1284 memcpy(addr, buf + sizes[0], sizes[1]);
1285 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001286
1287out:
1288 /* enable page faults to match kunmap_atomic() return conditions */
1289 pagefault_enable();
Seth Jennings5f601902012-07-02 16:15:49 -05001290}
Nitin Gupta61989a82012-01-09 16:51:56 -06001291
Minchan Kim1b945ae2013-12-11 11:04:36 +09001292#endif /* CONFIG_PGTABLE_MAPPING */
Seth Jenningsf5536462012-07-18 11:55:56 -05001293
Nitin Gupta61989a82012-01-09 16:51:56 -06001294static int zs_cpu_notifier(struct notifier_block *nb, unsigned long action,
1295 void *pcpu)
1296{
Seth Jenningsf5536462012-07-18 11:55:56 -05001297 int ret, cpu = (long)pcpu;
Nitin Gupta61989a82012-01-09 16:51:56 -06001298 struct mapping_area *area;
1299
1300 switch (action) {
1301 case CPU_UP_PREPARE:
1302 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001303 ret = __zs_cpu_up(area);
1304 if (ret)
1305 return notifier_from_errno(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001306 break;
1307 case CPU_DEAD:
1308 case CPU_UP_CANCELED:
1309 area = &per_cpu(zs_map_area, cpu);
Seth Jenningsf5536462012-07-18 11:55:56 -05001310 __zs_cpu_down(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001311 break;
1312 }
1313
1314 return NOTIFY_OK;
1315}
1316
1317static struct notifier_block zs_cpu_nb = {
1318 .notifier_call = zs_cpu_notifier
1319};
1320
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001321static int zs_register_cpu_notifier(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06001322{
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001323 int cpu, uninitialized_var(ret);
Nitin Gupta61989a82012-01-09 16:51:56 -06001324
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301325 cpu_notifier_register_begin();
1326
1327 __register_cpu_notifier(&zs_cpu_nb);
Nitin Gupta61989a82012-01-09 16:51:56 -06001328 for_each_online_cpu(cpu) {
1329 ret = zs_cpu_notifier(NULL, CPU_UP_PREPARE, (void *)(long)cpu);
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001330 if (notifier_to_errno(ret))
1331 break;
Nitin Gupta61989a82012-01-09 16:51:56 -06001332 }
Srivatsa S. Bhatf0e71fc2014-03-11 02:09:59 +05301333
1334 cpu_notifier_register_done();
Sergey Senozhatskyb1b00a52014-12-12 16:56:56 -08001335 return notifier_to_errno(ret);
1336}
1337
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001338static void zs_unregister_cpu_notifier(void)
1339{
1340 int cpu;
1341
1342 cpu_notifier_register_begin();
1343
1344 for_each_online_cpu(cpu)
1345 zs_cpu_notifier(NULL, CPU_DEAD, (void *)(long)cpu);
1346 __unregister_cpu_notifier(&zs_cpu_nb);
1347
1348 cpu_notifier_register_done();
1349}
1350
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001351static void init_zs_size_classes(void)
1352{
1353 int nr;
1354
1355 nr = (ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) / ZS_SIZE_CLASS_DELTA + 1;
1356 if ((ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE) % ZS_SIZE_CLASS_DELTA)
1357 nr += 1;
1358
1359 zs_size_classes = nr;
1360}
1361
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001362static bool can_merge(struct size_class *prev, int size, int pages_per_zspage)
1363{
1364 if (prev->pages_per_zspage != pages_per_zspage)
1365 return false;
1366
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001367 if (prev->objs_per_zspage
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001368 != get_maxobj_per_zspage(size, pages_per_zspage))
1369 return false;
1370
1371 return true;
1372}
1373
Minchan Kim37836892016-07-26 15:23:23 -07001374static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001375{
Minchan Kim37836892016-07-26 15:23:23 -07001376 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001377}
1378
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001379unsigned long zs_get_total_pages(struct zs_pool *pool)
1380{
1381 return atomic_long_read(&pool->pages_allocated);
1382}
1383EXPORT_SYMBOL_GPL(zs_get_total_pages);
1384
1385/**
1386 * zs_map_object - get address of allocated object from handle.
1387 * @pool: pool from which the object was allocated
1388 * @handle: handle returned from zs_malloc
1389 *
1390 * Before using an object allocated from zs_malloc, it must be mapped using
1391 * this function. When done with the object, it must be unmapped using
1392 * zs_unmap_object.
1393 *
1394 * Only one object can be mapped per cpu at a time. There is no protection
1395 * against nested mappings.
1396 *
1397 * This function returns with preemption and page faults disabled.
1398 */
1399void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1400 enum zs_mapmode mm)
1401{
Minchan Kim37836892016-07-26 15:23:23 -07001402 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001403 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001404 unsigned long obj, off;
1405 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001406
1407 unsigned int class_idx;
1408 enum fullness_group fg;
1409 struct size_class *class;
1410 struct mapping_area *area;
1411 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001412 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001413
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001414 /*
1415 * Because we use per-cpu mapping areas shared among the
1416 * pools/users, we can't allow mapping in interrupt context
1417 * because it can corrupt another users mappings.
1418 */
Minchan Kim830e4bc2016-05-20 16:59:39 -07001419 WARN_ON_ONCE(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001420
Minchan Kim312fcae2015-04-15 16:15:30 -07001421 /* From now on, migration cannot move the object */
1422 pin_tag(handle);
1423
Minchan Kim2e40e162015-04-15 16:15:23 -07001424 obj = handle_to_obj(handle);
1425 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001426 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001427
1428 /* migration cannot move any subpage in this zspage */
1429 migrate_read_lock(zspage);
1430
Minchan Kim37836892016-07-26 15:23:23 -07001431 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001432 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001433 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001434
1435 area = &get_cpu_var(zs_map_area);
1436 area->vm_mm = mm;
1437 if (off + class->size <= PAGE_SIZE) {
1438 /* this object is contained entirely within a page */
1439 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001440 ret = area->vm_addr + off;
1441 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001442 }
1443
1444 /* this object spans two pages */
1445 pages[0] = page;
1446 pages[1] = get_next_page(page);
1447 BUG_ON(!pages[1]);
1448
Minchan Kim2e40e162015-04-15 16:15:23 -07001449 ret = __zs_map_object(area, pages, off, class->size);
1450out:
Minchan Kim48b48002016-07-26 15:23:31 -07001451 if (likely(!PageHugeObject(page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001452 ret += ZS_HANDLE_SIZE;
1453
1454 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001455}
1456EXPORT_SYMBOL_GPL(zs_map_object);
1457
1458void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1459{
Minchan Kim37836892016-07-26 15:23:23 -07001460 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001461 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001462 unsigned long obj, off;
1463 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001464
1465 unsigned int class_idx;
1466 enum fullness_group fg;
1467 struct size_class *class;
1468 struct mapping_area *area;
1469
Minchan Kim2e40e162015-04-15 16:15:23 -07001470 obj = handle_to_obj(handle);
1471 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001472 zspage = get_zspage(page);
1473 get_zspage_mapping(zspage, &class_idx, &fg);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001474 class = pool->size_class[class_idx];
Minchan Kimbfd093f2016-07-26 15:23:28 -07001475 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001476
1477 area = this_cpu_ptr(&zs_map_area);
1478 if (off + class->size <= PAGE_SIZE)
1479 kunmap_atomic(area->vm_addr);
1480 else {
1481 struct page *pages[2];
1482
1483 pages[0] = page;
1484 pages[1] = get_next_page(page);
1485 BUG_ON(!pages[1]);
1486
1487 __zs_unmap_object(area, pages, off, class->size);
1488 }
1489 put_cpu_var(zs_map_area);
Minchan Kim48b48002016-07-26 15:23:31 -07001490
1491 migrate_read_unlock(zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07001492 unpin_tag(handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001493}
1494EXPORT_SYMBOL_GPL(zs_unmap_object);
1495
Minchan Kim251cbb92016-05-20 16:59:42 -07001496static unsigned long obj_malloc(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001497 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001498{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001499 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001500 unsigned long obj;
1501 struct link_free *link;
1502
1503 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001504 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001505 void *vaddr;
1506
Minchan Kim312fcae2015-04-15 16:15:30 -07001507 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001508 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001509
1510 offset = obj * class->size;
1511 nr_page = offset >> PAGE_SHIFT;
1512 m_offset = offset & ~PAGE_MASK;
1513 m_page = get_first_page(zspage);
1514
1515 for (i = 0; i < nr_page; i++)
1516 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001517
1518 vaddr = kmap_atomic(m_page);
1519 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001520 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kim48b48002016-07-26 15:23:31 -07001521 if (likely(!PageHugeObject(m_page)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001522 /* record handle in the header of allocated chunk */
1523 link->handle = handle;
1524 else
Minchan Kim37836892016-07-26 15:23:23 -07001525 /* record handle to page->index */
1526 zspage->first_page->index = handle;
1527
Minchan Kimc7806262015-04-15 16:15:26 -07001528 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001529 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001530 zs_stat_inc(class, OBJ_USED, 1);
1531
Minchan Kimbfd093f2016-07-26 15:23:28 -07001532 obj = location_to_obj(m_page, obj);
1533
Minchan Kimc7806262015-04-15 16:15:26 -07001534 return obj;
1535}
1536
1537
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001538/**
1539 * zs_malloc - Allocate block of given size from pool.
1540 * @pool: pool to allocate from
1541 * @size: size of block to allocate
1542 *
1543 * On success, handle to the allocated object is returned,
1544 * otherwise 0.
1545 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1546 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001547unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001548{
Minchan Kim2e40e162015-04-15 16:15:23 -07001549 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001550 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001551 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001552 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001553
Minchan Kim7b60a682015-04-15 16:15:39 -07001554 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001555 return 0;
1556
Minchan Kim37836892016-07-26 15:23:23 -07001557 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001558 if (!handle)
1559 return 0;
1560
1561 /* extra space in chunk to keep the handle */
1562 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001563 class = pool->size_class[get_size_class_index(size)];
1564
1565 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001566 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001567 if (likely(zspage)) {
1568 obj = obj_malloc(class, zspage, handle);
1569 /* Now move the zspage to another fullness group, if required */
1570 fix_fullness_group(class, zspage);
1571 record_obj(handle, obj);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001572 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001573
Minchan Kim48b48002016-07-26 15:23:31 -07001574 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001575 }
1576
Minchan Kim48b48002016-07-26 15:23:31 -07001577 spin_unlock(&class->lock);
1578
1579 zspage = alloc_zspage(pool, class, gfp);
1580 if (!zspage) {
1581 cache_free_handle(pool, handle);
1582 return 0;
1583 }
1584
1585 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001586 obj = obj_malloc(class, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001587 newfg = get_fullness_group(class, zspage);
1588 insert_zspage(class, zspage, newfg);
1589 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001590 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001591 atomic_long_add(class->pages_per_zspage,
1592 &pool->pages_allocated);
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07001593 zs_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001594
1595 /* We completely set up zspage so mark them as movable */
1596 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001597 spin_unlock(&class->lock);
1598
Minchan Kim2e40e162015-04-15 16:15:23 -07001599 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001600}
1601EXPORT_SYMBOL_GPL(zs_malloc);
1602
Minchan Kim1ee47162016-05-20 16:59:45 -07001603static void obj_free(struct size_class *class, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001604{
1605 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001606 struct zspage *zspage;
1607 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001608 unsigned long f_offset;
1609 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001610 void *vaddr;
1611
Minchan Kim312fcae2015-04-15 16:15:30 -07001612 obj &= ~OBJ_ALLOCATED_TAG;
Minchan Kimc7806262015-04-15 16:15:26 -07001613 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001614 f_offset = (class->size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001615 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001616
Minchan Kimc7806262015-04-15 16:15:26 -07001617 vaddr = kmap_atomic(f_page);
1618
1619 /* Insert this object in containing zspage's freelist */
1620 link = (struct link_free *)(vaddr + f_offset);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001621 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
Minchan Kimc7806262015-04-15 16:15:26 -07001622 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001623 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001624 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001625 zs_stat_dec(class, OBJ_USED, 1);
1626}
1627
1628void zs_free(struct zs_pool *pool, unsigned long handle)
1629{
Minchan Kim37836892016-07-26 15:23:23 -07001630 struct zspage *zspage;
1631 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001632 unsigned long obj;
1633 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001634 int class_idx;
1635 struct size_class *class;
1636 enum fullness_group fullness;
Minchan Kim48b48002016-07-26 15:23:31 -07001637 bool isolated;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001638
Minchan Kim2e40e162015-04-15 16:15:23 -07001639 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001640 return;
1641
Minchan Kim312fcae2015-04-15 16:15:30 -07001642 pin_tag(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001643 obj = handle_to_obj(handle);
Minchan Kim2e40e162015-04-15 16:15:23 -07001644 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001645 zspage = get_zspage(f_page);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001646
Minchan Kim48b48002016-07-26 15:23:31 -07001647 migrate_read_lock(zspage);
1648
Minchan Kim37836892016-07-26 15:23:23 -07001649 get_zspage_mapping(zspage, &class_idx, &fullness);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001650 class = pool->size_class[class_idx];
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001651
1652 spin_lock(&class->lock);
Minchan Kim1ee47162016-05-20 16:59:45 -07001653 obj_free(class, obj);
Minchan Kim37836892016-07-26 15:23:23 -07001654 fullness = fix_fullness_group(class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001655 if (fullness != ZS_EMPTY) {
1656 migrate_read_unlock(zspage);
1657 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001658 }
Minchan Kim48b48002016-07-26 15:23:31 -07001659
1660 isolated = is_zspage_isolated(zspage);
1661 migrate_read_unlock(zspage);
1662 /* If zspage is isolated, zs_page_putback will free the zspage */
1663 if (likely(!isolated))
1664 free_zspage(pool, class, zspage);
1665out:
1666
Minchan Kim312fcae2015-04-15 16:15:30 -07001667 spin_unlock(&class->lock);
1668 unpin_tag(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001669 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001670}
1671EXPORT_SYMBOL_GPL(zs_free);
1672
Minchan Kim251cbb92016-05-20 16:59:42 -07001673static void zs_object_copy(struct size_class *class, unsigned long dst,
1674 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001675{
1676 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001677 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001678 unsigned long s_off, d_off;
1679 void *s_addr, *d_addr;
1680 int s_size, d_size, size;
1681 int written = 0;
1682
1683 s_size = d_size = class->size;
1684
1685 obj_to_location(src, &s_page, &s_objidx);
1686 obj_to_location(dst, &d_page, &d_objidx);
1687
Minchan Kimbfd093f2016-07-26 15:23:28 -07001688 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1689 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001690
1691 if (s_off + class->size > PAGE_SIZE)
1692 s_size = PAGE_SIZE - s_off;
1693
1694 if (d_off + class->size > PAGE_SIZE)
1695 d_size = PAGE_SIZE - d_off;
1696
1697 s_addr = kmap_atomic(s_page);
1698 d_addr = kmap_atomic(d_page);
1699
1700 while (1) {
1701 size = min(s_size, d_size);
1702 memcpy(d_addr + d_off, s_addr + s_off, size);
1703 written += size;
1704
1705 if (written == class->size)
1706 break;
1707
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001708 s_off += size;
1709 s_size -= size;
1710 d_off += size;
1711 d_size -= size;
1712
1713 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001714 kunmap_atomic(d_addr);
1715 kunmap_atomic(s_addr);
1716 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001717 s_addr = kmap_atomic(s_page);
1718 d_addr = kmap_atomic(d_page);
1719 s_size = class->size - written;
1720 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001721 }
1722
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001723 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001724 kunmap_atomic(d_addr);
1725 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001726 d_addr = kmap_atomic(d_page);
1727 d_size = class->size - written;
1728 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001729 }
1730 }
1731
1732 kunmap_atomic(d_addr);
1733 kunmap_atomic(s_addr);
1734}
1735
1736/*
1737 * Find alloced object in zspage from index object and
1738 * return handle.
1739 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001740static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001741 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001742{
1743 unsigned long head;
1744 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001745 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001746 unsigned long handle = 0;
1747 void *addr = kmap_atomic(page);
1748
Minchan Kim37836892016-07-26 15:23:23 -07001749 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001750 offset += class->size * index;
1751
1752 while (offset < PAGE_SIZE) {
Minchan Kim48b48002016-07-26 15:23:31 -07001753 head = obj_to_head(page, addr + offset);
Minchan Kim312fcae2015-04-15 16:15:30 -07001754 if (head & OBJ_ALLOCATED_TAG) {
1755 handle = head & ~OBJ_ALLOCATED_TAG;
1756 if (trypin_tag(handle))
1757 break;
1758 handle = 0;
1759 }
1760
1761 offset += class->size;
1762 index++;
1763 }
1764
1765 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001766
1767 *obj_idx = index;
1768
Minchan Kim312fcae2015-04-15 16:15:30 -07001769 return handle;
1770}
1771
1772struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001773 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001774 struct page *s_page;
1775 /* Destination page for migration which should be a first page
1776 * of zspage. */
1777 struct page *d_page;
1778 /* Starting object index within @s_page which used for live object
1779 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001780 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001781};
1782
1783static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1784 struct zs_compact_control *cc)
1785{
1786 unsigned long used_obj, free_obj;
1787 unsigned long handle;
1788 struct page *s_page = cc->s_page;
1789 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001790 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001791 int ret = 0;
1792
1793 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001794 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001795 if (!handle) {
1796 s_page = get_next_page(s_page);
1797 if (!s_page)
1798 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001799 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001800 continue;
1801 }
1802
1803 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001804 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001805 unpin_tag(handle);
1806 ret = -ENOMEM;
1807 break;
1808 }
1809
1810 used_obj = handle_to_obj(handle);
Minchan Kim37836892016-07-26 15:23:23 -07001811 free_obj = obj_malloc(class, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001812 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001813 obj_idx++;
Junil Leec102f072016-01-20 14:58:18 -08001814 /*
1815 * record_obj updates handle's value to free_obj and it will
1816 * invalidate lock bit(ie, HANDLE_PIN_BIT) of handle, which
1817 * breaks synchronization using pin_tag(e,g, zs_free) so
1818 * let's keep the lock bit.
1819 */
1820 free_obj |= BIT(HANDLE_PIN_BIT);
Minchan Kim312fcae2015-04-15 16:15:30 -07001821 record_obj(handle, free_obj);
1822 unpin_tag(handle);
Minchan Kim1ee47162016-05-20 16:59:45 -07001823 obj_free(class, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001824 }
1825
1826 /* Remember last position in this iteration */
1827 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001828 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001829
1830 return ret;
1831}
1832
Minchan Kim37836892016-07-26 15:23:23 -07001833static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001834{
1835 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001836 struct zspage *zspage;
1837 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001838
Minchan Kim37836892016-07-26 15:23:23 -07001839 if (!source) {
1840 fg[0] = ZS_ALMOST_FULL;
1841 fg[1] = ZS_ALMOST_EMPTY;
1842 }
1843
1844 for (i = 0; i < 2; i++) {
1845 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1846 struct zspage, list);
1847 if (zspage) {
Minchan Kim48b48002016-07-26 15:23:31 -07001848 VM_BUG_ON(is_zspage_isolated(zspage));
Minchan Kim37836892016-07-26 15:23:23 -07001849 remove_zspage(class, zspage, fg[i]);
1850 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001851 }
1852 }
1853
Minchan Kim37836892016-07-26 15:23:23 -07001854 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001855}
1856
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001857/*
Minchan Kim37836892016-07-26 15:23:23 -07001858 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001859 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001860 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001861 *
Minchan Kim37836892016-07-26 15:23:23 -07001862 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001863 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001864static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001865 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001866{
Minchan Kim312fcae2015-04-15 16:15:30 -07001867 enum fullness_group fullness;
1868
Minchan Kim48b48002016-07-26 15:23:31 -07001869 VM_BUG_ON(is_zspage_isolated(zspage));
1870
Minchan Kim37836892016-07-26 15:23:23 -07001871 fullness = get_fullness_group(class, zspage);
1872 insert_zspage(class, zspage, fullness);
1873 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001874
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001875 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001876}
1877
Minchan Kim48b48002016-07-26 15:23:31 -07001878#ifdef CONFIG_COMPACTION
1879static struct dentry *zs_mount(struct file_system_type *fs_type,
1880 int flags, const char *dev_name, void *data)
1881{
1882 static const struct dentry_operations ops = {
1883 .d_dname = simple_dname,
1884 };
1885
1886 return mount_pseudo(fs_type, "zsmalloc:", NULL, &ops, ZSMALLOC_MAGIC);
1887}
1888
1889static struct file_system_type zsmalloc_fs = {
1890 .name = "zsmalloc",
1891 .mount = zs_mount,
1892 .kill_sb = kill_anon_super,
1893};
1894
1895static int zsmalloc_mount(void)
1896{
1897 int ret = 0;
1898
1899 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1900 if (IS_ERR(zsmalloc_mnt))
1901 ret = PTR_ERR(zsmalloc_mnt);
1902
1903 return ret;
1904}
1905
1906static void zsmalloc_unmount(void)
1907{
1908 kern_unmount(zsmalloc_mnt);
1909}
1910
1911static void migrate_lock_init(struct zspage *zspage)
1912{
1913 rwlock_init(&zspage->lock);
1914}
1915
1916static void migrate_read_lock(struct zspage *zspage)
1917{
1918 read_lock(&zspage->lock);
1919}
1920
1921static void migrate_read_unlock(struct zspage *zspage)
1922{
1923 read_unlock(&zspage->lock);
1924}
1925
1926static void migrate_write_lock(struct zspage *zspage)
1927{
1928 write_lock(&zspage->lock);
1929}
1930
1931static void migrate_write_unlock(struct zspage *zspage)
1932{
1933 write_unlock(&zspage->lock);
1934}
1935
1936/* Number of isolated subpage for *page migration* in this zspage */
1937static void inc_zspage_isolation(struct zspage *zspage)
1938{
1939 zspage->isolated++;
1940}
1941
1942static void dec_zspage_isolation(struct zspage *zspage)
1943{
1944 zspage->isolated--;
1945}
1946
1947static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1948 struct page *newpage, struct page *oldpage)
1949{
1950 struct page *page;
1951 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1952 int idx = 0;
1953
1954 page = get_first_page(zspage);
1955 do {
1956 if (page == oldpage)
1957 pages[idx] = newpage;
1958 else
1959 pages[idx] = page;
1960 idx++;
1961 } while ((page = get_next_page(page)) != NULL);
1962
1963 create_page_chain(class, zspage, pages);
1964 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
1965 if (unlikely(PageHugeObject(oldpage)))
1966 newpage->index = oldpage->index;
1967 __SetPageMovable(newpage, page_mapping(oldpage));
1968}
1969
1970bool zs_page_isolate(struct page *page, isolate_mode_t mode)
1971{
1972 struct zs_pool *pool;
1973 struct size_class *class;
1974 int class_idx;
1975 enum fullness_group fullness;
1976 struct zspage *zspage;
1977 struct address_space *mapping;
1978
1979 /*
1980 * Page is locked so zspage couldn't be destroyed. For detail, look at
1981 * lock_zspage in free_zspage.
1982 */
1983 VM_BUG_ON_PAGE(!PageMovable(page), page);
1984 VM_BUG_ON_PAGE(PageIsolated(page), page);
1985
1986 zspage = get_zspage(page);
1987
1988 /*
1989 * Without class lock, fullness could be stale while class_idx is okay
1990 * because class_idx is constant unless page is freed so we should get
1991 * fullness again under class lock.
1992 */
1993 get_zspage_mapping(zspage, &class_idx, &fullness);
1994 mapping = page_mapping(page);
1995 pool = mapping->private_data;
1996 class = pool->size_class[class_idx];
1997
1998 spin_lock(&class->lock);
1999 if (get_zspage_inuse(zspage) == 0) {
2000 spin_unlock(&class->lock);
2001 return false;
2002 }
2003
2004 /* zspage is isolated for object migration */
2005 if (list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2006 spin_unlock(&class->lock);
2007 return false;
2008 }
2009
2010 /*
2011 * If this is first time isolation for the zspage, isolate zspage from
2012 * size_class to prevent further object allocation from the zspage.
2013 */
2014 if (!list_empty(&zspage->list) && !is_zspage_isolated(zspage)) {
2015 get_zspage_mapping(zspage, &class_idx, &fullness);
2016 remove_zspage(class, zspage, fullness);
2017 }
2018
2019 inc_zspage_isolation(zspage);
2020 spin_unlock(&class->lock);
2021
2022 return true;
2023}
2024
2025int zs_page_migrate(struct address_space *mapping, struct page *newpage,
2026 struct page *page, enum migrate_mode mode)
2027{
2028 struct zs_pool *pool;
2029 struct size_class *class;
2030 int class_idx;
2031 enum fullness_group fullness;
2032 struct zspage *zspage;
2033 struct page *dummy;
2034 void *s_addr, *d_addr, *addr;
2035 int offset, pos;
2036 unsigned long handle, head;
2037 unsigned long old_obj, new_obj;
2038 unsigned int obj_idx;
2039 int ret = -EAGAIN;
2040
2041 VM_BUG_ON_PAGE(!PageMovable(page), page);
2042 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2043
2044 zspage = get_zspage(page);
2045
2046 /* Concurrent compactor cannot migrate any subpage in zspage */
2047 migrate_write_lock(zspage);
2048 get_zspage_mapping(zspage, &class_idx, &fullness);
2049 pool = mapping->private_data;
2050 class = pool->size_class[class_idx];
2051 offset = get_first_obj_offset(page);
2052
2053 spin_lock(&class->lock);
2054 if (!get_zspage_inuse(zspage)) {
2055 ret = -EBUSY;
2056 goto unlock_class;
2057 }
2058
2059 pos = offset;
2060 s_addr = kmap_atomic(page);
2061 while (pos < PAGE_SIZE) {
2062 head = obj_to_head(page, s_addr + pos);
2063 if (head & OBJ_ALLOCATED_TAG) {
2064 handle = head & ~OBJ_ALLOCATED_TAG;
2065 if (!trypin_tag(handle))
2066 goto unpin_objects;
2067 }
2068 pos += class->size;
2069 }
2070
2071 /*
2072 * Here, any user cannot access all objects in the zspage so let's move.
2073 */
2074 d_addr = kmap_atomic(newpage);
2075 memcpy(d_addr, s_addr, PAGE_SIZE);
2076 kunmap_atomic(d_addr);
2077
2078 for (addr = s_addr + offset; addr < s_addr + pos;
2079 addr += class->size) {
2080 head = obj_to_head(page, addr);
2081 if (head & OBJ_ALLOCATED_TAG) {
2082 handle = head & ~OBJ_ALLOCATED_TAG;
2083 if (!testpin_tag(handle))
2084 BUG();
2085
2086 old_obj = handle_to_obj(handle);
2087 obj_to_location(old_obj, &dummy, &obj_idx);
2088 new_obj = (unsigned long)location_to_obj(newpage,
2089 obj_idx);
2090 new_obj |= BIT(HANDLE_PIN_BIT);
2091 record_obj(handle, new_obj);
2092 }
2093 }
2094
2095 replace_sub_page(class, zspage, newpage, page);
2096 get_page(newpage);
2097
2098 dec_zspage_isolation(zspage);
2099
2100 /*
2101 * Page migration is done so let's putback isolated zspage to
2102 * the list if @page is final isolated subpage in the zspage.
2103 */
2104 if (!is_zspage_isolated(zspage))
2105 putback_zspage(class, zspage);
2106
2107 reset_page(page);
2108 put_page(page);
2109 page = newpage;
2110
Minchan Kimdd4123f2016-07-26 15:26:50 -07002111 ret = MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07002112unpin_objects:
2113 for (addr = s_addr + offset; addr < s_addr + pos;
2114 addr += class->size) {
2115 head = obj_to_head(page, addr);
2116 if (head & OBJ_ALLOCATED_TAG) {
2117 handle = head & ~OBJ_ALLOCATED_TAG;
2118 if (!testpin_tag(handle))
2119 BUG();
2120 unpin_tag(handle);
2121 }
2122 }
2123 kunmap_atomic(s_addr);
2124unlock_class:
2125 spin_unlock(&class->lock);
2126 migrate_write_unlock(zspage);
2127
2128 return ret;
2129}
2130
2131void zs_page_putback(struct page *page)
2132{
2133 struct zs_pool *pool;
2134 struct size_class *class;
2135 int class_idx;
2136 enum fullness_group fg;
2137 struct address_space *mapping;
2138 struct zspage *zspage;
2139
2140 VM_BUG_ON_PAGE(!PageMovable(page), page);
2141 VM_BUG_ON_PAGE(!PageIsolated(page), page);
2142
2143 zspage = get_zspage(page);
2144 get_zspage_mapping(zspage, &class_idx, &fg);
2145 mapping = page_mapping(page);
2146 pool = mapping->private_data;
2147 class = pool->size_class[class_idx];
2148
2149 spin_lock(&class->lock);
2150 dec_zspage_isolation(zspage);
2151 if (!is_zspage_isolated(zspage)) {
2152 fg = putback_zspage(class, zspage);
2153 /*
2154 * Due to page_lock, we cannot free zspage immediately
2155 * so let's defer.
2156 */
2157 if (fg == ZS_EMPTY)
2158 schedule_work(&pool->free_work);
2159 }
2160 spin_unlock(&class->lock);
2161}
2162
2163const struct address_space_operations zsmalloc_aops = {
2164 .isolate_page = zs_page_isolate,
2165 .migratepage = zs_page_migrate,
2166 .putback_page = zs_page_putback,
2167};
2168
2169static int zs_register_migration(struct zs_pool *pool)
2170{
2171 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
2172 if (IS_ERR(pool->inode)) {
2173 pool->inode = NULL;
2174 return 1;
2175 }
2176
2177 pool->inode->i_mapping->private_data = pool;
2178 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
2179 return 0;
2180}
2181
2182static void zs_unregister_migration(struct zs_pool *pool)
2183{
2184 flush_work(&pool->free_work);
2185 if (pool->inode)
2186 iput(pool->inode);
2187}
2188
2189/*
2190 * Caller should hold page_lock of all pages in the zspage
2191 * In here, we cannot use zspage meta data.
2192 */
2193static void async_free_zspage(struct work_struct *work)
2194{
2195 int i;
2196 struct size_class *class;
2197 unsigned int class_idx;
2198 enum fullness_group fullness;
2199 struct zspage *zspage, *tmp;
2200 LIST_HEAD(free_pages);
2201 struct zs_pool *pool = container_of(work, struct zs_pool,
2202 free_work);
2203
2204 for (i = 0; i < zs_size_classes; i++) {
2205 class = pool->size_class[i];
2206 if (class->index != i)
2207 continue;
2208
2209 spin_lock(&class->lock);
2210 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
2211 spin_unlock(&class->lock);
2212 }
2213
2214
2215 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
2216 list_del(&zspage->list);
2217 lock_zspage(zspage);
2218
2219 get_zspage_mapping(zspage, &class_idx, &fullness);
2220 VM_BUG_ON(fullness != ZS_EMPTY);
2221 class = pool->size_class[class_idx];
2222 spin_lock(&class->lock);
2223 __free_zspage(pool, pool->size_class[class_idx], zspage);
2224 spin_unlock(&class->lock);
2225 }
2226};
2227
2228static void kick_deferred_free(struct zs_pool *pool)
2229{
2230 schedule_work(&pool->free_work);
2231}
2232
2233static void init_deferred_free(struct zs_pool *pool)
2234{
2235 INIT_WORK(&pool->free_work, async_free_zspage);
2236}
2237
2238static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2239{
2240 struct page *page = get_first_page(zspage);
2241
2242 do {
2243 WARN_ON(!trylock_page(page));
2244 __SetPageMovable(page, pool->inode->i_mapping);
2245 unlock_page(page);
2246 } while ((page = get_next_page(page)) != NULL);
2247}
2248#endif
2249
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002250/*
2251 *
2252 * Based on the number of unused allocated objects calculate
2253 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002254 */
2255static unsigned long zs_can_compact(struct size_class *class)
2256{
2257 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002258 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2259 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002260
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002261 if (obj_allocated <= obj_used)
2262 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002263
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002264 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002265 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002266
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002267 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002268}
2269
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002270static void __zs_compact(struct zs_pool *pool, struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002271{
Minchan Kim312fcae2015-04-15 16:15:30 -07002272 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002273 struct zspage *src_zspage;
2274 struct zspage *dst_zspage = NULL;
Minchan Kim312fcae2015-04-15 16:15:30 -07002275
Minchan Kim312fcae2015-04-15 16:15:30 -07002276 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002277 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002278
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002279 if (!zs_can_compact(class))
2280 break;
2281
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002282 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002283 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002284
Minchan Kim37836892016-07-26 15:23:23 -07002285 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kim48b48002016-07-26 15:23:31 -07002286 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002287 /*
Sergey Senozhatsky0dc63d42015-09-08 15:04:33 -07002288 * If there is no more space in dst_page, resched
2289 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002290 */
2291 if (!migrate_zspage(pool, class, &cc))
2292 break;
2293
Minchan Kim4aa409c2016-07-26 15:23:26 -07002294 putback_zspage(class, dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002295 }
2296
2297 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002298 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002299 break;
2300
Minchan Kim4aa409c2016-07-26 15:23:26 -07002301 putback_zspage(class, dst_zspage);
2302 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kim48b48002016-07-26 15:23:31 -07002303 free_zspage(pool, class, src_zspage);
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002304 pool->stats.pages_compacted += class->pages_per_zspage;
Minchan Kim4aa409c2016-07-26 15:23:26 -07002305 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002306 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002307 cond_resched();
2308 spin_lock(&class->lock);
2309 }
2310
Minchan Kim37836892016-07-26 15:23:23 -07002311 if (src_zspage)
Minchan Kim4aa409c2016-07-26 15:23:26 -07002312 putback_zspage(class, src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002313
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002314 spin_unlock(&class->lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002315}
2316
2317unsigned long zs_compact(struct zs_pool *pool)
2318{
2319 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002320 struct size_class *class;
2321
2322 for (i = zs_size_classes - 1; i >= 0; i--) {
2323 class = pool->size_class[i];
2324 if (!class)
2325 continue;
2326 if (class->index != i)
2327 continue;
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002328 __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002329 }
2330
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07002331 return pool->stats.pages_compacted;
Minchan Kim312fcae2015-04-15 16:15:30 -07002332}
2333EXPORT_SYMBOL_GPL(zs_compact);
2334
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002335void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2336{
2337 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2338}
2339EXPORT_SYMBOL_GPL(zs_pool_stats);
2340
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002341static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2342 struct shrink_control *sc)
2343{
2344 unsigned long pages_freed;
2345 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2346 shrinker);
2347
2348 pages_freed = pool->stats.pages_compacted;
2349 /*
2350 * Compact classes and calculate compaction delta.
2351 * Can run concurrently with a manually triggered
2352 * (by user) compaction.
2353 */
2354 pages_freed = zs_compact(pool) - pages_freed;
2355
2356 return pages_freed ? pages_freed : SHRINK_STOP;
2357}
2358
2359static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2360 struct shrink_control *sc)
2361{
2362 int i;
2363 struct size_class *class;
2364 unsigned long pages_to_free = 0;
2365 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2366 shrinker);
2367
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002368 for (i = zs_size_classes - 1; i >= 0; i--) {
2369 class = pool->size_class[i];
2370 if (!class)
2371 continue;
2372 if (class->index != i)
2373 continue;
2374
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002375 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002376 }
2377
2378 return pages_to_free;
2379}
2380
2381static void zs_unregister_shrinker(struct zs_pool *pool)
2382{
2383 if (pool->shrinker_enabled) {
2384 unregister_shrinker(&pool->shrinker);
2385 pool->shrinker_enabled = false;
2386 }
2387}
2388
2389static int zs_register_shrinker(struct zs_pool *pool)
2390{
2391 pool->shrinker.scan_objects = zs_shrinker_scan;
2392 pool->shrinker.count_objects = zs_shrinker_count;
2393 pool->shrinker.batch = 0;
2394 pool->shrinker.seeks = DEFAULT_SEEKS;
2395
2396 return register_shrinker(&pool->shrinker);
2397}
2398
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002399/**
2400 * zs_create_pool - Creates an allocation pool to work from.
Seth Jennings0d145a52013-01-30 09:36:52 -06002401 * @flags: allocation flags used to allocate pool metadata
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002402 *
2403 * This function must be called before anything when using
2404 * the zsmalloc allocator.
2405 *
2406 * On success, a pointer to the newly created pool is returned,
2407 * otherwise NULL.
2408 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002409struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002410{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002411 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002412 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002413 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002414
Ganesh Mahendran18136652014-12-12 16:57:10 -08002415 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002416 if (!pool)
2417 return NULL;
2418
Minchan Kim48b48002016-07-26 15:23:31 -07002419 init_deferred_free(pool);
Minchan Kim2e40e162015-04-15 16:15:23 -07002420 pool->size_class = kcalloc(zs_size_classes, sizeof(struct size_class *),
2421 GFP_KERNEL);
2422 if (!pool->size_class) {
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002423 kfree(pool);
2424 return NULL;
2425 }
2426
Minchan Kim2e40e162015-04-15 16:15:23 -07002427 pool->name = kstrdup(name, GFP_KERNEL);
2428 if (!pool->name)
2429 goto err;
2430
Minchan Kim37836892016-07-26 15:23:23 -07002431 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002432 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002433
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002434 /*
2435 * Iterate reversly, because, size of size_class that we want to use
2436 * for merging should be larger or equal to current size.
2437 */
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002438 for (i = zs_size_classes - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002439 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002440 int pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002441 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002442 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002443
2444 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2445 if (size > ZS_MAX_ALLOC_SIZE)
2446 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002447 pages_per_zspage = get_pages_per_zspage(size);
Nitin Gupta61989a82012-01-09 16:51:56 -06002448
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002449 /*
2450 * size_class is used for normal zsmalloc operation such
2451 * as alloc/free for that size. Although it is natural that we
2452 * have one size_class for each size, there is a chance that we
2453 * can get more memory utilization if we use one size_class for
2454 * many different sizes whose size_class have same
2455 * characteristics. So, we makes size_class point to
2456 * previous size_class if possible.
2457 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002458 if (prev_class) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002459 if (can_merge(prev_class, size, pages_per_zspage)) {
2460 pool->size_class[i] = prev_class;
2461 continue;
2462 }
2463 }
2464
2465 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2466 if (!class)
2467 goto err;
2468
Nitin Gupta61989a82012-01-09 16:51:56 -06002469 class->size = size;
2470 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002471 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002472 class->objs_per_zspage = get_maxobj_per_zspage(class->size,
2473 class->pages_per_zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06002474 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002475 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002476 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2477 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002478 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002479
2480 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002481 }
2482
Dan Streetmand34f6152016-05-20 16:59:56 -07002483 /* debug only, don't abort if it fails */
2484 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002485
Minchan Kim48b48002016-07-26 15:23:31 -07002486 if (zs_register_migration(pool))
2487 goto err;
2488
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002489 /*
2490 * Not critical, we still can use the pool
2491 * and user can trigger compaction manually.
2492 */
2493 if (zs_register_shrinker(pool) == 0)
2494 pool->shrinker_enabled = true;
Nitin Gupta61989a82012-01-09 16:51:56 -06002495 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002496
2497err:
2498 zs_destroy_pool(pool);
2499 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002500}
2501EXPORT_SYMBOL_GPL(zs_create_pool);
2502
2503void zs_destroy_pool(struct zs_pool *pool)
2504{
2505 int i;
2506
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002507 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002508 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002509 zs_pool_stat_destroy(pool);
2510
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002511 for (i = 0; i < zs_size_classes; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002512 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002513 struct size_class *class = pool->size_class[i];
2514
2515 if (!class)
2516 continue;
2517
2518 if (class->index != i)
2519 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002520
Minchan Kim48b48002016-07-26 15:23:31 -07002521 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002522 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002523 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002524 class->size, fg);
2525 }
2526 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002527 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002528 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002529
Minchan Kim37836892016-07-26 15:23:23 -07002530 destroy_cache(pool);
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002531 kfree(pool->size_class);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002532 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002533 kfree(pool);
2534}
2535EXPORT_SYMBOL_GPL(zs_destroy_pool);
2536
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002537static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002538{
Minchan Kim48b48002016-07-26 15:23:31 -07002539 int ret;
2540
2541 ret = zsmalloc_mount();
2542 if (ret)
2543 goto out;
2544
2545 ret = zs_register_cpu_notifier();
Nitin Gupta61989a82012-01-09 16:51:56 -06002546
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002547 if (ret)
2548 goto notifier_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002549
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002550 init_zs_size_classes();
Nitin Gupta61989a82012-01-09 16:51:56 -06002551
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002552#ifdef CONFIG_ZPOOL
2553 zpool_register_driver(&zs_zpool_driver);
2554#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002555
Dan Streetman4abaac92016-05-26 15:16:27 -07002556 zs_stat_init();
2557
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002558 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002559
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002560notifier_fail:
2561 zs_unregister_cpu_notifier();
Minchan Kim48b48002016-07-26 15:23:31 -07002562 zsmalloc_unmount();
2563out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002564 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002565}
Nitin Gupta61989a82012-01-09 16:51:56 -06002566
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002567static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002568{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002569#ifdef CONFIG_ZPOOL
2570 zpool_unregister_driver(&zs_zpool_driver);
2571#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002572 zsmalloc_unmount();
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002573 zs_unregister_cpu_notifier();
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002574
2575 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002576}
Ben Hutchings069f1012012-06-20 02:31:11 +01002577
2578module_init(zs_init);
2579module_exit(zs_exit);
2580
2581MODULE_LICENSE("Dual BSD/GPL");
2582MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");