Home
last modified time | relevance | path

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

/titanic_50/usr/src/uts/common/fs/zfs/
H A Drefcount.c64 list_create(&rc->rc_removed, sizeof (reference_t), in refcount_create()
90 while (ref = list_head(&rc->rc_removed)) { in refcount_destroy_many()
91 list_remove(&rc->rc_removed, ref); in refcount_destroy_many()
95 list_destroy(&rc->rc_removed); in refcount_destroy_many()
169 list_insert_head(&rc->rc_removed, ref); in refcount_remove_many()
172 ref = list_tail(&rc->rc_removed); in refcount_remove_many()
173 list_remove(&rc->rc_removed, ref); in refcount_remove_many()
216 list_move_tail(&removed, &src->rc_removed); in refcount_transfer()
223 list_move_tail(&dst->rc_removed, &removed); in refcount_transfer()
/titanic_50/usr/src/uts/common/fs/zfs/sys/
H A Drefcount.h56 list_t rc_removed; member