Home
last modified time | relevance | path

Searched refs:abd_zero_scatter (Results 1 – 4 of 4) sorted by relevance

/f-stack/freebsd/contrib/openzfs/module/os/linux/zfs/
H A Dabd_os.c169 abd_t *abd_zero_scatter = NULL; variable
475 abd_zero_scatter->abd_flags = ABD_FLAG_OWNER; in abd_alloc_zero_scatter()
476 ABD_SCATTER(abd_zero_scatter).abd_offset = 0; in abd_alloc_zero_scatter()
479 abd_zero_scatter->abd_size = SPA_MAXBLOCKSIZE; in abd_alloc_zero_scatter()
480 abd_zero_scatter->abd_parent = NULL; in abd_alloc_zero_scatter()
602 abd_zero_scatter->abd_flags = ABD_FLAG_OWNER; in abd_alloc_zero_scatter()
604 ABD_SCATTER(abd_zero_scatter).abd_offset = 0; in abd_alloc_zero_scatter()
607 abd_zero_scatter->abd_parent = NULL; in abd_alloc_zero_scatter()
686 abd_free_sg_table(abd_zero_scatter); in abd_free_zero_scatter()
687 abd_free_struct(abd_zero_scatter); in abd_free_zero_scatter()
[all …]
/f-stack/freebsd/contrib/openzfs/module/os/freebsd/zfs/
H A Dabd_os.c100 abd_t *abd_zero_scatter = NULL; variable
250 abd_zero_scatter = abd_alloc_struct(SPA_MAXBLOCKSIZE); in abd_alloc_zero_scatter()
253 abd_zero_scatter->abd_size = SPA_MAXBLOCKSIZE; in abd_alloc_zero_scatter()
254 abd_zero_scatter->abd_parent = NULL; in abd_alloc_zero_scatter()
255 zfs_refcount_create(&abd_zero_scatter->abd_children); in abd_alloc_zero_scatter()
257 ABD_SCATTER(abd_zero_scatter).abd_offset = 0; in abd_alloc_zero_scatter()
258 ABD_SCATTER(abd_zero_scatter).abd_chunk_size = in abd_alloc_zero_scatter()
262 ABD_SCATTER(abd_zero_scatter).abd_chunks[i] = in abd_alloc_zero_scatter()
273 zfs_refcount_destroy(&abd_zero_scatter->abd_children); in abd_free_zero_scatter()
277 abd_free_struct(abd_zero_scatter); in abd_free_zero_scatter()
[all …]
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dabd_impl.h95 extern abd_t *abd_zero_scatter;
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dabd.c589 ASSERT3P(abd_zero_scatter, !=, NULL); in abd_get_zeros()
591 return (abd_get_offset_size(abd_zero_scatter, 0, size)); in abd_get_zeros()