Home
last modified time | relevance | path

Searched refs:kmem_cache_t (Results 1 – 25 of 33) sorted by relevance

12

/freebsd/sys/contrib/openzfs/include/os/freebsd/spl/sys/
H A Dkmem.h75 } kmem_cache_t; typedef
77 extern uint64_t spl_kmem_cache_inuse(kmem_cache_t *cache);
78 extern uint64_t spl_kmem_cache_entry_size(kmem_cache_t *cache);
84 kmem_cache_t *kmem_cache_create(const char *name, size_t bufsize, size_t align,
87 void kmem_cache_destroy(kmem_cache_t *cache);
89 void *kmem_cache_alloc(kmem_cache_t *cache, int flags);
90 void kmem_cache_free(kmem_cache_t *cache, void *buf);
92 void kmem_cache_reap_soon(kmem_cache_t *);
113 typedef int kmem_cache_t; typedef
H A Dkmem_cache.h46 extern void spl_kmem_cache_set_move(kmem_cache_t *,
/freebsd/sys/cddl/compat/opensolaris/sys/
H A Dkmem.h63 } kmem_cache_t; typedef
68 kmem_cache_t *kmem_cache_create(char *name, size_t bufsize, size_t align,
71 void kmem_cache_destroy(kmem_cache_t *cache);
72 void *kmem_cache_alloc(kmem_cache_t *cache, int flags);
73 void kmem_cache_free(kmem_cache_t *cache, void *buf);
75 void kmem_cache_reap_soon(kmem_cache_t *);
/freebsd/sys/contrib/openzfs/module/os/freebsd/spl/
H A Dspl_kmem.c156 kmem_cache_t *
161 kmem_cache_t *cache; in kmem_cache_create()
183 kmem_cache_destroy(kmem_cache_t *cache) in kmem_cache_destroy()
192 kmem_cache_alloc(kmem_cache_t *cache, int flags) in kmem_cache_alloc()
207 kmem_cache_free(kmem_cache_t *cache, void *buf) in kmem_cache_free()
241 kmem_cache_reap_soon(kmem_cache_t *cache) in kmem_cache_reap_soon()
255 kmem_cache_reap_soon(kmem_cache_t *cache __unused) in kmem_cache_reap_soon()
298 spl_kmem_cache_inuse(kmem_cache_t *cache) in spl_kmem_cache_inuse()
304 spl_kmem_cache_entry_size(kmem_cache_t *cache) in spl_kmem_cache_entry_size()
314 spl_kmem_cache_set_move(kmem_cache_t *skc, in spl_kmem_cache_set_move()
/freebsd/sys/contrib/openzfs/include/os/linux/spl/sys/
H A Dkmem_cache.h179 #define kmem_cache_t spl_kmem_cache_t macro
192 extern uint64_t spl_kmem_cache_inuse(kmem_cache_t *cache);
193 extern uint64_t spl_kmem_cache_entry_size(kmem_cache_t *cache);
/freebsd/sys/contrib/openzfs/module/icp/core/
H A Dkcf_sched.c40 static kmem_cache_t *kcf_context_cache;
/freebsd/sys/contrib/openzfs/include/sys/
H A Dbtree.h72 extern kmem_cache_t *zfs_btree_leaf_cache;
H A Ddbuf.h357 extern kmem_cache_t *dbuf_dirty_kmem_cache;
H A Dspa.h1268 extern kmem_cache_t *zio_buf_cache[];
1269 extern kmem_cache_t *zio_data_buf_cache[];
H A Dzfs_context.h435 typedef umem_cache_t kmem_cache_t;
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dddt_log.c51 static kmem_cache_t *ddt_log_entry_flat_cache;
52 static kmem_cache_t *ddt_log_entry_trad_cache;
H A Dzap_micro.c219 static kmem_cache_t *zap_name_cache;
220 static kmem_cache_t *zap_attr_cache;
221 static kmem_cache_t *zap_name_long_cache;
222 static kmem_cache_t *zap_attr_long_cache;
256 kmem_cache_t *cache = longname ? zap_name_long_cache : zap_name_cache; in zap_name_alloc()
H A Drefcount.c39 static kmem_cache_t *reference_cache;
H A Dzio.c79 static kmem_cache_t *zio_cache;
80 static kmem_cache_t *zio_link_cache;
81 kmem_cache_t *zio_buf_cache[SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT];
82 kmem_cache_t *zio_data_buf_cache[SPA_MAXBLOCKSIZE >> SPA_MINBLOCKSHIFT];
318 kmem_cache_t *cache = zio_buf_cache[i]; in zio_fini()
331 kmem_cache_t *cache = zio_data_buf_cache[i]; in zio_fini()
386 zio_buf_put_canary(ulong_t *p, size_t size, kmem_cache_t **cache, size_t c) in zio_buf_put_canary()
399 zio_buf_check_canary(ulong_t *p, size_t size, kmem_cache_t **cache, size_t c) in zio_buf_check_canary()
H A Dlz4_zfs.c885 static kmem_cache_t *lz4_cache;
H A Dddt.c217 static kmem_cache_t *ddt_cache;
219 static kmem_cache_t *ddt_entry_flat_cache;
220 static kmem_cache_t *ddt_entry_trad_cache;
H A Darc.c1134 static kmem_cache_t *hdr_full_cache;
1135 static kmem_cache_t *hdr_l2only_cache;
1136 static kmem_cache_t *buf_cache;
3311 arc_hdr_realloc(arc_buf_hdr_t *hdr, kmem_cache_t *old, kmem_cache_t *new) in arc_hdr_realloc()
4583 kmem_cache_t *prev_cache = NULL; in arc_kmem_reap_soon()
4584 kmem_cache_t *prev_data_cache = NULL; in arc_kmem_reap_soon()
H A Dbrt.c246 static kmem_cache_t *brt_entry_cache;
H A Dzil.c145 static kmem_cache_t *zil_lwb_cache;
146 static kmem_cache_t *zil_zcw_cache;
/freebsd/sys/contrib/openzfs/module/os/linux/spl/
H A Dspl-kmem-cache.c199 spl_kmem_cache_inuse(kmem_cache_t *cache) in spl_kmem_cache_inuse()
206 spl_kmem_cache_entry_size(kmem_cache_t *cache) in spl_kmem_cache_entry_size()
/freebsd/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dabd_os.c107 kmem_cache_t *abd_chunk_cache;
H A Dzfs_znode_os.c91 static kmem_cache_t *znode_cache = NULL;
/freebsd/sys/cddl/contrib/opensolaris/common/lz4/
H A Dlz4.c71 static kmem_cache_t *lz4_ctx_cache;
/freebsd/sys/contrib/openzfs/module/os/linux/zfs/
H A Dzfs_znode_os.c67 static kmem_cache_t *znode_cache = NULL;
68 static kmem_cache_t *znode_hold_cache = NULL;
H A Dabd_os.c198 static kmem_cache_t *abd_cache = NULL;

12