| 994 | */ |
| 995 | |
| 996 | uint64_t |
| 997 | zap_create_link(objset_t *os, dmu_object_type_t ot, uint64_t parent_obj, |
| 998 | const char *name, dmu_tx_t *tx) |
| 999 | { |
| 1000 | return (zap_create_link_dnsize(os, ot, parent_obj, name, 0, tx)); |
| 1001 | } |
| 1002 | |
| 1003 | uint64_t |
| 1004 | zap_create_link_dnsize(objset_t *os, dmu_object_type_t ot, uint64_t parent_obj, |
no test coverage detected