Lines Matching refs:shadow
127 struct mcp_kreq_ether_recv *shadow; /* host shadow of recv ring */ member
1342 rx->shadow[idx].addr_low = in myri10ge_alloc_rx_pages()
1344 rx->shadow[idx].addr_high = in myri10ge_alloc_rx_pages()
1361 &rx->shadow[idx - 7]); in myri10ge_alloc_rx_pages()
2158 bytes = rx_ring_entries * sizeof(*ss->rx_small.shadow); in myri10ge_allocate_rings()
2159 ss->rx_small.shadow = kzalloc(bytes, GFP_KERNEL); in myri10ge_allocate_rings()
2160 if (ss->rx_small.shadow == NULL) in myri10ge_allocate_rings()
2163 bytes = rx_ring_entries * sizeof(*ss->rx_big.shadow); in myri10ge_allocate_rings()
2164 ss->rx_big.shadow = kzalloc(bytes, GFP_KERNEL); in myri10ge_allocate_rings()
2165 if (ss->rx_big.shadow == NULL) in myri10ge_allocate_rings()
2243 kfree(ss->rx_big.shadow); in myri10ge_allocate_rings()
2246 kfree(ss->rx_small.shadow); in myri10ge_allocate_rings()
2320 kfree(ss->rx_big.shadow); in myri10ge_free_rings()
2322 kfree(ss->rx_small.shadow); in myri10ge_free_rings()