Lines Matching refs:bfe_map

323 		td->bfe_map = NULL;  in bfe_dma_alloc()
324 error = bus_dmamap_create(sc->bfe_txmbuf_tag, 0, &td->bfe_map); in bfe_dma_alloc()
342 rd->bfe_map = NULL; in bfe_dma_alloc()
344 error = bus_dmamap_create(sc->bfe_rxmbuf_tag, 0, &rd->bfe_map); in bfe_dma_alloc()
393 if (td->bfe_map != NULL) { in bfe_dma_free()
395 td->bfe_map); in bfe_dma_free()
396 td->bfe_map = NULL; in bfe_dma_free()
407 if (rd->bfe_map != NULL) { in bfe_dma_free()
409 rd->bfe_map); in bfe_dma_free()
410 rd->bfe_map = NULL; in bfe_dma_free()
695 sc->bfe_tx_ring[i].bfe_map, BUS_DMASYNC_POSTWRITE); in bfe_tx_ring_free()
697 sc->bfe_tx_ring[i].bfe_map); in bfe_tx_ring_free()
715 sc->bfe_rx_ring[i].bfe_map, BUS_DMASYNC_POSTREAD); in bfe_rx_ring_free()
717 sc->bfe_rx_ring[i].bfe_map); in bfe_rx_ring_free()
801 bus_dmamap_sync(sc->bfe_rxmbuf_tag, r->bfe_map, in bfe_list_newbuf()
803 bus_dmamap_unload(sc->bfe_rxmbuf_tag, r->bfe_map); in bfe_list_newbuf()
805 map = r->bfe_map; in bfe_list_newbuf()
806 r->bfe_map = sc->bfe_rx_sparemap; in bfe_list_newbuf()
813 bus_dmamap_sync(sc->bfe_rxmbuf_tag, r->bfe_map, BUS_DMASYNC_PREREAD); in bfe_list_newbuf()
1349 bus_dmamap_sync(sc->bfe_txmbuf_tag, r->bfe_map, in bfe_txeof()
1351 bus_dmamap_unload(sc->bfe_txmbuf_tag, r->bfe_map); in bfe_txeof()
1512 error = bus_dmamap_load_mbuf_sg(sc->bfe_txmbuf_tag, r->bfe_map, *m_head, in bfe_encap()
1522 error = bus_dmamap_load_mbuf_sg(sc->bfe_txmbuf_tag, r->bfe_map, in bfe_encap()
1538 bus_dmamap_unload(sc->bfe_txmbuf_tag, r->bfe_map); in bfe_encap()
1571 map = r->bfe_map; in bfe_encap()
1572 r->bfe_map = r1->bfe_map; in bfe_encap()
1573 r1->bfe_map = map; in bfe_encap()