igbvf_ring
struct igbvf_ring *tx_ring = adapter->tx_ring;
struct igbvf_ring *rx_ring = adapter->rx_ring;
struct igbvf_ring *temp_ring;
temp_ring = vmalloc(sizeof(struct igbvf_ring));
memcpy(temp_ring, adapter->tx_ring, sizeof(struct igbvf_ring));
memcpy(adapter->tx_ring, temp_ring, sizeof(struct igbvf_ring));
memcpy(temp_ring, adapter->rx_ring, sizeof(struct igbvf_ring));
memcpy(adapter->rx_ring, temp_ring, sizeof(struct igbvf_ring));
struct igbvf_ring *tx_ring /* One per active queue */
struct igbvf_ring *rx_ring;
int igbvf_setup_rx_resources(struct igbvf_adapter *, struct igbvf_ring *);
int igbvf_setup_tx_resources(struct igbvf_adapter *, struct igbvf_ring *);
void igbvf_free_rx_resources(struct igbvf_ring *);
void igbvf_free_tx_resources(struct igbvf_ring *);
adapter->tx_ring = kzalloc_obj(struct igbvf_ring);
adapter->rx_ring = kzalloc_obj(struct igbvf_ring);
struct igbvf_ring *rx_ring = container_of(napi, struct igbvf_ring, napi);
struct igbvf_ring *tx_ring = adapter->tx_ring;
static void igbvf_alloc_rx_buffers(struct igbvf_ring *rx_ring,
struct igbvf_ring *rx_ring = adapter->rx_ring;
struct igbvf_ring *tx_ring = adapter->tx_ring;
static void igbvf_tx_ctxtdesc(struct igbvf_ring *tx_ring, u32 vlan_macip_lens,
static int igbvf_tso(struct igbvf_ring *tx_ring,
static bool igbvf_tx_csum(struct igbvf_ring *tx_ring, struct sk_buff *skb,
struct igbvf_ring *tx_ring,
struct igbvf_ring *tx_ring,
struct igbvf_ring *tx_ring)
struct igbvf_ring *tx_ring;
struct igbvf_ring *rx_ring = adapter->rx_ring;
struct igbvf_ring *tx_ring)
struct igbvf_ring *rx_ring)
static void igbvf_clean_tx_ring(struct igbvf_ring *tx_ring)
void igbvf_free_tx_resources(struct igbvf_ring *tx_ring)
static void igbvf_clean_rx_ring(struct igbvf_ring *rx_ring)
void igbvf_free_rx_resources(struct igbvf_ring *rx_ring)
static int igbvf_desc_unused(struct igbvf_ring *ring)
static bool igbvf_clean_tx_irq(struct igbvf_ring *tx_ring)
struct igbvf_ring *tx_ring = adapter->tx_ring;
struct igbvf_ring *tx_ring = adapter->tx_ring;
struct igbvf_ring *rx_ring = adapter->rx_ring;