Home
last modified time | relevance | path

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

/freebsd/sys/contrib/openzfs/module/zfs/
H A Dtxg.c929 tn->tn_next[t] = tl->tl_head[t];
955 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) in txg_list_add_tail()
959 tn->tn_next[t] = NULL;
981 ASSERT(tn->tn_next[t] == NULL || tn->tn_next[t]->tn_member[t]); in txg_list_remove()
983 tl->tl_head[t] = tn->tn_next[t];
984 tn->tn_next[t] = NULL;
1004 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1006 *tp = tn->tn_next[t]; in txg_list_remove_this()
1007 tn->tn_next[ in txg_list_remove_this()
[all...]
/freebsd/sys/contrib/openzfs/include/sys/
H A Dtxg.h57 struct txg_node *tn_next[TXG_SIZE]; member