Home
last modified time | relevance | path

Searched refs:txbuf (Results 1 – 11 of 11) sorted by relevance

/netbsd-src/sys/dev/pci/ixgbe/
H A Dix_txrx.c415 struct ixgbe_tx_buf *txbuf; in ixgbe_xmit() local
437 txbuf = &txr->tx_buffers[first]; in ixgbe_xmit()
438 map = txbuf->map; in ixgbe_xmit()
490 ixgbe_dmamap_unload(txr->txtag, txbuf->map); in ixgbe_xmit()
521 txbuf = &txr->tx_buffers[i]; in ixgbe_xmit()
538 txbuf->m_head = m_head; in ixgbe_xmit()
545 txr->tx_buffers[first].map = txbuf->map; in ixgbe_xmit()
546 txbuf->map = map; in ixgbe_xmit()
551 txbuf = &txr->tx_buffers[first]; in ixgbe_xmit()
552 txbuf->eop = txd; in ixgbe_xmit()
[all …]
H A Dixgbe_netmap.c267 struct ixgbe_tx_buf *txbuf = &txr->tx_buffers[nic_i]; in ixgbe_netmap_txsync() local
280 netmap_reload_map(na, txr->txtag, txbuf->map, addr); in ixgbe_netmap_txsync()
292 bus_dmamap_sync(txr->txtag, txbuf->map, in ixgbe_netmap_txsync()
/netbsd-src/sys/dev/pci/igc/
H A Dif_igc.c1708 struct igc_tx_buf *txbuf = &txr->tx_buffers[prod]; in igc_tx_common_locked() local
1709 bus_dmamap_t map = txbuf->map; in igc_tx_common_locked()
1755 txbuf->m_head = m; in igc_tx_common_locked()
1756 txbuf->eop_index = last; in igc_tx_common_locked()
1800 struct igc_tx_buf *txbuf = &txr->tx_buffers[cons]; in igc_txeof() local
1801 const int last = txbuf->eop_index; in igc_txeof()
1830 bus_dmamap_t map = txbuf->map; in igc_txeof()
1834 m_freem(txbuf->m_head); in igc_txeof()
1836 txbuf->m_head = NULL; in igc_txeof()
1837 txbuf in igc_txeof()
2951 struct igc_tx_buf *txbuf = &txr->tx_buffers[id]; igc_allocate_transmit_buffers() local
3141 struct igc_tx_buf *txbuf = &txr->tx_buffers[id]; igc_withdraw_transmit_packets() local
[all...]
/netbsd-src/sys/dev/marvell/
H A Dgtmpsc.c979 sizeof(vtxp->txbuf), BUS_DMASYNC_POSTWRITE); in gtmpsc_intr_tx()
1014 memcpy(vtxp->txbuf, sc->sc_tba, n); in gtmpsc_write()
1017 sizeof(vtxp->txbuf), BUS_DMASYNC_PREWRITE); in gtmpsc_write()
1138 dp->sdma_bufp = (uint32_t)&ptxp->txbuf; in gtmpsc_txdesc_init()
1146 dp->sdma_bufp = (uint32_t)&ptxp->txbuf; in gtmpsc_txdesc_init()
1520 vtxp->txbuf[0] = c; in gtmpsc_common_putc()
1523 sizeof(vtxp->txbuf), in gtmpsc_common_putc()
1582 sizeof(vtxp->txbuf), in gtmpsc_common_putc_wait_complete()
H A Dgtmpscvar.h71 unsigned char txbuf[GTMPSC_TXBUFSZ]; member
/netbsd-src/sys/arch/playstation2/dev/
H A Dif_smap.c154 void *txbuf, *rxbuf; in smap_attach() local
198 txbuf = kmem_alloc(ETHER_MAX_LEN - ETHER_CRC_LEN + SMAP_FIFO_ALIGN + 16, in smap_attach()
201 sc->tx_buf = (u_int32_t *)ROUND16((vaddr_t)txbuf); in smap_attach()
/netbsd-src/sys/arch/acorn32/podulebus/
H A Dif_ie.c1450 char txbuf[IE_TXBUF_SIZE]; in iestart() local
1468 buffer = txbuf; in iestart()
1488 host2ie(sc, txbuf, sc->xmit_cbuffs[sc->xchead], len+1 ); in iestart()
1490 host2ie(sc, txbuf, sc->xmit_cbuffs[sc->xchead], len ); in iestart()
/netbsd-src/external/mpl/bind/dist/lib/ns/
H A Dxfrout.c659 isc_buffer_t txbuf; /* Transmit message buffer */
1282 isc_buffer_init(&xfr->txbuf, (char *)mem, len); in xfrout_ctx_create()
1303 isc_buffer_usedregion(&xfr->txbuf, &used);
1387 isc_buffer_clear(&xfr->txbuf); in sendstream()
1604 CHECK(dns_message_renderbegin(msg, &cctx, &xfr->txbuf)); in sendstream()
1613 isc_buffer_usedlength(&xfr->txbuf)); in sendstream()
663 isc_buffer_t txbuf; /* Transmit message buffer */ global() member
/netbsd-src/sys/external/bsd/drm2/dist/drm/i915/display/
H A Dintel_dp.c1535 intel_dp_aux_header(u8 txbuf[HEADER_SIZE], in intel_dp_aux_header()
1538 txbuf[0] = (msg->request << 4) | ((msg->address >> 16) & 0xf); in intel_dp_aux_header()
1539 txbuf[1] = (msg->address >> 8) & 0xff; in intel_dp_aux_header()
1540 txbuf[2] = msg->address & 0xff; in intel_dp_aux_header()
1541 txbuf[3] = msg->size - 1; in intel_dp_aux_header()
1548 u8 txbuf[20], rxbuf[20]; in intel_dp_aux_transfer() local
1552 intel_dp_aux_header(txbuf, msg); in intel_dp_aux_transfer()
1567 memcpy(txbuf + HEADER_SIZE, msg->buffer, msg->size); in intel_dp_aux_transfer()
1569 ret = intel_dp_aux_xfer(intel_dp, txbuf, txsize, in intel_dp_aux_transfer()
1592 ret = intel_dp_aux_xfer(intel_dp, txbuf, txsize, in intel_dp_aux_transfer()
[all …]
/netbsd-src/sys/dev/ic/
H A Dath_netbsd.c103 "tx buffers allocated", txbuf)) != 0)
/netbsd-src/sys/arch/sgimips/mace/
H A Dif_mec.c203 uint8_t txbuf[MEC_TXD_BUFSIZE]; member
206 #define txd_buf txd_data.txbuf