Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Drefcount.c91 while ((ref = list_head(&rc->rc_list))) { in zfs_refcount_destroy_many()
92 list_remove(&rc->rc_list, ref); in zfs_refcount_destroy_many()
95 list_destroy(&rc->rc_list); in zfs_refcount_destroy_many()
138 list_insert_head(&rc->rc_list, ref); in zfs_refcount_add_many()
169 for (ref = list_head(&rc->rc_list); ref; in zfs_refcount_remove_many()
170 ref = list_next(&rc->rc_list, ref)) { in zfs_refcount_remove_many()
172 list_remove(&rc->rc_list, ref); in zfs_refcount_remove_many()
223 list_move_tail(&list, &src->rc_list); in zfs_refcount_transfer()
230 list_move_tail(&dst->rc_list, &list); in zfs_refcount_transfer()
251 for (ref = list_head(&rc->rc_list); ref; in zfs_refcount_transfer_ownership_many()
[all …]
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dzfs_refcount.h55 list_t rc_list; member