0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012 #ifndef EFX_EF100_TX_H
0013 #define EFX_EF100_TX_H
0014
0015 #include "net_driver.h"
0016 #include "ef100_rep.h"
0017
0018 int ef100_tx_probe(struct efx_tx_queue *tx_queue);
0019 void ef100_tx_init(struct efx_tx_queue *tx_queue);
0020 void ef100_tx_write(struct efx_tx_queue *tx_queue);
0021 unsigned int ef100_tx_max_skb_descs(struct efx_nic *efx);
0022
0023 void ef100_ev_tx(struct efx_channel *channel, const efx_qword_t *p_event);
0024
0025 netdev_tx_t ef100_enqueue_skb(struct efx_tx_queue *tx_queue, struct sk_buff *skb);
0026 int __ef100_enqueue_skb(struct efx_tx_queue *tx_queue, struct sk_buff *skb,
0027 struct efx_rep *efv);
0028 #endif