Home
last modified time | relevance | path

Searched refs:txq_timer (Results 1 – 4 of 4) sorted by relevance

/freebsd-14-stable/sys/contrib/dev/iwlwifi/mvm/
HDutils.c753 struct iwl_fw_dbg_trigger_txq_timer *txq_timer; in iwl_mvm_get_wd_timeout() local
771 txq_timer = (void *)trigger->data; in iwl_mvm_get_wd_timeout()
774 return le32_to_cpu(txq_timer->tdls); in iwl_mvm_get_wd_timeout()
777 return le32_to_cpu(txq_timer->command_queue); in iwl_mvm_get_wd_timeout()
784 return le32_to_cpu(txq_timer->ibss); in iwl_mvm_get_wd_timeout()
786 return le32_to_cpu(txq_timer->bss); in iwl_mvm_get_wd_timeout()
788 return le32_to_cpu(txq_timer->softap); in iwl_mvm_get_wd_timeout()
790 return le32_to_cpu(txq_timer->p2p_client); in iwl_mvm_get_wd_timeout()
792 return le32_to_cpu(txq_timer->p2p_go); in iwl_mvm_get_wd_timeout()
794 return le32_to_cpu(txq_timer->p2p_device); in iwl_mvm_get_wd_timeout()
/freebsd-14-stable/sys/dev/cxgb/
HDcxgb_sge.c1686 if (!TXQ_RING_EMPTY(qs) && callout_pending(&txq->txq_timer) == 0 && in cxgb_start_locked()
1688 callout_reset_on(&txq->txq_timer, 1, cxgb_tx_timeout, in cxgb_start_locked()
1689 qs, txq->txq_timer.c_cpu); in cxgb_start_locked()
1736 else if (!TXQ_RING_EMPTY(qs) && !callout_pending(&txq->txq_timer)) in cxgb_transmit_locked()
1737 callout_reset_on(&txq->txq_timer, 1, cxgb_tx_timeout, in cxgb_transmit_locked()
1738 qs, txq->txq_timer.c_cpu); in cxgb_transmit_locked()
2433 callout_init(&q->txq[TXQ_ETH].txq_timer, 1); in t3_sge_alloc_qset()
2435 q->txq[TXQ_ETH].txq_timer.c_cpu = id % mp_ncpus; in t3_sge_alloc_qset()
HDcxgb_adapter.h255 struct callout txq_timer; member
HDcxgb_main.c1103 callout_drain(&txq->txq_timer); in cxgb_port_detach()