Home
last modified time | relevance | path

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

/f-stack/freebsd/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);
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);
137 extern void *txg_list_head(txg_list_t *tl, uint64_t txg);
[all …]
H A Ddsl_pool.h130 txg_list_t dp_dirty_datasets;
131 txg_list_t dp_dirty_zilogs;
132 txg_list_t dp_dirty_dirs;
133 txg_list_t dp_sync_tasks;
134 txg_list_t dp_early_sync_tasks;
H A Dvdev_impl.h285 txg_list_t vdev_ms_list; /* per-txg dirty metaslab lists */
286 txg_list_t vdev_dtl_list; /* per-txg dirty DTL lists */
H A Dspa_impl.h241 txg_list_t spa_vdev_txg_list; /* per-txg dirty vdev list */
/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dtxg.c824 txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset) in txg_list_create()
838 txg_list_empty_impl(txg_list_t *tl, uint64_t txg) in txg_list_empty_impl()
846 txg_list_empty(txg_list_t *tl, uint64_t txg) in txg_list_empty()
856 txg_list_destroy(txg_list_t *tl) in txg_list_destroy()
875 txg_all_lists_empty(txg_list_t *tl) in txg_all_lists_empty()
893 txg_list_add(txg_list_t *tl, void *p, uint64_t txg) in txg_list_add()
918 txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg) in txg_list_add_tail()
946 txg_list_remove(txg_list_t *tl, uint64_t txg) in txg_list_remove()
995 txg_list_member(txg_list_t *tl, void *p, uint64_t txg) in txg_list_member()
1008 txg_list_head(txg_list_t *tl, uint64_t txg) in txg_list_head()
[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.c605 txg_list_t *tl = &vd->vdev_ms_list; in dsl_early_sync_task_verify()