Home
last modified time | relevance | path

Searched refs:ABD_FLAG_META (Results 1 – 2 of 2) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dabd.c263 ABD_FLAG_OWNER | ABD_FLAG_META)); in abd_verify()
265 IMPLY(abd->abd_flags & ABD_FLAG_META, abd->abd_flags & ABD_FLAG_OWNER); in abd_verify()
317 abd->abd_flags |= ABD_FLAG_META; in abd_alloc()
371 abd->abd_flags |= ABD_FLAG_META; in abd_alloc_linear()
392 if (abd->abd_flags & ABD_FLAG_META) { in abd_free_linear()
428 boolean_t is_metadata = (sabd->abd_flags & ABD_FLAG_META) != 0; in abd_alloc_sametype()
600 } else if ((abd->abd_flags & ABD_FLAG_META) != 0) { in abd_borrow_buf()
633 } else if ((abd->abd_flags & ABD_FLAG_META) != 0) { in abd_return_buf()
667 abd->abd_flags |= ABD_FLAG_META; in abd_take_ownership_of_buf()
683 abd->abd_flags &= ~ABD_FLAG_META; in abd_release_ownership_of_buf()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dabd.h35 ABD_FLAG_META = 1 << 2 /* does this represent FS metadata? */ enumerator