| 144 | } |
| 145 | |
| 146 | int64_t |
| 147 | zfs_refcount_add(zfs_refcount_t *rc, const void *holder) |
| 148 | { |
| 149 | return (zfs_refcount_add_many(rc, 1, holder)); |
| 150 | } |
| 151 | |
| 152 | int64_t |
| 153 | zfs_refcount_remove_many(zfs_refcount_t *rc, uint64_t number, |
no test coverage detected