Searched refs:m_tail (Results 1 – 9 of 9) sorted by relevance
/freebsd/sys/dev/cxgbe/cxgbei/ |
H A D | icl_cxgbei.c | 579 struct mbuf *m, *m0, *m_tail; in cxgbei_getm() local 581 m_tail = m0 = NULL; in cxgbei_getm() 594 m0 = m_tail = m; in cxgbei_getm() 596 m_tail->m_next = m; in cxgbei_getm() 597 m_tail = m; in cxgbei_getm() 612 m_tail->m_next = m; in cxgbei_getm() 623 struct mbuf *m, *m_tail; in icl_cxgbei_conn_pdu_append_bio() local 633 m_tail = ip->ip_data_mbuf; in icl_cxgbei_conn_pdu_append_bio() 634 if (m_tail != NULL) in icl_cxgbei_conn_pdu_append_bio() 635 for (; m_tail->m_next != NULL; m_tail = m_tail->m_next) in icl_cxgbei_conn_pdu_append_bio() [all …]
|
/freebsd/contrib/llvm-project/lldb/source/Plugins/Language/CPlusPlus/ |
H A D | LibCxxList.cpp | 158 ValueObject *m_tail = nullptr; member in __anon1be7be510111::ListFrontEnd 314 if (!m_head || !m_tail || m_node_address == 0) in CalculateNumChildren() 327 uint64_t prev_val = m_tail->GetValueAsUnsigned(0); in CalculateNumChildren() 353 if (!m_head || !m_tail || m_node_address == 0) in GetChildAtIndex() 399 m_tail = nullptr; in Update() 413 m_tail = impl_sp->GetChildMemberWithName("__prev_").get(); in Update()
|
/freebsd/sys/contrib/ck/include/ |
H A D | ck_fifo.h | 49 ck_spinlock_t m_tail; member 60 return ck_spinlock_trylock(&fifo->m_tail); in ck_fifo_spsc_enqueue_trylock() 67 ck_spinlock_lock(&fifo->m_tail); in ck_fifo_spsc_enqueue_lock() 75 ck_spinlock_unlock(&fifo->m_tail); in ck_fifo_spsc_enqueue_unlock() 107 ck_spinlock_init(&fifo->m_tail); in ck_fifo_spsc_init()
|
/freebsd/sys/dev/iscsi/ |
H A D | icl_soft.c | 1114 struct mbuf *m, *m_tail; in icl_soft_conn_pdu_append_bio() local 1121 m_tail = request->ip_data_mbuf; in icl_soft_conn_pdu_append_bio() 1122 if (m_tail != NULL) in icl_soft_conn_pdu_append_bio() 1123 for (; m_tail->m_next != NULL; m_tail = m_tail->m_next) in icl_soft_conn_pdu_append_bio() 1161 if (m_tail != NULL) in icl_soft_conn_pdu_append_bio() 1162 m_tail->m_next = m; in icl_soft_conn_pdu_append_bio() 1165 m_tail = m; in icl_soft_conn_pdu_append_bio() 1176 if (m_tail != NULL) in icl_soft_conn_pdu_append_bio() 1177 m_tail->m_next = m; in icl_soft_conn_pdu_append_bio() 1193 m_tail->m_next = m; in icl_soft_conn_pdu_append_bio()
|
/freebsd/sys/dev/virtio/network/ |
H A D | if_vtnet.c | 1522 struct mbuf *m_head, *m_tail, *m; in vtnet_rx_alloc_buf() local 1548 m_tail->m_next = m; in vtnet_rx_alloc_buf() 1549 m_tail = m; in vtnet_rx_alloc_buf() 1551 m_head = m_tail = m; in vtnet_rx_alloc_buf() 1555 *m_tailp = m_tail; in vtnet_rx_alloc_buf() 1568 struct mbuf *m, *m_prev, *m_new, *m_tail; in vtnet_rxq_replace_lro_nomrg_buf() local 1581 m_tail = NULL; in vtnet_rxq_replace_lro_nomrg_buf() 1618 m_new = vtnet_rx_alloc_buf(sc, nreplace, &m_tail); in vtnet_rxq_replace_lro_nomrg_buf() 1629 m_tail->m_next = m_prev->m_next; in vtnet_rxq_replace_lro_nomrg_buf() 1642 if (m_tail->m_next != NULL) { in vtnet_rxq_replace_lro_nomrg_buf() [all …]
|
/freebsd/sys/netinet/ |
H A D | tcp_lro.h | 135 struct mbuf *m_tail; member
|
H A D | tcp_lro.c | 899 le->m_tail = m_last(m); in tcp_set_entry_to_mbuf() 1103 le->m_tail->m_next = m; in tcp_lro_condense() 1104 le->m_tail = m_last(m); in tcp_lro_condense()
|
H A D | sctp_asconf.c | 610 struct mbuf *n, *m_ack, *m_result, *m_tail; in sctp_handle_asconf() local 675 m_tail = m_ack; /* current reply chain's tail */ in sctp_handle_asconf() 780 SCTP_BUF_NEXT(m_tail) = m_result; in sctp_handle_asconf() 781 m_tail = m_result; in sctp_handle_asconf()
|
/freebsd/sys/dev/cxgb/ |
H A D | cxgb_sge.c | 337 struct mbuf *m, *m_head, *m_tail; in cxgb_dequeue() local 344 m_head = m_tail = NULL; in cxgb_dequeue() 349 m_tail = m_head = m; in cxgb_dequeue() 351 m_tail->m_nextpkt = m; in cxgb_dequeue() 352 m_tail = m; in cxgb_dequeue()
|