Lines Matching refs:txq
153 #define netif_txq_try_stop(txq, get_desc, start_thrs) \ argument
157 netif_tx_stop_queue(txq); \
169 netif_tx_start_queue(txq); \
194 #define netif_txq_maybe_stop(txq, get_desc, stop_thrs, start_thrs) \ argument
200 _res = netif_txq_try_stop(txq, get_desc, start_thrs); \
237 #define __netif_txq_completed_wake(txq, pkts, bytes, \ argument
247 netdev_txq_completed_mb(txq, pkts, bytes); \
252 if (unlikely(netif_tx_queue_stopped(txq)) && \
254 netif_tx_wake_queue(txq); \
261 #define netif_txq_completed_wake(txq, pkts, bytes, get_desc, start_thrs) \ argument
262 __netif_txq_completed_wake(txq, pkts, bytes, get_desc, start_thrs, false)
268 struct netdev_queue *txq; \
270 txq = netdev_get_tx_queue(dev, idx); \
271 netif_txq_try_stop(txq, get_desc, start_thrs); \
276 struct netdev_queue *txq; \
278 txq = netdev_get_tx_queue(dev, idx); \
279 netif_txq_maybe_stop(txq, get_desc, stop_thrs, start_thrs); \
285 struct netdev_queue *txq; \
287 txq = netdev_get_tx_queue(dev, idx); \
288 netif_txq_completed_wake(txq, pkts, bytes, \