Lines Matching refs:nv_skb_map
707 struct nv_skb_map {
713 struct nv_skb_map *next_tx_ctx;
800 struct nv_skb_map *get_rx_ctx, *put_rx_ctx;
801 struct nv_skb_map *last_rx_ctx;
802 struct nv_skb_map *rx_skb;
826 struct nv_skb_map *get_tx_ctx, *put_tx_ctx;
827 struct nv_skb_map *last_tx_ctx;
828 struct nv_skb_map *tx_skb;
835 struct nv_skb_map *tx_change_owner;
836 struct nv_skb_map *tx_end_flip;
1984 static void nv_unmap_txskb(struct fe_priv *np, struct nv_skb_map *tx_skb)
1999 static int nv_release_txskb(struct fe_priv *np, struct nv_skb_map *tx_skb)
2206 struct nv_skb_map *prev_tx_ctx;
2207 struct nv_skb_map *tmp_tx_ctx = NULL, *start_tx_ctx = NULL;
2380 struct nv_skb_map *prev_tx_ctx;
2381 struct nv_skb_map *start_tx_ctx = NULL;
2382 struct nv_skb_map *tmp_tx_ctx = NULL;
4691 rx_skbuff = kmalloc_array(ring->rx_pending, sizeof(struct nv_skb_map),
4693 tx_skbuff = kmalloc_array(ring->tx_pending, sizeof(struct nv_skb_map),
4744 np->rx_skb = (struct nv_skb_map *)rx_skbuff;
4745 np->tx_skb = (struct nv_skb_map *)tx_skbuff;
4748 memset(np->rx_skb, 0, sizeof(struct nv_skb_map) * np->rx_ring_size);
4749 memset(np->tx_skb, 0, sizeof(struct nv_skb_map) * np->tx_ring_size);
5857 np->rx_skb = kcalloc(np->rx_ring_size, sizeof(struct nv_skb_map), GFP_KERNEL);
5858 np->tx_skb = kcalloc(np->tx_ring_size, sizeof(struct nv_skb_map), GFP_KERNEL);