/Linux-v5.4/drivers/net/vmxnet3/ |
D | vmxnet3_drv.c | 103 vmxnet3_tq_stopped(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter) in vmxnet3_tq_stopped() argument 105 return tq->stopped; in vmxnet3_tq_stopped() 110 vmxnet3_tq_start(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter) in vmxnet3_tq_start() argument 112 tq->stopped = false; in vmxnet3_tq_start() 113 netif_start_subqueue(adapter->netdev, tq - adapter->tx_queue); in vmxnet3_tq_start() 118 vmxnet3_tq_wake(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter) in vmxnet3_tq_wake() argument 120 tq->stopped = false; in vmxnet3_tq_wake() 121 netif_wake_subqueue(adapter->netdev, (tq - adapter->tx_queue)); in vmxnet3_tq_wake() 126 vmxnet3_tq_stop(struct vmxnet3_tx_queue *tq, struct vmxnet3_adapter *adapter) in vmxnet3_tq_stop() argument 128 tq->stopped = true; in vmxnet3_tq_stop() [all …]
|
D | vmxnet3_ethtool.c | 392 struct vmxnet3_tx_queue *tq = &adapter->tx_queue[i]; in vmxnet3_get_regs() local 397 buf[j++] = VMXNET3_GET_ADDR_LO(tq->tx_ring.basePA); in vmxnet3_get_regs() 398 buf[j++] = VMXNET3_GET_ADDR_HI(tq->tx_ring.basePA); in vmxnet3_get_regs() 399 buf[j++] = tq->tx_ring.size; in vmxnet3_get_regs() 400 buf[j++] = tq->tx_ring.next2fill; in vmxnet3_get_regs() 401 buf[j++] = tq->tx_ring.next2comp; in vmxnet3_get_regs() 402 buf[j++] = tq->tx_ring.gen; in vmxnet3_get_regs() 404 buf[j++] = VMXNET3_GET_ADDR_LO(tq->data_ring.basePA); in vmxnet3_get_regs() 405 buf[j++] = VMXNET3_GET_ADDR_HI(tq->data_ring.basePA); in vmxnet3_get_regs() 406 buf[j++] = tq->data_ring.size; in vmxnet3_get_regs() [all …]
|
D | vmxnet3_int.h | 404 #define VMXNET3_WAKE_QUEUE_THRESHOLD(tq) (5) argument
|
/Linux-v5.4/drivers/net/wireless/ath/ath5k/ |
D | qcu.c | 286 struct ath5k_txq_info *tq = &ah->ah_txq[queue]; in ath5k_hw_set_tx_retry_limits() local 292 (tq->tqi_cw_min << AR5K_NODCU_RETRY_LMT_CW_MIN_S) in ath5k_hw_set_tx_retry_limits() 326 struct ath5k_txq_info *tq = &ah->ah_txq[queue]; in ath5k_hw_reset_tx_queue() local 333 (tq->tqi_type == AR5K_TX_QUEUE_INACTIVE)) in ath5k_hw_reset_tx_queue() 341 AR5K_REG_SM(tq->tqi_cw_min, AR5K_DCU_LCL_IFS_CW_MIN) | in ath5k_hw_reset_tx_queue() 342 AR5K_REG_SM(tq->tqi_cw_max, AR5K_DCU_LCL_IFS_CW_MAX) | in ath5k_hw_reset_tx_queue() 343 AR5K_REG_SM(tq->tqi_aifs, AR5K_DCU_LCL_IFS_AIFS), in ath5k_hw_reset_tx_queue() 366 if (tq->tqi_cbr_period) { in ath5k_hw_reset_tx_queue() 367 ath5k_hw_reg_write(ah, AR5K_REG_SM(tq->tqi_cbr_period, in ath5k_hw_reset_tx_queue() 369 AR5K_REG_SM(tq->tqi_cbr_overflow_limit, in ath5k_hw_reset_tx_queue() [all …]
|
/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb4vf/ |
D | sge.c | 233 static inline unsigned int txq_avail(const struct sge_txq *tq) in txq_avail() argument 235 return tq->size - 1 - tq->in_use; in txq_avail() 307 const struct ulptx_sgl *sgl, const struct sge_txq *tq) in unmap_sgl() argument 326 if (likely((u8 *)(p + 1) <= (u8 *)tq->stat)) { in unmap_sgl() 333 } else if ((u8 *)p == (u8 *)tq->stat) { in unmap_sgl() 334 p = (const struct ulptx_sge_pair *)tq->desc; in unmap_sgl() 336 } else if ((u8 *)p + 8 == (u8 *)tq->stat) { in unmap_sgl() 337 const __be64 *addr = (const __be64 *)tq->desc; in unmap_sgl() 345 const __be64 *addr = (const __be64 *)tq->desc; in unmap_sgl() 357 if ((u8 *)p == (u8 *)tq->stat) in unmap_sgl() [all …]
|
/Linux-v5.4/net/tipc/ |
D | trace.h | 284 TP_PROTO(struct tipc_link *r, u16 f, u16 t, struct sk_buff_head *tq), 286 TP_ARGS(r, f, t, tq), 301 __entry->len = skb_queue_len(tq); 302 __entry->fseqno = msg_seqno(buf_msg(skb_peek(tq))); 303 __entry->lseqno = msg_seqno(buf_msg(skb_peek_tail(tq))); 312 TP_PROTO(struct tipc_link *r, u16 f, u16 t, struct sk_buff_head *tq), 313 TP_ARGS(r, f, t, tq) 317 TP_PROTO(struct tipc_link *r, u16 f, u16 t, struct sk_buff_head *tq), 318 TP_ARGS(r, f, t, tq),
|
/Linux-v5.4/drivers/net/ |
D | ifb.c | 51 struct sk_buff_head tq; member 69 skb = skb_peek(&txp->tq); in ifb_ri_tasklet() 73 skb_queue_splice_tail_init(&txp->rq, &txp->tq); in ifb_ri_tasklet() 77 while ((skb = __skb_dequeue(&txp->tq)) != NULL) { in ifb_ri_tasklet() 92 if (skb_queue_len(&txp->tq) != 0) in ifb_ri_tasklet() 170 __skb_queue_head_init(&txp->tq); in ifb_dev_init() 204 __skb_queue_purge(&txp->tq); in ifb_dev_free()
|
/Linux-v5.4/drivers/input/serio/ |
D | hp_sdc.c | 190 curr = hp_sdc.tq[hp_sdc.rcurr]; in hp_sdc_take() 316 curr = hp_sdc.tq[hp_sdc.rcurr]; in hp_sdc_tasklet() 378 if (hp_sdc.tq[curridx] != NULL) in hp_sdc_put() 392 if (hp_sdc.tq[curridx] != NULL) in hp_sdc_put() 412 curr = hp_sdc.tq[curridx]; in hp_sdc_put() 416 hp_sdc.tq[curridx] = NULL; in hp_sdc_put() 430 hp_sdc.tq[curridx] = NULL; in hp_sdc_put() 573 hp_sdc.tq[curridx] = NULL; in hp_sdc_put() 609 if (hp_sdc.tq[i] == this) in __hp_sdc_enqueue_transaction() 617 if (hp_sdc.tq[i] == NULL) { in __hp_sdc_enqueue_transaction() [all …]
|
/Linux-v5.4/arch/arm/boot/dts/ |
D | imx7s-mba7.dts | 6 * Author: Markus Niebel <Markus.Niebel@tq-group.com> 17 compatible = "tq,imx7s-mba7", "fsl,imx7s";
|
D | imx53-mba53.dts | 12 compatible = "tq,mba53", "tq,tqma53", "fsl,imx53"; 65 compatible = "tq,imx53-mba53-sgtl5000",
|
D | imx7d-mba7.dts | 6 * Author: Markus Niebel <Markus.Niebel@tq-group.com> 17 compatible = "tq,imx7d-mba7", "fsl,imx7d";
|
D | imx7d-tqma7.dtsi | 6 * Author: Markus Niebel <Markus.Niebel@tq-group.com>
|
D | imx7s-tqma7.dtsi | 6 * Author: Markus Niebel <Markus.Niebel@tq-group.com>
|
D | imx53-tqma53.dtsi | 11 compatible = "tq,tqma53", "fsl,imx53";
|
D | imx7-tqma7.dtsi | 6 * Author: Markus Niebel <Markus.Niebel@tq-group.com>
|
/Linux-v5.4/drivers/input/keyboard/ |
D | sunkbd.c | 63 struct work_struct tq; member 102 schedule_work(&sunkbd->tq); in sunkbd_interrupt() 209 struct sunkbd *sunkbd = container_of(work, struct sunkbd, tq); in sunkbd_reinit() 252 INIT_WORK(&sunkbd->tq, sunkbd_reinit); in sunkbd_connect()
|
D | lkkbd.c | 270 struct work_struct tq; member 457 schedule_work(&lk->tq); in lkkbd_interrupt() 568 struct lkkbd *lk = container_of(work, struct lkkbd, tq); in lkkbd_reinit() 623 INIT_WORK(&lk->tq, lkkbd_reinit); in lkkbd_connect()
|
/Linux-v5.4/net/batman-adv/ |
D | bat_iv_ogm.c | 219 batadv_ogm_packet->tq = BATADV_TQ_MAX_VALUE; in batadv_iv_ogm_iface_enable() 295 static u8 batadv_hop_penalty(u8 tq, const struct batadv_priv *bat_priv) in batadv_hop_penalty() argument 300 new_tq = tq * (BATADV_TQ_MAX_VALUE - hop_penalty); in batadv_hop_penalty() 374 batadv_ogm_packet->tq, batadv_ogm_packet->ttl, in batadv_iv_ogm_send_to_if() 716 batadv_ogm_packet->tq = batadv_hop_penalty(batadv_ogm_packet->tq, in batadv_iv_ogm_forward() 721 batadv_ogm_packet->tq, batadv_ogm_packet->ttl); in batadv_iv_ogm_forward() 995 batadv_ogm_packet->tq); in batadv_iv_ogm_orig_update() 1167 combined_tq = batadv_ogm_packet->tq * in batadv_iv_ogm_calc_tq() 1174 batadv_ogm_packet->tq = combined_tq; in batadv_iv_ogm_calc_tq() 1180 batadv_ogm_packet->tq, if_incoming->net_dev->name, in batadv_iv_ogm_calc_tq() [all …]
|
/Linux-v5.4/include/uapi/linux/can/ |
D | netlink.h | 34 __u32 tq; /* Time quanta (TQ) in nanoseconds */ member
|
/Linux-v5.4/drivers/net/can/ |
D | dev.c | 205 bt->tq = (u32)v64; in can_calc_bittiming() 259 brp64 = (u64)priv->clock.freq * (u64)bt->tq; in can_fixup_bittiming() 310 if (!bt->tq && bt->bitrate && btc) in can_get_bittiming() 312 else if (bt->tq && !bt->bitrate && btc) in can_get_bittiming() 314 else if (!bt->tq && bt->bitrate && bitrate_const) in can_get_bittiming()
|
/Linux-v5.4/include/linux/ |
D | hp_sdc.h | 281 hp_sdc_transaction *tq[HP_SDC_QUEUE_LEN]; /* All pending read/writes */ member
|
/Linux-v5.4/ipc/ |
D | sem.c | 260 struct sem_queue *q, *tq; in unmerge_queues() local 270 list_for_each_entry_safe(q, tq, &sma->pending_alter, list) { in unmerge_queues() 1127 struct sem_queue *q, *tq; in freeary() local 1144 list_for_each_entry_safe(q, tq, &sma->pending_const, list) { in freeary() 1149 list_for_each_entry_safe(q, tq, &sma->pending_alter, list) { in freeary() 1155 list_for_each_entry_safe(q, tq, &sem->pending_const, list) { in freeary() 1159 list_for_each_entry_safe(q, tq, &sem->pending_alter, list) { in freeary()
|
/Linux-v5.4/include/uapi/linux/ |
D | batadv_packet.h | 217 __u8 tq; member
|
/Linux-v5.4/drivers/net/ethernet/chelsio/cxgb4/ |
D | sge.c | 1953 struct sge_txq *tq = &txq->q; in cxgb4_vf_eth_xmit() local 1962 if (unlikely((void *)sgl == (void *)tq->stat)) { in cxgb4_vf_eth_xmit() 1963 sgl = (void *)tq->desc; in cxgb4_vf_eth_xmit() 1964 end = (void *)((void *)tq->desc + in cxgb4_vf_eth_xmit() 1965 ((void *)end - (void *)tq->stat)); in cxgb4_vf_eth_xmit() 1968 cxgb4_write_sgl(skb, tq, sgl, end, 0, addr); in cxgb4_vf_eth_xmit() 1971 last_desc = tq->pidx + ndesc - 1; in cxgb4_vf_eth_xmit() 1972 if (last_desc >= tq->size) in cxgb4_vf_eth_xmit() 1973 last_desc -= tq->size; in cxgb4_vf_eth_xmit() 1974 tq->sdesc[last_desc].skb = skb; in cxgb4_vf_eth_xmit() [all …]
|
/Linux-v5.4/Documentation/ABI/obsolete/ |
D | sysfs-class-net-mesh | 71 originator message's tq-field on every hop.
|