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

/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_log.c55 * possibly replay the transaction is saved in it. The itx is then assigned
242 itx_t *itx; local
281 itx = zil_itx_create(txtype, txsize);
283 lr = (lr_create_t *)&itx->itx_lr;
319 lracl = (lr_acl_create_t *)&itx->itx_lr;
343 zil_itx_assign(zilog, itx, tx);
353 itx_t *itx; local
360 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
361 lr = (lr_remove_t *)&itx->itx_lr;
365 itx
377 itx_t *itx; local
400 itx_t *itx; local
432 itx_t *itx; local
485 itx_t *itx; local
537 itx_t *itx; local
560 itx_t *itx; local
622 itx_t *itx; local
[all...]
H A Dzil.c103 * When running ziltest we want to keep all itx's and so maintain
1034 zil_lwb_commit(zilog_t *zilog, itx_t *itx, lwb_t *lwb) argument
1036 lr_t *lrc = &itx->itx_lr; /* common log record */
1050 if (lrc->lrc_txtype == TX_WRITE && itx->itx_wr_state == WR_NEED_COPY)
1084 if (itx->itx_wr_state != WR_COPIED) {
1089 ASSERT(itx->itx_wr_state == WR_NEED_COPY);
1093 ASSERT(itx->itx_wr_state == WR_INDIRECT);
1097 itx->itx_private, lrw, dbuf, lwb->lwb_zio);
1113 * equal to the itx sequence number because not all transactions
1128 itx_t *itx; local
1143 zil_itx_destroy(itx_t *itx) argument
1155 itx_t *itx; local
1210 itx_t *itx; local
1247 zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx) argument
1455 itx_t *itx; local
[all...]
H A Dzvol.c1126 itx_t *itx; local
1147 itx = zil_itx_create(TX_WRITE, sizeof (*lr) +
1149 lr = (lr_write_t *)&itx->itx_lr;
1152 zil_itx_destroy(itx);
1153 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1154 lr = (lr_write_t *)&itx->itx_lr;
1158 itx->itx_wr_state = write_state;
1160 itx->itx_sod += len;
1167 itx->itx_private = zv;
1168 itx
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzil.h364 typedef struct itx { struct
402 extern void zil_itx_destroy(itx_t *itx);
403 extern void zil_itx_assign(zilog_t *zilog, itx_t *itx, dmu_tx_t *tx);
/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/ztest/
H A Dztest.c1308 itx_t *itx; local
1313 itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1314 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1317 zil_itx_assign(zd->zd_zilog, itx, tx);
1325 itx_t *itx; local
1330 itx = zil_itx_create(TX_REMOVE, sizeof (*lr) + namesize);
1331 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1334 itx->itx_oid = object;
1335 zil_itx_assign(zd->zd_zilog, itx, tx);
1341 itx_t *itx; local
1374 itx_t *itx; local
1390 itx_t *itx; local
[all...]

Completed in 166 milliseconds