Lines Matching refs:efx_channel
246 struct efx_channel *channel;
458 struct efx_channel { struct
548 int (*pre_probe)(struct efx_channel *);
549 void (*post_remove)(struct efx_channel *);
550 void (*get_name)(struct efx_channel *, char *buf, size_t len);
551 struct efx_channel *(*copy)(const struct efx_channel *);
552 bool (*receive_skb)(struct efx_channel *, struct sk_buff *);
553 bool (*want_txqs)(struct efx_channel *);
967 struct efx_channel *channel[EFX_MAX_CHANNELS];
1288 bool (*handle_global_event)(struct efx_channel *channel, efx_qword_t *);
1301 void (*push_irq_moderation)(struct efx_channel *channel);
1345 int (*ev_probe)(struct efx_channel *channel);
1346 int (*ev_init)(struct efx_channel *channel);
1347 void (*ev_fini)(struct efx_channel *channel);
1348 void (*ev_remove)(struct efx_channel *channel);
1349 int (*ev_process)(struct efx_channel *channel, int quota);
1350 void (*ev_read_ack)(struct efx_channel *channel);
1351 void (*ev_test_generate)(struct efx_channel *channel);
1450 static inline struct efx_channel *
1479 static inline bool efx_channel_has_tx_queues(struct efx_channel *channel) in efx_channel_has_tx_queues()
1486 efx_channel_get_tx_queue(struct efx_channel *channel, unsigned type) in efx_channel_get_tx_queue()
1518 static inline bool efx_channel_has_rx_queue(struct efx_channel *channel) in efx_channel_has_rx_queue()
1524 efx_channel_get_rx_queue(struct efx_channel *channel) in efx_channel_get_rx_queue()
1539 static inline struct efx_channel *
1542 return container_of(rx_queue, struct efx_channel, rx_queue); in efx_rx_queue_channel()