Searched refs:rc_tree (Results 1 – 2 of 2) sorted by relevance
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | refcount.c | 69 avl_create(&rc->rc_tree, zfs_refcount_compare, sizeof (reference_t), in zfs_refcount_create() 99 while ((ref = avl_destroy_nodes(&rc->rc_tree, &cookie)) != NULL) in zfs_refcount_destroy_many() 101 avl_destroy(&rc->rc_tree); in zfs_refcount_destroy_many() 144 avl_add(&rc->rc_tree, ref); in zfs_refcount_add_many() 185 ref = avl_find(&rc->rc_tree, &s, NULL); in zfs_refcount_remove_many() 191 avl_remove(&rc->rc_tree, ref); in zfs_refcount_remove_many() 244 avl_swap(&tree, &src->rc_tree); in zfs_refcount_transfer() 251 if (avl_is_empty(&dst->rc_tree)) in zfs_refcount_transfer() 252 avl_swap(&dst->rc_tree, &tree); in zfs_refcount_transfer() 254 avl_add(&dst->rc_tree, ref); in zfs_refcount_transfer() [all …]
|
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | zfs_refcount.h | 59 avl_tree_t rc_tree; member
|