Home
last modified time | relevance | path

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

/f-stack/freebsd/contrib/openzfs/module/zfs/
H A Dtxg.c834 tl->tl_head[t] = NULL; in txg_list_create()
842 return (tl->tl_head[txg & TXG_MASK] == NULL); in txg_list_empty_impl()
904 tn->tn_next[t] = tl->tl_head[t]; in txg_list_add()
905 tl->tl_head[t] = tn; in txg_list_add()
930 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) in txg_list_add_tail()
954 if ((tn = tl->tl_head[t]) != NULL) { in txg_list_remove()
958 tl->tl_head[t] = tn->tn_next[t]; in txg_list_remove()
979 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1014 tn = tl->tl_head[t]; in txg_list_head()
/f-stack/freebsd/contrib/openzfs/include/sys/
H A Dtxg.h65 txg_node_t *tl_head[TXG_SIZE]; member