Lines Matching refs:tx_queue

549 	struct efx_tx_queue tx_queue[EFX_MAX_TXQ_PER_CHANNEL];  member
1353 int (*tx_probe)(struct efx_tx_queue *tx_queue);
1354 void (*tx_init)(struct efx_tx_queue *tx_queue);
1355 void (*tx_remove)(struct efx_tx_queue *tx_queue);
1356 void (*tx_write)(struct efx_tx_queue *tx_queue);
1357 netdev_tx_t (*tx_enqueue)(struct efx_tx_queue *tx_queue, struct sk_buff *skb);
1358 unsigned int (*tx_limit_len)(struct efx_tx_queue *tx_queue,
1555 for (_tx_queue = (_channel)->tx_queue; \
1556 _tx_queue < (_channel)->tx_queue + \
1644 struct efx_tx_queue *tx_queue; in efx_channel_tx_fill_level() local
1647 efx_for_each_channel_tx_queue(tx_queue, channel) in efx_channel_tx_fill_level()
1649 tx_queue->insert_count - tx_queue->read_count); in efx_channel_tx_fill_level()
1658 struct efx_tx_queue *tx_queue; in efx_channel_tx_old_fill_level() local
1661 efx_for_each_channel_tx_queue(tx_queue, channel) in efx_channel_tx_old_fill_level()
1663 tx_queue->insert_count - tx_queue->old_read_count); in efx_channel_tx_old_fill_level()
1682 efx_tx_queue_get_insert_index(const struct efx_tx_queue *tx_queue) in efx_tx_queue_get_insert_index() argument
1684 return tx_queue->insert_count & tx_queue->ptr_mask; in efx_tx_queue_get_insert_index()
1689 __efx_tx_queue_get_insert_buffer(const struct efx_tx_queue *tx_queue) in __efx_tx_queue_get_insert_buffer() argument
1691 return &tx_queue->buffer[efx_tx_queue_get_insert_index(tx_queue)]; in __efx_tx_queue_get_insert_buffer()
1696 efx_tx_queue_get_insert_buffer(const struct efx_tx_queue *tx_queue) in efx_tx_queue_get_insert_buffer() argument
1699 __efx_tx_queue_get_insert_buffer(tx_queue); in efx_tx_queue_get_insert_buffer()