Home
last modified time | relevance | path

Searched refs:tl_head (Results 1 – 2 of 2) sorted by relevance

/freebsd/sys/contrib/openzfs/module/zfs/
H A Dtxg.c884 tl->tl_head[t] = NULL; in txg_list_create()
892 return (tl->tl_head[txg & TXG_MASK] == NULL); in txg_list_empty_impl()
929 res &= (tl->tl_head[i] == NULL); in txg_all_lists_empty()
949 tn->tn_next[t] = tl->tl_head[t]; in txg_list_add()
950 tl->tl_head[t] = tn; in txg_list_add()
975 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) in txg_list_add_tail()
999 if ((tn = tl->tl_head[t]) != NULL) { in txg_list_remove()
1003 tl->tl_head[t] = tn->tn_next[t]; in txg_list_remove()
1024 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1059 tn = tl->tl_head[t]; in txg_list_head()
/freebsd/sys/contrib/openzfs/include/sys/
H A Dtxg.h67 txg_node_t *tl_head[TXG_SIZE]; member