Lines Matching defs:bmap
707 struct ffec_bufmap *bmap;
722 bmap = &sc->txbuf_map[sc->tx_idx_tail];
723 bus_dmamap_sync(sc->txbuf_tag, bmap->map,
725 bus_dmamap_unload(sc->txbuf_tag, bmap->map);
726 m_freem(bmap->mbuf);
727 bmap->mbuf = NULL;
814 struct ffec_bufmap *bmap;
832 bmap = &sc->rxbuf_map[sc->rx_idx];
834 bus_dmamap_sync(sc->rxbuf_tag, bmap->map, BUS_DMASYNC_POSTREAD);
835 bus_dmamap_unload(sc->rxbuf_tag, bmap->map);
836 m = bmap->mbuf;
837 bmap->mbuf = NULL;
1042 struct ffec_bufmap *bmap;
1078 bmap = &sc->txbuf_map[idx];
1080 bus_dmamap_unload(sc->txbuf_tag, bmap->map);
1081 m_freem(bmap->mbuf);
1082 bmap->mbuf = NULL;