| 223 | } |
| 224 | |
| 225 | uint64_t |
| 226 | dmu_object_alloc(objset_t *os, dmu_object_type_t ot, int blocksize, |
| 227 | dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) |
| 228 | { |
| 229 | return dmu_object_alloc_impl(os, ot, blocksize, 0, bonustype, |
| 230 | bonuslen, 0, NULL, NULL, tx); |
| 231 | } |
| 232 | |
| 233 | uint64_t |
| 234 | dmu_object_alloc_ibs(objset_t *os, dmu_object_type_t ot, int blocksize, |
no test coverage detected