Symbol: txg_list_t
usr/src/uts/common/fs/zfs/dsl_pool.c
584
txg_list_t *tl = &vd->vdev_ms_list;
usr/src/uts/common/fs/zfs/dsl_synctask.c
188
txg_list_t *task_list = (early) ?
usr/src/uts/common/fs/zfs/dsl_synctask.c
82
txg_list_t *task_list = (early) ?
usr/src/uts/common/fs/zfs/sys/dsl_pool.h
126
txg_list_t dp_dirty_datasets;
usr/src/uts/common/fs/zfs/sys/dsl_pool.h
127
txg_list_t dp_dirty_zilogs;
usr/src/uts/common/fs/zfs/sys/dsl_pool.h
128
txg_list_t dp_dirty_dirs;
usr/src/uts/common/fs/zfs/sys/dsl_pool.h
129
txg_list_t dp_sync_tasks;
usr/src/uts/common/fs/zfs/sys/dsl_pool.h
130
txg_list_t dp_early_sync_tasks;
usr/src/uts/common/fs/zfs/sys/spa_impl.h
237
txg_list_t spa_vdev_txg_list; /* per-txg dirty vdev list */
usr/src/uts/common/fs/zfs/sys/txg.h
121
extern void txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset);
usr/src/uts/common/fs/zfs/sys/txg.h
122
extern void txg_list_destroy(txg_list_t *tl);
usr/src/uts/common/fs/zfs/sys/txg.h
123
extern boolean_t txg_list_empty(txg_list_t *tl, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
124
extern boolean_t txg_all_lists_empty(txg_list_t *tl);
usr/src/uts/common/fs/zfs/sys/txg.h
125
extern boolean_t txg_list_add(txg_list_t *tl, void *p, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
126
extern boolean_t txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
127
extern void *txg_list_remove(txg_list_t *tl, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
128
extern void *txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
129
extern boolean_t txg_list_member(txg_list_t *tl, void *p, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
130
extern void *txg_list_head(txg_list_t *tl, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/txg.h
131
extern void *txg_list_next(txg_list_t *tl, void *p, uint64_t txg);
usr/src/uts/common/fs/zfs/sys/vdev_impl.h
248
txg_list_t vdev_ms_list; /* per-txg dirty metaslab lists */
usr/src/uts/common/fs/zfs/sys/vdev_impl.h
249
txg_list_t vdev_dtl_list; /* per-txg dirty DTL lists */
usr/src/uts/common/fs/zfs/txg.c
775
txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset)
usr/src/uts/common/fs/zfs/txg.c
789
txg_list_destroy(txg_list_t *tl)
usr/src/uts/common/fs/zfs/txg.c
800
txg_list_empty(txg_list_t *tl, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
814
txg_all_lists_empty(txg_list_t *tl)
usr/src/uts/common/fs/zfs/txg.c
829
txg_list_add(txg_list_t *tl, void *p, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
854
txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
882
txg_list_remove(txg_list_t *tl, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
907
txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
931
txg_list_member(txg_list_t *tl, void *p, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
944
txg_list_head(txg_list_t *tl, uint64_t txg)
usr/src/uts/common/fs/zfs/txg.c
954
txg_list_next(txg_list_t *tl, void *p, uint64_t txg)