blob: 9152fbde33b50f93a4f8ef949caebd6d44c5ffcf [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
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +010020 * page->index: links together all component pages of a zspage
Minchan Kim48b48002016-07-26 15:23:31 -070021 * For the huge page, this is always 0, so we use this field
22 * to store handle.
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +010023 * page->page_type: first object offset in a subpage of zspage
Nitin Gupta2db51da2012-06-09 17:41:14 -070024 *
25 * Usage of struct page flags:
26 * PG_private: identifies the first component page
Xishi Qiu399d8ee2017-02-22 15:45:01 -080027 * PG_owner_priv_1: identifies the huge component page
Nitin Gupta2db51da2012-06-09 17:41:14 -070028 *
29 */
30
Dan Streetman4abaac92016-05-26 15:16:27 -070031#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
32
Minchan Kimb475d422022-01-21 22:14:13 -080033/*
34 * lock ordering:
35 * page_lock
36 * pool->migrate_lock
37 * class->lock
38 * zspage->lock
39 */
40
Nitin Gupta61989a82012-01-09 16:51:56 -060041#include <linux/module.h>
42#include <linux/kernel.h>
Minchan Kim312fcae2015-04-15 16:15:30 -070043#include <linux/sched.h>
Ingo Molnar50d34392017-02-05 16:03:58 +010044#include <linux/magic.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060045#include <linux/bitops.h>
46#include <linux/errno.h>
47#include <linux/highmem.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060048#include <linux/string.h>
49#include <linux/slab.h>
Mike Rapoportca5999f2020-06-08 21:32:38 -070050#include <linux/pgtable.h>
Mike Rapoport65fddcf2020-06-08 21:32:42 -070051#include <asm/tlbflush.h>
Nitin Gupta61989a82012-01-09 16:51:56 -060052#include <linux/cpumask.h>
53#include <linux/cpu.h>
Seth Jennings0cbb6132012-02-13 08:47:49 -060054#include <linux/vmalloc.h>
Sergey Senozhatsky759b26b2015-11-06 16:29:29 -080055#include <linux/preempt.h>
Seth Jennings0959c632012-08-08 15:12:17 +090056#include <linux/spinlock.h>
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -080057#include <linux/shrinker.h>
Seth Jennings0959c632012-08-08 15:12:17 +090058#include <linux/types.h>
Ganesh Mahendran0f050d92015-02-12 15:00:54 -080059#include <linux/debugfs.h>
Minchan Kimbcf16472014-01-30 15:45:50 -080060#include <linux/zsmalloc.h>
Dan Streetmanc7957792014-08-06 16:08:38 -070061#include <linux/zpool.h>
Minchan Kim48b48002016-07-26 15:23:31 -070062#include <linux/mount.h>
David Howells8e9231f2019-03-25 16:38:23 +000063#include <linux/pseudo_fs.h>
Minchan Kimdd4123f2016-07-26 15:26:50 -070064#include <linux/migrate.h>
Henry Burns701d6782019-08-24 17:55:06 -070065#include <linux/wait.h>
Minchan Kim48b48002016-07-26 15:23:31 -070066#include <linux/pagemap.h>
Sergey Senozhatskycdc346b2018-01-04 16:18:02 -080067#include <linux/fs.h>
Mike Galbraitha3726592022-01-21 22:14:17 -080068#include <linux/local_lock.h>
Minchan Kim48b48002016-07-26 15:23:31 -070069
70#define ZSPAGE_MAGIC 0x58
Seth Jennings0959c632012-08-08 15:12:17 +090071
72/*
Shijie Luocb152a12021-05-06 18:05:51 -070073 * This must be power of 2 and greater than or equal to sizeof(link_free).
Seth Jennings0959c632012-08-08 15:12:17 +090074 * These two conditions ensure that any 'struct link_free' itself doesn't
75 * span more than 1 page which avoids complex case of mapping 2 pages simply
76 * to restore link_free pointer values.
77 */
78#define ZS_ALIGN 8
79
80/*
81 * A single 'zspage' is composed of up to 2^N discontiguous 0-order (single)
82 * pages. ZS_MAX_ZSPAGE_ORDER defines upper limit on N.
83 */
84#define ZS_MAX_ZSPAGE_ORDER 2
85#define ZS_MAX_PAGES_PER_ZSPAGE (_AC(1, UL) << ZS_MAX_ZSPAGE_ORDER)
86
Minchan Kim2e40e162015-04-15 16:15:23 -070087#define ZS_HANDLE_SIZE (sizeof(unsigned long))
88
Seth Jennings0959c632012-08-08 15:12:17 +090089/*
90 * Object location (<PFN>, <obj_idx>) is encoded as
Randy Dunlapb956b5a2020-08-11 18:33:31 -070091 * a single (unsigned long) handle value.
Seth Jennings0959c632012-08-08 15:12:17 +090092 *
Minchan Kimbfd093f2016-07-26 15:23:28 -070093 * Note that object index <obj_idx> starts from 0.
Seth Jennings0959c632012-08-08 15:12:17 +090094 *
95 * This is made more complicated by various memory models and PAE.
96 */
97
Kirill A. Shutemov02390b82018-02-14 14:16:49 +030098#ifndef MAX_POSSIBLE_PHYSMEM_BITS
99#ifdef MAX_PHYSMEM_BITS
100#define MAX_POSSIBLE_PHYSMEM_BITS MAX_PHYSMEM_BITS
101#else
Seth Jennings0959c632012-08-08 15:12:17 +0900102/*
103 * If this definition of MAX_PHYSMEM_BITS is used, OBJ_INDEX_BITS will just
104 * be PAGE_SHIFT
105 */
Kirill A. Shutemov02390b82018-02-14 14:16:49 +0300106#define MAX_POSSIBLE_PHYSMEM_BITS BITS_PER_LONG
Seth Jennings0959c632012-08-08 15:12:17 +0900107#endif
108#endif
Kirill A. Shutemov02390b82018-02-14 14:16:49 +0300109
110#define _PFN_BITS (MAX_POSSIBLE_PHYSMEM_BITS - PAGE_SHIFT)
Minchan Kim312fcae2015-04-15 16:15:30 -0700111
112/*
Minchan Kim312fcae2015-04-15 16:15:30 -0700113 * Head in allocated object should have OBJ_ALLOCATED_TAG
114 * to identify the object was allocated or not.
115 * It's okay to add the status bit in the least bit because
116 * header keeps handle which is 4byte-aligned address so we
117 * have room for two bit at least.
118 */
119#define OBJ_ALLOCATED_TAG 1
120#define OBJ_TAG_BITS 1
121#define OBJ_INDEX_BITS (BITS_PER_LONG - _PFN_BITS - OBJ_TAG_BITS)
Seth Jennings0959c632012-08-08 15:12:17 +0900122#define OBJ_INDEX_MASK ((_AC(1, UL) << OBJ_INDEX_BITS) - 1)
123
Minchan Kima41ec882022-01-21 22:14:04 -0800124#define HUGE_BITS 1
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700125#define FULLNESS_BITS 2
126#define CLASS_BITS 8
127#define ISOLATED_BITS 3
128#define MAGIC_VAL_BITS 8
129
Seth Jennings0959c632012-08-08 15:12:17 +0900130#define MAX(a, b) ((a) >= (b) ? (a) : (b))
131/* ZS_MIN_ALLOC_SIZE must be multiple of ZS_ALIGN */
132#define ZS_MIN_ALLOC_SIZE \
133 MAX(32, (ZS_MAX_PAGES_PER_ZSPAGE << PAGE_SHIFT >> OBJ_INDEX_BITS))
Minchan Kim2e40e162015-04-15 16:15:23 -0700134/* each chunk includes extra space to keep handle */
Minchan Kim7b60a682015-04-15 16:15:39 -0700135#define ZS_MAX_ALLOC_SIZE PAGE_SIZE
Seth Jennings0959c632012-08-08 15:12:17 +0900136
137/*
Weijie Yang7eb52512014-06-04 16:11:08 -0700138 * On systems with 4K page size, this gives 255 size classes! There is a
Seth Jennings0959c632012-08-08 15:12:17 +0900139 * trader-off here:
140 * - Large number of size classes is potentially wasteful as free page are
141 * spread across these classes
142 * - Small number of size classes causes large internal fragmentation
143 * - Probably its better to use specific size classes (empirically
144 * determined). NOTE: all those class sizes must be set as multiple of
145 * ZS_ALIGN to make sure link_free itself never has to span 2 pages.
146 *
147 * ZS_MIN_ALLOC_SIZE and ZS_SIZE_CLASS_DELTA must be multiple of ZS_ALIGN
148 * (reason above)
149 */
Minchan Kim37836892016-07-26 15:23:23 -0700150#define ZS_SIZE_CLASS_DELTA (PAGE_SIZE >> CLASS_BITS)
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700151#define ZS_SIZE_CLASSES (DIV_ROUND_UP(ZS_MAX_ALLOC_SIZE - ZS_MIN_ALLOC_SIZE, \
152 ZS_SIZE_CLASS_DELTA) + 1)
Seth Jennings0959c632012-08-08 15:12:17 +0900153
Seth Jennings0959c632012-08-08 15:12:17 +0900154enum fullness_group {
Seth Jennings0959c632012-08-08 15:12:17 +0900155 ZS_EMPTY,
Minchan Kim48b48002016-07-26 15:23:31 -0700156 ZS_ALMOST_EMPTY,
157 ZS_ALMOST_FULL,
158 ZS_FULL,
159 NR_ZS_FULLNESS,
Seth Jennings0959c632012-08-08 15:12:17 +0900160};
161
Minchan Kim3828a762022-01-21 22:13:54 -0800162enum class_stat_type {
Minchan Kim48b48002016-07-26 15:23:31 -0700163 CLASS_EMPTY,
164 CLASS_ALMOST_EMPTY,
165 CLASS_ALMOST_FULL,
166 CLASS_FULL,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800167 OBJ_ALLOCATED,
168 OBJ_USED,
Minchan Kim48b48002016-07-26 15:23:31 -0700169 NR_ZS_STAT_TYPE,
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800170};
171
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800172struct zs_size_stat {
173 unsigned long objs[NR_ZS_STAT_TYPE];
174};
175
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700176#ifdef CONFIG_ZSMALLOC_STAT
177static struct dentry *zs_stat_root;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800178#endif
179
Minchan Kim48b48002016-07-26 15:23:31 -0700180#ifdef CONFIG_COMPACTION
181static struct vfsmount *zsmalloc_mnt;
182#endif
183
Seth Jennings0959c632012-08-08 15:12:17 +0900184/*
185 * We assign a page to ZS_ALMOST_EMPTY fullness group when:
186 * n <= N / f, where
187 * n = number of allocated objects
188 * N = total number of objects zspage can store
Wang Sheng-Hui6dd97372014-10-09 15:29:59 -0700189 * f = fullness_threshold_frac
Seth Jennings0959c632012-08-08 15:12:17 +0900190 *
191 * Similarly, we assign zspage to:
192 * ZS_ALMOST_FULL when n > N / f
193 * ZS_EMPTY when n == 0
194 * ZS_FULL when n == N
195 *
196 * (see: fix_fullness_group())
197 */
198static const int fullness_threshold_frac = 4;
Sergey Senozhatsky010b4952018-04-05 16:24:43 -0700199static size_t huge_class_size;
Seth Jennings0959c632012-08-08 15:12:17 +0900200
201struct size_class {
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700202 spinlock_t lock;
Minchan Kim48b48002016-07-26 15:23:31 -0700203 struct list_head fullness_list[NR_ZS_FULLNESS];
Seth Jennings0959c632012-08-08 15:12:17 +0900204 /*
205 * Size of objects stored in this class. Must be multiple
206 * of ZS_ALIGN.
207 */
208 int size;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700209 int objs_per_zspage;
Weijie Yang7dfa4612016-01-14 15:22:40 -0800210 /* Number of PAGE_SIZE sized pages to combine to form a 'zspage' */
211 int pages_per_zspage;
Minchan Kim48b48002016-07-26 15:23:31 -0700212
213 unsigned int index;
214 struct zs_size_stat stats;
Seth Jennings0959c632012-08-08 15:12:17 +0900215};
216
217/*
218 * Placed within free objects to form a singly linked list.
Minchan Kim37836892016-07-26 15:23:23 -0700219 * For every zspage, zspage->freeobj gives head of this list.
Seth Jennings0959c632012-08-08 15:12:17 +0900220 *
221 * This must be power of 2 and less than or equal to ZS_ALIGN
222 */
223struct link_free {
Minchan Kim2e40e162015-04-15 16:15:23 -0700224 union {
225 /*
Minchan Kimbfd093f2016-07-26 15:23:28 -0700226 * Free object index;
Minchan Kim2e40e162015-04-15 16:15:23 -0700227 * It's valid for non-allocated object
228 */
Minchan Kimbfd093f2016-07-26 15:23:28 -0700229 unsigned long next;
Minchan Kim2e40e162015-04-15 16:15:23 -0700230 /*
231 * Handle of allocated object.
232 */
233 unsigned long handle;
234 };
Seth Jennings0959c632012-08-08 15:12:17 +0900235};
236
237struct zs_pool {
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800238 const char *name;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800239
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700240 struct size_class *size_class[ZS_SIZE_CLASSES];
Minchan Kim2e40e162015-04-15 16:15:23 -0700241 struct kmem_cache *handle_cachep;
Minchan Kim37836892016-07-26 15:23:23 -0700242 struct kmem_cache *zspage_cachep;
Seth Jennings0959c632012-08-08 15:12:17 +0900243
Minchan Kim13de8932014-10-09 15:29:48 -0700244 atomic_long_t pages_allocated;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800245
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -0700246 struct zs_pool_stats stats;
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -0700247
248 /* Compact classes */
249 struct shrinker shrinker;
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -0800250
Ganesh Mahendran0f050d92015-02-12 15:00:54 -0800251#ifdef CONFIG_ZSMALLOC_STAT
252 struct dentry *stat_dentry;
253#endif
Minchan Kim48b48002016-07-26 15:23:31 -0700254#ifdef CONFIG_COMPACTION
255 struct inode *inode;
256 struct work_struct free_work;
257#endif
Minchan Kimb475d422022-01-21 22:14:13 -0800258 /* protect page/zspage migration */
259 rwlock_t migrate_lock;
Seth Jennings0959c632012-08-08 15:12:17 +0900260};
Nitin Gupta61989a82012-01-09 16:51:56 -0600261
Minchan Kim37836892016-07-26 15:23:23 -0700262struct zspage {
263 struct {
Minchan Kima41ec882022-01-21 22:14:04 -0800264 unsigned int huge:HUGE_BITS;
Minchan Kim37836892016-07-26 15:23:23 -0700265 unsigned int fullness:FULLNESS_BITS;
Minchan Kim85d492f2017-04-13 14:56:40 -0700266 unsigned int class:CLASS_BITS + 1;
Minchan Kim48b48002016-07-26 15:23:31 -0700267 unsigned int isolated:ISOLATED_BITS;
268 unsigned int magic:MAGIC_VAL_BITS;
Minchan Kim37836892016-07-26 15:23:23 -0700269 };
270 unsigned int inuse;
Minchan Kimbfd093f2016-07-26 15:23:28 -0700271 unsigned int freeobj;
Minchan Kim37836892016-07-26 15:23:23 -0700272 struct page *first_page;
273 struct list_head list; /* fullness list */
Minchan Kim48b48002016-07-26 15:23:31 -0700274#ifdef CONFIG_COMPACTION
275 rwlock_t lock;
276#endif
Minchan Kim37836892016-07-26 15:23:23 -0700277};
Nitin Gupta61989a82012-01-09 16:51:56 -0600278
Seth Jenningsf5536462012-07-18 11:55:56 -0500279struct mapping_area {
Mike Galbraitha3726592022-01-21 22:14:17 -0800280 local_lock_t lock;
Seth Jenningsf5536462012-07-18 11:55:56 -0500281 char *vm_buf; /* copy buffer for objects that span pages */
Seth Jenningsf5536462012-07-18 11:55:56 -0500282 char *vm_addr; /* address of kmap_atomic()'ed pages */
283 enum zs_mapmode vm_mm; /* mapping mode */
284};
285
Minchan Kima41ec882022-01-21 22:14:04 -0800286/* huge object: pages_per_zspage == 1 && maxobj_per_zspage == 1 */
287static void SetZsHugePage(struct zspage *zspage)
288{
289 zspage->huge = 1;
290}
291
292static bool ZsHugePage(struct zspage *zspage)
293{
294 return zspage->huge;
295}
296
Minchan Kim48b48002016-07-26 15:23:31 -0700297#ifdef CONFIG_COMPACTION
298static int zs_register_migration(struct zs_pool *pool);
299static void zs_unregister_migration(struct zs_pool *pool);
300static void migrate_lock_init(struct zspage *zspage);
301static void migrate_read_lock(struct zspage *zspage);
302static void migrate_read_unlock(struct zspage *zspage);
Minchan Kimb475d422022-01-21 22:14:13 -0800303static void migrate_write_lock(struct zspage *zspage);
304static void migrate_write_lock_nested(struct zspage *zspage);
305static void migrate_write_unlock(struct zspage *zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700306static void kick_deferred_free(struct zs_pool *pool);
307static void init_deferred_free(struct zs_pool *pool);
308static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage);
309#else
310static int zsmalloc_mount(void) { return 0; }
311static void zsmalloc_unmount(void) {}
312static int zs_register_migration(struct zs_pool *pool) { return 0; }
313static void zs_unregister_migration(struct zs_pool *pool) {}
314static void migrate_lock_init(struct zspage *zspage) {}
315static void migrate_read_lock(struct zspage *zspage) {}
316static void migrate_read_unlock(struct zspage *zspage) {}
Minchan Kimb475d422022-01-21 22:14:13 -0800317static void migrate_write_lock(struct zspage *zspage) {}
318static void migrate_write_lock_nested(struct zspage *zspage) {}
319static void migrate_write_unlock(struct zspage *zspage) {}
Minchan Kim48b48002016-07-26 15:23:31 -0700320static void kick_deferred_free(struct zs_pool *pool) {}
321static void init_deferred_free(struct zs_pool *pool) {}
322static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage) {}
323#endif
324
Minchan Kim37836892016-07-26 15:23:23 -0700325static int create_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700326{
327 pool->handle_cachep = kmem_cache_create("zs_handle", ZS_HANDLE_SIZE,
328 0, 0, NULL);
Minchan Kim37836892016-07-26 15:23:23 -0700329 if (!pool->handle_cachep)
330 return 1;
331
332 pool->zspage_cachep = kmem_cache_create("zspage", sizeof(struct zspage),
333 0, 0, NULL);
334 if (!pool->zspage_cachep) {
335 kmem_cache_destroy(pool->handle_cachep);
336 pool->handle_cachep = NULL;
337 return 1;
338 }
339
340 return 0;
Minchan Kim2e40e162015-04-15 16:15:23 -0700341}
342
Minchan Kim37836892016-07-26 15:23:23 -0700343static void destroy_cache(struct zs_pool *pool)
Minchan Kim2e40e162015-04-15 16:15:23 -0700344{
Sergey Senozhatskycd10add2015-09-08 15:04:55 -0700345 kmem_cache_destroy(pool->handle_cachep);
Minchan Kim37836892016-07-26 15:23:23 -0700346 kmem_cache_destroy(pool->zspage_cachep);
Minchan Kim2e40e162015-04-15 16:15:23 -0700347}
348
Minchan Kim37836892016-07-26 15:23:23 -0700349static unsigned long cache_alloc_handle(struct zs_pool *pool, gfp_t gfp)
Minchan Kim2e40e162015-04-15 16:15:23 -0700350{
351 return (unsigned long)kmem_cache_alloc(pool->handle_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700352 gfp & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Minchan Kim2e40e162015-04-15 16:15:23 -0700353}
354
Minchan Kim37836892016-07-26 15:23:23 -0700355static void cache_free_handle(struct zs_pool *pool, unsigned long handle)
Minchan Kim2e40e162015-04-15 16:15:23 -0700356{
357 kmem_cache_free(pool->handle_cachep, (void *)handle);
358}
359
Minchan Kim37836892016-07-26 15:23:23 -0700360static struct zspage *cache_alloc_zspage(struct zs_pool *pool, gfp_t flags)
361{
Miaohe Linf0231302021-02-25 17:18:27 -0800362 return kmem_cache_zalloc(pool->zspage_cachep,
Minchan Kim48b48002016-07-26 15:23:31 -0700363 flags & ~(__GFP_HIGHMEM|__GFP_MOVABLE));
Xishi Qiu399d8ee2017-02-22 15:45:01 -0800364}
Minchan Kim37836892016-07-26 15:23:23 -0700365
366static void cache_free_zspage(struct zs_pool *pool, struct zspage *zspage)
367{
368 kmem_cache_free(pool->zspage_cachep, zspage);
369}
370
Minchan Kimb475d422022-01-21 22:14:13 -0800371/* class->lock(which owns the handle) synchronizes races */
Minchan Kim2e40e162015-04-15 16:15:23 -0700372static void record_obj(unsigned long handle, unsigned long obj)
373{
Minchan Kimb475d422022-01-21 22:14:13 -0800374 *(unsigned long *)handle = obj;
Minchan Kim2e40e162015-04-15 16:15:23 -0700375}
376
Dan Streetmanc7957792014-08-06 16:08:38 -0700377/* zpool driver */
378
379#ifdef CONFIG_ZPOOL
380
Sergey SENOZHATSKY6f3526d2015-11-06 16:29:21 -0800381static void *zs_zpool_create(const char *name, gfp_t gfp,
Krzysztof Kozlowski78672772015-09-08 15:05:03 -0700382 const struct zpool_ops *zpool_ops,
Dan Streetman479305f2015-06-25 15:00:40 -0700383 struct zpool *zpool)
Dan Streetmanc7957792014-08-06 16:08:38 -0700384{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700385 /*
386 * Ignore global gfp flags: zs_malloc() may be invoked from
387 * different contexts and its caller must provide a valid
388 * gfp mask.
389 */
390 return zs_create_pool(name);
Dan Streetmanc7957792014-08-06 16:08:38 -0700391}
392
393static void zs_zpool_destroy(void *pool)
394{
395 zs_destroy_pool(pool);
396}
397
398static int zs_zpool_malloc(void *pool, size_t size, gfp_t gfp,
399 unsigned long *handle)
400{
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -0700401 *handle = zs_malloc(pool, size, gfp);
Dan Streetmanc7957792014-08-06 16:08:38 -0700402 return *handle ? 0 : -1;
403}
404static void zs_zpool_free(void *pool, unsigned long handle)
405{
406 zs_free(pool, handle);
407}
408
Dan Streetmanc7957792014-08-06 16:08:38 -0700409static void *zs_zpool_map(void *pool, unsigned long handle,
410 enum zpool_mapmode mm)
411{
412 enum zs_mapmode zs_mm;
413
414 switch (mm) {
415 case ZPOOL_MM_RO:
416 zs_mm = ZS_MM_RO;
417 break;
418 case ZPOOL_MM_WO:
419 zs_mm = ZS_MM_WO;
420 break;
Joe Perchese4a9bc52020-04-06 20:08:39 -0700421 case ZPOOL_MM_RW:
Dan Streetmanc7957792014-08-06 16:08:38 -0700422 default:
423 zs_mm = ZS_MM_RW;
424 break;
425 }
426
427 return zs_map_object(pool, handle, zs_mm);
428}
429static void zs_zpool_unmap(void *pool, unsigned long handle)
430{
431 zs_unmap_object(pool, handle);
432}
433
434static u64 zs_zpool_total_size(void *pool)
435{
Minchan Kim722cdc12014-10-09 15:29:50 -0700436 return zs_get_total_pages(pool) << PAGE_SHIFT;
Dan Streetmanc7957792014-08-06 16:08:38 -0700437}
438
439static struct zpool_driver zs_zpool_driver = {
Hui Zhuc165f252019-09-23 15:39:37 -0700440 .type = "zsmalloc",
441 .owner = THIS_MODULE,
442 .create = zs_zpool_create,
443 .destroy = zs_zpool_destroy,
444 .malloc_support_movable = true,
445 .malloc = zs_zpool_malloc,
446 .free = zs_zpool_free,
447 .map = zs_zpool_map,
448 .unmap = zs_zpool_unmap,
449 .total_size = zs_zpool_total_size,
Dan Streetmanc7957792014-08-06 16:08:38 -0700450};
451
Kees Cook137f8cf2014-08-29 15:18:40 -0700452MODULE_ALIAS("zpool-zsmalloc");
Dan Streetmanc7957792014-08-06 16:08:38 -0700453#endif /* CONFIG_ZPOOL */
454
Nitin Gupta61989a82012-01-09 16:51:56 -0600455/* per-cpu VM mapping areas for zspage accesses that cross page boundaries */
Mike Galbraitha3726592022-01-21 22:14:17 -0800456static DEFINE_PER_CPU(struct mapping_area, zs_map_area) = {
457 .lock = INIT_LOCAL_LOCK(lock),
458};
Nitin Gupta61989a82012-01-09 16:51:56 -0600459
Nick Desaulniers3457f412017-07-10 15:47:26 -0700460static __maybe_unused int is_first_page(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600461{
Minchan Kima27545bf2012-04-25 15:23:09 +0900462 return PagePrivate(page);
Nitin Gupta61989a82012-01-09 16:51:56 -0600463}
464
Minchan Kim48b48002016-07-26 15:23:31 -0700465/* Protected by class->lock */
Minchan Kim37836892016-07-26 15:23:23 -0700466static inline int get_zspage_inuse(struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600467{
Minchan Kim37836892016-07-26 15:23:23 -0700468 return zspage->inuse;
Nitin Gupta61989a82012-01-09 16:51:56 -0600469}
470
Minchan Kim4f420472016-07-26 15:23:17 -0700471
Minchan Kim37836892016-07-26 15:23:23 -0700472static inline void mod_zspage_inuse(struct zspage *zspage, int val)
Minchan Kim4f420472016-07-26 15:23:17 -0700473{
Minchan Kim37836892016-07-26 15:23:23 -0700474 zspage->inuse += val;
Minchan Kim4f420472016-07-26 15:23:17 -0700475}
476
Minchan Kim48b48002016-07-26 15:23:31 -0700477static inline struct page *get_first_page(struct zspage *zspage)
478{
479 struct page *first_page = zspage->first_page;
480
481 VM_BUG_ON_PAGE(!is_first_page(first_page), first_page);
482 return first_page;
483}
484
Minchan Kim4f420472016-07-26 15:23:17 -0700485static inline int get_first_obj_offset(struct page *page)
486{
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100487 return page->page_type;
Minchan Kim4f420472016-07-26 15:23:17 -0700488}
489
490static inline void set_first_obj_offset(struct page *page, int offset)
491{
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100492 page->page_type = offset;
Minchan Kim4f420472016-07-26 15:23:17 -0700493}
494
Minchan Kimbfd093f2016-07-26 15:23:28 -0700495static inline unsigned int get_freeobj(struct zspage *zspage)
Minchan Kim4f420472016-07-26 15:23:17 -0700496{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700497 return zspage->freeobj;
Minchan Kim4f420472016-07-26 15:23:17 -0700498}
499
Minchan Kimbfd093f2016-07-26 15:23:28 -0700500static inline void set_freeobj(struct zspage *zspage, unsigned int obj)
Minchan Kim4f420472016-07-26 15:23:17 -0700501{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700502 zspage->freeobj = obj;
Minchan Kim4f420472016-07-26 15:23:17 -0700503}
504
Minchan Kim37836892016-07-26 15:23:23 -0700505static void get_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700506 unsigned int *class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600507 enum fullness_group *fullness)
508{
Minchan Kim48b48002016-07-26 15:23:31 -0700509 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
510
Minchan Kim37836892016-07-26 15:23:23 -0700511 *fullness = zspage->fullness;
512 *class_idx = zspage->class;
Nitin Gupta61989a82012-01-09 16:51:56 -0600513}
514
Minchan Kim67f1c9c2022-01-21 22:13:51 -0800515static struct size_class *zspage_class(struct zs_pool *pool,
516 struct zspage *zspage)
517{
518 return pool->size_class[zspage->class];
519}
520
Minchan Kim37836892016-07-26 15:23:23 -0700521static void set_zspage_mapping(struct zspage *zspage,
Minchan Kima4209462016-05-20 16:59:36 -0700522 unsigned int class_idx,
Nitin Gupta61989a82012-01-09 16:51:56 -0600523 enum fullness_group fullness)
524{
Minchan Kim37836892016-07-26 15:23:23 -0700525 zspage->class = class_idx;
526 zspage->fullness = fullness;
Nitin Gupta61989a82012-01-09 16:51:56 -0600527}
528
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900529/*
530 * zsmalloc divides the pool into various size classes where each
531 * class maintains a list of zspages where each zspage is divided
532 * into equal sized chunks. Each allocation falls into one of these
533 * classes depending on its size. This function returns index of the
Shijie Luocb152a12021-05-06 18:05:51 -0700534 * size class which has chunk size big enough to hold the given size.
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900535 */
Nitin Gupta61989a82012-01-09 16:51:56 -0600536static int get_size_class_index(int size)
537{
538 int idx = 0;
539
540 if (likely(size > ZS_MIN_ALLOC_SIZE))
541 idx = DIV_ROUND_UP(size - ZS_MIN_ALLOC_SIZE,
542 ZS_SIZE_CLASS_DELTA);
543
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700544 return min_t(int, ZS_SIZE_CLASSES - 1, idx);
Nitin Gupta61989a82012-01-09 16:51:56 -0600545}
546
Minchan Kim3828a762022-01-21 22:13:54 -0800547/* type can be of enum type class_stat_type or fullness_group */
548static inline void class_stat_inc(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700549 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700550{
Minchan Kim48b48002016-07-26 15:23:31 -0700551 class->stats.objs[type] += cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700552}
553
Minchan Kim3828a762022-01-21 22:13:54 -0800554/* type can be of enum type class_stat_type or fullness_group */
555static inline void class_stat_dec(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700556 int type, unsigned long cnt)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700557{
Minchan Kim48b48002016-07-26 15:23:31 -0700558 class->stats.objs[type] -= cnt;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700559}
560
Minchan Kim3828a762022-01-21 22:13:54 -0800561/* type can be of enum type class_stat_type or fullness_group */
Minchan Kim248ca1b2015-04-15 16:15:42 -0700562static inline unsigned long zs_stat_get(struct size_class *class,
Matthias Kaehlcke3eb95fe2017-09-08 16:13:02 -0700563 int type)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700564{
Minchan Kim48b48002016-07-26 15:23:31 -0700565 return class->stats.objs[type];
Minchan Kim248ca1b2015-04-15 16:15:42 -0700566}
567
Sergey Senozhatsky57244592015-09-08 15:04:27 -0700568#ifdef CONFIG_ZSMALLOC_STAT
569
Dan Streetman4abaac92016-05-26 15:16:27 -0700570static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700571{
Dan Streetman4abaac92016-05-26 15:16:27 -0700572 if (!debugfs_initialized()) {
573 pr_warn("debugfs not available, stat dir not created\n");
574 return;
575 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700576
577 zs_stat_root = debugfs_create_dir("zsmalloc", NULL);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700578}
579
580static void __exit zs_stat_exit(void)
581{
582 debugfs_remove_recursive(zs_stat_root);
583}
584
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700585static unsigned long zs_can_compact(struct size_class *class);
586
Minchan Kim248ca1b2015-04-15 16:15:42 -0700587static int zs_stats_size_show(struct seq_file *s, void *v)
588{
589 int i;
590 struct zs_pool *pool = s->private;
591 struct size_class *class;
592 int objs_per_zspage;
593 unsigned long class_almost_full, class_almost_empty;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700594 unsigned long obj_allocated, obj_used, pages_used, freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700595 unsigned long total_class_almost_full = 0, total_class_almost_empty = 0;
596 unsigned long total_objs = 0, total_used_objs = 0, total_pages = 0;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700597 unsigned long total_freeable = 0;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700598
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700599 seq_printf(s, " %5s %5s %11s %12s %13s %10s %10s %16s %8s\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700600 "class", "size", "almost_full", "almost_empty",
601 "obj_allocated", "obj_used", "pages_used",
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700602 "pages_per_zspage", "freeable");
Minchan Kim248ca1b2015-04-15 16:15:42 -0700603
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -0700604 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim248ca1b2015-04-15 16:15:42 -0700605 class = pool->size_class[i];
606
607 if (class->index != i)
608 continue;
609
610 spin_lock(&class->lock);
611 class_almost_full = zs_stat_get(class, CLASS_ALMOST_FULL);
612 class_almost_empty = zs_stat_get(class, CLASS_ALMOST_EMPTY);
613 obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
614 obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700615 freeable = zs_can_compact(class);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700616 spin_unlock(&class->lock);
617
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -0700618 objs_per_zspage = class->objs_per_zspage;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700619 pages_used = obj_allocated / objs_per_zspage *
620 class->pages_per_zspage;
621
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700622 seq_printf(s, " %5u %5u %11lu %12lu %13lu"
623 " %10lu %10lu %16d %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700624 i, class->size, class_almost_full, class_almost_empty,
625 obj_allocated, obj_used, pages_used,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700626 class->pages_per_zspage, freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700627
628 total_class_almost_full += class_almost_full;
629 total_class_almost_empty += class_almost_empty;
630 total_objs += obj_allocated;
631 total_used_objs += obj_used;
632 total_pages += pages_used;
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700633 total_freeable += freeable;
Minchan Kim248ca1b2015-04-15 16:15:42 -0700634 }
635
636 seq_puts(s, "\n");
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700637 seq_printf(s, " %5s %5s %11lu %12lu %13lu %10lu %10lu %16s %8lu\n",
Minchan Kim248ca1b2015-04-15 16:15:42 -0700638 "Total", "", total_class_almost_full,
639 total_class_almost_empty, total_objs,
Sergey Senozhatsky1120ed52016-03-17 14:20:42 -0700640 total_used_objs, total_pages, "", total_freeable);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700641
642 return 0;
643}
Andy Shevchenko5ad35092018-04-05 16:23:16 -0700644DEFINE_SHOW_ATTRIBUTE(zs_stats_size);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700645
Dan Streetmand34f6152016-05-20 16:59:56 -0700646static void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700647{
Dan Streetman4abaac92016-05-26 15:16:27 -0700648 if (!zs_stat_root) {
649 pr_warn("no root stat dir, not creating <%s> stat dir\n", name);
Dan Streetmand34f6152016-05-20 16:59:56 -0700650 return;
Dan Streetman4abaac92016-05-26 15:16:27 -0700651 }
Minchan Kim248ca1b2015-04-15 16:15:42 -0700652
Greg Kroah-Hartman42685092019-01-22 16:21:09 +0100653 pool->stat_dentry = debugfs_create_dir(name, zs_stat_root);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700654
Greg Kroah-Hartman42685092019-01-22 16:21:09 +0100655 debugfs_create_file("classes", S_IFREG | 0444, pool->stat_dentry, pool,
656 &zs_stats_size_fops);
Minchan Kim248ca1b2015-04-15 16:15:42 -0700657}
658
659static void zs_pool_stat_destroy(struct zs_pool *pool)
660{
661 debugfs_remove_recursive(pool->stat_dentry);
662}
663
664#else /* CONFIG_ZSMALLOC_STAT */
Dan Streetman4abaac92016-05-26 15:16:27 -0700665static void __init zs_stat_init(void)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700666{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700667}
668
669static void __exit zs_stat_exit(void)
670{
671}
672
Dan Streetmand34f6152016-05-20 16:59:56 -0700673static inline void zs_pool_stat_create(struct zs_pool *pool, const char *name)
Minchan Kim248ca1b2015-04-15 16:15:42 -0700674{
Minchan Kim248ca1b2015-04-15 16:15:42 -0700675}
676
677static inline void zs_pool_stat_destroy(struct zs_pool *pool)
678{
679}
Minchan Kim248ca1b2015-04-15 16:15:42 -0700680#endif
681
Minchan Kim48b48002016-07-26 15:23:31 -0700682
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900683/*
684 * For each size class, zspages are divided into different groups
685 * depending on how "full" they are. This was done so that we could
686 * easily find empty or nearly empty zspages when we try to shrink
687 * the pool (not yet implemented). This function returns fullness
688 * status of the given page.
689 */
Minchan Kim1fc6e272016-07-26 15:23:11 -0700690static enum fullness_group get_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700691 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600692{
Minchan Kim1fc6e272016-07-26 15:23:11 -0700693 int inuse, objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600694 enum fullness_group fg;
Minchan Kim830e4bc2016-05-20 16:59:39 -0700695
Minchan Kim37836892016-07-26 15:23:23 -0700696 inuse = get_zspage_inuse(zspage);
Minchan Kim1fc6e272016-07-26 15:23:11 -0700697 objs_per_zspage = class->objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600698
699 if (inuse == 0)
700 fg = ZS_EMPTY;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700701 else if (inuse == objs_per_zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600702 fg = ZS_FULL;
Minchan Kim1fc6e272016-07-26 15:23:11 -0700703 else if (inuse <= 3 * objs_per_zspage / fullness_threshold_frac)
Nitin Gupta61989a82012-01-09 16:51:56 -0600704 fg = ZS_ALMOST_EMPTY;
705 else
706 fg = ZS_ALMOST_FULL;
707
708 return fg;
709}
710
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900711/*
712 * Each size class maintains various freelists and zspages are assigned
713 * to one of these freelists based on the number of live objects they
714 * have. This functions inserts the given zspage into the freelist
715 * identified by <class, fullness_group>.
716 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700717static void insert_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700718 struct zspage *zspage,
719 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600720{
Minchan Kim37836892016-07-26 15:23:23 -0700721 struct zspage *head;
Nitin Gupta61989a82012-01-09 16:51:56 -0600722
Minchan Kim3828a762022-01-21 22:13:54 -0800723 class_stat_inc(class, fullness, 1);
Minchan Kim37836892016-07-26 15:23:23 -0700724 head = list_first_entry_or_null(&class->fullness_list[fullness],
725 struct zspage, list);
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700726 /*
Minchan Kim37836892016-07-26 15:23:23 -0700727 * We want to see more ZS_FULL pages and less almost empty/full.
728 * Put pages with higher ->inuse first.
Sergey Senozhatsky58f17112015-09-08 15:04:44 -0700729 */
Miaohe Lin110ceb82020-12-14 19:14:22 -0800730 if (head && get_zspage_inuse(zspage) < get_zspage_inuse(head))
731 list_add(&zspage->list, &head->list);
732 else
733 list_add(&zspage->list, &class->fullness_list[fullness]);
Nitin Gupta61989a82012-01-09 16:51:56 -0600734}
735
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900736/*
737 * This function removes the given zspage from the freelist identified
738 * by <class, fullness_group>.
739 */
Minchan Kim251cbb92016-05-20 16:59:42 -0700740static void remove_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700741 struct zspage *zspage,
742 enum fullness_group fullness)
Nitin Gupta61989a82012-01-09 16:51:56 -0600743{
Minchan Kim37836892016-07-26 15:23:23 -0700744 VM_BUG_ON(list_empty(&class->fullness_list[fullness]));
Nitin Gupta61989a82012-01-09 16:51:56 -0600745
Minchan Kim37836892016-07-26 15:23:23 -0700746 list_del_init(&zspage->list);
Minchan Kim3828a762022-01-21 22:13:54 -0800747 class_stat_dec(class, fullness, 1);
Nitin Gupta61989a82012-01-09 16:51:56 -0600748}
749
Nitin Cuptac3e3e882013-12-11 11:04:37 +0900750/*
751 * Each size class maintains zspages in different fullness groups depending
752 * on the number of live objects they contain. When allocating or freeing
753 * objects, the fullness status of the page can change, say, from ALMOST_FULL
754 * to ALMOST_EMPTY when freeing an object. This function checks if such
755 * a status change has occurred for the given page and accordingly moves the
756 * page from the freelist of the old fullness group to that of the new
757 * fullness group.
758 */
Minchan Kimc7806262015-04-15 16:15:26 -0700759static enum fullness_group fix_fullness_group(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -0700760 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600761{
762 int class_idx;
Nitin Gupta61989a82012-01-09 16:51:56 -0600763 enum fullness_group currfg, newfg;
764
Minchan Kim37836892016-07-26 15:23:23 -0700765 get_zspage_mapping(zspage, &class_idx, &currfg);
766 newfg = get_fullness_group(class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600767 if (newfg == currfg)
768 goto out;
769
Minchan Kimc4549b82022-01-21 22:14:07 -0800770 remove_zspage(class, zspage, currfg);
771 insert_zspage(class, zspage, newfg);
Minchan Kim37836892016-07-26 15:23:23 -0700772 set_zspage_mapping(zspage, class_idx, newfg);
Nitin Gupta61989a82012-01-09 16:51:56 -0600773out:
774 return newfg;
775}
776
777/*
778 * We have to decide on how many pages to link together
779 * to form a zspage for each size class. This is important
780 * to reduce wastage due to unusable space left at end of
781 * each zspage which is given as:
Yinghao Xie888fa3742015-04-15 16:15:49 -0700782 * wastage = Zp % class_size
783 * usage = Zp - wastage
Nitin Gupta61989a82012-01-09 16:51:56 -0600784 * where Zp = zspage size = k * PAGE_SIZE where k = 1, 2, ...
785 *
786 * For example, for size class of 3/8 * PAGE_SIZE, we should
787 * link together 3 PAGE_SIZE sized pages to form a zspage
788 * since then we can perfectly fit in 8 such objects.
789 */
Minchan Kim2e3b61542012-05-03 15:40:39 +0900790static int get_pages_per_zspage(int class_size)
Nitin Gupta61989a82012-01-09 16:51:56 -0600791{
792 int i, max_usedpc = 0;
793 /* zspage order which gives maximum used size per KB */
794 int max_usedpc_order = 1;
795
Seth Jennings84d4faa2012-03-05 11:33:21 -0600796 for (i = 1; i <= ZS_MAX_PAGES_PER_ZSPAGE; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -0600797 int zspage_size;
798 int waste, usedpc;
799
800 zspage_size = i * PAGE_SIZE;
801 waste = zspage_size % class_size;
802 usedpc = (zspage_size - waste) * 100 / zspage_size;
803
804 if (usedpc > max_usedpc) {
805 max_usedpc = usedpc;
806 max_usedpc_order = i;
807 }
808 }
809
810 return max_usedpc_order;
811}
812
Minchan Kim37836892016-07-26 15:23:23 -0700813static struct zspage *get_zspage(struct page *page)
Nitin Gupta61989a82012-01-09 16:51:56 -0600814{
Miaohe Lina6c5e0f2021-02-25 17:18:34 -0800815 struct zspage *zspage = (struct zspage *)page_private(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700816
817 BUG_ON(zspage->magic != ZSPAGE_MAGIC);
818 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -0600819}
820
821static struct page *get_next_page(struct page *page)
822{
Minchan Kima41ec882022-01-21 22:14:04 -0800823 struct zspage *zspage = get_zspage(page);
824
825 if (unlikely(ZsHugePage(zspage)))
Minchan Kim48b48002016-07-26 15:23:31 -0700826 return NULL;
827
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100828 return (struct page *)page->index;
Nitin Gupta61989a82012-01-09 16:51:56 -0600829}
830
Minchan Kimbfd093f2016-07-26 15:23:28 -0700831/**
832 * obj_to_location - get (<page>, <obj_idx>) from encoded object value
Mike Rapoporte8b098f2018-04-05 16:24:57 -0700833 * @obj: the encoded object value
Minchan Kimbfd093f2016-07-26 15:23:28 -0700834 * @page: page object resides in zspage
835 * @obj_idx: object index
Olav Haugan67296872013-11-22 09:30:41 -0800836 */
Minchan Kim312fcae2015-04-15 16:15:30 -0700837static void obj_to_location(unsigned long obj, struct page **page,
Minchan Kimbfd093f2016-07-26 15:23:28 -0700838 unsigned int *obj_idx)
Nitin Gupta61989a82012-01-09 16:51:56 -0600839{
Minchan Kim312fcae2015-04-15 16:15:30 -0700840 obj >>= OBJ_TAG_BITS;
841 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
842 *obj_idx = (obj & OBJ_INDEX_MASK);
Nitin Gupta61989a82012-01-09 16:51:56 -0600843}
844
Minchan Kim67f1c9c2022-01-21 22:13:51 -0800845static void obj_to_page(unsigned long obj, struct page **page)
846{
847 obj >>= OBJ_TAG_BITS;
848 *page = pfn_to_page(obj >> OBJ_INDEX_BITS);
849}
850
Minchan Kimbfd093f2016-07-26 15:23:28 -0700851/**
852 * location_to_obj - get obj value encoded from (<page>, <obj_idx>)
853 * @page: page object resides in zspage
854 * @obj_idx: object index
855 */
856static unsigned long location_to_obj(struct page *page, unsigned int obj_idx)
857{
858 unsigned long obj;
859
860 obj = page_to_pfn(page) << OBJ_INDEX_BITS;
861 obj |= obj_idx & OBJ_INDEX_MASK;
862 obj <<= OBJ_TAG_BITS;
863
864 return obj;
865}
866
Minchan Kim2e40e162015-04-15 16:15:23 -0700867static unsigned long handle_to_obj(unsigned long handle)
868{
869 return *(unsigned long *)handle;
870}
871
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800872static bool obj_allocated(struct page *page, void *obj, unsigned long *phandle)
Minchan Kim312fcae2015-04-15 16:15:30 -0700873{
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800874 unsigned long handle;
Minchan Kima41ec882022-01-21 22:14:04 -0800875 struct zspage *zspage = get_zspage(page);
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800876
Minchan Kima41ec882022-01-21 22:14:04 -0800877 if (unlikely(ZsHugePage(zspage))) {
Minchan Kim830e4bc2016-05-20 16:59:39 -0700878 VM_BUG_ON_PAGE(!is_first_page(page), page);
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800879 handle = page->index;
Minchan Kim7b60a682015-04-15 16:15:39 -0700880 } else
Minchan Kim3ae92ac2022-01-21 22:14:01 -0800881 handle = *(unsigned long *)obj;
882
883 if (!(handle & OBJ_ALLOCATED_TAG))
884 return false;
885
886 *phandle = handle & ~OBJ_ALLOCATED_TAG;
887 return true;
Minchan Kim312fcae2015-04-15 16:15:30 -0700888}
889
Nitin Guptaf4477e92012-04-02 09:13:56 -0500890static void reset_page(struct page *page)
891{
Minchan Kim48b48002016-07-26 15:23:31 -0700892 __ClearPageMovable(page);
Ganesh Mahendran18fd06b2016-07-28 15:48:00 -0700893 ClearPagePrivate(page);
Nitin Guptaf4477e92012-04-02 09:13:56 -0500894 set_page_private(page, 0);
Minchan Kim48b48002016-07-26 15:23:31 -0700895 page_mapcount_reset(page);
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +0100896 page->index = 0;
Nitin Guptaf4477e92012-04-02 09:13:56 -0500897}
898
Colin Ian King4d0a5402018-08-17 15:46:50 -0700899static int trylock_zspage(struct zspage *zspage)
Minchan Kim48b48002016-07-26 15:23:31 -0700900{
901 struct page *cursor, *fail;
902
903 for (cursor = get_first_page(zspage); cursor != NULL; cursor =
904 get_next_page(cursor)) {
905 if (!trylock_page(cursor)) {
906 fail = cursor;
907 goto unlock;
908 }
909 }
910
911 return 1;
912unlock:
913 for (cursor = get_first_page(zspage); cursor != fail; cursor =
914 get_next_page(cursor))
915 unlock_page(cursor);
916
917 return 0;
918}
919
920static void __free_zspage(struct zs_pool *pool, struct size_class *class,
921 struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600922{
Minchan Kim37836892016-07-26 15:23:23 -0700923 struct page *page, *next;
Minchan Kim48b48002016-07-26 15:23:31 -0700924 enum fullness_group fg;
925 unsigned int class_idx;
926
927 get_zspage_mapping(zspage, &class_idx, &fg);
928
929 assert_spin_locked(&class->lock);
Nitin Gupta61989a82012-01-09 16:51:56 -0600930
Minchan Kim37836892016-07-26 15:23:23 -0700931 VM_BUG_ON(get_zspage_inuse(zspage));
Minchan Kim48b48002016-07-26 15:23:31 -0700932 VM_BUG_ON(fg != ZS_EMPTY);
Nitin Gupta61989a82012-01-09 16:51:56 -0600933
Minchan Kim48b48002016-07-26 15:23:31 -0700934 next = page = get_first_page(zspage);
Minchan Kim37836892016-07-26 15:23:23 -0700935 do {
Minchan Kim48b48002016-07-26 15:23:31 -0700936 VM_BUG_ON_PAGE(!PageLocked(page), page);
937 next = get_next_page(page);
Minchan Kim37836892016-07-26 15:23:23 -0700938 reset_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -0700939 unlock_page(page);
Minchan Kim91537fe2016-07-26 15:24:45 -0700940 dec_zone_page_state(page, NR_ZSPAGES);
Minchan Kim37836892016-07-26 15:23:23 -0700941 put_page(page);
942 page = next;
943 } while (page != NULL);
Nitin Gupta61989a82012-01-09 16:51:56 -0600944
Minchan Kim37836892016-07-26 15:23:23 -0700945 cache_free_zspage(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700946
Minchan Kim3828a762022-01-21 22:13:54 -0800947 class_stat_dec(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -0700948 atomic_long_sub(class->pages_per_zspage,
949 &pool->pages_allocated);
950}
951
952static void free_zspage(struct zs_pool *pool, struct size_class *class,
953 struct zspage *zspage)
954{
955 VM_BUG_ON(get_zspage_inuse(zspage));
956 VM_BUG_ON(list_empty(&zspage->list));
957
Minchan Kimb475d422022-01-21 22:14:13 -0800958 /*
959 * Since zs_free couldn't be sleepable, this function cannot call
960 * lock_page. The page locks trylock_zspage got will be released
961 * by __free_zspage.
962 */
Minchan Kim48b48002016-07-26 15:23:31 -0700963 if (!trylock_zspage(zspage)) {
964 kick_deferred_free(pool);
965 return;
966 }
967
968 remove_zspage(class, zspage, ZS_EMPTY);
969 __free_zspage(pool, class, zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -0600970}
971
972/* Initialize a newly allocated zspage */
Minchan Kim37836892016-07-26 15:23:23 -0700973static void init_zspage(struct size_class *class, struct zspage *zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -0600974{
Minchan Kimbfd093f2016-07-26 15:23:28 -0700975 unsigned int freeobj = 1;
Nitin Gupta61989a82012-01-09 16:51:56 -0600976 unsigned long off = 0;
Minchan Kim48b48002016-07-26 15:23:31 -0700977 struct page *page = get_first_page(zspage);
Minchan Kim830e4bc2016-05-20 16:59:39 -0700978
Nitin Gupta61989a82012-01-09 16:51:56 -0600979 while (page) {
980 struct page *next_page;
981 struct link_free *link;
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800982 void *vaddr;
Nitin Gupta61989a82012-01-09 16:51:56 -0600983
Minchan Kim37836892016-07-26 15:23:23 -0700984 set_first_obj_offset(page, off);
Nitin Gupta61989a82012-01-09 16:51:56 -0600985
Minchan Kimaf4ee5e2014-12-12 16:56:58 -0800986 vaddr = kmap_atomic(page);
987 link = (struct link_free *)vaddr + off / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600988
Dan Streetman5538c562014-10-09 15:30:01 -0700989 while ((off += class->size) < PAGE_SIZE) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -0700990 link->next = freeobj++ << OBJ_TAG_BITS;
Dan Streetman5538c562014-10-09 15:30:01 -0700991 link += class->size / sizeof(*link);
Nitin Gupta61989a82012-01-09 16:51:56 -0600992 }
993
994 /*
995 * We now come to the last (full or partial) object on this
996 * page, which must point to the first object on the next
997 * page (if present)
998 */
999 next_page = get_next_page(page);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001000 if (next_page) {
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001001 link->next = freeobj++ << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001002 } else {
1003 /*
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001004 * Reset OBJ_TAG_BITS bit to last link to tell
Minchan Kimbfd093f2016-07-26 15:23:28 -07001005 * whether it's allocated object or not.
1006 */
Nick Desaulniers01a6ad92018-01-31 16:20:15 -08001007 link->next = -1UL << OBJ_TAG_BITS;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001008 }
Minchan Kimaf4ee5e2014-12-12 16:56:58 -08001009 kunmap_atomic(vaddr);
Nitin Gupta61989a82012-01-09 16:51:56 -06001010 page = next_page;
Dan Streetman5538c562014-10-09 15:30:01 -07001011 off %= PAGE_SIZE;
Nitin Gupta61989a82012-01-09 16:51:56 -06001012 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001013
Minchan Kimbfd093f2016-07-26 15:23:28 -07001014 set_freeobj(zspage, 0);
Nitin Gupta61989a82012-01-09 16:51:56 -06001015}
1016
Minchan Kim48b48002016-07-26 15:23:31 -07001017static void create_page_chain(struct size_class *class, struct zspage *zspage,
1018 struct page *pages[])
Nitin Gupta61989a82012-01-09 16:51:56 -06001019{
Minchan Kimbdb0af72016-07-26 15:23:20 -07001020 int i;
1021 struct page *page;
1022 struct page *prev_page = NULL;
Minchan Kim48b48002016-07-26 15:23:31 -07001023 int nr_pages = class->pages_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001024
1025 /*
1026 * Allocate individual pages and link them together as:
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +01001027 * 1. all pages are linked together using page->index
Minchan Kim37836892016-07-26 15:23:23 -07001028 * 2. each sub-page point to zspage using page->private
Nitin Gupta61989a82012-01-09 16:51:56 -06001029 *
Minchan Kim37836892016-07-26 15:23:23 -07001030 * we set PG_private to identify the first page (i.e. no other sub-page
Yisheng Xie22c5cef2017-02-24 14:59:42 -08001031 * has this flag set).
Nitin Gupta61989a82012-01-09 16:51:56 -06001032 */
Minchan Kimbdb0af72016-07-26 15:23:20 -07001033 for (i = 0; i < nr_pages; i++) {
1034 page = pages[i];
Minchan Kim37836892016-07-26 15:23:23 -07001035 set_page_private(page, (unsigned long)zspage);
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +01001036 page->index = 0;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001037 if (i == 0) {
Minchan Kim37836892016-07-26 15:23:23 -07001038 zspage->first_page = page;
Minchan Kima27545bf2012-04-25 15:23:09 +09001039 SetPagePrivate(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001040 if (unlikely(class->objs_per_zspage == 1 &&
1041 class->pages_per_zspage == 1))
Minchan Kima41ec882022-01-21 22:14:04 -08001042 SetZsHugePage(zspage);
Minchan Kim37836892016-07-26 15:23:23 -07001043 } else {
Matthew Wilcox (Oracle)ffedd092021-10-04 14:46:47 +01001044 prev_page->index = (unsigned long)page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001045 }
Nitin Gupta61989a82012-01-09 16:51:56 -06001046 prev_page = page;
1047 }
Minchan Kimbdb0af72016-07-26 15:23:20 -07001048}
Nitin Gupta61989a82012-01-09 16:51:56 -06001049
Minchan Kimbdb0af72016-07-26 15:23:20 -07001050/*
1051 * Allocate a zspage for the given size class
1052 */
Minchan Kim37836892016-07-26 15:23:23 -07001053static struct zspage *alloc_zspage(struct zs_pool *pool,
1054 struct size_class *class,
1055 gfp_t gfp)
Minchan Kimbdb0af72016-07-26 15:23:20 -07001056{
1057 int i;
Minchan Kimbdb0af72016-07-26 15:23:20 -07001058 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE];
Minchan Kim37836892016-07-26 15:23:23 -07001059 struct zspage *zspage = cache_alloc_zspage(pool, gfp);
1060
1061 if (!zspage)
1062 return NULL;
1063
Minchan Kim48b48002016-07-26 15:23:31 -07001064 zspage->magic = ZSPAGE_MAGIC;
1065 migrate_lock_init(zspage);
Nitin Gupta61989a82012-01-09 16:51:56 -06001066
Minchan Kimbdb0af72016-07-26 15:23:20 -07001067 for (i = 0; i < class->pages_per_zspage; i++) {
1068 struct page *page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001069
Minchan Kim37836892016-07-26 15:23:23 -07001070 page = alloc_page(gfp);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001071 if (!page) {
Minchan Kim91537fe2016-07-26 15:24:45 -07001072 while (--i >= 0) {
1073 dec_zone_page_state(pages[i], NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001074 __free_page(pages[i]);
Minchan Kim91537fe2016-07-26 15:24:45 -07001075 }
Minchan Kim37836892016-07-26 15:23:23 -07001076 cache_free_zspage(pool, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001077 return NULL;
1078 }
Minchan Kim91537fe2016-07-26 15:24:45 -07001079
1080 inc_zone_page_state(page, NR_ZSPAGES);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001081 pages[i] = page;
Nitin Gupta61989a82012-01-09 16:51:56 -06001082 }
1083
Minchan Kim48b48002016-07-26 15:23:31 -07001084 create_page_chain(class, zspage, pages);
Minchan Kim37836892016-07-26 15:23:23 -07001085 init_zspage(class, zspage);
Minchan Kimbdb0af72016-07-26 15:23:20 -07001086
Minchan Kim37836892016-07-26 15:23:23 -07001087 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001088}
1089
Minchan Kim37836892016-07-26 15:23:23 -07001090static struct zspage *find_get_zspage(struct size_class *class)
Nitin Gupta61989a82012-01-09 16:51:56 -06001091{
1092 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001093 struct zspage *zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001094
Minchan Kim48b48002016-07-26 15:23:31 -07001095 for (i = ZS_ALMOST_FULL; i >= ZS_EMPTY; i--) {
Minchan Kim37836892016-07-26 15:23:23 -07001096 zspage = list_first_entry_or_null(&class->fullness_list[i],
1097 struct zspage, list);
1098 if (zspage)
Nitin Gupta61989a82012-01-09 16:51:56 -06001099 break;
1100 }
1101
Minchan Kim37836892016-07-26 15:23:23 -07001102 return zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06001103}
1104
Seth Jenningsf5536462012-07-18 11:55:56 -05001105static inline int __zs_cpu_up(struct mapping_area *area)
1106{
1107 /*
1108 * Make sure we don't leak memory if a cpu UP notification
1109 * and zs_init() race and both call zs_cpu_up() on the same cpu
1110 */
1111 if (area->vm_buf)
1112 return 0;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001113 area->vm_buf = kmalloc(ZS_MAX_ALLOC_SIZE, GFP_KERNEL);
Seth Jenningsf5536462012-07-18 11:55:56 -05001114 if (!area->vm_buf)
1115 return -ENOMEM;
1116 return 0;
1117}
1118
1119static inline void __zs_cpu_down(struct mapping_area *area)
1120{
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08001121 kfree(area->vm_buf);
Seth Jenningsf5536462012-07-18 11:55:56 -05001122 area->vm_buf = NULL;
1123}
1124
1125static void *__zs_map_object(struct mapping_area *area,
1126 struct page *pages[2], int off, int size)
1127{
Seth Jennings5f6019022012-07-02 16:15:49 -05001128 int sizes[2];
1129 void *addr;
Seth Jenningsf5536462012-07-18 11:55:56 -05001130 char *buf = area->vm_buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001131
Seth Jenningsf5536462012-07-18 11:55:56 -05001132 /* disable page faults to match kmap_atomic() return conditions */
1133 pagefault_disable();
1134
1135 /* no read fastpath */
1136 if (area->vm_mm == ZS_MM_WO)
1137 goto out;
Seth Jennings5f6019022012-07-02 16:15:49 -05001138
1139 sizes[0] = PAGE_SIZE - off;
1140 sizes[1] = size - sizes[0];
1141
Seth Jennings5f6019022012-07-02 16:15:49 -05001142 /* copy object to per-cpu buffer */
1143 addr = kmap_atomic(pages[0]);
1144 memcpy(buf, addr + off, sizes[0]);
1145 kunmap_atomic(addr);
1146 addr = kmap_atomic(pages[1]);
1147 memcpy(buf + sizes[0], addr, sizes[1]);
1148 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001149out:
1150 return area->vm_buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001151}
1152
Seth Jenningsf5536462012-07-18 11:55:56 -05001153static void __zs_unmap_object(struct mapping_area *area,
1154 struct page *pages[2], int off, int size)
Seth Jennings5f6019022012-07-02 16:15:49 -05001155{
Seth Jennings5f6019022012-07-02 16:15:49 -05001156 int sizes[2];
1157 void *addr;
Minchan Kim2e40e162015-04-15 16:15:23 -07001158 char *buf;
Seth Jennings5f6019022012-07-02 16:15:49 -05001159
Seth Jenningsf5536462012-07-18 11:55:56 -05001160 /* no write fastpath */
1161 if (area->vm_mm == ZS_MM_RO)
1162 goto out;
Seth Jennings5f6019022012-07-02 16:15:49 -05001163
Minchan Kim7b60a682015-04-15 16:15:39 -07001164 buf = area->vm_buf;
YiPing Xua82cbf02016-03-17 14:20:39 -07001165 buf = buf + ZS_HANDLE_SIZE;
1166 size -= ZS_HANDLE_SIZE;
1167 off += ZS_HANDLE_SIZE;
Minchan Kim2e40e162015-04-15 16:15:23 -07001168
Seth Jennings5f6019022012-07-02 16:15:49 -05001169 sizes[0] = PAGE_SIZE - off;
1170 sizes[1] = size - sizes[0];
1171
1172 /* copy per-cpu buffer to object */
1173 addr = kmap_atomic(pages[0]);
1174 memcpy(addr + off, buf, sizes[0]);
1175 kunmap_atomic(addr);
1176 addr = kmap_atomic(pages[1]);
1177 memcpy(addr, buf + sizes[0], sizes[1]);
1178 kunmap_atomic(addr);
Seth Jenningsf5536462012-07-18 11:55:56 -05001179
1180out:
1181 /* enable page faults to match kunmap_atomic() return conditions */
1182 pagefault_enable();
Seth Jennings5f6019022012-07-02 16:15:49 -05001183}
Nitin Gupta61989a82012-01-09 16:51:56 -06001184
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001185static int zs_cpu_prepare(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001186{
Nitin Gupta61989a82012-01-09 16:51:56 -06001187 struct mapping_area *area;
1188
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001189 area = &per_cpu(zs_map_area, cpu);
1190 return __zs_cpu_up(area);
Nitin Gupta61989a82012-01-09 16:51:56 -06001191}
1192
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001193static int zs_cpu_dead(unsigned int cpu)
Nitin Gupta61989a82012-01-09 16:51:56 -06001194{
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001195 struct mapping_area *area;
Nitin Gupta61989a82012-01-09 16:51:56 -06001196
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01001197 area = &per_cpu(zs_map_area, cpu);
1198 __zs_cpu_down(area);
1199 return 0;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001200}
1201
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001202static bool can_merge(struct size_class *prev, int pages_per_zspage,
1203 int objs_per_zspage)
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001204{
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001205 if (prev->pages_per_zspage == pages_per_zspage &&
1206 prev->objs_per_zspage == objs_per_zspage)
1207 return true;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001208
Ganesh Mahendran64d90462016-07-28 15:47:51 -07001209 return false;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08001210}
1211
Minchan Kim37836892016-07-26 15:23:23 -07001212static bool zspage_full(struct size_class *class, struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001213{
Minchan Kim37836892016-07-26 15:23:23 -07001214 return get_zspage_inuse(zspage) == class->objs_per_zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001215}
1216
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001217unsigned long zs_get_total_pages(struct zs_pool *pool)
1218{
1219 return atomic_long_read(&pool->pages_allocated);
1220}
1221EXPORT_SYMBOL_GPL(zs_get_total_pages);
1222
1223/**
1224 * zs_map_object - get address of allocated object from handle.
1225 * @pool: pool from which the object was allocated
1226 * @handle: handle returned from zs_malloc
Ingo Molnarf0953a12021-05-06 18:06:47 -07001227 * @mm: mapping mode to use
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001228 *
1229 * Before using an object allocated from zs_malloc, it must be mapped using
1230 * this function. When done with the object, it must be unmapped using
1231 * zs_unmap_object.
1232 *
1233 * Only one object can be mapped per cpu at a time. There is no protection
1234 * against nested mappings.
1235 *
1236 * This function returns with preemption and page faults disabled.
1237 */
1238void *zs_map_object(struct zs_pool *pool, unsigned long handle,
1239 enum zs_mapmode mm)
1240{
Minchan Kim37836892016-07-26 15:23:23 -07001241 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001242 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001243 unsigned long obj, off;
1244 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001245
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001246 struct size_class *class;
1247 struct mapping_area *area;
1248 struct page *pages[2];
Minchan Kim2e40e162015-04-15 16:15:23 -07001249 void *ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001250
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001251 /*
1252 * Because we use per-cpu mapping areas shared among the
1253 * pools/users, we can't allow mapping in interrupt context
1254 * because it can corrupt another users mappings.
1255 */
Sergey Senozhatsky1aedcaf2017-11-15 17:34:03 -08001256 BUG_ON(in_interrupt());
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001257
Minchan Kimb475d422022-01-21 22:14:13 -08001258 /* It guarantees it can get zspage from handle safely */
1259 read_lock(&pool->migrate_lock);
Minchan Kim2e40e162015-04-15 16:15:23 -07001260 obj = handle_to_obj(handle);
1261 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001262 zspage = get_zspage(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001263
Minchan Kimb475d422022-01-21 22:14:13 -08001264 /*
1265 * migration cannot move any zpages in this zspage. Here, class->lock
1266 * is too heavy since callers would take some time until they calls
1267 * zs_unmap_object API so delegate the locking from class to zspage
1268 * which is smaller granularity.
1269 */
Minchan Kim48b48002016-07-26 15:23:31 -07001270 migrate_read_lock(zspage);
Minchan Kimb475d422022-01-21 22:14:13 -08001271 read_unlock(&pool->migrate_lock);
Minchan Kim48b48002016-07-26 15:23:31 -07001272
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001273 class = zspage_class(pool, zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001274 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001275
Mike Galbraitha3726592022-01-21 22:14:17 -08001276 local_lock(&zs_map_area.lock);
1277 area = this_cpu_ptr(&zs_map_area);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001278 area->vm_mm = mm;
1279 if (off + class->size <= PAGE_SIZE) {
1280 /* this object is contained entirely within a page */
1281 area->vm_addr = kmap_atomic(page);
Minchan Kim2e40e162015-04-15 16:15:23 -07001282 ret = area->vm_addr + off;
1283 goto out;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001284 }
1285
1286 /* this object spans two pages */
1287 pages[0] = page;
1288 pages[1] = get_next_page(page);
1289 BUG_ON(!pages[1]);
1290
Minchan Kim2e40e162015-04-15 16:15:23 -07001291 ret = __zs_map_object(area, pages, off, class->size);
1292out:
Minchan Kima41ec882022-01-21 22:14:04 -08001293 if (likely(!ZsHugePage(zspage)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001294 ret += ZS_HANDLE_SIZE;
1295
1296 return ret;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001297}
1298EXPORT_SYMBOL_GPL(zs_map_object);
1299
1300void zs_unmap_object(struct zs_pool *pool, unsigned long handle)
1301{
Minchan Kim37836892016-07-26 15:23:23 -07001302 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001303 struct page *page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001304 unsigned long obj, off;
1305 unsigned int obj_idx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001306
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001307 struct size_class *class;
1308 struct mapping_area *area;
1309
Minchan Kim2e40e162015-04-15 16:15:23 -07001310 obj = handle_to_obj(handle);
1311 obj_to_location(obj, &page, &obj_idx);
Minchan Kim37836892016-07-26 15:23:23 -07001312 zspage = get_zspage(page);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001313 class = zspage_class(pool, zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001314 off = (class->size * obj_idx) & ~PAGE_MASK;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001315
1316 area = this_cpu_ptr(&zs_map_area);
1317 if (off + class->size <= PAGE_SIZE)
1318 kunmap_atomic(area->vm_addr);
1319 else {
1320 struct page *pages[2];
1321
1322 pages[0] = page;
1323 pages[1] = get_next_page(page);
1324 BUG_ON(!pages[1]);
1325
1326 __zs_unmap_object(area, pages, off, class->size);
1327 }
Mike Galbraitha3726592022-01-21 22:14:17 -08001328 local_unlock(&zs_map_area.lock);
Minchan Kim48b48002016-07-26 15:23:31 -07001329
1330 migrate_read_unlock(zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001331}
1332EXPORT_SYMBOL_GPL(zs_unmap_object);
1333
Sergey Senozhatsky010b4952018-04-05 16:24:43 -07001334/**
1335 * zs_huge_class_size() - Returns the size (in bytes) of the first huge
1336 * zsmalloc &size_class.
1337 * @pool: zsmalloc pool to use
1338 *
1339 * The function returns the size of the first huge class - any object of equal
1340 * or bigger size will be stored in zspage consisting of a single physical
1341 * page.
1342 *
1343 * Context: Any context.
1344 *
1345 * Return: the size (in bytes) of the first huge zsmalloc &size_class.
1346 */
1347size_t zs_huge_class_size(struct zs_pool *pool)
1348{
1349 return huge_class_size;
1350}
1351EXPORT_SYMBOL_GPL(zs_huge_class_size);
1352
Minchan Kim0a5f0792022-01-21 22:13:57 -08001353static unsigned long obj_malloc(struct zs_pool *pool,
Minchan Kim37836892016-07-26 15:23:23 -07001354 struct zspage *zspage, unsigned long handle)
Minchan Kimc7806262015-04-15 16:15:26 -07001355{
Minchan Kimbfd093f2016-07-26 15:23:28 -07001356 int i, nr_page, offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001357 unsigned long obj;
1358 struct link_free *link;
Minchan Kim0a5f0792022-01-21 22:13:57 -08001359 struct size_class *class;
Minchan Kimc7806262015-04-15 16:15:26 -07001360
1361 struct page *m_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001362 unsigned long m_offset;
Minchan Kimc7806262015-04-15 16:15:26 -07001363 void *vaddr;
1364
Minchan Kim0a5f0792022-01-21 22:13:57 -08001365 class = pool->size_class[zspage->class];
Minchan Kim312fcae2015-04-15 16:15:30 -07001366 handle |= OBJ_ALLOCATED_TAG;
Minchan Kim37836892016-07-26 15:23:23 -07001367 obj = get_freeobj(zspage);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001368
1369 offset = obj * class->size;
1370 nr_page = offset >> PAGE_SHIFT;
1371 m_offset = offset & ~PAGE_MASK;
1372 m_page = get_first_page(zspage);
1373
1374 for (i = 0; i < nr_page; i++)
1375 m_page = get_next_page(m_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001376
1377 vaddr = kmap_atomic(m_page);
1378 link = (struct link_free *)vaddr + m_offset / sizeof(*link);
Minchan Kim3b1d9ca2016-07-26 15:23:37 -07001379 set_freeobj(zspage, link->next >> OBJ_TAG_BITS);
Minchan Kima41ec882022-01-21 22:14:04 -08001380 if (likely(!ZsHugePage(zspage)))
Minchan Kim7b60a682015-04-15 16:15:39 -07001381 /* record handle in the header of allocated chunk */
1382 link->handle = handle;
1383 else
Minchan Kim37836892016-07-26 15:23:23 -07001384 /* record handle to page->index */
1385 zspage->first_page->index = handle;
1386
Minchan Kimc7806262015-04-15 16:15:26 -07001387 kunmap_atomic(vaddr);
Minchan Kim37836892016-07-26 15:23:23 -07001388 mod_zspage_inuse(zspage, 1);
Minchan Kimc7806262015-04-15 16:15:26 -07001389
Minchan Kimbfd093f2016-07-26 15:23:28 -07001390 obj = location_to_obj(m_page, obj);
1391
Minchan Kimc7806262015-04-15 16:15:26 -07001392 return obj;
1393}
1394
1395
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001396/**
1397 * zs_malloc - Allocate block of given size from pool.
1398 * @pool: pool to allocate from
1399 * @size: size of block to allocate
Ganesh Mahendranfd854462016-07-28 15:47:54 -07001400 * @gfp: gfp flags when allocating object
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001401 *
1402 * On success, handle to the allocated object is returned,
1403 * otherwise 0.
1404 * Allocation requests with size > ZS_MAX_ALLOC_SIZE will fail.
1405 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07001406unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t gfp)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001407{
Minchan Kim2e40e162015-04-15 16:15:23 -07001408 unsigned long handle, obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001409 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001410 enum fullness_group newfg;
Minchan Kim37836892016-07-26 15:23:23 -07001411 struct zspage *zspage;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001412
Minchan Kim7b60a682015-04-15 16:15:39 -07001413 if (unlikely(!size || size > ZS_MAX_ALLOC_SIZE))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001414 return 0;
1415
Minchan Kim37836892016-07-26 15:23:23 -07001416 handle = cache_alloc_handle(pool, gfp);
Minchan Kim2e40e162015-04-15 16:15:23 -07001417 if (!handle)
1418 return 0;
1419
1420 /* extra space in chunk to keep the handle */
1421 size += ZS_HANDLE_SIZE;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001422 class = pool->size_class[get_size_class_index(size)];
1423
Minchan Kimb475d422022-01-21 22:14:13 -08001424 /* class->lock effectively protects the zpage migration */
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001425 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001426 zspage = find_get_zspage(class);
Minchan Kim48b48002016-07-26 15:23:31 -07001427 if (likely(zspage)) {
Minchan Kim0a5f0792022-01-21 22:13:57 -08001428 obj = obj_malloc(pool, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001429 /* Now move the zspage to another fullness group, if required */
1430 fix_fullness_group(class, zspage);
1431 record_obj(handle, obj);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001432 class_stat_inc(class, OBJ_USED, 1);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001433 spin_unlock(&class->lock);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001434
Minchan Kim48b48002016-07-26 15:23:31 -07001435 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001436 }
1437
Minchan Kim48b48002016-07-26 15:23:31 -07001438 spin_unlock(&class->lock);
1439
1440 zspage = alloc_zspage(pool, class, gfp);
1441 if (!zspage) {
1442 cache_free_handle(pool, handle);
1443 return 0;
1444 }
1445
1446 spin_lock(&class->lock);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001447 obj = obj_malloc(pool, zspage, handle);
Minchan Kim48b48002016-07-26 15:23:31 -07001448 newfg = get_fullness_group(class, zspage);
1449 insert_zspage(class, zspage, newfg);
1450 set_zspage_mapping(zspage, class->index, newfg);
Minchan Kim2e40e162015-04-15 16:15:23 -07001451 record_obj(handle, obj);
Minchan Kim48b48002016-07-26 15:23:31 -07001452 atomic_long_add(class->pages_per_zspage,
1453 &pool->pages_allocated);
Minchan Kim3828a762022-01-21 22:13:54 -08001454 class_stat_inc(class, OBJ_ALLOCATED, class->objs_per_zspage);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001455 class_stat_inc(class, OBJ_USED, 1);
Minchan Kim48b48002016-07-26 15:23:31 -07001456
1457 /* We completely set up zspage so mark them as movable */
1458 SetZsPageMovable(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001459 spin_unlock(&class->lock);
1460
Minchan Kim2e40e162015-04-15 16:15:23 -07001461 return handle;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001462}
1463EXPORT_SYMBOL_GPL(zs_malloc);
1464
Minchan Kim0a5f0792022-01-21 22:13:57 -08001465static void obj_free(int class_size, unsigned long obj)
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001466{
1467 struct link_free *link;
Minchan Kim37836892016-07-26 15:23:23 -07001468 struct zspage *zspage;
1469 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001470 unsigned long f_offset;
1471 unsigned int f_objidx;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001472 void *vaddr;
1473
Minchan Kimc7806262015-04-15 16:15:26 -07001474 obj_to_location(obj, &f_page, &f_objidx);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001475 f_offset = (class_size * f_objidx) & ~PAGE_MASK;
Minchan Kim37836892016-07-26 15:23:23 -07001476 zspage = get_zspage(f_page);
Minchan Kimc7806262015-04-15 16:15:26 -07001477
Minchan Kimc7806262015-04-15 16:15:26 -07001478 vaddr = kmap_atomic(f_page);
1479
1480 /* Insert this object in containing zspage's freelist */
1481 link = (struct link_free *)(vaddr + f_offset);
Minchan Kima41ec882022-01-21 22:14:04 -08001482 if (likely(!ZsHugePage(zspage)))
1483 link->next = get_freeobj(zspage) << OBJ_TAG_BITS;
1484 else
1485 f_page->index = 0;
Minchan Kimc7806262015-04-15 16:15:26 -07001486 kunmap_atomic(vaddr);
Minchan Kimbfd093f2016-07-26 15:23:28 -07001487 set_freeobj(zspage, f_objidx);
Minchan Kim37836892016-07-26 15:23:23 -07001488 mod_zspage_inuse(zspage, -1);
Minchan Kimc7806262015-04-15 16:15:26 -07001489}
1490
1491void zs_free(struct zs_pool *pool, unsigned long handle)
1492{
Minchan Kim37836892016-07-26 15:23:23 -07001493 struct zspage *zspage;
1494 struct page *f_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001495 unsigned long obj;
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001496 struct size_class *class;
1497 enum fullness_group fullness;
1498
Minchan Kim2e40e162015-04-15 16:15:23 -07001499 if (unlikely(!handle))
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001500 return;
1501
Minchan Kimb475d422022-01-21 22:14:13 -08001502 /*
1503 * The pool->migrate_lock protects the race with zpage's migration
1504 * so it's safe to get the page from handle.
1505 */
1506 read_lock(&pool->migrate_lock);
Minchan Kim2e40e162015-04-15 16:15:23 -07001507 obj = handle_to_obj(handle);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001508 obj_to_page(obj, &f_page);
Minchan Kim37836892016-07-26 15:23:23 -07001509 zspage = get_zspage(f_page);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001510 class = zspage_class(pool, zspage);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001511 spin_lock(&class->lock);
Minchan Kimb475d422022-01-21 22:14:13 -08001512 read_unlock(&pool->migrate_lock);
1513
Minchan Kim0a5f0792022-01-21 22:13:57 -08001514 obj_free(class->size, obj);
1515 class_stat_dec(class, OBJ_USED, 1);
Minchan Kim37836892016-07-26 15:23:23 -07001516 fullness = fix_fullness_group(class, zspage);
Minchan Kimb475d422022-01-21 22:14:13 -08001517 if (fullness != ZS_EMPTY)
Minchan Kim48b48002016-07-26 15:23:31 -07001518 goto out;
Minchan Kim48b48002016-07-26 15:23:31 -07001519
Minchan Kimc4549b82022-01-21 22:14:07 -08001520 free_zspage(pool, class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001521out:
Minchan Kim312fcae2015-04-15 16:15:30 -07001522 spin_unlock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07001523 cache_free_handle(pool, handle);
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08001524}
1525EXPORT_SYMBOL_GPL(zs_free);
1526
Minchan Kim251cbb92016-05-20 16:59:42 -07001527static void zs_object_copy(struct size_class *class, unsigned long dst,
1528 unsigned long src)
Minchan Kim312fcae2015-04-15 16:15:30 -07001529{
1530 struct page *s_page, *d_page;
Minchan Kimbfd093f2016-07-26 15:23:28 -07001531 unsigned int s_objidx, d_objidx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001532 unsigned long s_off, d_off;
1533 void *s_addr, *d_addr;
1534 int s_size, d_size, size;
1535 int written = 0;
1536
1537 s_size = d_size = class->size;
1538
1539 obj_to_location(src, &s_page, &s_objidx);
1540 obj_to_location(dst, &d_page, &d_objidx);
1541
Minchan Kimbfd093f2016-07-26 15:23:28 -07001542 s_off = (class->size * s_objidx) & ~PAGE_MASK;
1543 d_off = (class->size * d_objidx) & ~PAGE_MASK;
Minchan Kim312fcae2015-04-15 16:15:30 -07001544
1545 if (s_off + class->size > PAGE_SIZE)
1546 s_size = PAGE_SIZE - s_off;
1547
1548 if (d_off + class->size > PAGE_SIZE)
1549 d_size = PAGE_SIZE - d_off;
1550
1551 s_addr = kmap_atomic(s_page);
1552 d_addr = kmap_atomic(d_page);
1553
1554 while (1) {
1555 size = min(s_size, d_size);
1556 memcpy(d_addr + d_off, s_addr + s_off, size);
1557 written += size;
1558
1559 if (written == class->size)
1560 break;
1561
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001562 s_off += size;
1563 s_size -= size;
1564 d_off += size;
1565 d_size -= size;
1566
1567 if (s_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001568 kunmap_atomic(d_addr);
1569 kunmap_atomic(s_addr);
1570 s_page = get_next_page(s_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001571 s_addr = kmap_atomic(s_page);
1572 d_addr = kmap_atomic(d_page);
1573 s_size = class->size - written;
1574 s_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001575 }
1576
Sergey Senozhatsky495819e2015-04-15 16:16:15 -07001577 if (d_off >= PAGE_SIZE) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001578 kunmap_atomic(d_addr);
1579 d_page = get_next_page(d_page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001580 d_addr = kmap_atomic(d_page);
1581 d_size = class->size - written;
1582 d_off = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001583 }
1584 }
1585
1586 kunmap_atomic(d_addr);
1587 kunmap_atomic(s_addr);
1588}
1589
1590/*
1591 * Find alloced object in zspage from index object and
1592 * return handle.
1593 */
Minchan Kim251cbb92016-05-20 16:59:42 -07001594static unsigned long find_alloced_obj(struct size_class *class,
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001595 struct page *page, int *obj_idx)
Minchan Kim312fcae2015-04-15 16:15:30 -07001596{
Minchan Kim312fcae2015-04-15 16:15:30 -07001597 int offset = 0;
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001598 int index = *obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001599 unsigned long handle = 0;
1600 void *addr = kmap_atomic(page);
1601
Minchan Kim37836892016-07-26 15:23:23 -07001602 offset = get_first_obj_offset(page);
Minchan Kim312fcae2015-04-15 16:15:30 -07001603 offset += class->size * index;
1604
1605 while (offset < PAGE_SIZE) {
Minchan Kimb475d422022-01-21 22:14:13 -08001606 if (obj_allocated(page, addr + offset, &handle))
1607 break;
Minchan Kim312fcae2015-04-15 16:15:30 -07001608
1609 offset += class->size;
1610 index++;
1611 }
1612
1613 kunmap_atomic(addr);
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001614
1615 *obj_idx = index;
1616
Minchan Kim312fcae2015-04-15 16:15:30 -07001617 return handle;
1618}
1619
1620struct zs_compact_control {
Minchan Kim37836892016-07-26 15:23:23 -07001621 /* Source spage for migration which could be a subpage of zspage */
Minchan Kim312fcae2015-04-15 16:15:30 -07001622 struct page *s_page;
1623 /* Destination page for migration which should be a first page
1624 * of zspage. */
1625 struct page *d_page;
1626 /* Starting object index within @s_page which used for live object
1627 * in the subpage. */
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001628 int obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001629};
1630
1631static int migrate_zspage(struct zs_pool *pool, struct size_class *class,
1632 struct zs_compact_control *cc)
1633{
1634 unsigned long used_obj, free_obj;
1635 unsigned long handle;
1636 struct page *s_page = cc->s_page;
1637 struct page *d_page = cc->d_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001638 int obj_idx = cc->obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001639 int ret = 0;
1640
1641 while (1) {
Ganesh Mahendrancf675ac2016-07-28 15:47:46 -07001642 handle = find_alloced_obj(class, s_page, &obj_idx);
Minchan Kim312fcae2015-04-15 16:15:30 -07001643 if (!handle) {
1644 s_page = get_next_page(s_page);
1645 if (!s_page)
1646 break;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001647 obj_idx = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07001648 continue;
1649 }
1650
1651 /* Stop if there is no more space */
Minchan Kim37836892016-07-26 15:23:23 -07001652 if (zspage_full(class, get_zspage(d_page))) {
Minchan Kim312fcae2015-04-15 16:15:30 -07001653 ret = -ENOMEM;
1654 break;
1655 }
1656
1657 used_obj = handle_to_obj(handle);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001658 free_obj = obj_malloc(pool, get_zspage(d_page), handle);
Minchan Kim251cbb92016-05-20 16:59:42 -07001659 zs_object_copy(class, free_obj, used_obj);
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001660 obj_idx++;
Minchan Kim312fcae2015-04-15 16:15:30 -07001661 record_obj(handle, free_obj);
Minchan Kim0a5f0792022-01-21 22:13:57 -08001662 obj_free(class->size, used_obj);
Minchan Kim312fcae2015-04-15 16:15:30 -07001663 }
1664
1665 /* Remember last position in this iteration */
1666 cc->s_page = s_page;
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07001667 cc->obj_idx = obj_idx;
Minchan Kim312fcae2015-04-15 16:15:30 -07001668
1669 return ret;
1670}
1671
Minchan Kim37836892016-07-26 15:23:23 -07001672static struct zspage *isolate_zspage(struct size_class *class, bool source)
Minchan Kim312fcae2015-04-15 16:15:30 -07001673{
1674 int i;
Minchan Kim37836892016-07-26 15:23:23 -07001675 struct zspage *zspage;
1676 enum fullness_group fg[2] = {ZS_ALMOST_EMPTY, ZS_ALMOST_FULL};
Minchan Kim312fcae2015-04-15 16:15:30 -07001677
Minchan Kim37836892016-07-26 15:23:23 -07001678 if (!source) {
1679 fg[0] = ZS_ALMOST_FULL;
1680 fg[1] = ZS_ALMOST_EMPTY;
1681 }
1682
1683 for (i = 0; i < 2; i++) {
1684 zspage = list_first_entry_or_null(&class->fullness_list[fg[i]],
1685 struct zspage, list);
1686 if (zspage) {
1687 remove_zspage(class, zspage, fg[i]);
1688 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001689 }
1690 }
1691
Minchan Kim37836892016-07-26 15:23:23 -07001692 return zspage;
Minchan Kim312fcae2015-04-15 16:15:30 -07001693}
1694
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001695/*
Minchan Kim37836892016-07-26 15:23:23 -07001696 * putback_zspage - add @zspage into right class's fullness list
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001697 * @class: destination class
Minchan Kim37836892016-07-26 15:23:23 -07001698 * @zspage: target page
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001699 *
Minchan Kim37836892016-07-26 15:23:23 -07001700 * Return @zspage's fullness_group
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001701 */
Minchan Kim4aa409c2016-07-26 15:23:26 -07001702static enum fullness_group putback_zspage(struct size_class *class,
Minchan Kim37836892016-07-26 15:23:23 -07001703 struct zspage *zspage)
Minchan Kim312fcae2015-04-15 16:15:30 -07001704{
Minchan Kim312fcae2015-04-15 16:15:30 -07001705 enum fullness_group fullness;
1706
Minchan Kim37836892016-07-26 15:23:23 -07001707 fullness = get_fullness_group(class, zspage);
1708 insert_zspage(class, zspage, fullness);
1709 set_zspage_mapping(zspage, class->index, fullness);
Minchan Kim839373e2015-04-15 16:16:18 -07001710
Sergey Senozhatsky860c7072015-09-08 15:04:38 -07001711 return fullness;
Minchan Kim312fcae2015-04-15 16:15:30 -07001712}
1713
Minchan Kim48b48002016-07-26 15:23:31 -07001714#ifdef CONFIG_COMPACTION
Colin Ian King4d0a5402018-08-17 15:46:50 -07001715/*
1716 * To prevent zspage destroy during migration, zspage freeing should
1717 * hold locks of all pages in the zspage.
1718 */
1719static void lock_zspage(struct zspage *zspage)
1720{
1721 struct page *page = get_first_page(zspage);
1722
1723 do {
1724 lock_page(page);
1725 } while ((page = get_next_page(page)) != NULL);
1726}
1727
David Howells8e9231f2019-03-25 16:38:23 +00001728static int zs_init_fs_context(struct fs_context *fc)
Minchan Kim48b48002016-07-26 15:23:31 -07001729{
David Howells8e9231f2019-03-25 16:38:23 +00001730 return init_pseudo(fc, ZSMALLOC_MAGIC) ? 0 : -ENOMEM;
Minchan Kim48b48002016-07-26 15:23:31 -07001731}
1732
1733static struct file_system_type zsmalloc_fs = {
1734 .name = "zsmalloc",
David Howells8e9231f2019-03-25 16:38:23 +00001735 .init_fs_context = zs_init_fs_context,
Minchan Kim48b48002016-07-26 15:23:31 -07001736 .kill_sb = kill_anon_super,
1737};
1738
1739static int zsmalloc_mount(void)
1740{
1741 int ret = 0;
1742
1743 zsmalloc_mnt = kern_mount(&zsmalloc_fs);
1744 if (IS_ERR(zsmalloc_mnt))
1745 ret = PTR_ERR(zsmalloc_mnt);
1746
1747 return ret;
1748}
1749
1750static void zsmalloc_unmount(void)
1751{
1752 kern_unmount(zsmalloc_mnt);
1753}
1754
1755static void migrate_lock_init(struct zspage *zspage)
1756{
1757 rwlock_init(&zspage->lock);
1758}
1759
Jules Irengecfc451cf2020-04-06 20:08:21 -07001760static void migrate_read_lock(struct zspage *zspage) __acquires(&zspage->lock)
Minchan Kim48b48002016-07-26 15:23:31 -07001761{
1762 read_lock(&zspage->lock);
1763}
1764
Jules Irenge8a374cc2020-04-06 20:08:24 -07001765static void migrate_read_unlock(struct zspage *zspage) __releases(&zspage->lock)
Minchan Kim48b48002016-07-26 15:23:31 -07001766{
1767 read_unlock(&zspage->lock);
1768}
1769
1770static void migrate_write_lock(struct zspage *zspage)
1771{
1772 write_lock(&zspage->lock);
1773}
1774
Minchan Kimb475d422022-01-21 22:14:13 -08001775static void migrate_write_lock_nested(struct zspage *zspage)
1776{
1777 write_lock_nested(&zspage->lock, SINGLE_DEPTH_NESTING);
1778}
1779
Minchan Kim48b48002016-07-26 15:23:31 -07001780static void migrate_write_unlock(struct zspage *zspage)
1781{
1782 write_unlock(&zspage->lock);
1783}
1784
1785/* Number of isolated subpage for *page migration* in this zspage */
1786static void inc_zspage_isolation(struct zspage *zspage)
1787{
1788 zspage->isolated++;
1789}
1790
1791static void dec_zspage_isolation(struct zspage *zspage)
1792{
Minchan Kimc4549b82022-01-21 22:14:07 -08001793 VM_BUG_ON(zspage->isolated == 0);
Minchan Kim48b48002016-07-26 15:23:31 -07001794 zspage->isolated--;
1795}
1796
1797static void replace_sub_page(struct size_class *class, struct zspage *zspage,
1798 struct page *newpage, struct page *oldpage)
1799{
1800 struct page *page;
1801 struct page *pages[ZS_MAX_PAGES_PER_ZSPAGE] = {NULL, };
1802 int idx = 0;
1803
1804 page = get_first_page(zspage);
1805 do {
1806 if (page == oldpage)
1807 pages[idx] = newpage;
1808 else
1809 pages[idx] = page;
1810 idx++;
1811 } while ((page = get_next_page(page)) != NULL);
1812
1813 create_page_chain(class, zspage, pages);
1814 set_first_obj_offset(newpage, get_first_obj_offset(oldpage));
Minchan Kima41ec882022-01-21 22:14:04 -08001815 if (unlikely(ZsHugePage(zspage)))
Minchan Kim48b48002016-07-26 15:23:31 -07001816 newpage->index = oldpage->index;
1817 __SetPageMovable(newpage, page_mapping(oldpage));
1818}
1819
Colin Ian King4d0a5402018-08-17 15:46:50 -07001820static bool zs_page_isolate(struct page *page, isolate_mode_t mode)
Minchan Kim48b48002016-07-26 15:23:31 -07001821{
Minchan Kim48b48002016-07-26 15:23:31 -07001822 struct zspage *zspage;
Minchan Kim48b48002016-07-26 15:23:31 -07001823
1824 /*
1825 * Page is locked so zspage couldn't be destroyed. For detail, look at
1826 * lock_zspage in free_zspage.
1827 */
1828 VM_BUG_ON_PAGE(!PageMovable(page), page);
1829 VM_BUG_ON_PAGE(PageIsolated(page), page);
1830
1831 zspage = get_zspage(page);
Minchan Kimc4549b82022-01-21 22:14:07 -08001832 migrate_write_lock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001833 inc_zspage_isolation(zspage);
Minchan Kimc4549b82022-01-21 22:14:07 -08001834 migrate_write_unlock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001835
1836 return true;
1837}
1838
Colin Ian King4d0a5402018-08-17 15:46:50 -07001839static int zs_page_migrate(struct address_space *mapping, struct page *newpage,
Minchan Kim48b48002016-07-26 15:23:31 -07001840 struct page *page, enum migrate_mode mode)
1841{
1842 struct zs_pool *pool;
1843 struct size_class *class;
Minchan Kim48b48002016-07-26 15:23:31 -07001844 struct zspage *zspage;
1845 struct page *dummy;
1846 void *s_addr, *d_addr, *addr;
Minchan Kimb475d422022-01-21 22:14:13 -08001847 int offset;
Minchan Kim3ae92ac2022-01-21 22:14:01 -08001848 unsigned long handle;
Minchan Kim48b48002016-07-26 15:23:31 -07001849 unsigned long old_obj, new_obj;
1850 unsigned int obj_idx;
Minchan Kim48b48002016-07-26 15:23:31 -07001851
Jérôme Glisse2916ecc2017-09-08 16:12:06 -07001852 /*
1853 * We cannot support the _NO_COPY case here, because copy needs to
1854 * happen under the zs lock, which does not work with
1855 * MIGRATE_SYNC_NO_COPY workflow.
1856 */
1857 if (mode == MIGRATE_SYNC_NO_COPY)
1858 return -EINVAL;
1859
Minchan Kim48b48002016-07-26 15:23:31 -07001860 VM_BUG_ON_PAGE(!PageMovable(page), page);
1861 VM_BUG_ON_PAGE(!PageIsolated(page), page);
1862
Minchan Kim48b48002016-07-26 15:23:31 -07001863 pool = mapping->private_data;
Minchan Kimb475d422022-01-21 22:14:13 -08001864
1865 /*
1866 * The pool migrate_lock protects the race between zpage migration
1867 * and zs_free.
1868 */
1869 write_lock(&pool->migrate_lock);
1870 zspage = get_zspage(page);
Minchan Kim67f1c9c2022-01-21 22:13:51 -08001871 class = zspage_class(pool, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001872
Minchan Kimb475d422022-01-21 22:14:13 -08001873 /*
1874 * the class lock protects zpage alloc/free in the zspage.
1875 */
Minchan Kim48b48002016-07-26 15:23:31 -07001876 spin_lock(&class->lock);
Minchan Kimb475d422022-01-21 22:14:13 -08001877 /* the migrate_write_lock protects zpage access via zs_map_object */
1878 migrate_write_lock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001879
Minchan Kimb475d422022-01-21 22:14:13 -08001880 offset = get_first_obj_offset(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001881 s_addr = kmap_atomic(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001882
1883 /*
1884 * Here, any user cannot access all objects in the zspage so let's move.
1885 */
1886 d_addr = kmap_atomic(newpage);
1887 memcpy(d_addr, s_addr, PAGE_SIZE);
1888 kunmap_atomic(d_addr);
1889
Minchan Kimb475d422022-01-21 22:14:13 -08001890 for (addr = s_addr + offset; addr < s_addr + PAGE_SIZE;
Minchan Kim48b48002016-07-26 15:23:31 -07001891 addr += class->size) {
Minchan Kim3ae92ac2022-01-21 22:14:01 -08001892 if (obj_allocated(page, addr, &handle)) {
Minchan Kim48b48002016-07-26 15:23:31 -07001893
1894 old_obj = handle_to_obj(handle);
1895 obj_to_location(old_obj, &dummy, &obj_idx);
1896 new_obj = (unsigned long)location_to_obj(newpage,
1897 obj_idx);
Minchan Kim48b48002016-07-26 15:23:31 -07001898 record_obj(handle, new_obj);
1899 }
1900 }
Minchan Kimb475d422022-01-21 22:14:13 -08001901 kunmap_atomic(s_addr);
Minchan Kim48b48002016-07-26 15:23:31 -07001902
1903 replace_sub_page(class, zspage, newpage, page);
Minchan Kimb475d422022-01-21 22:14:13 -08001904 /*
1905 * Since we complete the data copy and set up new zspage structure,
1906 * it's okay to release migration_lock.
1907 */
1908 write_unlock(&pool->migrate_lock);
1909 spin_unlock(&class->lock);
Minchan Kim48b48002016-07-26 15:23:31 -07001910 dec_zspage_isolation(zspage);
Minchan Kimb475d422022-01-21 22:14:13 -08001911 migrate_write_unlock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001912
Minchan Kimb475d422022-01-21 22:14:13 -08001913 get_page(newpage);
Chanho Minac8f05d2020-01-04 12:59:36 -08001914 if (page_zone(newpage) != page_zone(page)) {
1915 dec_zone_page_state(page, NR_ZSPAGES);
1916 inc_zone_page_state(newpage, NR_ZSPAGES);
1917 }
1918
Minchan Kim48b48002016-07-26 15:23:31 -07001919 reset_page(page);
1920 put_page(page);
Minchan Kim48b48002016-07-26 15:23:31 -07001921
Minchan Kimb475d422022-01-21 22:14:13 -08001922 return MIGRATEPAGE_SUCCESS;
Minchan Kim48b48002016-07-26 15:23:31 -07001923}
1924
Colin Ian King4d0a5402018-08-17 15:46:50 -07001925static void zs_page_putback(struct page *page)
Minchan Kim48b48002016-07-26 15:23:31 -07001926{
Minchan Kim48b48002016-07-26 15:23:31 -07001927 struct zspage *zspage;
1928
1929 VM_BUG_ON_PAGE(!PageMovable(page), page);
1930 VM_BUG_ON_PAGE(!PageIsolated(page), page);
1931
1932 zspage = get_zspage(page);
Minchan Kimc4549b82022-01-21 22:14:07 -08001933 migrate_write_lock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001934 dec_zspage_isolation(zspage);
Minchan Kimc4549b82022-01-21 22:14:07 -08001935 migrate_write_unlock(zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001936}
1937
Colin Ian King4d0a5402018-08-17 15:46:50 -07001938static const struct address_space_operations zsmalloc_aops = {
Minchan Kim48b48002016-07-26 15:23:31 -07001939 .isolate_page = zs_page_isolate,
1940 .migratepage = zs_page_migrate,
1941 .putback_page = zs_page_putback,
1942};
1943
1944static int zs_register_migration(struct zs_pool *pool)
1945{
1946 pool->inode = alloc_anon_inode(zsmalloc_mnt->mnt_sb);
1947 if (IS_ERR(pool->inode)) {
1948 pool->inode = NULL;
1949 return 1;
1950 }
1951
1952 pool->inode->i_mapping->private_data = pool;
1953 pool->inode->i_mapping->a_ops = &zsmalloc_aops;
1954 return 0;
1955}
1956
1957static void zs_unregister_migration(struct zs_pool *pool)
1958{
1959 flush_work(&pool->free_work);
Markus Elfringc3491ec2016-07-28 15:48:59 -07001960 iput(pool->inode);
Minchan Kim48b48002016-07-26 15:23:31 -07001961}
1962
1963/*
1964 * Caller should hold page_lock of all pages in the zspage
1965 * In here, we cannot use zspage meta data.
1966 */
1967static void async_free_zspage(struct work_struct *work)
1968{
1969 int i;
1970 struct size_class *class;
1971 unsigned int class_idx;
1972 enum fullness_group fullness;
1973 struct zspage *zspage, *tmp;
1974 LIST_HEAD(free_pages);
1975 struct zs_pool *pool = container_of(work, struct zs_pool,
1976 free_work);
1977
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07001978 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Minchan Kim48b48002016-07-26 15:23:31 -07001979 class = pool->size_class[i];
1980 if (class->index != i)
1981 continue;
1982
1983 spin_lock(&class->lock);
1984 list_splice_init(&class->fullness_list[ZS_EMPTY], &free_pages);
1985 spin_unlock(&class->lock);
1986 }
1987
Minchan Kim48b48002016-07-26 15:23:31 -07001988 list_for_each_entry_safe(zspage, tmp, &free_pages, list) {
1989 list_del(&zspage->list);
1990 lock_zspage(zspage);
1991
1992 get_zspage_mapping(zspage, &class_idx, &fullness);
1993 VM_BUG_ON(fullness != ZS_EMPTY);
1994 class = pool->size_class[class_idx];
1995 spin_lock(&class->lock);
Miaohe Lin33848332021-06-30 18:53:04 -07001996 __free_zspage(pool, class, zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07001997 spin_unlock(&class->lock);
1998 }
1999};
2000
2001static void kick_deferred_free(struct zs_pool *pool)
2002{
2003 schedule_work(&pool->free_work);
2004}
2005
2006static void init_deferred_free(struct zs_pool *pool)
2007{
2008 INIT_WORK(&pool->free_work, async_free_zspage);
2009}
2010
2011static void SetZsPageMovable(struct zs_pool *pool, struct zspage *zspage)
2012{
2013 struct page *page = get_first_page(zspage);
2014
2015 do {
2016 WARN_ON(!trylock_page(page));
2017 __SetPageMovable(page, pool->inode->i_mapping);
2018 unlock_page(page);
2019 } while ((page = get_next_page(page)) != NULL);
2020}
2021#endif
2022
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002023/*
2024 *
2025 * Based on the number of unused allocated objects calculate
2026 * and return the number of pages that we can free.
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002027 */
2028static unsigned long zs_can_compact(struct size_class *class)
2029{
2030 unsigned long obj_wasted;
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002031 unsigned long obj_allocated = zs_stat_get(class, OBJ_ALLOCATED);
2032 unsigned long obj_used = zs_stat_get(class, OBJ_USED);
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002033
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002034 if (obj_allocated <= obj_used)
2035 return 0;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002036
Sergey Senozhatsky44f43e92016-05-09 16:28:49 -07002037 obj_wasted = obj_allocated - obj_used;
Ganesh Mahendranb4fd07a2016-07-28 15:47:49 -07002038 obj_wasted /= class->objs_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002039
Minchan Kim6cbf16b2015-09-08 15:04:49 -07002040 return obj_wasted * class->pages_per_zspage;
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002041}
2042
Rokudo Yan23959282021-02-25 17:18:31 -08002043static unsigned long __zs_compact(struct zs_pool *pool,
2044 struct size_class *class)
Minchan Kim312fcae2015-04-15 16:15:30 -07002045{
Minchan Kim312fcae2015-04-15 16:15:30 -07002046 struct zs_compact_control cc;
Minchan Kim37836892016-07-26 15:23:23 -07002047 struct zspage *src_zspage;
2048 struct zspage *dst_zspage = NULL;
Rokudo Yan23959282021-02-25 17:18:31 -08002049 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002050
Minchan Kimb475d422022-01-21 22:14:13 -08002051 /* protect the race between zpage migration and zs_free */
2052 write_lock(&pool->migrate_lock);
2053 /* protect zpage allocation/free */
Minchan Kim312fcae2015-04-15 16:15:30 -07002054 spin_lock(&class->lock);
Minchan Kim37836892016-07-26 15:23:23 -07002055 while ((src_zspage = isolate_zspage(class, true))) {
Minchan Kimb475d422022-01-21 22:14:13 -08002056 /* protect someone accessing the zspage(i.e., zs_map_object) */
2057 migrate_write_lock(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002058
Sergey Senozhatsky04f05902015-09-08 15:04:30 -07002059 if (!zs_can_compact(class))
2060 break;
2061
Ganesh Mahendran41b88e12016-07-28 15:47:43 -07002062 cc.obj_idx = 0;
Minchan Kim48b48002016-07-26 15:23:31 -07002063 cc.s_page = get_first_page(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002064
Minchan Kim37836892016-07-26 15:23:23 -07002065 while ((dst_zspage = isolate_zspage(class, false))) {
Minchan Kimb475d422022-01-21 22:14:13 -08002066 migrate_write_lock_nested(dst_zspage);
2067
Minchan Kim48b48002016-07-26 15:23:31 -07002068 cc.d_page = get_first_page(dst_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002069 /*
Sergey Senozhatsky0dc63d482015-09-08 15:04:33 -07002070 * If there is no more space in dst_page, resched
2071 * and see if anyone had allocated another zspage.
Minchan Kim312fcae2015-04-15 16:15:30 -07002072 */
2073 if (!migrate_zspage(pool, class, &cc))
2074 break;
2075
Minchan Kim4aa409c2016-07-26 15:23:26 -07002076 putback_zspage(class, dst_zspage);
Minchan Kimb475d422022-01-21 22:14:13 -08002077 migrate_write_unlock(dst_zspage);
2078 dst_zspage = NULL;
2079 if (rwlock_is_contended(&pool->migrate_lock))
2080 break;
Minchan Kim312fcae2015-04-15 16:15:30 -07002081 }
2082
2083 /* Stop if we couldn't find slot */
Minchan Kim37836892016-07-26 15:23:23 -07002084 if (dst_zspage == NULL)
Minchan Kim312fcae2015-04-15 16:15:30 -07002085 break;
2086
Minchan Kim4aa409c2016-07-26 15:23:26 -07002087 putback_zspage(class, dst_zspage);
Minchan Kimb475d422022-01-21 22:14:13 -08002088 migrate_write_unlock(dst_zspage);
2089
Minchan Kim4aa409c2016-07-26 15:23:26 -07002090 if (putback_zspage(class, src_zspage) == ZS_EMPTY) {
Minchan Kimb475d422022-01-21 22:14:13 -08002091 migrate_write_unlock(src_zspage);
Minchan Kim48b48002016-07-26 15:23:31 -07002092 free_zspage(pool, class, src_zspage);
Rokudo Yan23959282021-02-25 17:18:31 -08002093 pages_freed += class->pages_per_zspage;
Minchan Kimb475d422022-01-21 22:14:13 -08002094 } else
2095 migrate_write_unlock(src_zspage);
Minchan Kim312fcae2015-04-15 16:15:30 -07002096 spin_unlock(&class->lock);
Minchan Kimb475d422022-01-21 22:14:13 -08002097 write_unlock(&pool->migrate_lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002098 cond_resched();
Minchan Kimb475d422022-01-21 22:14:13 -08002099 write_lock(&pool->migrate_lock);
Minchan Kim312fcae2015-04-15 16:15:30 -07002100 spin_lock(&class->lock);
2101 }
2102
Minchan Kimb475d422022-01-21 22:14:13 -08002103 if (src_zspage) {
Minchan Kim4aa409c2016-07-26 15:23:26 -07002104 putback_zspage(class, src_zspage);
Minchan Kimb475d422022-01-21 22:14:13 -08002105 migrate_write_unlock(src_zspage);
2106 }
Minchan Kim312fcae2015-04-15 16:15:30 -07002107
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002108 spin_unlock(&class->lock);
Minchan Kimb475d422022-01-21 22:14:13 -08002109 write_unlock(&pool->migrate_lock);
Rokudo Yan23959282021-02-25 17:18:31 -08002110
2111 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002112}
2113
2114unsigned long zs_compact(struct zs_pool *pool)
2115{
2116 int i;
Minchan Kim312fcae2015-04-15 16:15:30 -07002117 struct size_class *class;
Rokudo Yan23959282021-02-25 17:18:31 -08002118 unsigned long pages_freed = 0;
Minchan Kim312fcae2015-04-15 16:15:30 -07002119
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002120 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Minchan Kim312fcae2015-04-15 16:15:30 -07002121 class = pool->size_class[i];
2122 if (!class)
2123 continue;
2124 if (class->index != i)
2125 continue;
Rokudo Yan23959282021-02-25 17:18:31 -08002126 pages_freed += __zs_compact(pool, class);
Minchan Kim312fcae2015-04-15 16:15:30 -07002127 }
Rokudo Yan23959282021-02-25 17:18:31 -08002128 atomic_long_add(pages_freed, &pool->stats.pages_compacted);
Minchan Kim312fcae2015-04-15 16:15:30 -07002129
Rokudo Yan23959282021-02-25 17:18:31 -08002130 return pages_freed;
Minchan Kim312fcae2015-04-15 16:15:30 -07002131}
2132EXPORT_SYMBOL_GPL(zs_compact);
2133
Sergey Senozhatsky7d3f3932015-09-08 15:04:35 -07002134void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats)
2135{
2136 memcpy(stats, &pool->stats, sizeof(struct zs_pool_stats));
2137}
2138EXPORT_SYMBOL_GPL(zs_pool_stats);
2139
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002140static unsigned long zs_shrinker_scan(struct shrinker *shrinker,
2141 struct shrink_control *sc)
2142{
2143 unsigned long pages_freed;
2144 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2145 shrinker);
2146
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002147 /*
2148 * Compact classes and calculate compaction delta.
2149 * Can run concurrently with a manually triggered
2150 * (by user) compaction.
2151 */
Rokudo Yan23959282021-02-25 17:18:31 -08002152 pages_freed = zs_compact(pool);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002153
2154 return pages_freed ? pages_freed : SHRINK_STOP;
2155}
2156
2157static unsigned long zs_shrinker_count(struct shrinker *shrinker,
2158 struct shrink_control *sc)
2159{
2160 int i;
2161 struct size_class *class;
2162 unsigned long pages_to_free = 0;
2163 struct zs_pool *pool = container_of(shrinker, struct zs_pool,
2164 shrinker);
2165
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002166 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002167 class = pool->size_class[i];
2168 if (!class)
2169 continue;
2170 if (class->index != i)
2171 continue;
2172
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002173 pages_to_free += zs_can_compact(class);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002174 }
2175
2176 return pages_to_free;
2177}
2178
2179static void zs_unregister_shrinker(struct zs_pool *pool)
2180{
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002181 unregister_shrinker(&pool->shrinker);
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002182}
2183
2184static int zs_register_shrinker(struct zs_pool *pool)
2185{
2186 pool->shrinker.scan_objects = zs_shrinker_scan;
2187 pool->shrinker.count_objects = zs_shrinker_count;
2188 pool->shrinker.batch = 0;
2189 pool->shrinker.seeks = DEFAULT_SEEKS;
2190
2191 return register_shrinker(&pool->shrinker);
2192}
2193
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002194/**
2195 * zs_create_pool - Creates an allocation pool to work from.
Ganesh Mahendranfd854462016-07-28 15:47:54 -07002196 * @name: pool name to be created
Davidlohr Bueso4bbc0bc2013-01-04 12:14:00 -08002197 *
2198 * This function must be called before anything when using
2199 * the zsmalloc allocator.
2200 *
2201 * On success, a pointer to the newly created pool is returned,
2202 * otherwise NULL.
2203 */
Sergey Senozhatskyd0d8da22016-05-20 16:59:48 -07002204struct zs_pool *zs_create_pool(const char *name)
Nitin Gupta61989a82012-01-09 16:51:56 -06002205{
Ganesh Mahendran18136652014-12-12 16:57:10 -08002206 int i;
Nitin Gupta61989a82012-01-09 16:51:56 -06002207 struct zs_pool *pool;
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002208 struct size_class *prev_class = NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002209
Ganesh Mahendran18136652014-12-12 16:57:10 -08002210 pool = kzalloc(sizeof(*pool), GFP_KERNEL);
Nitin Gupta61989a82012-01-09 16:51:56 -06002211 if (!pool)
2212 return NULL;
2213
Minchan Kim48b48002016-07-26 15:23:31 -07002214 init_deferred_free(pool);
Minchan Kimb475d422022-01-21 22:14:13 -08002215 rwlock_init(&pool->migrate_lock);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002216
Minchan Kim2e40e162015-04-15 16:15:23 -07002217 pool->name = kstrdup(name, GFP_KERNEL);
2218 if (!pool->name)
2219 goto err;
2220
Minchan Kim37836892016-07-26 15:23:23 -07002221 if (create_cache(pool))
Minchan Kim2e40e162015-04-15 16:15:23 -07002222 goto err;
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002223
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002224 /*
Xishi Qiu399d8ee2017-02-22 15:45:01 -08002225 * Iterate reversely, because, size of size_class that we want to use
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002226 * for merging should be larger or equal to current size.
2227 */
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002228 for (i = ZS_SIZE_CLASSES - 1; i >= 0; i--) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002229 int size;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002230 int pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002231 int objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002232 struct size_class *class;
Minchan Kim37836892016-07-26 15:23:23 -07002233 int fullness = 0;
Nitin Gupta61989a82012-01-09 16:51:56 -06002234
2235 size = ZS_MIN_ALLOC_SIZE + i * ZS_SIZE_CLASS_DELTA;
2236 if (size > ZS_MAX_ALLOC_SIZE)
2237 size = ZS_MAX_ALLOC_SIZE;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002238 pages_per_zspage = get_pages_per_zspage(size);
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002239 objs_per_zspage = pages_per_zspage * PAGE_SIZE / size;
Nitin Gupta61989a82012-01-09 16:51:56 -06002240
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002241 /*
Sergey Senozhatsky010b4952018-04-05 16:24:43 -07002242 * We iterate from biggest down to smallest classes,
2243 * so huge_class_size holds the size of the first huge
2244 * class. Any object bigger than or equal to that will
2245 * endup in the huge class.
2246 */
2247 if (pages_per_zspage != 1 && objs_per_zspage != 1 &&
2248 !huge_class_size) {
2249 huge_class_size = size;
2250 /*
2251 * The object uses ZS_HANDLE_SIZE bytes to store the
2252 * handle. We need to subtract it, because zs_malloc()
2253 * unconditionally adds handle size before it performs
2254 * size class search - so object may be smaller than
2255 * huge class size, yet it still can end up in the huge
2256 * class because it grows by ZS_HANDLE_SIZE extra bytes
2257 * right before class lookup.
2258 */
2259 huge_class_size -= (ZS_HANDLE_SIZE - 1);
2260 }
2261
2262 /*
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002263 * size_class is used for normal zsmalloc operation such
2264 * as alloc/free for that size. Although it is natural that we
2265 * have one size_class for each size, there is a chance that we
2266 * can get more memory utilization if we use one size_class for
2267 * many different sizes whose size_class have same
2268 * characteristics. So, we makes size_class point to
2269 * previous size_class if possible.
2270 */
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002271 if (prev_class) {
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002272 if (can_merge(prev_class, pages_per_zspage, objs_per_zspage)) {
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002273 pool->size_class[i] = prev_class;
2274 continue;
2275 }
2276 }
2277
2278 class = kzalloc(sizeof(struct size_class), GFP_KERNEL);
2279 if (!class)
2280 goto err;
2281
Nitin Gupta61989a82012-01-09 16:51:56 -06002282 class->size = size;
2283 class->index = i;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002284 class->pages_per_zspage = pages_per_zspage;
Ganesh Mahendran64d90462016-07-28 15:47:51 -07002285 class->objs_per_zspage = objs_per_zspage;
Nitin Gupta61989a82012-01-09 16:51:56 -06002286 spin_lock_init(&class->lock);
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002287 pool->size_class[i] = class;
Minchan Kim48b48002016-07-26 15:23:31 -07002288 for (fullness = ZS_EMPTY; fullness < NR_ZS_FULLNESS;
2289 fullness++)
Minchan Kim37836892016-07-26 15:23:23 -07002290 INIT_LIST_HEAD(&class->fullness_list[fullness]);
Ganesh Mahendrandf8b5bb2014-12-12 16:57:07 -08002291
2292 prev_class = class;
Nitin Gupta61989a82012-01-09 16:51:56 -06002293 }
2294
Dan Streetmand34f6152016-05-20 16:59:56 -07002295 /* debug only, don't abort if it fails */
2296 zs_pool_stat_create(pool, name);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002297
Minchan Kim48b48002016-07-26 15:23:31 -07002298 if (zs_register_migration(pool))
2299 goto err;
2300
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002301 /*
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002302 * Not critical since shrinker is only used to trigger internal
2303 * defragmentation of the pool which is pretty optional thing. If
2304 * registration fails we still can use the pool normally and user can
2305 * trigger compaction manually. Thus, ignore return code.
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002306 */
Aliaksei Karaliou93144ca2018-01-31 16:18:40 -08002307 zs_register_shrinker(pool);
2308
Nitin Gupta61989a82012-01-09 16:51:56 -06002309 return pool;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002310
2311err:
2312 zs_destroy_pool(pool);
2313 return NULL;
Nitin Gupta61989a82012-01-09 16:51:56 -06002314}
2315EXPORT_SYMBOL_GPL(zs_create_pool);
2316
2317void zs_destroy_pool(struct zs_pool *pool)
2318{
2319 int i;
2320
Sergey Senozhatskyab9d3062015-09-08 15:04:41 -07002321 zs_unregister_shrinker(pool);
Minchan Kim48b48002016-07-26 15:23:31 -07002322 zs_unregister_migration(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002323 zs_pool_stat_destroy(pool);
2324
Jerome Marchandcf8e0fe2017-07-10 15:50:18 -07002325 for (i = 0; i < ZS_SIZE_CLASSES; i++) {
Nitin Gupta61989a82012-01-09 16:51:56 -06002326 int fg;
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002327 struct size_class *class = pool->size_class[i];
2328
2329 if (!class)
2330 continue;
2331
2332 if (class->index != i)
2333 continue;
Nitin Gupta61989a82012-01-09 16:51:56 -06002334
Minchan Kim48b48002016-07-26 15:23:31 -07002335 for (fg = ZS_EMPTY; fg < NR_ZS_FULLNESS; fg++) {
Minchan Kim37836892016-07-26 15:23:23 -07002336 if (!list_empty(&class->fullness_list[fg])) {
Marlies Ruck93ad5ab2013-05-15 16:56:49 -04002337 pr_info("Freeing non-empty class with size %db, fullness group %d\n",
Nitin Gupta61989a82012-01-09 16:51:56 -06002338 class->size, fg);
2339 }
2340 }
Joonsoo Kim9eec4cd2014-12-12 16:56:44 -08002341 kfree(class);
Nitin Gupta61989a82012-01-09 16:51:56 -06002342 }
Mahendran Ganesh40f9fb82014-12-12 16:57:01 -08002343
Minchan Kim37836892016-07-26 15:23:23 -07002344 destroy_cache(pool);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002345 kfree(pool->name);
Nitin Gupta61989a82012-01-09 16:51:56 -06002346 kfree(pool);
2347}
2348EXPORT_SYMBOL_GPL(zs_destroy_pool);
2349
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002350static int __init zs_init(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002351{
Minchan Kim48b48002016-07-26 15:23:31 -07002352 int ret;
2353
2354 ret = zsmalloc_mount();
2355 if (ret)
2356 goto out;
2357
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002358 ret = cpuhp_setup_state(CPUHP_MM_ZS_PREPARE, "mm/zsmalloc:prepare",
2359 zs_cpu_prepare, zs_cpu_dead);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002360 if (ret)
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002361 goto hp_setup_fail;
Nitin Gupta61989a82012-01-09 16:51:56 -06002362
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002363#ifdef CONFIG_ZPOOL
2364 zpool_register_driver(&zs_zpool_driver);
2365#endif
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002366
Dan Streetman4abaac92016-05-26 15:16:27 -07002367 zs_stat_init();
2368
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002369 return 0;
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002370
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002371hp_setup_fail:
Minchan Kim48b48002016-07-26 15:23:31 -07002372 zsmalloc_unmount();
2373out:
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002374 return ret;
Nitin Gupta61989a82012-01-09 16:51:56 -06002375}
Nitin Gupta61989a82012-01-09 16:51:56 -06002376
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002377static void __exit zs_exit(void)
Nitin Gupta61989a82012-01-09 16:51:56 -06002378{
Ganesh Mahendran66cdef62014-12-18 16:17:40 -08002379#ifdef CONFIG_ZPOOL
2380 zpool_unregister_driver(&zs_zpool_driver);
2381#endif
Minchan Kim48b48002016-07-26 15:23:31 -07002382 zsmalloc_unmount();
Sebastian Andrzej Siewior215c89d2016-11-27 00:13:38 +01002383 cpuhp_remove_state(CPUHP_MM_ZS_PREPARE);
Ganesh Mahendran0f050d92015-02-12 15:00:54 -08002384
2385 zs_stat_exit();
Nitin Gupta61989a82012-01-09 16:51:56 -06002386}
Ben Hutchings069f1012012-06-20 02:31:11 +01002387
2388module_init(zs_init);
2389module_exit(zs_exit);
2390
2391MODULE_LICENSE("Dual BSD/GPL");
2392MODULE_AUTHOR("Nitin Gupta <ngupta@vflare.org>");