}
static void
-dmu_tx_hold_zap_impl(dmu_tx_hold_t *txh, int add, const char *name)
+dmu_tx_hold_zap_impl(dmu_tx_hold_t *txh, const char *name)
{
dmu_tx_t *tx = txh->txh_tx;
dnode_t *dn = txh->txh_dnode;
txh = dmu_tx_hold_object_impl(tx, tx->tx_objset,
object, THT_ZAP, add, (uintptr_t)name);
if (txh != NULL)
- dmu_tx_hold_zap_impl(txh, add, name);
+ dmu_tx_hold_zap_impl(txh, name);
}
void
txh = dmu_tx_hold_dnode_impl(tx, dn, THT_ZAP, add, (uintptr_t)name);
if (txh != NULL)
- dmu_tx_hold_zap_impl(txh, add, name);
+ dmu_tx_hold_zap_impl(txh, name);
}
void