| 816 | } |
| 817 | |
| 818 | uint64_t |
| 819 | zap_create_norm(objset_t *os, int normflags, dmu_object_type_t ot, |
| 820 | dmu_object_type_t bonustype, int bonuslen, dmu_tx_t *tx) |
| 821 | { |
| 822 | return (zap_create_norm_dnsize(os, normflags, ot, bonustype, bonuslen, |
| 823 | 0, tx)); |
| 824 | } |
| 825 | |
| 826 | uint64_t |
| 827 | zap_create_norm_dnsize(objset_t *os, int normflags, dmu_object_type_t ot, |
no test coverage detected