Home
last modified time | relevance | path

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

/titanic_41/usr/src/uts/common/io/1394/adapters/
H A Dhci1394_tlist.c92 list->tl_tail = NULL; in hci1394_tlist_init()
162 if (tlist_handle->tl_tail == NULL) { in hci1394_tlist_add()
164 tlist_handle->tl_tail = node; in hci1394_tlist_add()
178 tlist_handle->tl_tail->tln_next = node; in hci1394_tlist_add()
179 node->tln_prev = tlist_handle->tl_tail; in hci1394_tlist_add()
180 tlist_handle->tl_tail = node; in hci1394_tlist_add()
470 (list->tl_tail == node)) { in hci1394_tlist_remove()
472 list->tl_tail = NULL; in hci1394_tlist_remove()
480 } else if (list->tl_tail == node) { in hci1394_tlist_remove()
481 list->tl_tail = node->tln_prev; in hci1394_tlist_remove()
/titanic_41/usr/src/uts/common/sys/1394/adapters/
H A Dhci1394_tlist.h136 hci1394_tlist_node_t *tl_tail; member