| 1128 | } |
| 1129 | |
| 1130 | int |
| 1131 | zap_remove_int(objset_t *os, uint64_t obj, uint64_t value, dmu_tx_t *tx) |
| 1132 | { |
| 1133 | char name[20]; |
| 1134 | |
| 1135 | (void) snprintf(name, sizeof (name), "%llx", (longlong_t)value); |
| 1136 | return (zap_remove(os, obj, name, tx)); |
| 1137 | } |
| 1138 | |
| 1139 | int |
| 1140 | zap_lookup_int(objset_t *os, uint64_t obj, uint64_t value) |
no test coverage detected