Searched refs:tx_idx (Results 1 - 10 of 10) sorted by relevance

/freebsd-13-stable/sys/dev/qlxge/
H A Dqls_glbl.h73 uint32_t tx_idx, struct mbuf *mp, uint32_t txr_idx);
H A Dqls_isr.c51 uint32_t tx_idx = tx_comp->tid_lo; local
53 if (tx_idx >= NUM_TX_DESCRIPTORS) {
58 txb = &ha->tx_ring[txr_idx].tx_buf[tx_idx];
H A Dqls_os.c1121 uint32_t tx_idx; local
1131 tx_idx = ha->tx_ring[txr_idx].txr_next;
1133 map = ha->tx_ring[txr_idx].tx_buf[tx_idx].map;
1190 if (!(ret = qls_hw_send(ha, segs, nsegs, tx_idx, m_head, txr_idx))) {
1192 ha->tx_ring[txr_idx].tx_buf[tx_idx].m_head = m_head;
1193 ha->tx_ring[txr_idx].tx_buf[tx_idx].map = map;
/freebsd-13-stable/sys/dev/tsec/
H A Dif_tsec.c800 uint32_t tx_idx; local
805 tx_idx = sc->tx_idx_head;
806 tx_bufmap = &sc->tx_bufmap[tx_idx];
837 tx_idx = (tx_idx + (uint32_t)nsegs) & (TSEC_TX_NUM_DESC - 1);
838 sc->tx_idx_head = tx_idx;
843 tx_idx = (tx_idx - 1) & (TSEC_TX_NUM_DESC - 1);
844 tx_desc = &sc->tsec_tx_vaddr[tx_idx];
863 tx_desc->flags = (tx_idx
1436 uint32_t tx_idx; local
[all...]
/freebsd-13-stable/sys/dev/qlxgb/
H A Dqla_glbl.h69 uint32_t *tx_idx, struct mbuf *mp);
H A Dqla_os.c1046 uint32_t tx_idx; local
1115 if (!(ret = qla_hw_send(ha, segs, nsegs, &tx_idx, m_head))) {
1116 ha->tx_buf[tx_idx].m_head = m_head;
1117 ha->tx_buf[tx_idx].map = map;
H A Dqla_hw.c923 uint32_t *tx_idx, struct mbuf *mp)
990 *tx_idx = hw->txr_next;
922 qla_hw_send(qla_host_t *ha, bus_dma_segment_t *segs, int nsegs, uint32_t *tx_idx, struct mbuf *mp) argument
/freebsd-13-stable/sys/dev/qlxgbe/
H A Dql_glbl.h61 uint32_t tx_idx, struct mbuf *mp, uint32_t txr_idx,
H A Dql_os.c1267 uint32_t tx_idx; local
1272 tx_idx = ha->hw.tx_cntxt[txr_idx].txr_next;
1274 if ((NULL != ha->tx_ring[txr_idx].tx_buf[tx_idx].m_head) ||
1276 QL_ASSERT(ha, 0, ("%s [%d]: txr_idx = %d tx_idx = %d "\
1277 "mbuf = %p\n", __func__, __LINE__, txr_idx, tx_idx,\
1278 ha->tx_ring[txr_idx].tx_buf[tx_idx].m_head));
1280 device_printf(ha->pci_dev, "%s [%d]: txr_idx = %d tx_idx = %d "
1281 "mbuf = %p\n", __func__, __LINE__, txr_idx, tx_idx,
1282 ha->tx_ring[txr_idx].tx_buf[tx_idx].m_head);
1291 map = ha->tx_ring[txr_idx].tx_buf[tx_idx]
[all...]
H A Dql_hw.c2477 uint32_t tx_idx, struct mbuf *mp, uint32_t txr_idx, uint32_t iscsi_pdu)
2557 j = (tx_idx+i) & (NUM_TX_DESCRIPTORS - 1);
2561 ("%s [%d]: txr_idx = %d tx_idx = %d mbuf = %p\n",\
2568 tx_cmd = &hw->tx_cntxt[txr_idx].tx_ring_base[tx_idx];
2476 ql_hw_send(qla_host_t *ha, bus_dma_segment_t *segs, int nsegs, uint32_t tx_idx, struct mbuf *mp, uint32_t txr_idx, uint32_t iscsi_pdu) argument

Completed in 113 milliseconds