Lines Matching refs:rx_queue

530 	struct efx_rx_queue *rx_queue;  in efx_alloc_channel()  local
555 rx_queue = &channel->rx_queue; in efx_alloc_channel()
556 rx_queue->efx = efx; in efx_alloc_channel()
557 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_alloc_channel()
600 struct efx_rx_queue *rx_queue; in efx_copy_channel() local
626 rx_queue = &channel->rx_queue; in efx_copy_channel()
627 rx_queue->buffer = NULL; in efx_copy_channel()
628 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in efx_copy_channel()
629 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_copy_channel()
640 struct efx_rx_queue *rx_queue; in efx_probe_channel() local
660 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_probe_channel()
661 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()
862 struct efx_rx_queue *rx_queue; in efx_realloc_channels() local
870 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_realloc_channels()
872 rx_queue->rxd.index + in efx_realloc_channels()
873 rx_queue->rxd.entries); in efx_realloc_channels()
972 channel->rx_queue.core_index = channel->channel; in efx_set_channels()
974 channel->rx_queue.core_index = -1; in efx_set_channels()
1118 struct efx_rx_queue *rx_queue; in efx_start_channels() local
1129 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_start_channels()
1130 efx_init_rx_queue(rx_queue); in efx_start_channels()
1133 efx_fast_push_rx_descriptors(rx_queue, false); in efx_start_channels()
1144 struct efx_rx_queue *rx_queue; in efx_stop_channels() local
1155 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1156 rx_queue->refill_enabled = false; in efx_stop_channels()
1183 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1184 efx_fini_rx_queue(rx_queue); in efx_stop_channels()
1224 struct efx_rx_queue *rx_queue = in efx_process_channel() local
1228 efx_fast_push_rx_descriptors(rx_queue, true); in efx_process_channel()