MCPcopy Create free account
hub / github.com/F-Stack/f-stack / abd_zero_off

Function abd_zero_off

freebsd/contrib/openzfs/module/zfs/abd.c:904–908  ·  view source on GitHub ↗

* Zero out the abd from a particular offset to the end. */

Source from the content-addressed store, hash-verified

902 * Zero out the abd from a particular offset to the end.
903 */
904void
905abd_zero_off(abd_t *abd, size_t off, size_t size)
906{
907 (void) abd_iterate_func(abd, off, size, abd_zero_off_cb, NULL);
908}
909
910/*
911 * Iterate over two ABDs and call func incrementally on the two ABDs' data in

Callers 8

vdev_raidz_reconstruct_qFunction · 0.85
arc_hdr_authenticateFunction · 0.85
l2arc_apply_transformsFunction · 0.85
vdev_draid_cksum_finishFunction · 0.85
zio_write_compressFunction · 0.85
zio_vdev_io_startFunction · 0.85
zio_doneFunction · 0.85
abd_zeroFunction · 0.85

Calls 1

abd_iterate_funcFunction · 0.85

Tested by

no test coverage detected