/titanic_41/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_41/usr/src/uts/common/fs/zfs/ |
H A D | zfs_log.c | 234 zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, in zfs_log_create() argument 265 if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR || in zfs_log_create() 266 (int)txtype == TX_CREATE || (int)txtype == TX_MKDIR || in zfs_log_create() 267 (int)txtype == TX_MKXATTR) { in zfs_log_create() 277 itx = zil_itx_create(txtype, txsize); in zfs_log_create() 344 txtype); in zfs_log_create() 352 zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, in zfs_log_remove() argument 362 itx = zil_itx_create(txtype, sizeof (*lr) + namesize); in zfs_log_remove() 376 zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, in zfs_log_link() argument 386 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 | 1488 uint64_t txtype; in zfs_create() local 1559 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap); in zfs_create() 1561 txtype |= TX_CI; in zfs_create() 1562 zfs_log_create(zilog, tx, txtype, dzp, zp, name, in zfs_create() 1670 uint64_t txtype; in zfs_remove() local 1815 txtype = TX_REMOVE; in zfs_remove() 1817 txtype |= TX_CI; in zfs_remove() 1821 name, txtype); in zfs_remove() 1856 txtype = TX_REMOVE; in zfs_remove() 1858 txtype |= TX_CI; in zfs_remove() [all …]
|
H A D | zil.c | 1128 zil_itx_create(uint64_t txtype, size_t lrsize) in zil_itx_create() argument 1135 itx->itx_lr.lrc_txtype = txtype; in zil_itx_create() 1984 uint64_t txtype = lr->lrc_txtype; in zil_replay_log_record() local 1996 txtype &= ~TX_CI; in zil_replay_log_record() 1998 if (txtype == 0 || txtype >= TX_MAX_TYPE) in zil_replay_log_record() 2005 if (TX_OOO(txtype)) { in zil_replay_log_record() 2020 if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) { in zil_replay_log_record() 2043 error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, zr->zr_byteswap); in zil_replay_log_record() 2053 error = zr->zr_replay[txtype](zr->zr_arg, zr->zr_lr, B_FALSE); in zil_replay_log_record()
|
/titanic_41/usr/src/uts/common/fs/zfs/sys/ |
H A D | zil.h | 167 #define TX_OOO(txtype) \ argument 168 ((txtype) == TX_WRITE || \ 169 (txtype) == TX_TRUNCATE || \ 170 (txtype) == TX_SETATTR || \ 171 (txtype) == TX_ACL_V0 || \ 172 (txtype) == TX_ACL || \ 173 (txtype) == TX_WRITE2) 403 extern itx_t *zil_itx_create(uint64_t txtype, size_t lrsize);
|
H A D | zfs_znode.h | 307 extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 312 extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 315 extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 317 extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 319 extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, 322 extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype, 324 extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype, 326 extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,
|
/titanic_41/usr/src/uts/common/fs/zev/ |
H A D | zev_callbacks.c | 274 uint64_t txtype) in zev_znode_create_cb() argument 287 int type = (int)txtype; in zev_znode_create_cb() 342 uint64_t txtype) in zev_znode_remove_cb() argument 355 int type = (int)txtype; in zev_znode_remove_cb()
|
/titanic_41/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()
|