Lines Matching defs:itx
1947 itx_t *itx;
1952 itx = zil_itx_create(TX_CREATE, sizeof (*lr) + namesize);
1953 memcpy(&itx->itx_lr + 1, &lr->lr_create.lr_common + 1,
1956 zil_itx_assign(zd->zd_zilog, itx, tx);
1964 itx_t *itx;
1969 itx = zil_itx_create(TX_REMOVE, sizeof (*lr) + namesize);
1970 memcpy(&itx->itx_lr + 1, &lr->lr_common + 1,
1973 itx->itx_oid = object;
1974 zil_itx_assign(zd->zd_zilog, itx, tx);
1980 itx_t *itx;
1989 itx = zil_itx_create(TX_WRITE,
1994 ((lr_write_t *)&itx->itx_lr) + 1, DMU_READ_NO_PREFETCH) != 0) {
1995 zil_itx_destroy(itx);
1996 itx = zil_itx_create(TX_WRITE, sizeof (*lr));
1999 itx->itx_private = zd;
2000 itx->itx_wr_state = write_state;
2001 itx->itx_sync = (ztest_random(8) == 0);
2003 memcpy(&itx->itx_lr + 1, &lr->lr_common + 1,
2006 zil_itx_assign(zd->zd_zilog, itx, tx);
2012 itx_t *itx;
2017 itx = zil_itx_create(TX_TRUNCATE, sizeof (*lr));
2018 memcpy(&itx->itx_lr + 1, &lr->lr_common + 1,
2021 itx->itx_sync = B_FALSE;
2022 zil_itx_assign(zd->zd_zilog, itx, tx);
2028 itx_t *itx;
2033 itx = zil_itx_create(TX_SETATTR, sizeof (*lr));
2034 memcpy(&itx->itx_lr + 1, &lr->lr_common + 1,
2037 itx->itx_sync = B_FALSE;
2038 zil_itx_assign(zd->zd_zilog, itx, tx);