Home
last modified time | relevance | path

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

/illumos-gate/usr/src/uts/common/io/1394/adapters/
H A Dhci1394_tlist.c89 list->tl_tail = NULL; in hci1394_tlist_init()
153 if (tlist_handle->tl_tail == NULL) { in hci1394_tlist_add()
155 tlist_handle->tl_tail = node; in hci1394_tlist_add()
169 tlist_handle->tl_tail->tln_next = node; in hci1394_tlist_add()
170 node->tln_prev = tlist_handle->tl_tail; in hci1394_tlist_add()
171 tlist_handle->tl_tail = node; in hci1394_tlist_add()
431 (list->tl_tail == node)) { in hci1394_tlist_remove()
433 list->tl_tail = NULL; in hci1394_tlist_remove()
441 } else if (list->tl_tail == node) { in hci1394_tlist_remove()
442 list->tl_tail = node->tln_prev; in hci1394_tlist_remove()
/illumos-gate/usr/src/uts/common/sys/1394/adapters/
H A Dhci1394_tlist.h134 hci1394_tlist_node_t *tl_tail; member