Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zfs/
H A Drefcount.c72 avl_create(&rc->rc_tree, zfs_refcount_compare, sizeof (reference_t), in zfs_refcount_create()
102 while ((ref = avl_destroy_nodes(&rc->rc_tree, &cookie)) != NULL) in zfs_refcount_destroy_many()
104 avl_destroy(&rc->rc_tree); in zfs_refcount_destroy_many()
147 avl_add(&rc->rc_tree, ref); in zfs_refcount_add_many()
188 ref = avl_find(&rc->rc_tree, &s, NULL); in zfs_refcount_remove_many()
195 avl_remove(&rc->rc_tree, ref); in zfs_refcount_remove_many()
248 avl_swap(&tree, &src->rc_tree); in zfs_refcount_transfer()
255 if (avl_is_empty(&dst->rc_tree)) in zfs_refcount_transfer()
256 avl_swap(&dst->rc_tree, &tree); in zfs_refcount_transfer()
258 avl_add(&dst->rc_tree, ref); in zfs_refcount_transfer()
[all …]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzfs_refcount.h60 avl_tree_t rc_tree; member