Lines Matching refs:bfe_map

329 		td->bfe_map = NULL;  in bfe_dma_alloc()
330 error = bus_dmamap_create(sc->bfe_txmbuf_tag, 0, &td->bfe_map); in bfe_dma_alloc()
348 rd->bfe_map = NULL; in bfe_dma_alloc()
350 error = bus_dmamap_create(sc->bfe_rxmbuf_tag, 0, &rd->bfe_map); in bfe_dma_alloc()
399 if (td->bfe_map != NULL) { in bfe_dma_free()
401 td->bfe_map); in bfe_dma_free()
402 td->bfe_map = NULL; in bfe_dma_free()
413 if (rd->bfe_map != NULL) { in bfe_dma_free()
415 rd->bfe_map); in bfe_dma_free()
416 rd->bfe_map = NULL; in bfe_dma_free()
707 sc->bfe_tx_ring[i].bfe_map, BUS_DMASYNC_POSTWRITE); in bfe_tx_ring_free()
709 sc->bfe_tx_ring[i].bfe_map); in bfe_tx_ring_free()
727 sc->bfe_rx_ring[i].bfe_map, BUS_DMASYNC_POSTREAD); in bfe_rx_ring_free()
729 sc->bfe_rx_ring[i].bfe_map); in bfe_rx_ring_free()
813 bus_dmamap_sync(sc->bfe_rxmbuf_tag, r->bfe_map, in bfe_list_newbuf()
815 bus_dmamap_unload(sc->bfe_rxmbuf_tag, r->bfe_map); in bfe_list_newbuf()
817 map = r->bfe_map; in bfe_list_newbuf()
818 r->bfe_map = sc->bfe_rx_sparemap; in bfe_list_newbuf()
825 bus_dmamap_sync(sc->bfe_rxmbuf_tag, r->bfe_map, BUS_DMASYNC_PREREAD); in bfe_list_newbuf()
1362 bus_dmamap_sync(sc->bfe_txmbuf_tag, r->bfe_map, in bfe_txeof()
1364 bus_dmamap_unload(sc->bfe_txmbuf_tag, r->bfe_map); in bfe_txeof()
1526 error = bus_dmamap_load_mbuf_sg(sc->bfe_txmbuf_tag, r->bfe_map, *m_head, in bfe_encap()
1536 error = bus_dmamap_load_mbuf_sg(sc->bfe_txmbuf_tag, r->bfe_map, in bfe_encap()
1552 bus_dmamap_unload(sc->bfe_txmbuf_tag, r->bfe_map); in bfe_encap()
1585 map = r->bfe_map; in bfe_encap()
1586 r->bfe_map = r1->bfe_map; in bfe_encap()
1587 r1->bfe_map = map; in bfe_encap()