Home
last modified time | relevance | path

Searched refs:txg_list_t (Results 1 – 7 of 7) sorted by relevance

/freebsd/sys/contrib/openzfs/include/sys/
H A Dtxg.h66 } txg_list_t; typedef
128 extern void txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset);
129 extern void txg_list_destroy(txg_list_t *tl);
130 extern boolean_t txg_list_empty(txg_list_t *tl, uint64_t txg);
131 extern boolean_t txg_all_lists_empty(txg_list_t *tl);
132 extern boolean_t txg_list_add(txg_list_t *tl, void *p, uint64_t txg);
133 extern boolean_t txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg);
134 extern void *txg_list_remove(txg_list_t *tl, uint64_t txg);
135 extern void *txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg);
136 extern boolean_t txg_list_member(txg_list_t *tl, void *p, uint64_t txg);
[all …]
H A Ddsl_pool.h133 txg_list_t dp_dirty_datasets;
134 txg_list_t dp_dirty_zilogs;
135 txg_list_t dp_dirty_dirs;
136 txg_list_t dp_sync_tasks;
137 txg_list_t dp_early_sync_tasks;
H A Dvdev_impl.h272 txg_list_t vdev_ms_list; /* per-txg dirty metaslab lists */
273 txg_list_t vdev_dtl_list; /* per-txg dirty DTL lists */
H A Dspa_impl.h264 txg_list_t spa_vdev_txg_list; /* per-txg dirty vdev list */
/freebsd/sys/contrib/openzfs/module/zfs/
H A Dtxg.c854 txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset) in txg_list_create()
868 txg_list_empty_impl(txg_list_t *tl, uint64_t txg) in txg_list_empty()
876 txg_list_empty(txg_list_t *tl, uint64_t txg)
886 txg_list_destroy(txg_list_t *tl) in txg_list_destroy()
905 txg_all_lists_empty(txg_list_t *tl)
918 txg_list_add(txg_list_t *tl, void *p, uint64_t txg) in txg_list_add()
943 txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg) in txg_list_add_tail()
971 txg_list_remove(txg_list_t *tl, uint64_t txg) in txg_list_remove()
996 txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg) in txg_list_remove_this()
1020 txg_list_member(txg_list_t *t
[all...]
H A Ddsl_synctask.c82 txg_list_t *task_list = (early) ? in dsl_sync_task_common()
186 txg_list_t *task_list = (early) ? in dsl_sync_task_nowait_common()
H A Ddsl_pool.c658 txg_list_t *tl = &vd->vdev_ms_list; in dsl_early_sync_task_verify()