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

/freebsd-10.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-10.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_log.c239 zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
270 if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR ||
271 (int)txtype == TX_CREATE || (int)txtype == TX_MKDIR ||
272 (int)txtype == TX_MKXATTR) {
282 itx = zil_itx_create(txtype, txsize);
351 zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
361 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
375 zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
398 zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, znode_t *dzp, znode_t *zp, char *name, char *link) argument
430 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
458 zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, offset_t off, ssize_t resid, int ioflag) argument
535 zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, uint64_t off, uint64_t len) argument
558 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
626 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.c1140 zil_itx_create(uint64_t txtype, size_t lrsize) argument
1147 itx->itx_lr.lrc_txtype = txtype;
1982 "dataset %s, seq 0x%llx, txtype %llu %s\n", error, name,
1996 uint64_t txtype = lr->lrc_txtype; local
2008 txtype &= ~TX_CI;
2010 if (txtype == 0 || txtype >= TX_MAX_TYPE)
2017 if (TX_OOO(txtype)) {
2032 if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) {
2055 error = zr->zr_replay[txtype](z
[all...]
H A Dzfs_vnops.c1724 uint64_t txtype; local
1796 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap);
1798 txtype |= TX_CI;
1799 zfs_log_create(zilog, tx, txtype, dzp, zp, name,
1907 uint64_t txtype; local
2093 txtype = TX_REMOVE;
2095 txtype |= TX_CI;
2096 zfs_log_remove(zilog, tx, txtype, dzp, name, obj);
2146 uint64_t txtype; local
2289 txtype
2421 uint64_t txtype = TX_RMDIR; local
4168 uint64_t txtype = TX_SYMLINK; local
4479 uint64_t txtype = TX_LINK; local
[all...]
/freebsd-10.3-release/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzil.h167 #define TX_OOO(txtype) \
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 Dzfs_znode.h334 extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
339 extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
342 extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
344 extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
346 extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
348 extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype,
350 extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype,
352 extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,

Completed in 129 milliseconds