Lines Matching refs:itx

60  * possibly replay the transaction is saved in it. The itx is then assigned
239 itx_t *itx;
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;
357 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
358 lr = (lr_remove_t *)&itx->itx_lr;
362 itx->itx_oid = foid;
364 zil_itx_assign(zilog, itx, tx);
374 itx_t *itx;
381 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
382 lr = (lr_link_t *)&itx->itx_lr;
387 zil_itx_assign(zilog, itx, tx);
397 itx_t *itx;
405 itx = zil_itx_create(txtype, sizeof (*lr) + namesize + linksize);
406 lr = (lr_create_t *)&itx->itx_lr;
419 zil_itx_assign(zilog, itx, tx);
429 itx_t *itx;
437 itx = zil_itx_create(txtype, sizeof (*lr) + snamesize + dnamesize);
438 lr = (lr_rename_t *)&itx->itx_lr;
443 itx->itx_oid = szp->z_id;
445 zil_itx_assign(zilog, itx, tx);
482 itx_t *itx;
494 itx = zil_itx_create(txtype, sizeof (*lr) +
496 lr = (lr_write_t *)&itx->itx_lr;
499 zil_itx_destroy(itx);
500 itx = zil_itx_create(txtype, sizeof (*lr));
501 lr = (lr_write_t *)&itx->itx_lr;
505 itx->itx_wr_state = write_state;
507 itx->itx_sod += len;
514 itx->itx_private = zp->z_zfsvfs;
518 itx->itx_sync = B_FALSE;
520 zil_itx_assign(zilog, itx, tx);
534 itx_t *itx;
540 itx = zil_itx_create(txtype, sizeof (*lr));
541 lr = (lr_truncate_t *)&itx->itx_lr;
546 itx->itx_sync = (zp->z_sync_cnt != 0);
547 zil_itx_assign(zilog, itx, tx);
557 itx_t *itx;
577 itx = zil_itx_create(txtype, recsize);
578 lr = (lr_setattr_t *)&itx->itx_lr;
608 itx->itx_sync = (zp->z_sync_cnt != 0);
609 zil_itx_assign(zilog, itx, tx);
619 itx_t *itx;
643 itx = zil_itx_create(txtype, txsize);
645 lr = (lr_acl_t *)&itx->itx_lr;
674 itx->itx_sync = (zp->z_sync_cnt != 0);
675 zil_itx_assign(zilog, itx, tx);