Searched refs:txg_list_t (Results 1 – 7 of 7) sorted by relevance
/freebsd/sys/contrib/openzfs/include/sys/ |
H A D | txg.h | 66 } 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 D | dsl_pool.h | 133 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 D | vdev_impl.h | 272 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 D | spa_impl.h | 264 txg_list_t spa_vdev_txg_list; /* per-txg dirty vdev list */
|
/freebsd/sys/contrib/openzfs/module/zfs/ |
H A D | txg.c | 854 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 D | dsl_synctask.c | 82 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 D | dsl_pool.c | 658 txg_list_t *tl = &vd->vdev_ms_list; in dsl_early_sync_task_verify()
|