Lines Matching refs:rx_queue
285 struct efx_rx_queue *rx_queue = in efx_process_channel() local
289 efx_fast_push_rx_descriptors(rx_queue, true); in efx_process_channel()
467 struct efx_rx_queue *rx_queue; in efx_alloc_channel() local
490 rx_queue = &channel->rx_queue; in efx_alloc_channel()
491 rx_queue->efx = efx; in efx_alloc_channel()
492 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_alloc_channel()
504 struct efx_rx_queue *rx_queue; in efx_copy_channel() local
528 rx_queue = &channel->rx_queue; in efx_copy_channel()
529 rx_queue->buffer = NULL; in efx_copy_channel()
530 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in efx_copy_channel()
531 timer_setup(&rx_queue->slow_fill, efx_rx_slow_fill, 0); in efx_copy_channel()
542 struct efx_rx_queue *rx_queue; in efx_probe_channel() local
562 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_probe_channel()
563 rc = efx_probe_rx_queue(rx_queue); in efx_probe_channel()
646 struct efx_rx_queue *rx_queue; in efx_start_datapath() local
718 efx_for_each_channel_rx_queue(rx_queue, channel) { in efx_start_datapath()
719 efx_init_rx_queue(rx_queue); in efx_start_datapath()
722 efx_fast_push_rx_descriptors(rx_queue, false); in efx_start_datapath()
739 struct efx_rx_queue *rx_queue; in efx_stop_datapath() local
749 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_datapath()
750 rx_queue->refill_enabled = false; in efx_stop_datapath()
775 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_stop_datapath()
776 efx_fini_rx_queue(rx_queue); in efx_stop_datapath()
785 struct efx_rx_queue *rx_queue; in efx_remove_channel() local
790 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_remove_channel()
791 efx_remove_rx_queue(rx_queue); in efx_remove_channel()
822 struct efx_rx_queue *rx_queue; in efx_realloc_channels() local
830 efx_for_each_channel_rx_queue(rx_queue, channel) in efx_realloc_channels()
832 rx_queue->rxd.index + in efx_realloc_channels()
833 rx_queue->rxd.entries); in efx_realloc_channels()
916 void efx_schedule_slow_fill(struct efx_rx_queue *rx_queue) in efx_schedule_slow_fill() argument
918 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100)); in efx_schedule_slow_fill()
1745 channel->rx_queue.core_index = channel->channel; in efx_set_channels()
1747 channel->rx_queue.core_index = -1; in efx_set_channels()