Searched defs:itx (Results 1 - 5 of 5) sorted by relevance

/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_log.c60 * possibly replay the transaction is saved in it. The itx is then assigned
239 itx_t *itx; local
278 itx = zil_itx_create(txtype, txsize);
280 lr = (lr_create_t *)&itx->itx_lr;
316 lracl = (lr_acl_create_t *)&itx->itx_lr;
340 zil_itx_assign(zilog, itx, tx);
350 itx_t *itx; local
357 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
358 lr = (lr_remove_t *)&itx->itx_lr;
362 itx
374 itx_t *itx; local
397 itx_t *itx; local
429 itx_t *itx; local
482 itx_t *itx; local
534 itx_t *itx; local
557 itx_t *itx; local
619 itx_t *itx; local
[all...]
H A Dzil.c92 * When running ziltest we want to keep all itx's and so maintain
506 * any pending itx records that have not been cleaned by zil_clean().
1058 zil_lwb_commit(zilog_t *zilog, itx_t *itx, lwb_t *lwb) argument
1060 lr_t *lrc = &itx->itx_lr; /* common log record */
1072 if (lrc->lrc_txtype == TX_WRITE && itx->itx_wr_state == WR_NEED_COPY)
1106 if (itx->itx_wr_state != WR_COPIED) {
1111 ASSERT(itx->itx_wr_state == WR_NEED_COPY);
1115 ASSERT(itx->itx_wr_state == WR_INDIRECT);
1119 itx->itx_private, lrw, dbuf, lwb->lwb_zio);
1135 * equal to the itx sequenc
1150 itx_t *itx; local
1165 zil_itx_destroy(itx_t *itx) argument
1177 itx_t *itx; local
1232 itx_t *itx; local
1269 zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx) argument
1498 itx_t *itx; local
[all...]
H A Dzvol.c1074 itx_t *itx; local
1095 itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1097 lr = (lr_write_t *)&itx->itx_lr;
1100 zil_itx_destroy(itx);
1101 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1102 lr = (lr_write_t *)&itx->itx_lr;
1106 itx->itx_wr_state = write_state;
1108 itx->itx_sod += len;
1115 itx->itx_private = zv;
1116 itx
1620 itx_t *itx; local
[all...]
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzil.h367 typedef struct itx { struct
405 extern void zil_itx_destroy(itx_t *itx);
406 extern void zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx);
/illumos-gate/usr/src/cmd/ztest/
H A Dztest.c1323 itx_t *itx; local
1328 itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1329 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1332 zil_itx_assign(zd->zd_zilog, itx, tx);
1340 itx_t *itx; local
1345 itx = zil_itx_create(TX_REMOVE, sizeof (*lr) + namesize);
1346 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1349 itx->itx_oid = object;
1350 zil_itx_assign(zd->zd_zilog, itx, tx);
1356 itx_t *itx; local
1389 itx_t *itx; local
1405 itx_t *itx; local
[all...]

Completed in 89 milliseconds