Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Drefcount.c64 list_create(&rc->rc_removed, sizeof (reference_t), in zfs_refcount_create()
97 while ((ref = list_head(&rc->rc_removed))) { in zfs_refcount_destroy_many()
98 list_remove(&rc->rc_removed, ref); in zfs_refcount_destroy_many()
102 list_destroy(&rc->rc_removed); in zfs_refcount_destroy_many()
177 list_insert_head(&rc->rc_removed, ref); in zfs_refcount_remove_many()
180 ref = list_tail(&rc->rc_removed); in zfs_refcount_remove_many()
181 list_remove(&rc->rc_removed, ref); in zfs_refcount_remove_many()
224 list_move_tail(&removed, &src->rc_removed); in zfs_refcount_transfer()
231 list_move_tail(&dst->rc_removed, &removed); in zfs_refcount_transfer()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_refcount.h56 list_t rc_removed; member