Searched refs:txtype (Results 1 - 7 of 7) sorted by relevance

/freebsd-9.3-release/cddl/contrib/opensolaris/cmd/zdb/
H A Dzdb_il.c60 zil_prt_rec_create(zilog_t *zilog, int txtype, lr_create_t *lr) argument
74 if (txtype == TX_SYMLINK) {
77 } else if (txtype != TX_MKXATTR) {
92 zil_prt_rec_remove(zilog_t *zilog, int txtype, lr_remove_t *lr) argument
100 zil_prt_rec_link(zilog_t *zilog, int txtype, lr_link_t *lr) argument
109 zil_prt_rec_rename(zilog_t *zilog, int txtype, lr_rename_t *lr) argument
121 zil_prt_rec_write(zilog_t *zilog, int txtype, lr_write_t *lr) argument
134 if (txtype == TX_WRITE2 || verbose < 5)
186 zil_prt_rec_truncate(zilog_t *zilog, int txtype, lr_truncate_t *lr) argument
195 zil_prt_rec_setattr(zilog_t *zilog, int txtype, lr_setattr_ argument
240 zil_prt_rec_acl(zilog_t *zilog, int txtype, lr_acl_t *lr) argument
281 int txtype; local
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_log.c238 zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
269 if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR ||
270 (int)txtype == TX_CREATE || (int)txtype == TX_MKDIR ||
271 (int)txtype == TX_MKXATTR) {
281 itx = zil_itx_create(txtype, txsize);
350 zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
360 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
374 zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
397 zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, znode_t *dzp, znode_t *zp, char *name, char *link) argument
429 zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, znode_t *sdzp, char *sname, znode_t *tdzp, char *dname, znode_t *szp) argument
457 zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, offset_t off, ssize_t resid, int ioflag) argument
534 zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, uint64_t off, uint64_t len) argument
557 zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, vattr_t *vap, uint_t mask_applied, zfs_fuid_info_t *fuidp) argument
625 int txtype; local
[all...]
H A Dzfs_replay.c282 uint64_t txtype; local
285 txtype = (lr->lr_common.lrc_txtype & ~TX_CI);
288 if (txtype == TX_CREATE_ACL_ATTR ||
289 txtype == TX_MKDIR_ACL_ATTR) {
328 switch (txtype) {
429 uint64_t txtype; local
433 txtype = (lr->lr_common.lrc_txtype & ~TX_CI);
436 if (txtype == TX_CREATE_ATTR || txtype == TX_MKDIR_ATTR)
485 switch (txtype) {
[all...]
H A Dzil.c1126 zil_itx_create(uint64_t txtype, size_t lrsize) argument
1133 itx->itx_lr.lrc_txtype = txtype;
1968 "dataset %s, seq 0x%llx, txtype %llu %s\n", error, name,
1982 uint64_t txtype = lr->lrc_txtype; local
1994 txtype &= ~TX_CI;
1996 if (txtype == 0 || txtype >= TX_MAX_TYPE)
2003 if (TX_OOO(txtype)) {
2018 if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) {
2041 error = zr->zr_replay[txtype](z
[all...]
H A Dzfs_vnops.c1661 uint64_t txtype; local
1733 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap);
1735 txtype |= TX_CI;
1736 zfs_log_create(zilog, tx, txtype, dzp, zp, name,
1844 uint64_t txtype; local
2023 txtype = TX_REMOVE;
2025 txtype |= TX_CI;
2026 zfs_log_remove(zilog, tx, txtype, dzp, name, obj);
2076 uint64_t txtype; local
2219 txtype
2351 uint64_t txtype = TX_RMDIR; local
4090 uint64_t txtype = TX_SYMLINK; local
4397 uint64_t txtype = TX_LINK; local
[all...]
/freebsd-9.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzil.h165 #define TX_OOO(txtype) \
166 ((txtype) == TX_WRITE || \
167 (txtype) == TX_TRUNCATE || \
168 (txtype) == TX_SETATTR || \
169 (txtype) == TX_ACL_V0 || \
170 (txtype) == TX_ACL || \
171 (txtype) == TX_WRITE2)
401 extern itx_t *zil_itx_create(uint64_t txtype, size_t lrsize);
H A Dzfs_znode.h340 extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
345 extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
348 extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
350 extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
352 extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
354 extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype,
356 extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype,
358 extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,

Completed in 224 milliseconds