Lines Matching refs:rx_queue
531 struct efx_rx_queue *rx_queue; in efx_alloc_channel() local
556 rx_queue = &channel->rx_queue; in efx_alloc_channel()
557 rx_queue->efx = efx; in efx_alloc_channel()
558 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_alloc_channel()
601 struct efx_rx_queue *rx_queue; in efx_copy_channel() local
627 rx_queue = &channel->rx_queue; in efx_copy_channel()
628 rx_queue->buffer = NULL; in efx_copy_channel()
629 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in efx_copy_channel()
630 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_copy_channel()
641 struct efx_rx_queue *rx_queue; in efx_probe_channel() local
661 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_probe_channel()
662 rc = efx_probe_rx_queue(rx_queue); in efx_probe_channel()
743 struct efx_rx_queue *rx_queue; in efx_remove_channel() local
748 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_remove_channel()
749 efx_remove_rx_queue(rx_queue); in efx_remove_channel()
781 struct efx_rx_queue *rx_queue; in efx_realloc_channels() local
789 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_realloc_channels()
791 rx_queue->rxd.index + in efx_realloc_channels()
792 rx_queue->rxd.entries); in efx_realloc_channels()
919 channel->rx_queue.core_index = channel->channel; in efx_set_channels()
921 channel->rx_queue.core_index = -1; in efx_set_channels()
1107 struct efx_rx_queue *rx_queue; in efx_start_channels() local
1116 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_start_channels()
1117 efx_init_rx_queue(rx_queue); in efx_start_channels()
1120 efx_fast_push_rx_descriptors(rx_queue, false); in efx_start_channels()
1131 struct efx_rx_queue *rx_queue; in efx_stop_channels() local
1137 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1138 rx_queue->refill_enabled = false; in efx_stop_channels()
1165 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1166 efx_fini_rx_queue(rx_queue); in efx_stop_channels()
1206 struct efx_rx_queue *rx_queue = in efx_process_channel() local
1210 efx_fast_push_rx_descriptors(rx_queue, true); in efx_process_channel()