Lines Matching refs:efx_channel

230 	struct efx_channel *channel;
422 struct efx_channel { struct
482 static inline void efx_channel_init_lock(struct efx_channel *channel) in efx_channel_init_lock() argument
488 static inline bool efx_channel_lock_napi(struct efx_channel *channel) in efx_channel_lock_napi()
505 static inline void efx_channel_unlock_napi(struct efx_channel *channel) in efx_channel_unlock_napi()
516 static inline bool efx_channel_lock_poll(struct efx_channel *channel) in efx_channel_lock_poll()
533 static inline void efx_channel_unlock_poll(struct efx_channel *channel) in efx_channel_unlock_poll()
544 static inline bool efx_channel_busy_polling(struct efx_channel *channel) in efx_channel_busy_polling()
550 static inline void efx_channel_enable(struct efx_channel *channel) in efx_channel_enable()
558 static inline bool efx_channel_disable(struct efx_channel *channel) in efx_channel_disable()
573 static inline void efx_channel_init_lock(struct efx_channel *channel) in efx_channel_init_lock()
577 static inline bool efx_channel_lock_napi(struct efx_channel *channel) in efx_channel_lock_napi()
582 static inline void efx_channel_unlock_napi(struct efx_channel *channel) in efx_channel_unlock_napi()
586 static inline bool efx_channel_lock_poll(struct efx_channel *channel) in efx_channel_lock_poll()
591 static inline void efx_channel_unlock_poll(struct efx_channel *channel) in efx_channel_unlock_poll()
595 static inline bool efx_channel_busy_polling(struct efx_channel *channel) in efx_channel_busy_polling()
600 static inline void efx_channel_enable(struct efx_channel *channel) in efx_channel_enable()
604 static inline bool efx_channel_disable(struct efx_channel *channel) in efx_channel_disable()
640 int (*pre_probe)(struct efx_channel *);
641 void (*post_remove)(struct efx_channel *);
642 void (*get_name)(struct efx_channel *, char *buf, size_t len);
643 struct efx_channel *(*copy)(const struct efx_channel *);
644 bool (*receive_skb)(struct efx_channel *, struct sk_buff *);
958 struct efx_channel *channel[EFX_MAX_CHANNELS];
1243 bool (*handle_global_event)(struct efx_channel *channel, efx_qword_t *);
1256 void (*push_irq_moderation)(struct efx_channel *channel);
1288 int (*ev_probe)(struct efx_channel *channel);
1289 int (*ev_init)(struct efx_channel *channel);
1290 void (*ev_fini)(struct efx_channel *channel);
1291 void (*ev_remove)(struct efx_channel *channel);
1292 int (*ev_process)(struct efx_channel *channel, int quota);
1293 void (*ev_read_ack)(struct efx_channel *channel);
1294 void (*ev_test_generate)(struct efx_channel *channel);
1368 static inline struct efx_channel *
1397 static inline bool efx_channel_has_tx_queues(struct efx_channel *channel) in efx_channel_has_tx_queues()
1404 efx_channel_get_tx_queue(struct efx_channel *channel, unsigned type) in efx_channel_get_tx_queue()
1436 static inline bool efx_channel_has_rx_queue(struct efx_channel *channel) in efx_channel_has_rx_queue()
1442 efx_channel_get_rx_queue(struct efx_channel *channel) in efx_channel_get_rx_queue()
1457 static inline struct efx_channel *
1460 return container_of(rx_queue, struct efx_channel, rx_queue); in efx_rx_queue_channel()