| 56 | } |
| 57 | |
| 58 | void |
| 59 | zfs_refcount_create(zfs_refcount_t *rc) |
| 60 | { |
| 61 | mutex_init(&rc->rc_mtx, NULL, MUTEX_DEFAULT, NULL); |
| 62 | list_create(&rc->rc_list, sizeof (reference_t), |
| 63 | offsetof(reference_t, ref_link)); |
| 64 | list_create(&rc->rc_removed, sizeof (reference_t), |
| 65 | offsetof(reference_t, ref_link)); |
| 66 | rc->rc_count = 0; |
| 67 | rc->rc_removed_count = 0; |
| 68 | rc->rc_tracked = reference_tracking_enable; |
| 69 | } |
| 70 | |
| 71 | void |
| 72 | zfs_refcount_create_tracked(zfs_refcount_t *rc) |
no test coverage detected