Lines Matching refs:rx_queue
532 struct efx_rx_queue *rx_queue; in efx_alloc_channel() local
557 rx_queue = &channel->rx_queue; in efx_alloc_channel()
558 rx_queue->efx = efx; in efx_alloc_channel()
559 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_alloc_channel()
602 struct efx_rx_queue *rx_queue; in efx_copy_channel() local
628 rx_queue = &channel->rx_queue; in efx_copy_channel()
629 rx_queue->buffer = NULL; in efx_copy_channel()
630 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in efx_copy_channel()
631 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_copy_channel()
642 struct efx_rx_queue *rx_queue; in efx_probe_channel() local
662 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_probe_channel()
663 rc = efx_probe_rx_queue(rx_queue); in efx_probe_channel()
742 struct efx_rx_queue *rx_queue; in efx_remove_channel() local
747 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_remove_channel()
748 efx_remove_rx_queue(rx_queue); in efx_remove_channel()
946 channel->rx_queue.core_index = channel->channel; in efx_set_channels()
948 channel->rx_queue.core_index = -1; in efx_set_channels()
1092 struct efx_rx_queue *rx_queue; in efx_start_channels() local
1107 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_start_channels()
1108 efx_init_rx_queue(rx_queue); in efx_start_channels()
1111 efx_fast_push_rx_descriptors(rx_queue, false); in efx_start_channels()
1122 struct efx_rx_queue *rx_queue; in efx_stop_channels() local
1133 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1134 rx_queue->refill_enabled = false; in efx_stop_channels()
1161 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1162 efx_fini_rx_queue(rx_queue); in efx_stop_channels()
1202 struct efx_rx_queue *rx_queue = in efx_process_channel() local
1206 efx_fast_push_rx_descriptors(rx_queue, true); in efx_process_channel()