Lines Matching refs:zs_pool
24 struct zs_pool;
26 struct zs_pool *zs_create_pool(const char *name);
27 void zs_destroy_pool(struct zs_pool *pool);
29 unsigned long zs_malloc(struct zs_pool *pool, size_t size, gfp_t flags);
30 void zs_free(struct zs_pool *pool, unsigned long obj);
32 size_t zs_huge_class_size(struct zs_pool *pool);
34 unsigned long zs_get_total_pages(struct zs_pool *pool);
35 unsigned long zs_compact(struct zs_pool *pool);
37 unsigned int zs_lookup_class_index(struct zs_pool *pool, unsigned int size);
39 void zs_pool_stats(struct zs_pool *pool, struct zs_pool_stats *stats);
41 void *zs_obj_read_begin(struct zs_pool *pool, unsigned long handle,
43 void zs_obj_read_end(struct zs_pool *pool, unsigned long handle,
45 void zs_obj_write(struct zs_pool *pool, unsigned long handle,