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

Function abd_get_offset

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

Source from the content-addressed store, hash-verified

565}
566
567abd_t *
568abd_get_offset(abd_t *sabd, size_t off)
569{
570 size_t size = sabd->abd_size > off ? sabd->abd_size - off : 0;
571 VERIFY3U(size, >, 0);
572 return (abd_get_offset_impl(sabd, off, size));
573}
574
575abd_t *
576abd_get_offset_size(abd_t *sabd, size_t off, size_t size)

Callers 6

abd_gang_addFunction · 0.85
vdev_indirect_io_startFunction · 0.85
zio_read_gangFunction · 0.85
zio_rewrite_gangFunction · 0.85
zio_write_gang_blockFunction · 0.85

Calls 1

abd_get_offset_implFunction · 0.85

Tested by 1