Lines Matching refs:rx_queue

282 		struct efx_rx_queue *rx_queue =  in efx_process_channel()  local
286 efx_fast_push_rx_descriptors(rx_queue, true); in efx_process_channel()
464 struct efx_rx_queue *rx_queue; in efx_alloc_channel() local
487 rx_queue = &channel->rx_queue; in efx_alloc_channel()
488 rx_queue->efx = efx; in efx_alloc_channel()
489 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_alloc_channel()
501 struct efx_rx_queue *rx_queue; in efx_copy_channel() local
525 rx_queue = &channel->rx_queue; in efx_copy_channel()
526 rx_queue->buffer = NULL; in efx_copy_channel()
527 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in efx_copy_channel()
528 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_copy_channel()
539 struct efx_rx_queue *rx_queue; in efx_probe_channel() local
559 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_probe_channel()
560 rc = efx_probe_rx_queue(rx_queue); in efx_probe_channel()
643 struct efx_rx_queue *rx_queue; in efx_start_datapath() local
715 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_start_datapath()
716 efx_init_rx_queue(rx_queue); in efx_start_datapath()
719 efx_fast_push_rx_descriptors(rx_queue, false); in efx_start_datapath()
736 struct efx_rx_queue *rx_queue; in efx_stop_datapath() local
746 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_datapath()
747 rx_queue->refill_enabled = false; in efx_stop_datapath()
772 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_datapath()
773 efx_fini_rx_queue(rx_queue); in efx_stop_datapath()
782 struct efx_rx_queue *rx_queue; in efx_remove_channel() local
787 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_remove_channel()
788 efx_remove_rx_queue(rx_queue); in efx_remove_channel()
819 struct efx_rx_queue *rx_queue; in efx_realloc_channels() local
827 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_realloc_channels()
829 rx_queue->rxd.index + in efx_realloc_channels()
830 rx_queue->rxd.entries); in efx_realloc_channels()
913 void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue) in efx_schedule_slow_fill() argument
915 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(10)); in efx_schedule_slow_fill()
1742 channel->rx_queue.core_index = channel->channel; in efx_set_channels()
1744 channel->rx_queue.core_index = -1; in efx_set_channels()