Lines Matching defs:txg_how
1019 dmu_tx_try_assign(dmu_tx_t *tx, uint64_t txg_how)
1039 * Note that we always honor the txg_how flag regardless
1043 !(txg_how & TXG_WAIT))
1167 * Assign tx to a transaction group; txg_how is a bitmask:
1203 dmu_tx_assign(dmu_tx_t *tx, uint64_t txg_how)
1208 ASSERT0(txg_how & ~(TXG_WAIT | TXG_NOTHROTTLE));
1212 IMPLY((txg_how & TXG_WAIT), !dsl_pool_config_held(tx->tx_pool));
1214 if ((txg_how & TXG_NOTHROTTLE))
1217 while ((err = dmu_tx_try_assign(tx, txg_how)) != 0) {
1220 if (err != ERESTART || !(txg_how & TXG_WAIT))