Lines Matching refs:rxb
1558 struct rxbuff_ent *rxb = &tp->rxbuffers[idx]; in typhoon_recycle_rx_skb() local
1566 dev_kfree_skb_any(rxb->skb); in typhoon_recycle_rx_skb()
1567 rxb->skb = NULL; in typhoon_recycle_rx_skb()
1574 r->physAddr = cpu_to_le32(rxb->dma_addr); in typhoon_recycle_rx_skb()
1585 struct rxbuff_ent *rxb = &tp->rxbuffers[idx]; in typhoon_alloc_rx_skb() local
1591 rxb->skb = NULL; in typhoon_alloc_rx_skb()
1618 rxb->skb = skb; in typhoon_alloc_rx_skb()
1619 rxb->dma_addr = dma_addr; in typhoon_alloc_rx_skb()
1633 struct rxbuff_ent *rxb; in typhoon_rx() local
1648 rxb = &tp->rxbuffers[idx]; in typhoon_rx()
1649 skb = rxb->skb; in typhoon_rx()
1650 dma_addr = rxb->dma_addr; in typhoon_rx()
1709 struct rxbuff_ent *rxb = &tp->rxbuffers[i]; in typhoon_fill_free_ring() local
1710 if (rxb->skb) in typhoon_fill_free_ring()
1788 struct rxbuff_ent *rxb = &tp->rxbuffers[i]; in typhoon_free_rx_rings() local
1789 if (rxb->skb) { in typhoon_free_rx_rings()
1790 dma_unmap_single(&tp->pdev->dev, rxb->dma_addr, in typhoon_free_rx_rings()
1792 dev_kfree_skb(rxb->skb); in typhoon_free_rx_rings()
1793 rxb->skb = NULL; in typhoon_free_rx_rings()