/titanic_50/usr/src/cmd/zdb/ |
H A D | zdb_il.c | 60 zil_prt_rec_create(zilog_t *zilog, int txtype, lr_create_t *lr) in zil_prt_rec_create() argument 74 if (txtype == TX_SYMLINK) { in zil_prt_rec_create() 77 } else if (txtype != TX_MKXATTR) { in zil_prt_rec_create() 92 zil_prt_rec_remove(zilog_t *zilog, int txtype, lr_remove_t *lr) in zil_prt_rec_remove() argument 100 zil_prt_rec_link(zilog_t *zilog, int txtype, lr_link_t *lr) in zil_prt_rec_link() argument 109 zil_prt_rec_rename(zilog_t *zilog, int txtype, lr_rename_t *lr) in zil_prt_rec_rename() argument 121 zil_prt_rec_write(zilog_t *zilog, int txtype, lr_write_t *lr) in zil_prt_rec_write() argument 134 if (txtype == TX_WRITE2 || verbose < 5) in zil_prt_rec_write() 186 zil_prt_rec_truncate(zilog_t *zilog, int txtype, lr_truncate_t *lr) in zil_prt_rec_truncate() argument 195 zil_prt_rec_setattr(zilog_t *zilog, int txtype, lr_setattr_t *lr) in zil_prt_rec_setattr() argument [all …]
|
/titanic_50/usr/src/uts/common/fs/zfs/ |
H A D | zfs_log.c | 236 zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, in zfs_log_create() argument 267 if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR || in zfs_log_create() 268 (int)txtype == TX_CREATE || (int)txtype == TX_MKDIR || in zfs_log_create() 269 (int)txtype == TX_MKXATTR) { in zfs_log_create() 279 itx = zil_itx_create(txtype, txsize); in zfs_log_create() 346 txtype); in zfs_log_create() 354 zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, in zfs_log_remove() argument 364 itx = zil_itx_create(txtype, sizeof (*lr) + namesize); in zfs_log_remove() 378 zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, in zfs_log_link() argument 388 itx = zil_itx_create(txtype, sizeof (*lr) + namesize); in zfs_log_link() [all …]
|
H A D | zfs_replay.c | 279 uint64_t txtype; in zfs_replay_create_acl() local 282 txtype = (lr->lr_common.lrc_txtype & ~TX_CI); in zfs_replay_create_acl() 285 if (txtype == TX_CREATE_ACL_ATTR || in zfs_replay_create_acl() 286 txtype == TX_MKDIR_ACL_ATTR) { in zfs_replay_create_acl() 325 switch (txtype) { in zfs_replay_create_acl() 418 uint64_t txtype; in zfs_replay_create() local 421 txtype = (lr->lr_common.lrc_txtype & ~TX_CI); in zfs_replay_create() 424 if (txtype == TX_CREATE_ATTR || txtype == TX_MKDIR_ATTR) in zfs_replay_create() 468 switch (txtype) { in zfs_replay_create()
|
H A D | zfs_vnops.c | 1489 uint64_t txtype; in zfs_create() local 1560 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap); in zfs_create() 1562 txtype |= TX_CI; in zfs_create() 1563 zfs_log_create(zilog, tx, txtype, dzp, zp, name, in zfs_create() 1671 uint64_t txtype; in zfs_remove() local 1816 txtype = TX_REMOVE; in zfs_remove() 1818 txtype |= TX_CI; in zfs_remove() 1822 name, txtype); in zfs_remove() 1857 txtype = TX_REMOVE; in zfs_remove() 1859 txtype |= TX_CI; in zfs_remove() [all …]
|
H A D | zil.c | 1129 zil_itx_create(uint64_t txtype, size_t lrsize) in zil_itx_create() argument 1136 itx->itx_lr.lrc_txtype = txtype; in zil_itx_create() 1985 uint64_t txtype = lr->lrc_txtype; in zil_replay_log_record() local 1997 txtype &= ~TX_CI; in zil_replay_log_record() 1999 if (txtype == 0 || txtype >= TX_MAX_TYPE) in zil_replay_log_record() 2006 if (TX_OOO(txtype)) { in zil_replay_log_record() 2021 if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) { in zil_replay_log_record() 2044 error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, zr->zr_byteswap); in zil_replay_log_record() 2054 error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, B_FALSE); in zil_replay_log_record()
|
/titanic_50/usr/src/uts/common/fs/zfs/sys/ |
H A D | zil.h | 168 #define TX_OOO(txtype) \ argument 169 ((txtype) == TX_WRITE || \ 170 (txtype) == TX_TRUNCATE || \ 171 (txtype) == TX_SETATTR || \ 172 (txtype) == TX_ACL_V0 || \ 173 (txtype) == TX_ACL || \ 174 (txtype) == TX_WRITE2) 404 extern itx_t *zil_itx_create(uint64_t txtype, size_t lrsize);
|
H A D | zfs_znode.h | 308 extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 313 extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 316 extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 318 extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 320 extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 323 extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype, 325 extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype, 327 extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
/titanic_50/usr/src/uts/common/fs/zev/ |
H A D | zev_callbacks.c | 278 uint64_t txtype) in zev_znode_create_cb() argument 291 int type = (int)txtype; in zev_znode_create_cb() 346 uint64_t txtype) in zev_znode_remove_cb() argument 359 int type = (int)txtype; in zev_znode_remove_cb()
|
/titanic_50/usr/src/uts/common/inet/ip/ |
H A D | igmp.c | 2804 mcast_record_t txtype; in mcast_merge_rtx() local 2836 txtype = CHANGE_TO_INCLUDE; in mcast_merge_rtx() 2840 txtype = CHANGE_TO_EXCLUDE; in mcast_merge_rtx() 2843 mreclist->mrec_type = txtype; in mcast_merge_rtx()
|