Searched refs:txg_list_t (Results 1 – 7 of 7) sorted by relevance
/illumos-gate/usr/src/uts/common/fs/zfs/sys/ |
H A D | txg.h | 65 } txg_list_t; typedef 121 extern void txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset); 122 extern void txg_list_destroy(txg_list_t *tl); 123 extern boolean_t txg_list_empty(txg_list_t *tl, uint64_t txg); 124 extern boolean_t txg_all_lists_empty(txg_list_t *tl); 125 extern boolean_t txg_list_add(txg_list_t *tl, void *p, uint64_t txg); 126 extern boolean_t txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg); 127 extern void *txg_list_remove(txg_list_t *tl, uint64_t txg); 128 extern void *txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg); 129 extern boolean_t txg_list_member(txg_list_t *tl, void *p, uint64_t txg); [all …]
|
H A D | dsl_pool.h | 126 txg_list_t dp_dirty_datasets; 127 txg_list_t dp_dirty_zilogs; 128 txg_list_t dp_dirty_dirs; 129 txg_list_t dp_sync_tasks; 130 txg_list_t dp_early_sync_tasks;
|
H A D | vdev_impl.h | 248 txg_list_t vdev_ms_list; /* per-txg dirty metaslab lists */ 249 txg_list_t vdev_dtl_list; /* per-txg dirty DTL lists */
|
H A D | spa_impl.h | 237 txg_list_t spa_vdev_txg_list; /* per-txg dirty vdev list */
|
/illumos-gate/usr/src/uts/common/fs/zfs/ |
H A D | txg.c | 774 txg_list_create(txg_list_t *tl, spa_t *spa, size_t offset) in txg_list_create() 788 txg_list_destroy(txg_list_t *tl) in txg_list_destroy() 799 txg_list_empty(txg_list_t *tl, uint64_t txg) in txg_list_empty() 813 txg_all_lists_empty(txg_list_t *tl) in txg_all_lists_empty() 828 txg_list_add(txg_list_t *tl, void *p, uint64_t txg) in txg_list_add() 853 txg_list_add_tail(txg_list_t *tl, void *p, uint64_t txg) in txg_list_add_tail() 881 txg_list_remove(txg_list_t *tl, uint64_t txg) in txg_list_remove() 906 txg_list_remove_this(txg_list_t *tl, void *p, uint64_t txg) in txg_list_remove_this() 930 txg_list_member(txg_list_t *tl, void *p, uint64_t txg) in txg_list_member() 943 txg_list_head(txg_list_t *tl, uint64_t txg) in txg_list_head() [all …]
|
H A D | dsl_synctask.c | 82 txg_list_t *task_list = (early) ? in dsl_sync_task_common() 188 txg_list_t *task_list = (early) ? in dsl_sync_task_nowait_common()
|
H A D | dsl_pool.c | 584 txg_list_t *tl = &vd->vdev_ms_list; in dsl_early_sync_task_verify()
|