Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zfs/
H A Drefcount.c71 list_create(&rc->rc_removed, sizeof (reference_t), in zfs_refcount_create()
103 while ((ref = list_remove_head(&rc->rc_removed))) in zfs_refcount_destroy_many()
105 list_destroy(&rc->rc_removed); in zfs_refcount_destroy_many()
193 list_insert_head(&rc->rc_removed, ref); in zfs_refcount_remove_many()
195 ref = list_remove_tail(&rc->rc_removed); in zfs_refcount_remove_many()
245 list_move_tail(&removed, &src->rc_removed); in zfs_refcount_transfer()
255 list_move_tail(&dst->rc_removed, &removed); in zfs_refcount_transfer()
/freebsd/sys/contrib/openzfs/include/sys/
H A Dzfs_refcount.h60 list_t rc_removed; member