Home
last modified time | relevance | path

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

/freebsd/sys/dev/tcp_log/
H A Dtcp_log_dev.c170 if (priv->tldi_head != NULL) { in tcp_log_dev_clear_cdevpriv()
171 entry = priv->tldi_head; in tcp_log_dev_clear_cdevpriv()
216 priv->tldi_head = STAILQ_FIRST(&tcp_log_dev_queue_head); in tcp_log_dev_open()
217 if (priv->tldi_head != NULL) in tcp_log_dev_open()
218 priv->tldi_cur = priv->tldi_head->tldq_buf; in tcp_log_dev_open()
242 KASSERT(priv->tldi_head != NULL, in tcp_log_dev_rotate_bufs()
245 KASSERT(priv->tldi_head->tldq_buf == priv->tldi_cur, in tcp_log_dev_rotate_bufs()
247 __func__, __LINE__, priv->tldi_head->tldq_buf, in tcp_log_dev_rotate_bufs()
255 entry = priv->tldi_head; in tcp_log_dev_rotate_bufs()
256 priv->tldi_head = STAILQ_NEXT(entry, tldq_queue); in tcp_log_dev_rotate_bufs()
[all …]
H A Dtcp_log_dev.h75 struct tcp_log_dev_queue *tldi_head; member