Lines Matching refs:txq
174 #define netif_txq_try_stop(txq, get_desc, start_thrs) \ argument
178 netif_tx_stop_queue(txq); \
190 netif_tx_start_queue(txq); \
215 #define netif_txq_maybe_stop(txq, get_desc, stop_thrs, start_thrs) \ argument
221 _res = netif_txq_try_stop(txq, get_desc, start_thrs); \
258 #define __netif_txq_completed_wake(txq, pkts, bytes, \ argument
268 netdev_txq_completed_mb(txq, pkts, bytes); \
273 if (unlikely(netif_tx_queue_stopped(txq)) && \
275 netif_tx_wake_queue(txq); \
282 #define netif_txq_completed_wake(txq, pkts, bytes, get_desc, start_thrs) \ argument
283 __netif_txq_completed_wake(txq, pkts, bytes, get_desc, start_thrs, false)
289 struct netdev_queue *txq; \
291 txq = netdev_get_tx_queue(dev, idx); \
292 netif_txq_try_stop(txq, get_desc, start_thrs); \
297 struct netdev_queue *txq; \
299 txq = netdev_get_tx_queue(dev, idx); \
300 netif_txq_maybe_stop(txq, get_desc, stop_thrs, start_thrs); \
306 struct netdev_queue *txq; \
308 txq = netdev_get_tx_queue(dev, idx); \
309 netif_txq_completed_wake(txq, pkts, bytes, \