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.c864 tl->tl_head[t] = NULL; in txg_list_empty_impl()
872 return (tl->tl_head[txg & TXG_MASK] == NULL); in txg_list_empty()
909 res &= (tl->tl_head[i] == NULL); in txg_list_add()
929 tn->tn_next[t] = tl->tl_head[t];
930 tl->tl_head[t] = tn;
955 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) in txg_list_add_tail()
979 if ((tn = tl->tl_head[t]) != NULL) { in txg_list_remove()
983 tl->tl_head[t] = tn->tn_next[t];
1004 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1039 tn = tl->tl_head[ in txg_list_next()
[all...]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dtxg.h65 txg_node_t *tl_head[TXG_SIZE]; member