Lines Matching refs:rx_queue

256 		struct ef4_rx_queue *rx_queue =  in ef4_process_channel()  local
260 ef4_fast_push_rx_descriptors(rx_queue, true); in ef4_process_channel()
431 struct ef4_rx_queue *rx_queue; in ef4_alloc_channel() local
450 rx_queue = &channel->rx_queue; in ef4_alloc_channel()
451 rx_queue->efx = efx; in ef4_alloc_channel()
452 timer_setup(&rx_queue->slow_fill, ef4_rx_slow_fill, 0); in ef4_alloc_channel()
464 struct ef4_rx_queue *rx_queue; in ef4_copy_channel() local
488 rx_queue = &channel->rx_queue; in ef4_copy_channel()
489 rx_queue->buffer = NULL; in ef4_copy_channel()
490 memset(&rx_queue->rxd, 0, sizeof(rx_queue->rxd)); in ef4_copy_channel()
491 timer_setup(&rx_queue->slow_fill, ef4_rx_slow_fill, 0); in ef4_copy_channel()
499 struct ef4_rx_queue *rx_queue; in ef4_probe_channel() local
519 ef4_for_each_channel_rx_queue(rx_queue, channel) { in ef4_probe_channel()
520 rc = ef4_probe_rx_queue(rx_queue); in ef4_probe_channel()
601 struct ef4_rx_queue *rx_queue; in ef4_start_datapath() local
673 ef4_for_each_channel_rx_queue(rx_queue, channel) { in ef4_start_datapath()
674 ef4_init_rx_queue(rx_queue); in ef4_start_datapath()
677 ef4_fast_push_rx_descriptors(rx_queue, false); in ef4_start_datapath()
692 struct ef4_rx_queue *rx_queue; in ef4_stop_datapath() local
700 ef4_for_each_channel_rx_queue(rx_queue, channel) in ef4_stop_datapath()
701 rx_queue->refill_enabled = false; in ef4_stop_datapath()
735 ef4_for_each_channel_rx_queue(rx_queue, channel) in ef4_stop_datapath()
736 ef4_fini_rx_queue(rx_queue); in ef4_stop_datapath()
745 struct ef4_rx_queue *rx_queue; in ef4_remove_channel() local
750 ef4_for_each_channel_rx_queue(rx_queue, channel) in ef4_remove_channel()
751 ef4_remove_rx_queue(rx_queue); in ef4_remove_channel()
782 struct ef4_rx_queue *rx_queue; in ef4_realloc_channels() local
790 ef4_for_each_channel_rx_queue(rx_queue, channel) in ef4_realloc_channels()
792 rx_queue->rxd.index + in ef4_realloc_channels()
793 rx_queue->rxd.entries); in ef4_realloc_channels()
876 void ef4_schedule_slow_fill(struct ef4_rx_queue *rx_queue) in ef4_schedule_slow_fill() argument
878 mod_timer(&rx_queue->slow_fill, jiffies + msecs_to_jiffies(100)); in ef4_schedule_slow_fill()
1611 channel->rx_queue.core_index = channel->channel; in ef4_set_channels()
1613 channel->rx_queue.core_index = -1; in ef4_set_channels()