Lines Matching refs:index
179 * Is our index within @channel->tx_queue array.
473 * @rx_pkt_index: Ring index of first buffer for next packet to be delivered
552 * @index: Index of the channel/IRQ
560 unsigned int index;
773 * @filter_id: index in software filter table. May be
897 * @irq_level: IRQ level/index for IRQs not triggered by an event queue
1461 unsigned int index);
1537 efx_get_channel(struct efx_nic *efx, unsigned index)
1539 EFX_WARN_ON_ONCE_PARANOID(index >= efx->n_channels);
1540 return efx->channel[index];
1558 efx_get_tx_channel(struct efx_nic *efx, unsigned int index)
1560 EFX_WARN_ON_ONCE_PARANOID(index >= efx->n_tx_channels);
1561 return efx->channel[efx->tx_channel_offset + index];
1565 efx_get_xdp_channel(struct efx_nic *efx, unsigned int index)
1567 EFX_WARN_ON_ONCE_PARANOID(index >= efx->n_xdp_channels);
1568 return efx->channel[efx->xdp_channel_offset + index];
1597 efx_get_tx_queue(struct efx_nic *efx, unsigned int index, unsigned int type)
1599 struct efx_channel *channel = efx_get_tx_channel(efx, index);
1650 unsigned int index)
1652 return &rx_queue->buffer[index];
1734 /* Get the current TX queue insert index. */