/Linux-v5.4/drivers/staging/rtl8188eu/include/ |
D | osdep_service.h | 58 return netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 0)) && in rtw_netif_queue_stopped() 59 netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 1)) && in rtw_netif_queue_stopped() 60 netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 2)) && in rtw_netif_queue_stopped() 61 netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 3)); in rtw_netif_queue_stopped()
|
/Linux-v5.4/drivers/staging/rtl8723bs/include/ |
D | osdep_service_linux.h | 109 return (netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 0)) && in rtw_netif_queue_stopped() 110 netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 1)) && in rtw_netif_queue_stopped() 111 netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 2)) && in rtw_netif_queue_stopped() 112 netif_tx_queue_stopped(netdev_get_tx_queue(pnetdev, 3))); in rtw_netif_queue_stopped()
|
/Linux-v5.4/net/sched/ |
D | sch_teql.c | 98 dat_queue = netdev_get_tx_queue(dat->m->dev, 0); in teql_dequeue() 149 txq = netdev_get_tx_queue(master->dev, 0); in teql_destroy() 296 struct netdev_queue *slave_txq = netdev_get_tx_queue(slave, 0); in teql_master_xmit() 300 if (netif_xmit_stopped(netdev_get_tx_queue(slave, subq)) || in teql_master_xmit() 323 if (netif_xmit_stopped(netdev_get_tx_queue(dev, 0))) in teql_master_xmit()
|
D | sch_mq.c | 89 dev_queue = netdev_get_tx_queue(dev, ntx); in mq_init() 145 qdisc = netdev_get_tx_queue(dev, ntx)->qdisc_sleeping; in mq_dump() 180 return netdev_get_tx_queue(dev, ntx); in mq_queue_get()
|
D | sch_mqprio.c | 227 dev_queue = netdev_get_tx_queue(dev, i); in mqprio_init() 317 return netdev_get_tx_queue(dev, ntx); in mqprio_queue_get() 402 qdisc = netdev_get_tx_queue(dev, ntx)->qdisc_sleeping; in mqprio_dump() 529 struct netdev_queue *q = netdev_get_tx_queue(dev, i); in mqprio_dump_class_stats()
|
D | sch_generic.c | 407 res = netdev_get_tx_queue(dev, 0)->trans_start; in dev_trans_start() 409 val = netdev_get_tx_queue(dev, i)->trans_start; in dev_trans_start() 434 txq = netdev_get_tx_queue(dev, i); in dev_watchdog() 1059 txq = netdev_get_tx_queue(dev, 0); in attach_default_qdiscs() 1161 dev_queue = netdev_get_tx_queue(dev, i); in some_qdisc_is_busy()
|
D | sch_multiq.c | 104 netdev_get_tx_queue(qdisc_dev(sch), q->curband))) { in multiq_dequeue() 136 netdev_get_tx_queue(qdisc_dev(sch), curband))) { in multiq_peek()
|
/Linux-v5.4/drivers/net/ |
D | ifb.c | 68 txq = netdev_get_tx_queue(txp->dev, txp->txqnum); in ifb_ri_tasklet() 175 netif_tx_start_queue(netdev_get_tx_queue(dev, i)); in ifb_dev_init() 253 netif_tx_stop_queue(netdev_get_tx_queue(dev, txp->txqnum)); in ifb_xmit()
|
/Linux-v5.4/include/linux/ |
D | netdevice.h | 2113 struct netdev_queue *netdev_get_tx_queue(const struct net_device *dev, in netdev_get_tx_queue() function 2122 return netdev_get_tx_queue(dev, skb_get_queue_mapping(skb)); in skb_get_tx_queue() 3064 netif_schedule_queue(netdev_get_tx_queue(dev, i)); in netif_tx_schedule_all() 3080 netif_tx_start_queue(netdev_get_tx_queue(dev, 0)); in netif_start_queue() 3088 struct netdev_queue *txq = netdev_get_tx_queue(dev, i); in netif_tx_start_all_queues() 3104 netif_tx_wake_queue(netdev_get_tx_queue(dev, 0)); in netif_wake_queue() 3112 struct netdev_queue *txq = netdev_get_tx_queue(dev, i); in netif_tx_wake_all_queues() 3131 netif_tx_stop_queue(netdev_get_tx_queue(dev, 0)); in netif_stop_queue() 3150 return netif_tx_queue_stopped(netdev_get_tx_queue(dev, 0)); in netif_queue_stopped() 3253 netdev_tx_sent_queue(netdev_get_tx_queue(dev, 0), bytes); in netdev_sent_queue() [all …]
|
/Linux-v5.4/drivers/net/ethernet/stmicro/stmmac/ |
D | stmmac_main.c | 187 netif_tx_stop_queue(netdev_get_tx_queue(priv->dev, queue)); in stmmac_stop_all_queues() 200 netif_tx_start_queue(netdev_get_tx_queue(priv->dev, queue)); in stmmac_start_all_queues() 1419 netdev_tx_reset_queue(netdev_get_tx_queue(priv->dev, queue)); in init_dma_tx_desc_rings() 1886 __netif_tx_lock_bh(netdev_get_tx_queue(priv->dev, queue)); in stmmac_tx_clean() 1960 netdev_tx_completed_queue(netdev_get_tx_queue(priv->dev, queue), in stmmac_tx_clean() 1963 if (unlikely(netif_tx_queue_stopped(netdev_get_tx_queue(priv->dev, in stmmac_tx_clean() 1969 netif_tx_wake_queue(netdev_get_tx_queue(priv->dev, queue)); in stmmac_tx_clean() 1981 __netif_tx_unlock_bh(netdev_get_tx_queue(priv->dev, queue)); in stmmac_tx_clean() 1998 netif_tx_stop_queue(netdev_get_tx_queue(priv->dev, chan)); in stmmac_tx_err() 2012 netdev_tx_reset_queue(netdev_get_tx_queue(priv->dev, chan)); in stmmac_tx_err() [all …]
|
/Linux-v5.4/include/net/ |
D | sch_generic.h | 714 qdisc = rtnl_dereference(netdev_get_tx_queue(dev, i)->qdisc); in qdisc_reset_all_tx_gt() 735 struct netdev_queue *txq = netdev_get_tx_queue(dev, i); in qdisc_all_tx_empty() 753 struct netdev_queue *txq = netdev_get_tx_queue(dev, i); in qdisc_tx_changing() 766 struct netdev_queue *txq = netdev_get_tx_queue(dev, i); in qdisc_tx_is_noop()
|
/Linux-v5.4/drivers/staging/rtl8188eu/os_dep/ |
D | xmit_linux.c | 106 if (!netif_tx_queue_stopped(netdev_get_tx_queue(padapter->pnetdev, queue))) in rtw_check_xmit_resource()
|
/Linux-v5.4/drivers/net/xen-netback/ |
D | rx.c | 82 netif_tx_stop_queue(netdev_get_tx_queue(dev, queue->id)); in xenvif_rx_queue_tail() 100 txq = netdev_get_tx_queue(queue->vif->dev, queue->id); in xenvif_rx_dequeue()
|
D | interface.c | 140 return netif_tx_queue_stopped(netdev_get_tx_queue(dev, id)); in xenvif_queue_stopped() 147 netif_tx_wake_queue(netdev_get_tx_queue(dev, id)); in xenvif_wake_queue()
|
/Linux-v5.4/drivers/staging/rtl8723bs/os_dep/ |
D | xmit_linux.c | 121 if (!netif_tx_queue_stopped(netdev_get_tx_queue(padapter->pnetdev, queue))) in rtw_check_xmit_resource()
|
/Linux-v5.4/drivers/net/ethernet/ |
D | lantiq_etop.c | 175 netdev_get_tx_queue(ch->netdev, ch->idx >> 1); in ltq_etop_poll_tx() 458 struct netdev_queue *txq = netdev_get_tx_queue(dev, queue); in ltq_etop_tx()
|
/Linux-v5.4/drivers/net/wireless/marvell/mwifiex/ |
D | txrx.c | 319 txq = netdev_get_tx_queue(priv->netdev, index); in mwifiex_write_data_complete()
|
/Linux-v5.4/drivers/net/ethernet/intel/i40e/ |
D | i40e_txrx.h | 582 return netdev_get_tx_queue(ring->netdev, ring->queue_index); in txring_txq()
|
/Linux-v5.4/drivers/net/ethernet/intel/iavf/ |
D | iavf_txrx.h | 521 return netdev_get_tx_queue(ring->netdev, ring->queue_index); in txring_txq()
|
/Linux-v5.4/drivers/net/hyperv/ |
D | netvsc.c | 710 struct netdev_queue *txq = netdev_get_tx_queue(ndev, q_idx); in netvsc_send_tx_complete() 818 struct netdev_queue *txq = netdev_get_tx_queue(ndev, packet->q_idx); in netvsc_send_pkt() 963 !netif_xmit_stopped(netdev_get_tx_queue(ndev, packet->q_idx)); in netvsc_send()
|
/Linux-v5.4/drivers/net/ethernet/synopsys/ |
D | dwc-xlgmac-net.c | 608 txq = netdev_get_tx_queue(netdev, channel->queue_index); in xlgmac_stop() 717 txq = netdev_get_tx_queue(netdev, channel->queue_index); in xlgmac_xmit() 1060 txq = netdev_get_tx_queue(netdev, channel->queue_index); in xlgmac_tx_poll()
|
/Linux-v5.4/drivers/net/ethernet/intel/igc/ |
D | igc.h | 463 return netdev_get_tx_queue(tx_ring->netdev, tx_ring->queue_index); in txring_txq()
|
/Linux-v5.4/drivers/net/ethernet/huawei/hinic/ |
D | hinic_tx.c | 536 netdev_txq = netdev_get_tx_queue(netdev, q_id); in hinic_xmit_frame() 654 netdev_txq = netdev_get_tx_queue(txq->netdev, qp->q_id); in free_tx_poll()
|
/Linux-v5.4/drivers/net/ethernet/sun/ |
D | sunvnet_common.c | 726 txq = netdev_get_tx_queue(dev, port->q_index); in vnet_ack() 763 txq = netdev_get_tx_queue(VNET_PORT_TO_NET_DEVICE(port), in maybe_tx_wakeup() 1259 txq = netdev_get_tx_queue(dev, port->q_index); in vnet_handle_offloads() 1397 txq = netdev_get_tx_queue(dev, i); in sunvnet_start_xmit_common()
|
/Linux-v5.4/drivers/net/ethernet/broadcom/genet/ |
D | bcmgenet.c | 1424 netdev_tx_completed_queue(netdev_get_tx_queue(dev, ring->queue), in __bcmgenet_tx_reclaim() 1452 txq = netdev_get_tx_queue(ring->priv->dev, ring->queue); in bcmgenet_tx_poll() 1573 txq = netdev_get_tx_queue(dev, ring->queue); in bcmgenet_xmit() 2529 txq = netdev_get_tx_queue(priv->dev, priv->tx_rings[i].queue); in bcmgenet_fini_dma() 2533 txq = netdev_get_tx_queue(priv->dev, priv->tx_rings[DESC_INDEX].queue); in bcmgenet_fini_dma() 3023 txq = netdev_get_tx_queue(priv->dev, ring->queue); in bcmgenet_dump_tx_queue()
|