Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Drefcount.c76 list_create(&rc->rc_removed, sizeof (reference_t), in zfs_refcount_create()
108 while ((ref = list_remove_head(&rc->rc_removed))) { in zfs_refcount_destroy_many()
112 list_destroy(&rc->rc_removed); in zfs_refcount_destroy_many()
203 list_insert_head(&rc->rc_removed, ref); in zfs_refcount_remove_many()
205 ref = list_remove_tail(&rc->rc_removed); in zfs_refcount_remove_many()
259 list_move_tail(&removed, &src->rc_removed); in zfs_refcount_transfer()
269 list_move_tail(&dst->rc_removed, &removed); in zfs_refcount_transfer()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Drefcount.h63 list_t rc_removed; member