Home
last modified time | relevance | path

Searched refs:tx_q (Results 1 - 25 of 58) sorted by relevance

123

/kernel/linux/linux-5.10/drivers/net/ethernet/stmicro/stmmac/
H A Dring_mode.c19 struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)p; in jumbo_frm() local
21 struct stmmac_priv *priv = tx_q->priv_data; in jumbo_frm()
22 unsigned int entry = tx_q->cur_tx; in jumbo_frm()
27 desc = (struct dma_desc *)(tx_q->dma_etx + entry); in jumbo_frm()
29 desc = tx_q->dma_tx + entry; in jumbo_frm()
46 tx_q->tx_skbuff_dma[entry].buf = des2; in jumbo_frm()
47 tx_q->tx_skbuff_dma[entry].len = bmax; in jumbo_frm()
48 tx_q->tx_skbuff_dma[entry].is_jumbo = true; in jumbo_frm()
53 tx_q->tx_skbuff[entry] = NULL; in jumbo_frm()
57 desc = (struct dma_desc *)(tx_q in jumbo_frm()
122 struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)priv_ptr; clean_desc3() local
[all...]
H A Dchain_mode.c19 struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)p; in jumbo_frm() local
21 struct stmmac_priv *priv = tx_q->priv_data; in jumbo_frm()
22 unsigned int entry = tx_q->cur_tx; in jumbo_frm()
27 desc = tx_q->dma_tx + entry; in jumbo_frm()
41 tx_q->tx_skbuff_dma[entry].buf = des2; in jumbo_frm()
42 tx_q->tx_skbuff_dma[entry].len = bmax; in jumbo_frm()
48 tx_q->tx_skbuff[entry] = NULL; in jumbo_frm()
50 desc = tx_q->dma_tx + entry; in jumbo_frm()
59 tx_q->tx_skbuff_dma[entry].buf = des2; in jumbo_frm()
60 tx_q in jumbo_frm()
146 struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)priv_ptr; clean_desc3() local
[all...]
H A Dstmmac_main.c298 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; in stmmac_tx_avail() local
301 if (tx_q->dirty_tx > tx_q->cur_tx) in stmmac_tx_avail()
302 avail = tx_q->dirty_tx - tx_q->cur_tx - 1; in stmmac_tx_avail()
304 avail = priv->dma_tx_size - tx_q->cur_tx + tx_q->dirty_tx - 1; in stmmac_tx_avail()
340 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; in stmmac_enable_eee_mode() local
342 if (tx_q->dirty_tx != tx_q in stmmac_enable_eee_mode()
1212 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_display_tx_rings() local
1294 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_clear_tx_descriptors() local
1402 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_free_tx_buffer() local
1516 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; init_dma_tx_desc_rings() local
1671 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; free_dma_tx_desc_resources() local
1786 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; alloc_dma_tx_desc_resources() local
2047 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_tx_clean() local
2162 struct stmmac_tx_queue *tx_q = &priv->tx_queue[chan]; stmmac_tx_err() local
2368 struct stmmac_tx_queue *tx_q; stmmac_init_dma_engine() local
2428 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_tx_timer_arm() local
2441 struct stmmac_tx_queue *tx_q = from_timer(tx_q, t, txtimer); stmmac_tx_timer() local
2475 struct stmmac_tx_queue *tx_q = &priv->tx_queue[chan]; stmmac_init_coalesce() local
2802 struct stmmac_tx_queue *tx_q = &priv->tx_queue[chan]; stmmac_hw_setup() local
2824 struct stmmac_tx_queue *tx_q = &priv->tx_queue[chan]; stmmac_hw_setup() local
2904 struct stmmac_tx_queue *tx_q = &priv->tx_queue[chan]; stmmac_open() local
3064 stmmac_vlan_insert(struct stmmac_priv *priv, struct sk_buff *skb, struct stmmac_tx_queue *tx_q) stmmac_vlan_insert() argument
3109 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_tso_allocator() local
3181 struct stmmac_tx_queue *tx_q; stmmac_tso_xmit() local
3431 struct stmmac_tx_queue *tx_q; stmmac_xmit() local
4463 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_rings_status_show() local
5354 struct stmmac_tx_queue *tx_q = &priv->tx_queue[queue]; stmmac_reset_queues_param() local
[all...]
/kernel/linux/linux-6.6/drivers/net/ethernet/stmicro/stmmac/
H A Dring_mode.c17 static int jumbo_frm(struct stmmac_tx_queue *tx_q, struct sk_buff *skb, in jumbo_frm() argument
21 struct stmmac_priv *priv = tx_q->priv_data; in jumbo_frm()
22 unsigned int entry = tx_q->cur_tx; in jumbo_frm()
27 desc = (struct dma_desc *)(tx_q->dma_etx + entry); in jumbo_frm()
29 desc = tx_q->dma_tx + entry; in jumbo_frm()
46 tx_q->tx_skbuff_dma[entry].buf = des2; in jumbo_frm()
47 tx_q->tx_skbuff_dma[entry].len = bmax; in jumbo_frm()
48 tx_q->tx_skbuff_dma[entry].is_jumbo = true; in jumbo_frm()
53 tx_q->tx_skbuff[entry] = NULL; in jumbo_frm()
57 desc = (struct dma_desc *)(tx_q in jumbo_frm()
119 clean_desc3(struct stmmac_tx_queue *tx_q, struct dma_desc *p) clean_desc3() argument
[all...]
H A Dchain_mode.c17 static int jumbo_frm(struct stmmac_tx_queue *tx_q, struct sk_buff *skb, in jumbo_frm() argument
21 struct stmmac_priv *priv = tx_q->priv_data; in jumbo_frm()
22 unsigned int entry = tx_q->cur_tx; in jumbo_frm()
27 desc = tx_q->dma_tx + entry; in jumbo_frm()
41 tx_q->tx_skbuff_dma[entry].buf = des2; in jumbo_frm()
42 tx_q->tx_skbuff_dma[entry].len = bmax; in jumbo_frm()
48 tx_q->tx_skbuff[entry] = NULL; in jumbo_frm()
50 desc = tx_q->dma_tx + entry; in jumbo_frm()
59 tx_q->tx_skbuff_dma[entry].buf = des2; in jumbo_frm()
60 tx_q in jumbo_frm()
143 clean_desc3(struct stmmac_tx_queue *tx_q, struct dma_desc *p) clean_desc3() argument
[all...]
H A Dstmmac_main.c364 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; in stmmac_tx_avail() local
367 if (tx_q->dirty_tx > tx_q->cur_tx) in stmmac_tx_avail()
368 avail = tx_q->dirty_tx - tx_q->cur_tx - 1; in stmmac_tx_avail()
370 avail = priv->dma_conf.dma_tx_size - tx_q->cur_tx + tx_q->dirty_tx - 1; in stmmac_tx_avail()
416 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; in stmmac_enable_eee_mode() local
418 if (tx_q->dirty_tx != tx_q in stmmac_enable_eee_mode()
1303 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; stmmac_display_tx_rings() local
1392 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; stmmac_clear_tx_descriptors() local
1517 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; stmmac_free_tx_buffer() local
1788 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; __init_dma_tx_desc_rings() local
1886 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; dma_free_tx_skbufs() local
1974 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; __free_dma_tx_desc_resources() local
2131 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[queue]; __alloc_dma_tx_desc_resources() local
2437 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_xdp_xmit_zc() local
2558 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_tx_clean() local
2741 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[chan]; stmmac_tx_err() local
2809 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[chan]; stmmac_napi_check() local
2942 struct stmmac_tx_queue *tx_q; stmmac_init_dma_engine() local
3004 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_tx_timer_arm() local
3023 struct stmmac_tx_queue *tx_q = container_of(t, struct stmmac_tx_queue, txtimer); stmmac_tx_timer() local
3058 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[chan]; stmmac_init_coalesce() local
3420 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[chan]; stmmac_hw_setup() local
3442 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[chan]; stmmac_hw_setup() local
3785 struct stmmac_tx_queue *tx_q = &dma_conf->tx_queue[chan]; stmmac_setup_dma_desc() local
3994 stmmac_vlan_insert(struct stmmac_priv *priv, struct sk_buff *skb, struct stmmac_tx_queue *tx_q) stmmac_vlan_insert() argument
4039 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_tso_allocator() local
4078 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_flush_tx_descriptors() local
4134 struct stmmac_tx_queue *tx_q; stmmac_tso_xmit() local
4403 struct stmmac_tx_queue *tx_q; stmmac_xmit() local
4787 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_xdp_xmit_xdpf() local
5983 struct stmmac_tx_queue *tx_q = (struct stmmac_tx_queue *)data; stmmac_msi_intr_tx() local
6215 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_rings_status_show() local
6708 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_enable_tx_queue() local
6786 struct stmmac_tx_queue *tx_q; stmmac_xdp_open() local
6892 struct stmmac_tx_queue *tx_q; stmmac_xsk_wakeup() local
7774 struct stmmac_tx_queue *tx_q = &priv->dma_conf.tx_queue[queue]; stmmac_reset_tx_queue() local
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/qualcomm/emac/
H A Demac-mac.c305 writel(upper_32_bits(adpt->tx_q.tpd.dma_addr), in emac_mac_dma_rings_config()
308 writel(lower_32_bits(adpt->tx_q.tpd.dma_addr), in emac_mac_dma_rings_config()
311 writel(adpt->tx_q.tpd.count & TPD_RING_SIZE_BMSK, in emac_mac_dma_rings_config()
587 struct emac_tx_queue *tx_q = &adpt->tx_q; in emac_tx_q_descs_free() local
592 if (!tx_q->tpd.tpbuff) in emac_tx_q_descs_free()
595 for (i = 0; i < tx_q->tpd.count; i++) { in emac_tx_q_descs_free()
596 struct emac_buffer *tpbuf = GET_TPD_BUFFER(tx_q, i); in emac_tx_q_descs_free()
610 size = sizeof(struct emac_buffer) * tx_q->tpd.count; in emac_tx_q_descs_free()
611 memset(tx_q in emac_tx_q_descs_free()
662 struct emac_tx_queue *tx_q = &adpt->tx_q; emac_tx_q_bufs_free() local
674 emac_tx_q_desc_alloc(struct emac_adapter *adpt, struct emac_tx_queue *tx_q) emac_tx_q_desc_alloc() argument
1025 emac_tx_tpd_create(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct emac_tpd *tpd) emac_tx_tpd_create() argument
1043 emac_tx_tpd_mark_last(struct emac_adapter *adpt, struct emac_tx_queue *tx_q) emac_tx_tpd_mark_last() argument
1168 emac_tpd_num_free_descs(struct emac_tx_queue *tx_q) emac_tpd_num_free_descs() argument
1179 emac_mac_tx_process(struct emac_adapter *adpt, struct emac_tx_queue *tx_q) emac_mac_tx_process() argument
1245 emac_tso_csum(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct sk_buff *skb, struct emac_tpd *tpd) emac_tso_csum() argument
1327 emac_tx_fill_tpd(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct sk_buff *skb, struct emac_tpd *tpd) emac_tx_fill_tpd() argument
1434 emac_mac_tx_buf_send(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct sk_buff *skb) emac_mac_tx_buf_send() argument
[all...]
H A Demac-mac.h231 struct emac_tx_queue *tx_q,
233 void emac_mac_tx_process(struct emac_adapter *adpt, struct emac_tx_queue *tx_q);
/kernel/linux/linux-6.6/drivers/net/ethernet/qualcomm/emac/
H A Demac-mac.c305 writel(upper_32_bits(adpt->tx_q.tpd.dma_addr), in emac_mac_dma_rings_config()
308 writel(lower_32_bits(adpt->tx_q.tpd.dma_addr), in emac_mac_dma_rings_config()
311 writel(adpt->tx_q.tpd.count & TPD_RING_SIZE_BMSK, in emac_mac_dma_rings_config()
587 struct emac_tx_queue *tx_q = &adpt->tx_q; in emac_tx_q_descs_free() local
592 if (!tx_q->tpd.tpbuff) in emac_tx_q_descs_free()
595 for (i = 0; i < tx_q->tpd.count; i++) { in emac_tx_q_descs_free()
596 struct emac_buffer *tpbuf = GET_TPD_BUFFER(tx_q, i); in emac_tx_q_descs_free()
610 size = sizeof(struct emac_buffer) * tx_q->tpd.count; in emac_tx_q_descs_free()
611 memset(tx_q in emac_tx_q_descs_free()
662 struct emac_tx_queue *tx_q = &adpt->tx_q; emac_tx_q_bufs_free() local
674 emac_tx_q_desc_alloc(struct emac_adapter *adpt, struct emac_tx_queue *tx_q) emac_tx_q_desc_alloc() argument
1025 emac_tx_tpd_create(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct emac_tpd *tpd) emac_tx_tpd_create() argument
1043 emac_tx_tpd_mark_last(struct emac_adapter *adpt, struct emac_tx_queue *tx_q) emac_tx_tpd_mark_last() argument
1168 emac_tpd_num_free_descs(struct emac_tx_queue *tx_q) emac_tpd_num_free_descs() argument
1179 emac_mac_tx_process(struct emac_adapter *adpt, struct emac_tx_queue *tx_q) emac_mac_tx_process() argument
1245 emac_tso_csum(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct sk_buff *skb, struct emac_tpd *tpd) emac_tso_csum() argument
1330 emac_tx_fill_tpd(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct sk_buff *skb, struct emac_tpd *tpd) emac_tx_fill_tpd() argument
1437 emac_mac_tx_buf_send(struct emac_adapter *adpt, struct emac_tx_queue *tx_q, struct sk_buff *skb) emac_mac_tx_buf_send() argument
[all...]
H A Demac-mac.h231 struct emac_tx_queue *tx_q,
233 void emac_mac_tx_process(struct emac_adapter *adpt, struct emac_tx_queue *tx_q);
/kernel/linux/linux-6.6/drivers/net/wwan/t7xx/
H A Dt7xx_hif_dpmaif.c211 struct dpmaif_tx_queue *tx_q; in t7xx_dpmaif_rxtx_sw_allocs() local
236 tx_q = &dpmaif_ctrl->txq[tx_idx]; in t7xx_dpmaif_rxtx_sw_allocs()
237 tx_q->index = tx_idx; in t7xx_dpmaif_rxtx_sw_allocs()
238 tx_q->dpmaif_ctrl = dpmaif_ctrl; in t7xx_dpmaif_rxtx_sw_allocs()
239 ret = t7xx_dpmaif_txq_init(tx_q); in t7xx_dpmaif_rxtx_sw_allocs()
261 tx_q = &dpmaif_ctrl->txq[i]; in t7xx_dpmaif_rxtx_sw_allocs()
262 t7xx_dpmaif_txq_free(tx_q); in t7xx_dpmaif_rxtx_sw_allocs()
282 struct dpmaif_tx_queue *tx_q; in t7xx_dpmaif_sw_release() local
289 tx_q = &dpmaif_ctrl->txq[i]; in t7xx_dpmaif_sw_release()
290 t7xx_dpmaif_txq_free(tx_q); in t7xx_dpmaif_sw_release()
[all...]
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/ice/
H A Dice_dcb_lib.h42 * @tx_q: hung_queue/tx_queue
44 * finds if queue 'tx_q' falls between the two offsets of any given TC
46 static inline bool ice_find_q_in_range(u16 low, u16 high, unsigned int tx_q) in ice_find_q_in_range() argument
48 return (tx_q >= low) && (tx_q < high); in ice_find_q_in_range()
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/ice/
H A Dice_dcb_lib.h40 * @tx_q: hung_queue/tx_queue
42 * finds if queue 'tx_q' falls between the two offsets of any given TC
44 static inline bool ice_find_q_in_range(u16 low, u16 high, unsigned int tx_q) in ice_find_q_in_range() argument
46 return (tx_q >= low) && (tx_q < high); in ice_find_q_in_range()
/kernel/linux/linux-5.10/net/nfc/nci/
H A Ddata.c146 spin_lock_irqsave(&ndev->tx_q.lock, flags); in nci_queue_tx_data_frags()
149 __skb_queue_tail(&ndev->tx_q, skb_frag); in nci_queue_tx_data_frags()
151 spin_unlock_irqrestore(&ndev->tx_q.lock, flags); in nci_queue_tx_data_frags()
185 skb_queue_tail(&ndev->tx_q, skb); in nci_send_data()
H A Duart.c56 skb = skb_dequeue(&nu->tx_q); in nci_uart_dequeue()
68 return skb_queue_empty(&nu->tx_q); in nci_uart_queue_empty()
135 skb_queue_head_init(&nu->tx_q); in nci_uart_set_driver()
198 skb_queue_purge(&nu->tx_q); in nci_uart_tty_close()
316 skb_queue_tail(&nu->tx_q, skb); in nci_uart_send()
/kernel/linux/linux-6.6/net/nfc/nci/
H A Ddata.c146 spin_lock_irqsave(&ndev->tx_q.lock, flags); in nci_queue_tx_data_frags()
149 __skb_queue_tail(&ndev->tx_q, skb_frag); in nci_queue_tx_data_frags()
151 spin_unlock_irqrestore(&ndev->tx_q.lock, flags); in nci_queue_tx_data_frags()
185 skb_queue_tail(&ndev->tx_q, skb); in nci_send_data()
H A Duart.c44 skb = skb_dequeue(&nu->tx_q); in nci_uart_dequeue()
56 return skb_queue_empty(&nu->tx_q); in nci_uart_queue_empty()
123 skb_queue_head_init(&nu->tx_q); in nci_uart_set_driver()
186 skb_queue_purge(&nu->tx_q); in nci_uart_tty_close()
363 skb_queue_tail(&nu->tx_q, skb); in nci_uart_send()
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt7601u/
H A Ddma.c301 struct mt7601u_tx_queue *q = &dev->tx_q[ep]; in mt7601u_dma_submit_tx()
466 if (!dev->tx_q) in mt7601u_free_tx()
470 mt7601u_free_tx_queue(&dev->tx_q[i]); in mt7601u_free_tx()
494 dev->tx_q = devm_kcalloc(dev->dev, __MT_EP_OUT_MAX, in mt7601u_alloc_tx()
495 sizeof(*dev->tx_q), GFP_KERNEL); in mt7601u_alloc_tx()
496 if (!dev->tx_q) in mt7601u_alloc_tx()
500 if (mt7601u_alloc_tx_queue(dev, &dev->tx_q[i])) in mt7601u_alloc_tx()
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt7601u/
H A Ddma.c312 struct mt7601u_tx_queue *q = &dev->tx_q[ep]; in mt7601u_dma_submit_tx()
477 if (!dev->tx_q) in mt7601u_free_tx()
481 mt7601u_free_tx_queue(&dev->tx_q[i]); in mt7601u_free_tx()
505 dev->tx_q = devm_kcalloc(dev->dev, __MT_EP_OUT_MAX, in mt7601u_alloc_tx()
506 sizeof(*dev->tx_q), GFP_KERNEL); in mt7601u_alloc_tx()
507 if (!dev->tx_q) in mt7601u_alloc_tx()
511 if (mt7601u_alloc_tx_queue(dev, &dev->tx_q[i])) in mt7601u_alloc_tx()
/kernel/linux/linux-6.6/drivers/net/wireless/mediatek/mt76/
H A Dmt76_connac_mac.c89 if (wcid && pm->tx_q[i].wcid != wcid) in mt76_connac_free_pending_tx_skbs()
92 dev_kfree_skb(pm->tx_q[i].skb); in mt76_connac_free_pending_tx_skbs()
93 pm->tx_q[i].skb = NULL; in mt76_connac_free_pending_tx_skbs()
108 if (!pm->tx_q[qid].skb) { in mt76_connac_pm_queue_skb()
110 pm->tx_q[qid].wcid = wcid; in mt76_connac_pm_queue_skb()
111 pm->tx_q[qid].skb = skb; in mt76_connac_pm_queue_skb()
127 struct mt76_wcid *wcid = pm->tx_q[i].wcid; in mt76_connac_pm_dequeue_skbs()
130 if (!pm->tx_q[i].skb) in mt76_connac_pm_dequeue_skbs()
137 mt76_tx(phy, sta, wcid, pm->tx_q[i].skb); in mt76_connac_pm_dequeue_skbs()
138 pm->tx_q[ in mt76_connac_pm_dequeue_skbs()
[all...]
/kernel/linux/linux-5.10/drivers/net/fddi/skfp/h/
H A Dhwmtm.h242 #define HWM_GET_TX_USED(smc,queue) (int) (smc)->hw.fp.tx_q[queue].tx_used
261 (smc)->hw.fp.tx_q[queue].tx_curr_put
/kernel/linux/linux-6.6/drivers/net/fddi/skfp/h/
H A Dhwmtm.h242 #define HWM_GET_TX_USED(smc,queue) (int) (smc)->hw.fp.tx_q[queue].tx_used
261 (smc)->hw.fp.tx_q[queue].tx_curr_put
/kernel/linux/linux-5.10/drivers/net/wireless/mediatek/mt76/mt7615/
H A Dmain.c34 if (msta && dev->pm.tx_q[i].msta != msta) in mt7615_free_pending_tx_skbs()
37 dev_kfree_skb(dev->pm.tx_q[i].skb); in mt7615_free_pending_tx_skbs()
38 dev->pm.tx_q[i].skb = NULL; in mt7615_free_pending_tx_skbs()
751 if (!dev->pm.tx_q[qid].skb) { in mt7615_tx()
753 dev->pm.tx_q[qid].msta = msta; in mt7615_tx()
754 dev->pm.tx_q[qid].skb = skb; in mt7615_tx()
/kernel/linux/linux-5.10/net/bluetooth/
H A Dl2cap_core.c473 skb_queue_head_init(&chan->tx_q); in l2cap_chan_create()
572 skb_queue_head_init(&chan->tx_q); in l2cap_le_flowctl_init()
693 skb_queue_purge(&chan->tx_q); in l2cap_chan_del()
708 skb_queue_purge(&chan->tx_q); in l2cap_chan_del()
1321 skb_queue_walk(&chan->tx_q, skb) { in l2cap_move_setup()
2073 skb_queue_splice_tail_init(skbs, &chan->tx_q); in l2cap_streaming_send()
2075 while (!skb_queue_empty(&chan->tx_q)) { in l2cap_streaming_send()
2077 skb = skb_dequeue(&chan->tx_q); in l2cap_streaming_send()
2156 if (skb_queue_is_last(&chan->tx_q, skb)) in l2cap_ertm_send()
2159 chan->tx_send_head = skb_queue_next(&chan->tx_q, sk in l2cap_ertm_send()
[all...]
/kernel/linux/linux-5.10/drivers/media/radio/wl128x/
H A Dfmdrv_common.c327 if (!skb_queue_empty(&fmdev->tx_q)) in recv_tasklet()
351 skb = skb_dequeue(&fmdev->tx_q); in send_tasklet()
441 skb_queue_tail(&fmdev->tx_q, skb); in fm_send_cmd()
1541 skb_queue_head_init(&fmdev->tx_q); in fmc_prepare()
1595 skb_queue_purge(&fmdev->tx_q); in fmc_release()

Completed in 29 milliseconds

123