Lines Matching refs:bfe_map

328 		td->bfe_map = NULL;  in bfe_dma_alloc()
329 error = bus_dmamap_create(sc->bfe_txmbuf_tag, 0, &td->bfe_map); in bfe_dma_alloc()
347 rd->bfe_map = NULL; in bfe_dma_alloc()
349 error = bus_dmamap_create(sc->bfe_rxmbuf_tag, 0, &rd->bfe_map); in bfe_dma_alloc()
398 if (td->bfe_map != NULL) { in bfe_dma_free()
400 td->bfe_map); in bfe_dma_free()
401 td->bfe_map = NULL; in bfe_dma_free()
412 if (rd->bfe_map != NULL) { in bfe_dma_free()
414 rd->bfe_map); in bfe_dma_free()
415 rd->bfe_map = NULL; in bfe_dma_free()
706 sc->bfe_tx_ring[i].bfe_map, BUS_DMASYNC_POSTWRITE); in bfe_tx_ring_free()
708 sc->bfe_tx_ring[i].bfe_map); in bfe_tx_ring_free()
726 sc->bfe_rx_ring[i].bfe_map, BUS_DMASYNC_POSTREAD); in bfe_rx_ring_free()
728 sc->bfe_rx_ring[i].bfe_map); in bfe_rx_ring_free()
812 bus_dmamap_sync(sc->bfe_rxmbuf_tag, r->bfe_map, in bfe_list_newbuf()
814 bus_dmamap_unload(sc->bfe_rxmbuf_tag, r->bfe_map); in bfe_list_newbuf()
816 map = r->bfe_map; in bfe_list_newbuf()
817 r->bfe_map = sc->bfe_rx_sparemap; in bfe_list_newbuf()
824 bus_dmamap_sync(sc->bfe_rxmbuf_tag, r->bfe_map, BUS_DMASYNC_PREREAD); in bfe_list_newbuf()
1361 bus_dmamap_sync(sc->bfe_txmbuf_tag, r->bfe_map, in bfe_txeof()
1363 bus_dmamap_unload(sc->bfe_txmbuf_tag, r->bfe_map); in bfe_txeof()
1524 error = bus_dmamap_load_mbuf_sg(sc->bfe_txmbuf_tag, r->bfe_map, *m_head, in bfe_encap()
1534 error = bus_dmamap_load_mbuf_sg(sc->bfe_txmbuf_tag, r->bfe_map, in bfe_encap()
1550 bus_dmamap_unload(sc->bfe_txmbuf_tag, r->bfe_map); in bfe_encap()
1583 map = r->bfe_map; in bfe_encap()
1584 r->bfe_map = r1->bfe_map; in bfe_encap()
1585 r1->bfe_map = map; in bfe_encap()