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.c62 avl_create(&rc->rc_tree, zfs_refcount_compare, sizeof (reference_t), in zfs_refcount_create()
92 while ((ref = avl_destroy_nodes(&rc->rc_tree, &cookie)) != NULL) in zfs_refcount_destroy_many()
94 avl_destroy(&rc->rc_tree); in zfs_refcount_destroy_many()
137 avl_add(&rc->rc_tree, ref); in zfs_refcount_add_many()
178 ref = avl_find(&rc->rc_tree, &s, NULL); in zfs_refcount_remove_many()
185 avl_remove(&rc->rc_tree, ref); in zfs_refcount_remove_many()
238 avl_swap(&tree, &src->rc_tree); in zfs_refcount_transfer()
245 if (avl_is_empty(&dst->rc_tree)) in zfs_refcount_transfer()
246 avl_swap(&dst->rc_tree, &tree); in zfs_refcount_transfer()
248 avl_add(&dst->rc_tree, ref); in zfs_refcount_transfer()
[all …]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzfs_refcount.h50 avl_tree_t rc_tree; member