Home
last modified time | relevance | path

Searched refs:txtype (Results 1 – 9 of 9) sorted by relevance

/illumos-gate/usr/src/cmd/zdb/
H A Dzdb_il.c79 if (txtype == TX_SYMLINK) { in zil_prt_rec_create()
82 } else if (txtype != TX_MKXATTR) { in zil_prt_rec_create()
110 zil_prt_rec_link(zilog_t *zilog, int txtype, void *arg) in zil_prt_rec_link() argument
162 if (txtype == TX_WRITE2 || verbose < 5) in zil_prt_rec_write()
312 int txtype; in print_log_record() local
316 txtype = lr->lrc_txtype; in print_log_record()
318 ASSERT(txtype != 0 && (uint_t)txtype < TX_MAX_TYPE); in print_log_record()
323 zil_rec_info[txtype].zri_name, in print_log_record()
328 if (txtype && verbose >= 3) { in print_log_record()
330 zil_rec_info[txtype].zri_print(zilog, txtype, lr); in print_log_record()
[all …]
/illumos-gate/usr/src/uts/common/fs/zfs/
H A Dzfs_log.c278 if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR || in zfs_log_create()
279 (int)txtype == TX_CREATE || (int)txtype == TX_MKDIR || in zfs_log_create()
280 (int)txtype == TX_MKXATTR) { in zfs_log_create()
290 itx = zil_itx_create(txtype, txsize); in zfs_log_create()
388 ASSERT((txtype & ~TX_CI) == TX_REMOVE); in zfs_log_remove()
597 itx = zil_itx_create(txtype, recsize); in zfs_log_setattr()
642 int txtype; in zfs_log_acl() local
653 if (txtype == TX_ACL) in zfs_log_acl()
663 itx = zil_itx_create(txtype, txsize); in zfs_log_acl()
667 if (txtype == TX_ACL) { in zfs_log_acl()
[all …]
H A Dzfs_replay.c291 uint64_t txtype; in zfs_replay_create_acl() local
296 txtype = (lr->lr_common.lrc_txtype & ~TX_CI); in zfs_replay_create_acl()
299 if (txtype == TX_CREATE_ACL_ATTR || in zfs_replay_create_acl()
300 txtype == TX_MKDIR_ACL_ATTR) { in zfs_replay_create_acl()
344 switch (txtype) { in zfs_replay_create_acl()
439 uint64_t txtype; in zfs_replay_create() local
442 txtype = (lr->lr_common.lrc_txtype & ~TX_CI); in zfs_replay_create()
445 if (txtype == TX_CREATE_ATTR || txtype == TX_MKDIR_ATTR) in zfs_replay_create()
494 switch (txtype) { in zfs_replay_create()
H A Dzfs_vnops.c1659 uint64_t txtype; in zfs_create() local
1736 txtype |= TX_CI; in zfs_create()
1845 uint64_t txtype; in zfs_remove() local
2022 txtype = TX_REMOVE; in zfs_remove()
2024 txtype |= TX_CI; in zfs_remove()
2075 uint64_t txtype; in zfs_mkdir() local
2213 txtype |= TX_CI; in zfs_mkdir()
2340 txtype |= TX_CI; in zfs_rmdir()
4371 txtype |= TX_CI; in zfs_symlink()
4580 uint64_t txtype = TX_LINK; in zfs_link() local
[all …]
H A Dzil.c1660 zil_itx_create(uint64_t txtype, size_t lrsize) in zil_itx_create() argument
1667 itx->itx_lr.lrc_txtype = txtype; in zil_itx_create()
3304 uint64_t txtype = lr->lrc_txtype; in zil_replay_log_record() local
3316 txtype &= ~TX_CI; in zil_replay_log_record()
3318 if (txtype == 0 || txtype >= TX_MAX_TYPE) in zil_replay_log_record()
3325 if (TX_OOO(txtype)) { in zil_replay_log_record()
3340 if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) { in zil_replay_log_record()
3363 error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, zr->zr_byteswap); in zil_replay_log_record()
3373 error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, B_FALSE); in zil_replay_log_record()
H A Dzio_crypt.c1386 uint64_t txtype, lr_len; in zio_crypt_init_uios_zil() local
1419 txtype = lr->lrc_txtype; in zio_crypt_init_uios_zil()
1422 txtype = BSWAP_64(lr->lrc_txtype); in zio_crypt_init_uios_zil()
1427 if (txtype == TX_WRITE && lr_len != sizeof (lr_write_t)) in zio_crypt_init_uios_zil()
1471 txtype = lr->lrc_txtype; in zio_crypt_init_uios_zil()
1474 txtype = BSWAP_64(lr->lrc_txtype); in zio_crypt_init_uios_zil()
1492 if (txtype == TX_WRITE) { in zio_crypt_init_uios_zil()
/illumos-gate/usr/src/uts/common/fs/zfs/sys/
H A Dzil.h180 #define TX_OOO(txtype) \ argument
181 ((txtype) == TX_WRITE || \
182 (txtype) == TX_TRUNCATE || \
183 (txtype) == TX_SETATTR || \
184 (txtype) == TX_ACL_V0 || \
185 (txtype) == TX_ACL || \
186 (txtype) == TX_WRITE2)
430 extern itx_t *zil_itx_create(uint64_t txtype, size_t lrsize);
H A Dzfs_znode.h330 extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
335 extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
338 extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
340 extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
342 extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
344 extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype,
346 extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype,
348 extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,
/illumos-gate/usr/src/uts/common/inet/ip/
H A Digmp.c2803 mcast_record_t txtype; in mcast_merge_rtx() local
2835 txtype = CHANGE_TO_INCLUDE; in mcast_merge_rtx()
2839 txtype = CHANGE_TO_EXCLUDE; in mcast_merge_rtx()
2842 mreclist->mrec_type = txtype; in mcast_merge_rtx()