Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/openzfs/module/os/linux/zfs/
H A Dabd_os.c192 abd_t *abd_zero_scatter = NULL; variable
507 abd_zero_scatter->abd_flags |= ABD_FLAG_OWNER; in abd_alloc_zero_scatter()
508 ABD_SCATTER(abd_zero_scatter).abd_offset = 0; in abd_alloc_zero_scatter()
509 ABD_SCATTER(abd_zero_scatter).abd_sgl = table.sgl; in abd_alloc_zero_scatter()
511 abd_zero_scatter->abd_size = SPA_MAXBLOCKSIZE; in abd_alloc_zero_scatter()
630 abd_zero_scatter->abd_flags |= ABD_FLAG_OWNER; in abd_alloc_zero_scatter()
632 ABD_SCATTER(abd_zero_scatter).abd_offset = 0; in abd_alloc_zero_scatter()
634 abd_zero_scatter->abd_size = SPA_MAXBLOCKSIZE; in abd_alloc_zero_scatter()
711 abd_free_sg_table(abd_zero_scatter); in abd_free_zero_scatter()
712 abd_free_struct(abd_zero_scatter); in abd_free_zero_scatter()
[all …]
/freebsd-14.2/sys/contrib/openzfs/module/os/freebsd/zfs/
H A Dabd_os.c115 abd_t *abd_zero_scatter = NULL; variable
252 abd_zero_scatter = abd_alloc_struct(SPA_MAXBLOCKSIZE); in abd_alloc_zero_scatter()
253 abd_zero_scatter->abd_flags |= ABD_FLAG_OWNER | ABD_FLAG_ZEROS; in abd_alloc_zero_scatter()
254 abd_zero_scatter->abd_size = SPA_MAXBLOCKSIZE; in abd_alloc_zero_scatter()
256 ABD_SCATTER(abd_zero_scatter).abd_offset = 0; in abd_alloc_zero_scatter()
259 ABD_SCATTER(abd_zero_scatter).abd_chunks[i] = in abd_alloc_zero_scatter()
273 abd_free_struct(abd_zero_scatter); in abd_free_zero_scatter()
274 abd_zero_scatter = NULL; in abd_free_zero_scatter()
/freebsd-14.2/sys/contrib/openzfs/include/sys/
H A Dabd_impl.h75 extern abd_t *abd_zero_scatter;
/freebsd-14.2/sys/contrib/openzfs/module/zfs/
H A Dabd.c600 ASSERT3P(abd_zero_scatter, !=, NULL); in abd_get_zeros()
602 return (abd_get_offset_size(abd_zero_scatter, 0, size)); in abd_get_zeros()