Lines Matching refs:itx

56  * possibly replay the transaction is saved in it. The itx is then assigned
243 itx_t *itx;
282 itx = zil_itx_create(txtype, txsize);
284 lr = (lr_create_t *)&itx->itx_lr;
320 lracl = (lr_acl_create_t *)&itx->itx_lr;
344 zil_itx_assign(zilog, itx, tx);
354 itx_t *itx;
361 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
362 lr = (lr_remove_t *)&itx->itx_lr;
366 itx->itx_oid = foid;
368 zil_itx_assign(zilog, itx, tx);
378 itx_t *itx;
385 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
386 lr = (lr_link_t *)&itx->itx_lr;
391 zil_itx_assign(zilog, itx, tx);
401 itx_t *itx;
409 itx = zil_itx_create(txtype, sizeof (*lr) + namesize + linksize);
410 lr = (lr_create_t *)&itx->itx_lr;
423 zil_itx_assign(zilog, itx, tx);
433 itx_t *itx;
441 itx = zil_itx_create(txtype, sizeof (*lr) + snamesize + dnamesize);
442 lr = (lr_rename_t *)&itx->itx_lr;
447 itx->itx_oid = szp->z_id;
449 zil_itx_assign(zilog, itx, tx);
486 itx_t *itx;
498 itx = zil_itx_create(txtype, sizeof (*lr) +
500 lr = (lr_write_t *)&itx->itx_lr;
503 zil_itx_destroy(itx);
504 itx = zil_itx_create(txtype, sizeof (*lr));
505 lr = (lr_write_t *)&itx->itx_lr;
509 itx->itx_wr_state = write_state;
511 itx->itx_sod += len;
518 itx->itx_private = zp->z_zfsvfs;
522 itx->itx_sync = B_FALSE;
524 zil_itx_assign(zilog, itx, tx);
538 itx_t *itx;
544 itx = zil_itx_create(txtype, sizeof (*lr));
545 lr = (lr_truncate_t *)&itx->itx_lr;
550 itx->itx_sync = (zp->z_sync_cnt != 0);
551 zil_itx_assign(zilog, itx, tx);
561 itx_t *itx;
581 itx = zil_itx_create(txtype, recsize);
582 lr = (lr_setattr_t *)&itx->itx_lr;
612 itx->itx_sync = (zp->z_sync_cnt != 0);
613 zil_itx_assign(zilog, itx, tx);
623 itx_t *itx;
647 itx = zil_itx_create(txtype, txsize);
649 lr = (lr_acl_t *)&itx->itx_lr;
678 itx->itx_sync = (zp->z_sync_cnt != 0);
679 zil_itx_assign(zilog, itx, tx);