Lines Matching refs:shadow
131 struct mcp_kreq_ether_recv *shadow; /* host shadow of recv ring */ member
1347 rx->shadow[idx].addr_low = in myri10ge_alloc_rx_pages()
1349 rx->shadow[idx].addr_high = in myri10ge_alloc_rx_pages()
1366 &rx->shadow[idx - 7]); in myri10ge_alloc_rx_pages()
2164 bytes = rx_ring_entries * sizeof(*ss->rx_small.shadow); in myri10ge_allocate_rings()
2165 ss->rx_small.shadow = kzalloc(bytes, GFP_KERNEL); in myri10ge_allocate_rings()
2166 if (ss->rx_small.shadow == NULL) in myri10ge_allocate_rings()
2169 bytes = rx_ring_entries * sizeof(*ss->rx_big.shadow); in myri10ge_allocate_rings()
2170 ss->rx_big.shadow = kzalloc(bytes, GFP_KERNEL); in myri10ge_allocate_rings()
2171 if (ss->rx_big.shadow == NULL) in myri10ge_allocate_rings()
2249 kfree(ss->rx_big.shadow); in myri10ge_allocate_rings()
2252 kfree(ss->rx_small.shadow); in myri10ge_allocate_rings()
2326 kfree(ss->rx_big.shadow); in myri10ge_free_rings()
2328 kfree(ss->rx_small.shadow); in myri10ge_free_rings()