Searched refs:rc_tree (Results 1 – 2 of 2) sorted by relevance
| /src/sys/contrib/openzfs/module/zfs/ |
| H A D | refcount.c | 70 avl_create(&rc->rc_tree, zfs_refcount_compare, sizeof (reference_t), in zfs_refcount_create() 100 while ((ref = avl_destroy_nodes(&rc->rc_tree, &cookie)) != NULL) in zfs_refcount_destroy_many() 102 avl_destroy(&rc->rc_tree); in zfs_refcount_destroy_many() 145 avl_add(&rc->rc_tree, ref); in zfs_refcount_add_many() 186 ref = avl_find(&rc->rc_tree, &s, NULL); in zfs_refcount_remove_many() 193 avl_remove(&rc->rc_tree, ref); in zfs_refcount_remove_many() 246 avl_swap(&tree, &src->rc_tree); in zfs_refcount_transfer() 253 if (avl_is_empty(&dst->rc_tree)) in zfs_refcount_transfer() 254 avl_swap(&dst->rc_tree, &tree); in zfs_refcount_transfer() 256 avl_add(&dst->rc_tree, ref); in zfs_refcount_transfer() [all …]
|
| /src/sys/contrib/openzfs/include/sys/ |
| H A D | zfs_refcount.h | 60 avl_tree_t rc_tree; member
|