Lines Matching defs:channel
46 void __ef4_rx_packet(struct ef4_channel *channel);
49 static inline void ef4_rx_flush_packet(struct ef4_channel *channel)
51 if (channel->rx_pkt_n_frags)
52 __ef4_rx_packet(channel);
167 static inline void ef4_filter_rfs_expire(struct ef4_channel *channel)
169 if (channel->rfs_filters_added >= 60 &&
170 __ef4_filter_rfs_expire(channel->efx, 100))
171 channel->rfs_filters_added -= 60;
175 static inline void ef4_filter_rfs_expire(struct ef4_channel *channel) {}
181 int ef4_channel_dummy_op_int(struct ef4_channel *channel);
182 void ef4_channel_dummy_op_void(struct ef4_channel *channel);
207 void ef4_stop_eventq(struct ef4_channel *channel);
208 void ef4_start_eventq(struct ef4_channel *channel);
233 static inline void ef4_schedule_channel(struct ef4_channel *channel)
235 netif_vdbg(channel->efx, intr, channel->efx->net_dev,
236 "channel %d scheduling NAPI poll on CPU%d\n",
237 channel->channel, raw_smp_processor_id());
239 napi_schedule(&channel->napi_str);
242 static inline void ef4_schedule_channel_irq(struct ef4_channel *channel)
244 channel->event_test_cpu = raw_smp_processor_id();
245 ef4_schedule_channel(channel);