Lines Matching refs:bmap
258 struct xae_bufmap *bmap; in xae_txfinish_locked() local
271 bmap = &sc->txbuf_map[sc->tx_idx_tail]; in xae_txfinish_locked()
272 bus_dmamap_sync(sc->txbuf_tag, bmap->map, in xae_txfinish_locked()
274 bus_dmamap_unload(sc->txbuf_tag, bmap->map); in xae_txfinish_locked()
275 m_freem(bmap->mbuf); in xae_txfinish_locked()
276 bmap->mbuf = NULL; in xae_txfinish_locked()
349 struct xae_bufmap *bmap; in xae_rxfinish_onebuf() local
368 bmap = &sc->rxbuf_map[sc->rx_idx]; in xae_rxfinish_onebuf()
369 bus_dmamap_sync(sc->rxbuf_tag, bmap->map, BUS_DMASYNC_POSTREAD); in xae_rxfinish_onebuf()
370 bus_dmamap_unload(sc->rxbuf_tag, bmap->map); in xae_rxfinish_onebuf()
371 m = bmap->mbuf; in xae_rxfinish_onebuf()
372 bmap->mbuf = NULL; in xae_rxfinish_onebuf()