Lines Matching defs:itx
1319 itx_t *itx;
1324 itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1325 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1328 zil_itx_assign(zd->zd_zilog, itx, tx);
1336 itx_t *itx;
1341 itx = zil_itx_create(TX_REMOVE, sizeof (*lr) + namesize);
1342 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1345 itx->itx_oid = object;
1346 zil_itx_assign(zd->zd_zilog, itx, tx);
1352 itx_t *itx;
1361 itx = zil_itx_create(TX_WRITE,
1366 ((lr_write_t *)&itx->itx_lr) + 1, DMU_READ_NO_PREFETCH) != 0) {
1367 zil_itx_destroy(itx);
1368 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1371 itx->itx_private = zd;
1372 itx->itx_wr_state = write_state;
1373 itx->itx_sync = (ztest_random(8) == 0);
1374 itx->itx_sod += (write_state == WR_NEED_COPY ? lr->lr_length : 0);
1376 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1379 zil_itx_assign(zd->zd_zilog, itx, tx);
1385 itx_t *itx;
1390 itx = zil_itx_create(TX_TRUNCATE, sizeof (*lr));
1391 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1394 itx->itx_sync = B_FALSE;
1395 zil_itx_assign(zd->zd_zilog, itx, tx);
1401 itx_t *itx;
1406 itx = zil_itx_create(TX_SETATTR, sizeof (*lr));
1407 bcopy(&lr->lr_common + 1, &itx->itx_lr + 1,
1410 itx->itx_sync = B_FALSE;
1411 zil_itx_assign(zd->zd_zilog, itx, tx);