Lines Matching refs:rxb
1561 struct rxbuff_ent *rxb = &tp->rxbuffers[idx]; in typhoon_recycle_rx_skb() local
1569 dev_kfree_skb_any(rxb->skb); in typhoon_recycle_rx_skb()
1570 rxb->skb = NULL; in typhoon_recycle_rx_skb()
1577 r->physAddr = cpu_to_le32(rxb->dma_addr); in typhoon_recycle_rx_skb()
1588 struct rxbuff_ent *rxb = &tp->rxbuffers[idx]; in typhoon_alloc_rx_skb() local
1594 rxb->skb = NULL; in typhoon_alloc_rx_skb()
1621 rxb->skb = skb; in typhoon_alloc_rx_skb()
1622 rxb->dma_addr = dma_addr; in typhoon_alloc_rx_skb()
1636 struct rxbuff_ent *rxb; in typhoon_rx() local
1651 rxb = &tp->rxbuffers[idx]; in typhoon_rx()
1652 skb = rxb->skb; in typhoon_rx()
1653 dma_addr = rxb->dma_addr; in typhoon_rx()
1712 struct rxbuff_ent *rxb = &tp->rxbuffers[i]; in typhoon_fill_free_ring() local
1713 if (rxb->skb) in typhoon_fill_free_ring()
1791 struct rxbuff_ent *rxb = &tp->rxbuffers[i]; in typhoon_free_rx_rings() local
1792 if (rxb->skb) { in typhoon_free_rx_rings()
1793 dma_unmap_single(&tp->pdev->dev, rxb->dma_addr, in typhoon_free_rx_rings()
1795 dev_kfree_skb(rxb->skb); in typhoon_free_rx_rings()
1796 rxb->skb = NULL; in typhoon_free_rx_rings()