Home
last modified time | relevance | path

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

/freebsd-14.2/sys/contrib/dev/iwlwifi/mvm/
H A Dutils.c663 struct iwl_fw_dbg_trigger_txq_timer *txq_timer; in iwl_mvm_get_wd_timeout() local
681 txq_timer = (void *)trigger->data; in iwl_mvm_get_wd_timeout()
684 return le32_to_cpu(txq_timer->tdls); in iwl_mvm_get_wd_timeout()
687 return le32_to_cpu(txq_timer->command_queue); in iwl_mvm_get_wd_timeout()
694 return le32_to_cpu(txq_timer->ibss); in iwl_mvm_get_wd_timeout()
696 return le32_to_cpu(txq_timer->bss); in iwl_mvm_get_wd_timeout()
698 return le32_to_cpu(txq_timer->softap); in iwl_mvm_get_wd_timeout()
700 return le32_to_cpu(txq_timer->p2p_client); in iwl_mvm_get_wd_timeout()
702 return le32_to_cpu(txq_timer->p2p_go); in iwl_mvm_get_wd_timeout()
704 return le32_to_cpu(txq_timer->p2p_device); in iwl_mvm_get_wd_timeout()
/freebsd-14.2/sys/dev/cxgb/
H A Dcxgb_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()
H A Dcxgb_adapter.h255 struct callout txq_timer; member
H A Dcxgb_main.c1105 callout_drain(&txq->txq_timer); in cxgb_port_detach()