Searched refs:zpool (Results 1 – 11 of 11) sorted by relevance
/Linux-v5.10/mm/ |
D | zpool.c | 21 struct zpool { struct 155 struct zpool *zpool_create_pool(const char *type, const char *name, gfp_t gfp, in zpool_create_pool() 159 struct zpool *zpool; in zpool_create_pool() local 175 zpool = kmalloc(sizeof(*zpool), gfp); in zpool_create_pool() 176 if (!zpool) { in zpool_create_pool() 182 zpool->driver = driver; in zpool_create_pool() 183 zpool->pool = driver->create(name, gfp, ops, zpool); in zpool_create_pool() 184 zpool->ops = ops; in zpool_create_pool() 185 zpool->evictable = driver->shrink && ops && ops->evict; in zpool_create_pool() 187 if (!zpool->pool) { in zpool_create_pool() [all …]
|
D | zswap.c | 110 module_param_cb(zpool, &zswap_zpool_param_ops, &zswap_zpool_type, 0644); 131 struct zpool *zpool; member 211 zpool_get_type((p)->zpool)) 213 static int zswap_writeback_entry(struct zpool *pool, unsigned long handle); 242 total += zpool_get_total_size(pool->zpool); in zswap_update_total_size() 345 zpool_free(entry->pool->zpool, entry->handle); in zswap_free_entry() 510 if (strcmp(zpool_get_type(pool->zpool), type)) in zswap_pool_find_get() 526 if (zpool_shrink(pool->zpool, 1, NULL)) in shrink_worker() 556 pool->zpool = zpool_create_pool(type, name, gfp, &zswap_zpool_ops); in zswap_pool_create() 557 if (!pool->zpool) { in zswap_pool_create() [all …]
|
D | zbud.c | 102 struct zpool *zpool; member 131 if (pool->zpool && pool->zpool_ops && pool->zpool_ops->evict) in zbud_zpool_evict() 132 return pool->zpool_ops->evict(pool->zpool, handle); in zbud_zpool_evict() 143 struct zpool *zpool) in zbud_zpool_create() argument 149 pool->zpool = zpool; in zbud_zpool_create()
|
D | z3fold.c | 165 struct zpool *zpool; member 1704 if (pool->zpool && pool->zpool_ops && pool->zpool_ops->evict) in z3fold_zpool_evict() 1705 return pool->zpool_ops->evict(pool->zpool, handle); in z3fold_zpool_evict() 1716 struct zpool *zpool) in z3fold_zpool_create() argument 1723 pool->zpool = zpool; in z3fold_zpool_create()
|
D | Makefile | 102 obj-$(CONFIG_ZPOOL) += zpool.o
|
D | zsmalloc.c | 385 struct zpool *zpool) in zs_zpool_create() argument
|
D | Kconfig | 636 command line 'zswap.zpool=' option.
|
/Linux-v5.10/include/linux/ |
D | zpool.h | 15 struct zpool; 18 int (*evict)(struct zpool *pool, unsigned long handle); 42 struct zpool *zpool_create_pool(const char *type, const char *name, 45 const char *zpool_get_type(struct zpool *pool); 47 void zpool_destroy_pool(struct zpool *pool); 49 bool zpool_malloc_support_movable(struct zpool *pool); 51 int zpool_malloc(struct zpool *pool, size_t size, gfp_t gfp, 54 void zpool_free(struct zpool *pool, unsigned long handle); 56 int zpool_shrink(struct zpool *pool, unsigned int pages, 59 void *zpool_map_handle(struct zpool *pool, unsigned long handle, [all …]
|
/Linux-v5.10/Documentation/vm/ |
D | zswap.rst | 64 Zswap makes use of zpool for the managing the compressed memory pool. Each 65 allocation in zpool is not directly accessible by address. Rather, a handle is 68 pages are freed. The pool is not preallocated. By default, a zpool 70 but it can be overridden at boot time by setting the ``zpool`` attribute, 71 e.g. ``zswap.zpool=zbud``. It can also be changed at runtime using the sysfs 72 ``zpool`` attribute, e.g.:: 74 echo zbud > /sys/module/zswap/parameters/zpool 76 The zbud type zpool allocates exactly 1 page to store 2 compressed pages, which 78 zbud pages). The zsmalloc type zpool has a more complex compressed page 84 of the swap entry, a combination of the swap type and swap offset, to the zpool [all …]
|
D | z3fold.rst | 17 via the zpool API.
|
/Linux-v5.10/ |
D | MAINTAINERS | 19445 F: include/linux/zpool.h 19446 F: mm/zpool.c
|