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

/freebsd-10-stable/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-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/
H A Dzfs_log.c240 zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
271 if ((int)txtype == TX_CREATE_ATTR || (int)txtype == TX_MKDIR_ATTR ||
272 (int)txtype == TX_CREATE || (int)txtype == TX_MKDIR ||
273 (int)txtype == TX_MKXATTR) {
283 itx = zil_itx_create(txtype, txsize);
352 zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
362 itx = zil_itx_create(txtype, sizeof (*lr) + namesize);
376 zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, argument
399 zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype, znode_t *dzp, znode_t *zp, char *name, char *link) argument
431 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
459 zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, offset_t off, ssize_t resid, int ioflag) argument
529 zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype, znode_t *zp, uint64_t off, uint64_t len) argument
552 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
620 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.c1191 zil_itx_create(uint64_t txtype, size_t lrsize) argument
1198 itx->itx_lr.lrc_txtype = txtype;
2049 "dataset %s, seq 0x%llx, txtype %llu %s\n", error, name,
2063 uint64_t txtype = lr->lrc_txtype; local
2075 txtype &= ~TX_CI;
2077 if (txtype == 0 || txtype >= TX_MAX_TYPE)
2084 if (TX_OOO(txtype)) {
2099 if (txtype == TX_WRITE && reclen == sizeof (lr_write_t)) {
2122 error = zr->zr_replay[txtype](z
[all...]
H A Dzfs_vnops.c1763 uint64_t txtype; local
1872 txtype = zfs_log_create_txtype(Z_FILE, vsecp, vap);
1873 zfs_log_create(zilog, tx, txtype, dzp, zp, name,
1921 uint64_t txtype; local
2004 txtype = TX_REMOVE;
2005 zfs_log_remove(zilog, tx, txtype, dzp, name, obj);
2047 uint64_t txtype; local
2172 txtype = zfs_log_create_txtype(Z_DIR, NULL, vap);
2173 zfs_log_create(zilog, tx, txtype, dzp, zp, dirname, NULL,
2253 uint64_t txtype local
3995 uint64_t txtype = TX_SYMLINK; local
4261 uint64_t txtype = TX_LINK; local
[all...]
/freebsd-10-stable/sys/cddl/contrib/opensolaris/uts/common/fs/zfs/sys/
H A Dzil.h168 #define TX_OOO(txtype) \
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)
403 extern itx_t *zil_itx_create(uint64_t txtype, size_t lrsize);
H A Dzfs_znode.h326 extern void zfs_log_create(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
331 extern void zfs_log_remove(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
334 extern void zfs_log_link(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
336 extern void zfs_log_symlink(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
338 extern void zfs_log_rename(zilog_t *zilog, dmu_tx_t *tx, uint64_t txtype,
340 extern void zfs_log_write(zilog_t *zilog, dmu_tx_t *tx, int txtype,
342 extern void zfs_log_truncate(zilog_t *zilog, dmu_tx_t *tx, int txtype,
344 extern void zfs_log_setattr(zilog_t *zilog, dmu_tx_t *tx, int txtype,

Completed in 130 milliseconds