Lines Matching refs:tl_head
865 tl->tl_head[t] = NULL; in txg_list_create()
873 return (tl->tl_head[txg & TXG_MASK] == NULL); in txg_list_empty_impl()
910 res &= (tl->tl_head[i] == NULL); in txg_all_lists_empty()
930 tn->tn_next[t] = tl->tl_head[t]; in txg_list_add()
931 tl->tl_head[t] = tn; in txg_list_add()
956 for (tp = &tl->tl_head[t]; *tp != NULL; tp = &(*tp)->tn_next[t]) in txg_list_add_tail()
980 if ((tn = tl->tl_head[t]) != NULL) { in txg_list_remove()
984 tl->tl_head[t] = tn->tn_next[t]; in txg_list_remove()
1005 for (tp = &tl->tl_head[t]; (tn = *tp) != NULL; tp = &tn->tn_next[t]) { in txg_list_remove_this()
1040 tn = tl->tl_head[t]; in txg_list_head()