Lines Matching refs:rx_queue
510 struct efx_rx_queue *rx_queue; in efx_alloc_channel() local
535 rx_queue = &channel->rx_queue; in efx_alloc_channel()
536 rx_queue->efx = efx; in efx_alloc_channel()
537 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_alloc_channel()
580 struct efx_rx_queue *rx_queue; in efx_copy_channel() local
606 rx_queue = &channel->rx_queue; in efx_copy_channel()
607 rx_queue->buffer = NULL; in efx_copy_channel()
608 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in efx_copy_channel()
609 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_copy_channel()
620 struct efx_rx_queue *rx_queue; in efx_probe_channel() local
640 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_probe_channel()
641 rc = efx_probe_rx_queue(rx_queue); in efx_probe_channel()
722 struct efx_rx_queue *rx_queue; in efx_remove_channel() local
727 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_remove_channel()
728 efx_remove_rx_queue(rx_queue); in efx_remove_channel()
760 struct efx_rx_queue *rx_queue; in efx_realloc_channels() local
768 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_realloc_channels()
770 rx_queue->rxd.index + in efx_realloc_channels()
771 rx_queue->rxd.entries); in efx_realloc_channels()
884 channel->rx_queue.core_index = channel->channel; in efx_set_channels()
886 channel->rx_queue.core_index = -1; in efx_set_channels()
1055 struct efx_rx_queue *rx_queue; in efx_start_channels() local
1064 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_start_channels()
1065 efx_init_rx_queue(rx_queue); in efx_start_channels()
1068 efx_fast_push_rx_descriptors(rx_queue, false); in efx_start_channels()
1079 struct efx_rx_queue *rx_queue; in efx_stop_channels() local
1085 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1086 rx_queue->refill_enabled = false; in efx_stop_channels()
1113 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_channels()
1114 efx_fini_rx_queue(rx_queue); in efx_stop_channels()
1154 struct efx_rx_queue *rx_queue = in efx_process_channel() local
1158 efx_fast_push_rx_descriptors(rx_queue, true); in efx_process_channel()